blob: 19ddeec4a179ba9054c24a4dc5c794db1c829424 [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;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700106import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700107import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700108import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700109import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700110import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700111import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700112import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700113
Adam Cohen4caf2982013-08-20 18:54:31 -0700114import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700115import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700116import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700117import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.PrintWriter;
Chet Haasea8f996d2015-02-17 12:56:04 -0800119import java.lang.reflect.InvocationTargetException;
120import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700121import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700122import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700123import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700124import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700125import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700126import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700127import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000128import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700129
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800130/**
131 * Default launcher application.
132 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100133public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700134 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chung006ee262015-08-03 14:40:11 -0700135 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700136 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700137 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800138
Daniel Sandlerf061f822013-06-27 13:59:36 -0400139 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700140 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700141 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400142 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700143 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700144
Dan Sandlerd5024042014-01-09 15:01:33 -0500145 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
146
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800147 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700148 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700149 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700150 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151
Michael Jurka8b805b12012-04-18 14:23:14 -0700152 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700153 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700154
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700155 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
156 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
157 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
158
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700159 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
160
Mathew Inwood876a8462013-06-14 14:12:41 +0100161 /**
162 * IntentStarter uses request codes starting with this. This must be greater than all activity
163 * request codes used internally.
164 */
165 protected static final int REQUEST_LAST = 100;
166
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800167 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800168
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
Adam Cohen091440a2015-03-18 14:16:05 -0700255 @Thunk 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
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800297 private Bundle mSavedInstanceState;
298
Joe Onorato9c1289c2009-08-17 11:03:03 -0400299 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800300 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700301 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800302 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700303 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800304 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400305
Sunny Goyale2df0622015-04-24 11:27:00 -0700306 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700307
Adam Cohen61f560d2013-09-30 15:58:20 -0700308 private View.OnTouchListener mHapticFeedbackTouchListener;
309
Adam Cohended9f8d2010-11-03 13:25:16 -0700310 // Related to the auto-advancing of widgets
311 private final int ADVANCE_MSG = 1;
312 private final int mAdvanceInterval = 20000;
313 private final int mAdvanceStagger = 250;
314 private long mAutoAdvanceSentTime;
315 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700316 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700317 new HashMap<View, AppWidgetProviderInfo>();
318
Winson Chung400438b2011-01-16 17:53:48 -0800319 // Determines how long to wait after a rotation before restoring the screen orientation to
320 // match the sensor state.
321 private final int mRestoreScreenOrientationDelay = 500;
322
Adam Cohen091440a2015-03-18 14:16:05 -0700323 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700324
Adam Cohen1462de32012-07-24 22:34:36 -0700325 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700326 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700327
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700328 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700329 static Date sDateStamp = new Date();
330 static DateFormat sDateFormat =
331 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
332 static long sRunStart = System.currentTimeMillis();
333 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700334
Winson Chung46353de2012-02-16 14:05:10 -0800335 // We only want to get the SharedPreferences once since it does an FS stat each time we get
336 // it from the context.
337 private SharedPreferences mSharedPrefs;
338
Winson Chungf0c6ae02012-03-21 16:10:31 -0700339 // Holds the page that we need to animate to, and the icon views that we need to animate up
340 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700341 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700342 private Bitmap mFolderIconBitmap;
343 private Canvas mFolderIconCanvas;
344 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700345
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700346 private DeviceProfile mDeviceProfile;
347
Winson Chung13eb5272015-05-11 16:30:13 -0700348 // This is set to the view that launched the activity that navigated the user away from
349 // launcher. Since there is no callback for when the activity has finished launching, enable
350 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800351 private BubbleTextView mWaitingForResume;
352
Adam Cohen59400422014-03-05 18:07:04 -0800353 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
354 new HashMap<String, CustomAppWidget>();
355
356 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
357 static {
358 if (ENABLE_CUSTOM_WIDGET_TEST) {
359 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
360 }
361 }
362
Chet Haasea8f996d2015-02-17 12:56:04 -0800363 // TODO: remove this field and call method directly when Launcher3 can depend on M APIs
364 private static Method sClipRevealMethod = null;
365 static {
366 Class<?> activityOptionsClass = ActivityOptions.class;
367 try {
368 sClipRevealMethod = activityOptionsClass.getDeclaredMethod("makeClipRevealAnimation",
369 View.class, int.class, int.class, int.class, int.class);
370 } catch (Exception e) {
371 // Earlier version
372 }
373 }
374
Adam Cohen091440a2015-03-18 14:16:05 -0700375 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700376 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700377 if (mWorkspace != null) {
378 mWorkspace.buildPageHardwareLayers();
379 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700380 }
381 };
382
Adam Cohendb364c32014-05-20 14:23:40 -0700383 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800384
Adam Cohen091440a2015-03-18 14:16:05 -0700385 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800386 int requestCode;
387 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700388 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700389 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800390 int cellX;
391 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700392 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800393 }
394
Daniel Sandlerff02d492013-08-05 02:12:05 -0400395 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700396 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700397 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400398
399 @Thunk void setOrientation() {
400 if (mRotationEnabled) {
401 unlockScreenOrientation(true);
402 } else {
403 setRequestedOrientation(
404 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700405 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400406 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700407
Sunny Goyal7779d622015-06-11 16:18:39 -0700408 private Runnable mUpdateOrientationRunnable = new Runnable() {
409 public void run() {
410 setOrientation();
411 }
412 };
413
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800414 @Override
415 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700416 if (DEBUG_STRICT_MODE) {
417 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
418 .detectDiskReads()
419 .detectDiskWrites()
420 .detectNetwork() // or .detectAll() for all detectable problems
421 .penaltyLog()
422 .build());
423 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
424 .detectLeakedSqlLiteObjects()
425 .detectLeakedClosableObjects()
426 .penaltyLog()
427 .penaltyDeath()
428 .build());
429 }
430
Adam Cohen9211d422014-10-07 18:14:53 -0700431 if (mLauncherCallbacks != null) {
432 mLauncherCallbacks.preOnCreate();
433 }
434
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800435 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400436
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400437 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400438 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700439
Adam Cohen2e6da152015-05-06 11:42:25 -0700440 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700441 mDeviceProfile = getResources().getConfiguration().orientation
442 == Configuration.ORIENTATION_LANDSCAPE ?
443 app.getInvariantDeviceProfile().landscapeProfile
444 : app.getInvariantDeviceProfile().portraitProfile;
445
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400446 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700447 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700448 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800449 mModel = app.setLauncher(this);
450 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700451
Joe Onorato41a12d22009-10-31 18:30:00 -0400452 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800453 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700454 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700455
Daniel Sandlerff02d492013-08-05 02:12:05 -0400456 mStats = new Stats(this);
457
Sunny Goyalffe83f12014-08-14 17:39:34 -0700458 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700459
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700460 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
461 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700462
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700463 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
464 // this also ensures that any synchronous binding below doesn't re-trigger another
465 // LauncherModel load.
466 mPaused = false;
467
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800468 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200469 android.os.Debug.startMethodTracing(
470 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800471 }
472
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800473 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700474
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800475 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700476 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800477
Joe Onorato7c312c12009-08-13 21:36:53 -0700478 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700479
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800480 mSavedState = savedInstanceState;
481 restoreState(mSavedState);
482
483 if (PROFILE_STARTUP) {
484 android.os.Debug.stopMethodTracing();
485 }
486
487 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700488 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700489 // If the user leaves launcher, then we should just load items asynchronously when
490 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700491 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700492 } else {
493 // We only load the page synchronously if the user rotates (or triggers a
494 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700495 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700496 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800497 }
498
499 // For handling default keys
500 mDefaultKeySsb = new SpannableStringBuilder();
501 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800502
503 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
504 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800505
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700506 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
507 // In case we are on a device with locked rotation, we should look at preferences to check
508 // if the user has specifically allowed rotation.
509 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400510 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700511 }
512
513 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
514 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400515 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700516
Adam Cohen9211d422014-10-07 18:14:53 -0700517 if (mLauncherCallbacks != null) {
518 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700519 if (mLauncherCallbacks.hasLauncherOverlay()) {
520 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700521 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
522 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
523 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700524 mWorkspace.setLauncherOverlay(mLauncherOverlay);
525 }
Adam Cohen9211d422014-10-07 18:14:53 -0700526 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700527
528 if (shouldShowIntroScreen()) {
529 showIntroScreen();
530 } else {
531 showFirstRunActivity();
532 showFirstRunClings();
533 }
Adam Cohen9211d422014-10-07 18:14:53 -0700534 }
535
Sunny Goyal7779d622015-06-11 16:18:39 -0700536 @Override
537 public void onSettingsChanged(String settings, boolean value) {
538 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
539 mRotationEnabled = value;
540 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
541 mUpdateOrientationRunnable.run();
542 }
543 }
544 }
545
Adam Cohen9211d422014-10-07 18:14:53 -0700546 private LauncherCallbacks mLauncherCallbacks;
547
548 public void onPostCreate(Bundle savedInstanceState) {
549 super.onPostCreate(savedInstanceState);
550 if (mLauncherCallbacks != null) {
551 mLauncherCallbacks.onPostCreate(savedInstanceState);
552 }
553 }
554
555 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
556 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700557 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700558 private boolean mWorkspaceImportanceStored = false;
559 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700560 private int mWorkspaceImportanceForAccessibility =
561 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
562 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
563
564 @Override
565 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700566 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700567 return;
568 }
569 // The underlying workspace and hotseat are temporarily suppressed by the search
570 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700571 if (mWorkspace != null) {
572 mWorkspaceImportanceForAccessibility =
573 mWorkspace.getImportantForAccessibility();
574 mWorkspace.setImportantForAccessibility(
575 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
576 mWorkspaceImportanceStored = true;
577 }
578 if (mHotseat != null) {
579 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
580 mHotseat.setImportantForAccessibility(
581 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
582 mHotseatImportanceStored = true;
583 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700584 }
585
586 @Override
587 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700588 if (mWorkspaceImportanceStored && mWorkspace != null) {
589 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
590 }
591 if (mHotseatImportanceStored && mHotseat != null) {
592 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
593 }
594 mWorkspaceImportanceStored = false;
595 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700596 }
597 });
Adam Cohen9211d422014-10-07 18:14:53 -0700598 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700599 }
600
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700601 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700602 public void onLauncherProviderChange() {
603 if (mLauncherCallbacks != null) {
604 mLauncherCallbacks.onLauncherProviderChange();
605 }
606 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700607
Winson Chungef7f8742015-06-04 17:18:17 -0700608 /**
609 * Updates the bounds of all the overlays to match the new fixed bounds.
610 */
611 public void updateOverlayBounds(Rect newBounds) {
612 mAppsView.setSearchBarBounds(newBounds);
613 mWidgetsView.setSearchBarBounds(newBounds);
614 }
615
Adam Cohen9211d422014-10-07 18:14:53 -0700616 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700617 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700618 if (mLauncherCallbacks != null) {
619 return mLauncherCallbacks.hasCustomContentToLeft();
620 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700621 return false;
622 }
623
Dave Hawkeya8881582013-09-17 15:55:33 -0600624 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500625 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600626 * {@link #addToCustomContentPage}. This will only be invoked if
627 * {@link #hasCustomContentToLeft()} is {@code true}.
628 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500629 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700630 if (mLauncherCallbacks != null) {
631 mLauncherCallbacks.populateCustomContentContainer();
632 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600633 }
634
635 /**
636 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
637 * ensure the custom content page is added or removed if necessary.
638 */
639 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600640 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600641 // Not bound yet, wait for bindScreens to be called.
642 return;
643 }
644
645 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
646 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500647 mWorkspace.createCustomContentContainer();
648 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600649 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
650 mWorkspace.removeCustomContentPage();
651 }
652 }
653
Anton Hanssona2f665f2013-09-26 12:18:32 +0100654 public Stats getStats() {
655 return mStats;
656 }
657
Bjorn Bringertc459e522013-06-07 19:36:01 +0100658 public LayoutInflater getInflater() {
659 return mInflater;
660 }
661
Hyunyoung Song3f471442015-04-08 19:01:34 -0700662 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700663 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
664 // that is subsequently removed from the workspace in startBinding().
665 return !mModel.isLoadingWorkspace();
666 }
667
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800668 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000669 public static int generateViewId() {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100670 if (Build.VERSION.SDK_INT >= 17) {
671 return View.generateViewId();
672 } else {
673 // View.generateViewId() is not available. The following fallback logic is a copy
674 // of its implementation.
675 for (;;) {
676 final int result = sNextGeneratedId.get();
677 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
678 int newValue = result + 1;
679 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
680 if (sNextGeneratedId.compareAndSet(result, newValue)) {
681 return result;
682 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000683 }
684 }
685 }
686
687 public int getViewIdForItem(ItemInfo info) {
688 // This cast is safe given the > 2B range for int.
689 int itemId = (int) info.id;
690 if (mItemIdToViewId.containsKey(itemId)) {
691 return mItemIdToViewId.get(itemId);
692 }
693 int viewId = generateViewId();
694 mItemIdToViewId.put(itemId, viewId);
695 return viewId;
696 }
697
698 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700699 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
700 * a configuration step, this allows the proper animations to run after other transitions.
701 */
Adam Cohendb364c32014-05-20 14:23:40 -0700702 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700703 long screenId = args.screenId;
704 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
705 // When the screen id represents an actual screen (as opposed to a rank) we make sure
706 // that the drop page actually exists.
707 screenId = ensurePendingDropLayoutExists(args.screenId);
708 }
Adam Cohendb364c32014-05-20 14:23:40 -0700709
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800710 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800711 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700712 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700713 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700714 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800715 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700716 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700717 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700718 case REQUEST_RECONFIGURE_APPWIDGET:
719 completeRestoreAppWidget(args.appWidgetId);
720 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800721 }
Michael Jurka27614d22012-04-02 06:40:22 -0700722 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
723 // if you turned the screen off and then back while in All Apps, Launcher would not
724 // return to the workspace. Clearing mAddInfo.container here fixes this issue
725 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700726 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800727 }
728
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800729 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700730 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700731 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700732 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700733 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800734 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700735
Adam Cohenad4e15c2013-10-17 16:21:35 -0700736 Runnable exitSpringLoaded = new Runnable() {
737 @Override
738 public void run() {
739 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
740 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
741 }
742 };
743
Michael Jurka8b805b12012-04-18 14:23:14 -0700744 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700745 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700746 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700747 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
748 if (resultCode == RESULT_CANCELED) {
749 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700750 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700751 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700752 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800753 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700754 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700755
756 // When the user has granted permission to bind widgets, we should check to see if
757 // we can inflate the default search bar widget.
758 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700759 }
760 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200761 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
762 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700763 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200764 }
765 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700766 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200767
Adam Cohened66b2b2012-01-23 17:28:51 -0800768 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700769 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700770
Adam Cohendb364c32014-05-20 14:23:40 -0700771 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800772 // We have special handling for widgets
773 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800774 final int appWidgetId;
775 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
776 : -1;
777 if (widgetId < 0) {
778 appWidgetId = pendingAddWidgetId;
779 } else {
780 appWidgetId = widgetId;
781 }
782
Adam Cohenad4e15c2013-10-17 16:21:35 -0700783 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800784 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700785 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
786 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700787 result = RESULT_CANCELED;
788 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700789 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700790 @Override
791 public void run() {
792 exitSpringLoadedDragModeDelayed(false, 0, null);
793 }
794 };
Adam Cohendb364c32014-05-20 14:23:40 -0700795 if (workspaceLocked) {
796 // No need to remove the empty screen if we're mid-binding, as the
797 // the bind will not add the empty screen.
798 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
799 } else {
800 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
801 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
802 }
Winson Chung5aaab772012-04-27 15:24:02 -0700803 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700804 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700805 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
806 // When the screen id represents an actual screen (as opposed to a rank)
807 // we make sure that the drop page actually exists.
808 mPendingAddInfo.screenId =
809 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
810 }
Adam Cohendb364c32014-05-20 14:23:40 -0700811 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
812
813 dropLayout.setDropPending(true);
814 final Runnable onComplete = new Runnable() {
815 @Override
816 public void run() {
817 completeTwoStageWidgetDrop(resultCode, appWidgetId);
818 dropLayout.setDropPending(false);
819 }
820 };
821 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
822 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
823 } else {
824 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
825 mPendingAddInfo);
826 sPendingAddItem = args;
827 }
Winson Chung5aaab772012-04-27 15:24:02 -0700828 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800829 return;
830 }
831
Sunny Goyalff572272014-07-23 13:58:07 -0700832 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
833 if (resultCode == RESULT_OK) {
834 // Update the widget view.
835 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
836 pendingAddWidgetId, mPendingAddInfo);
837 if (workspaceLocked) {
838 sPendingAddItem = args;
839 } else {
840 completeAdd(args);
841 }
842 }
843 // Leave the widget in the pending state if the user canceled the configure.
844 return;
845 }
846
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800847 // The pattern used here is that a user PICKs a specific application,
848 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700849
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800850 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
851 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700852 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700853 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
854 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800855 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700856 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800857 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700858 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700859 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
860 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800861 }
Adam Cohen00074722013-10-11 17:46:09 -0700862 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700863 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700864 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800865 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800866 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800867
868 }
869
870 @Override
871 protected void onActivityResult(
872 final int requestCode, final int resultCode, final Intent data) {
873 handleActivityResult(requestCode, resultCode, data);
874 if (mLauncherCallbacks != null) {
875 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
876 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800877 }
878
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600879 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700880 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600881 int[] grantResults) {
882 if (mLauncherCallbacks != null) {
883 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
884 grantResults);
885 }
886 }
887
Adam Cohendb364c32014-05-20 14:23:40 -0700888 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
889 appWidgetId, ItemInfo info) {
890 PendingAddArguments args = new PendingAddArguments();
891 args.requestCode = requestCode;
892 args.intent = data;
893 args.container = info.container;
894 args.screenId = info.screenId;
895 args.cellX = info.cellX;
896 args.cellY = info.cellY;
897 args.appWidgetId = appWidgetId;
898 return args;
899 }
900
901 /**
902 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
903 *
904 * @param screenId the screen id to check
905 * @return the new screen, or screenId if it exists
906 */
907 private long ensurePendingDropLayoutExists(long screenId) {
908 CellLayout dropLayout =
909 (CellLayout) mWorkspace.getScreenWithId(screenId);
910 if (dropLayout == null) {
911 // it's possible that the add screen was removed because it was
912 // empty and a re-bind occurred
913 mWorkspace.addExtraEmptyScreen();
914 return mWorkspace.commitExtraEmptyScreen();
915 } else {
916 return screenId;
917 }
918 }
919
Adam Cohen091440a2015-03-18 14:16:05 -0700920 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700921 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700922 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800923 Runnable onCompleteRunnable = null;
924 int animationType = 0;
925
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700926 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800927 if (resultCode == RESULT_OK) {
928 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
929 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700930 mPendingAddWidgetInfo);
931 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800932 onCompleteRunnable = new Runnable() {
933 @Override
934 public void run() {
935 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700936 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700937 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
938 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800939 }
940 };
941 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800942 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800943 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800944 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700945 if (mDragLayer.getAnimatedView() != null) {
946 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
947 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
948 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700949 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700950 // The animated view may be null in the case of a rotation during widget configuration
951 onCompleteRunnable.run();
952 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800953 }
954
955 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700956 protected void onStop() {
957 super.onStop();
958 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700959
960 if (mLauncherCallbacks != null) {
961 mLauncherCallbacks.onStop();
962 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700963 }
964
965 @Override
966 protected void onStart() {
967 super.onStart();
968 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700969
970 if (mLauncherCallbacks != null) {
971 mLauncherCallbacks.onStart();
972 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700973 }
974
975 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800976 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200977 long startTime = 0;
978 if (DEBUG_RESUME_TIME) {
979 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400980 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200981 }
Adam Cohen9211d422014-10-07 18:14:53 -0700982
983 if (mLauncherCallbacks != null) {
984 mLauncherCallbacks.preOnResume();
985 }
986
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800987 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700988
Winson Chung4a2afa32012-07-19 14:53:05 -0700989 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700990 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700991 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800992 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700993 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700994 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700995 // view after launching an app, as they may be depending on the UI to be static to
996 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700997 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700998 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800999 } else if (mOnResumeState == State.WIDGETS) {
1000 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -07001001 }
1002 mOnResumeState = State.NONE;
1003
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07001004 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -07001005 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
1006 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -07001007
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001008 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001009 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001010 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001011 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001012 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001013 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001014 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001015 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001016 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1017 // execute them here
1018 long startTimeCallbacks = 0;
1019 if (DEBUG_RESUME_TIME) {
1020 startTimeCallbacks = System.currentTimeMillis();
1021 }
1022
Michael Jurka1e2f4652013-07-08 18:03:46 -07001023 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1024 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001025 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001026 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001027 if (DEBUG_RESUME_TIME) {
1028 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1029 (System.currentTimeMillis() - startTimeCallbacks));
1030 }
Michael Jurka447bf842013-05-15 14:52:15 +02001031 }
Michael Jurka54554252013-08-01 12:52:23 +02001032 if (mOnResumeCallbacks.size() > 0) {
1033 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1034 mOnResumeCallbacks.get(i).run();
1035 }
1036 mOnResumeCallbacks.clear();
1037 }
Winson Chunge4e50662012-01-23 14:45:13 -08001038
1039 // Reset the pressed state of icons that were locked in the press state while activities
1040 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001041 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001042 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001043 mWaitingForResume.setStayPressed(false);
1044 }
Winson Chung82963d52013-10-09 11:20:57 -07001045
Adam Cohen06dff352012-06-01 17:17:08 -07001046 // It is possible that widgets can receive updates while launcher is not in the foreground.
1047 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1048 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1049 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001050 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001051 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001052
Michael Jurka447bf842013-05-15 14:52:15 +02001053 if (DEBUG_RESUME_TIME) {
1054 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1055 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001056
1057 if (mWorkspace.getCustomContentCallbacks() != null) {
1058 // If we are resuming and the custom content is the current page, we call onShow().
1059 // It is also poassible that onShow will instead be called slightly after first layout
1060 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1061 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001062 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001063 }
1064 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001065 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001066 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001067
Sunny Goyal756adbc2015-04-16 15:20:51 -07001068 if (!isWorkspaceLoading()) {
1069 // Process any items that were added while Launcher was away.
1070 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1071 }
Adam Cohen9211d422014-10-07 18:14:53 -07001072
1073 if (mLauncherCallbacks != null) {
1074 mLauncherCallbacks.onResume();
1075 }
Adam Cohen06dff352012-06-01 17:17:08 -07001076 }
1077
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001078 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001079 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001080 // Ensure that items added to Launcher are queued until Launcher returns
1081 InstallShortcutReceiver.enableInstallQueue();
1082
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001083 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001084 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001085 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001086 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001087
1088 // We call onHide() aggressively. The custom content callbacks should be able to
1089 // debounce excess onHide calls.
1090 if (mWorkspace.getCustomContentCallbacks() != null) {
1091 mWorkspace.getCustomContentCallbacks().onHide();
1092 }
Romain Guycbb89e42009-06-08 15:52:54 -07001093
Adam Cohen9211d422014-10-07 18:14:53 -07001094 if (mLauncherCallbacks != null) {
1095 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001096 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001097 }
1098
1099 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001100 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1101 // by a onResume or by scrolling otherwise.
1102 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001103
1104 // Custom content is completely hidden
1105 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001106
1107 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1108 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001109
1110 // Indicates whether the user is allowed to scroll away from the custom content.
1111 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001112 }
1113
Adam Cohenc2d6e892014-10-16 09:49:24 -07001114 public interface LauncherOverlay {
1115
1116 /**
1117 * Touch interaction leading to overscroll has begun
1118 */
1119 public void onScrollInteractionBegin();
1120
1121 /**
1122 * Touch interaction related to overscroll has ended
1123 */
1124 public void onScrollInteractionEnd();
1125
1126 /**
1127 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1128 * screen (or in the case of RTL, the rightmost screen).
1129 */
1130 public void onScrollChange(int progress, boolean rtl);
1131
1132 /**
1133 * Screen has stopped scrolling
1134 */
1135 public void onScrollSettled();
1136
1137 /**
1138 * This method can be called by the Launcher in order to force the LauncherOverlay
1139 * to exit fully immersive mode.
1140 */
1141 public void forceExitFullImmersion();
1142 }
1143
Jun Mukai8af0cd82015-05-12 12:32:12 -07001144 public interface LauncherSearchCallbacks {
1145 /**
1146 * Called when the search overlay is shown.
1147 */
1148 public void onSearchOverlayOpened();
1149
1150 /**
1151 * Called when the search overlay is dismissed.
1152 */
1153 public void onSearchOverlayClosed();
1154 }
1155
Adam Cohenc2d6e892014-10-16 09:49:24 -07001156 public interface LauncherOverlayCallbacks {
1157 /**
1158 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1159 * however it doesn't modify any state within the launcher.
1160 */
1161 public boolean canEnterFullImmersion();
1162
1163 /**
1164 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1165 * eg. by occupying the full screen and handling all touch events.
1166 *
1167 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1168 * case, Launcher will modify any necessary state and assumes the overlay is
1169 * handling all interaction. If false, the LauncherOverlay should cancel any
1170 *
1171 */
1172 public boolean enterFullImmersion();
1173
1174 /**
1175 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1176 * full control over UI and state.
1177 */
1178 public void exitFullImmersion();
1179 }
1180
1181 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1182
1183 @Override
1184 public boolean canEnterFullImmersion() {
1185 return mState == State.WORKSPACE;
1186 }
1187
1188 @Override
1189 public boolean enterFullImmersion() {
1190 if (mState == State.WORKSPACE) {
1191 // When fully immersed, disregard any touches which fall through.
1192 mDragLayer.setBlockTouch(true);
1193 return true;
1194 }
1195 return false;
1196 }
1197
1198 @Override
1199 public void exitFullImmersion() {
1200 mDragLayer.setBlockTouch(false);
1201 }
1202 }
1203
Jorim Jaggid017f882014-01-14 17:08:48 -08001204 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001205 if (mLauncherCallbacks != null) {
1206 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001207 } else {
1208 // On devices with a locked orientation, we will at least have the allow rotation
1209 // setting.
1210 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001211 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001212 }
1213
Adam Cohen9211d422014-10-07 18:14:53 -07001214 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001215 CustomContentCallbacks callbacks, String description) {
1216 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001217 }
1218
Adam Cohenedb40762013-07-18 16:45:45 -07001219 // The custom content needs to offset its content to account for the QSB
1220 public int getTopOffsetForCustomContent() {
1221 return mWorkspace.getPaddingTop();
1222 }
1223
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001224 @Override
1225 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001226 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001227 if (mModel.isCurrentCallbacks(this)) {
1228 mModel.stopLoader();
1229 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001230 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1231
Romain Guy13c2e7b2010-03-10 19:45:00 -08001232 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001233 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001234
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001235 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001236 @Override
1237 public void onWindowFocusChanged(boolean hasFocus) {
1238 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001239 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001240
1241 if (mLauncherCallbacks != null) {
1242 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1243 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001244 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001245
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001246 private boolean acceptFilter() {
1247 final InputMethodManager inputManager = (InputMethodManager)
1248 getSystemService(Context.INPUT_METHOD_SERVICE);
1249 return !inputManager.isFullscreenMode();
1250 }
1251
1252 @Override
1253 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001254 final int uniChar = event.getUnicodeChar();
1255 final boolean handled = super.onKeyDown(keyCode, event);
1256 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1257 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001258 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1259 keyCode, event);
1260 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001261 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001262 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001263 // showSearchDialog()
1264 // If there are multiple keystrokes before the search dialog takes focus,
1265 // onSearchRequested() will be called for every keystroke,
1266 // but it is idempotent, so it's fine.
1267 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001268 }
1269 }
1270
Joe Onorato8a9625e2010-01-28 15:55:35 -08001271 // Eat the long press event so the keyboard doesn't come up.
1272 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1273 return true;
1274 }
1275
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001276 return handled;
1277 }
1278
Karl Rosaen138a0412009-04-23 19:00:21 -07001279 private String getTypedText() {
1280 return mDefaultKeySsb.toString();
1281 }
1282
1283 private void clearTypedText() {
1284 mDefaultKeySsb.clear();
1285 mDefaultKeySsb.clearSpans();
1286 Selection.setSelection(mDefaultKeySsb, 0);
1287 }
1288
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001289 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001290 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1291 * State
1292 */
1293 private static State intToState(int stateOrdinal) {
1294 State state = State.WORKSPACE;
1295 final State[] stateValues = State.values();
1296 for (int i = 0; i < stateValues.length; i++) {
1297 if (stateValues[i].ordinal() == stateOrdinal) {
1298 state = stateValues[i];
1299 break;
1300 }
1301 }
1302 return state;
1303 }
1304
1305 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001306 * Restores the previous state, if it exists.
1307 *
1308 * @param savedState The previous state.
1309 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001310 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001311 private void restoreState(Bundle savedState) {
1312 if (savedState == null) {
1313 return;
1314 }
1315
Michael Jurka883f55b2010-10-21 15:47:14 -07001316 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001317 if (state == State.APPS || state == State.WIDGETS) {
1318 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001319 }
1320
Adam Cohen21cd0022013-10-09 18:57:02 -07001321 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1322 PagedView.INVALID_RESTORE_PAGE);
1323 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001324 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001325 }
1326
Winson Chung3d503fb2011-07-13 17:25:49 -07001327 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001328 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001329
Winson Chung3d503fb2011-07-13 17:25:49 -07001330 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1331 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001332 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001333 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1334 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001335 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1336 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001337 AppWidgetProviderInfo info = savedState.getParcelable(
1338 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001339 mPendingAddWidgetInfo = info == null ?
1340 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1341
Adam Cohen4637b5a2013-11-04 18:21:24 -08001342 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001343 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001344 mRestoring = true;
1345 }
1346
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001347 mItemIdToViewId = (HashMap<Integer, Integer>)
1348 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001349 }
1350
1351 /**
1352 * Finds all the views we need and configure them properly.
1353 */
1354 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001355 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001356
Craig Mautner360310b2012-10-26 15:13:08 -07001357 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001358 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001359 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1360 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001361 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001362 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001363
John Spurlock77e1f472013-09-11 10:09:51 -04001364 mLauncherView.setSystemUiVisibility(
1365 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001366 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001367
Winson Chung4c98d922011-05-31 16:50:48 -07001368 // Setup the drag layer
1369 mDragLayer.setup(this, dragController);
1370
Winson Chung3d503fb2011-07-13 17:25:49 -07001371 // Setup the hotseat
1372 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1373 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001374 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001375 }
1376
Jorim Jaggid017f882014-01-14 17:08:48 -08001377 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001378 mWidgetsButton = findViewById(R.id.widget_button);
1379 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001380 @Override
1381 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001382 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001383 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001384 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001385 }
1386 });
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001387 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001388
1389 View wallpaperButton = findViewById(R.id.wallpaper_button);
1390 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001391 @Override
1392 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001393 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001394 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001395 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001396 }
1397 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001398 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1399
1400 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001401 if (hasSettings()) {
1402 settingsButton.setOnClickListener(new OnClickListener() {
1403 @Override
1404 public void onClick(View arg0) {
1405 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001406 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001407 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001408 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001409 });
1410 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1411 } else {
1412 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001413 }
1414
Adam Cohendbdff6b2013-09-18 19:09:15 -07001415 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001416
Winson Chung4c98d922011-05-31 16:50:48 -07001417 // Setup the workspace
1418 mWorkspace.setHapticFeedbackEnabled(false);
1419 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001420 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001421 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001422
Winson Chungf0ea4d32011-06-06 14:27:16 -07001423 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001424 mSearchDropTargetBar = (SearchDropTargetBar)
1425 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001426
Winson Chungef7f8742015-06-04 17:18:17 -07001427 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001428 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001429 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001430 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1431 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1432 } else {
1433 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1434 }
Craig Mautner360310b2012-10-26 15:13:08 -07001435
Winson Chung3d503fb2011-07-13 17:25:49 -07001436 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001437 dragController.setDragScoller(mWorkspace);
1438 dragController.setScrollView(mDragLayer);
1439 dragController.setMoveTarget(mWorkspace);
1440 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001441 if (mSearchDropTargetBar != null) {
1442 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001443 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001444 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001445
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001446 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001447 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001448 mWeightWatcher = new WeightWatcher(this);
1449 mWeightWatcher.setAlpha(0.5f);
1450 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001451 new FrameLayout.LayoutParams(
1452 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001453 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001454 Gravity.BOTTOM)
1455 );
Adam Cohen39a06042013-07-19 14:30:12 -07001456
1457 boolean show = shouldShowWeightWatcher();
1458 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001459 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001460 }
1461
1462 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001463 * Sets the all apps button. This method is called from {@link Hotseat}.
1464 */
1465 public void setAllAppsButton(View allAppsButton) {
1466 mAllAppsButton = allAppsButton;
1467 }
1468
1469 public View getAllAppsButton() {
1470 return mAllAppsButton;
1471 }
1472
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001473 public View getWidgetsButton() {
1474 return mWidgetsButton;
1475 }
1476
Anjali Koppal5ad44842014-03-10 20:34:39 -07001477 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001478 * Creates a view representing a shortcut.
1479 *
1480 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001481 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001482 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001483 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001484 }
1485
1486 /**
1487 * Creates a view representing a shortcut inflated from the specified resource.
1488 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001489 * @param parent The group the shortcut belongs to.
1490 * @param info The data structure describing the shortcut.
1491 *
1492 * @return A View inflated from layoutResId.
1493 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001494 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001495 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001496 parent, false);
1497 favorite.applyFromShortcutInfo(info, mIconCache);
1498 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001499 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001500 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001501 return favorite;
1502 }
1503
1504 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001505 * Add a shortcut to the workspace.
1506 *
1507 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001508 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001509 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001510 int cellY) {
1511 int[] cellXY = mTmpAddItemCellCoordinates;
1512 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001513 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001514
Sunny Goyal5c97f512015-05-19 16:03:28 -07001515 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001516 if (info == null) {
1517 return;
1518 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001519 final View view = createShortcut(info);
1520
Sunny Goyal5c97f512015-05-19 16:03:28 -07001521 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001522 // First we check if we already know the exact location where we want to add this item.
1523 if (cellX >= 0 && cellY >= 0) {
1524 cellXY[0] = cellX;
1525 cellXY[1] = cellY;
1526 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001527
1528 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001529 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001530 true, null,null)) {
1531 return;
1532 }
1533 DragObject dragObject = new DragObject();
1534 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001535 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1536 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001537 return;
1538 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001539 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001540 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001541 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001542 foundCellSpan = (result != null);
1543 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001544 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001545 }
1546
1547 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001548 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001549 return;
1550 }
1551
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001552 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001553
1554 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001555 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001556 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001557 }
1558 }
1559
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001560 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001561 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001562 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001563 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001564 */
Adam Cohen091440a2015-03-18 14:16:05 -07001565 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001566 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1567
1568 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001569 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001570 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1571 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001572 }
Romain Guycbb89e42009-06-08 15:52:54 -07001573
Adam Cohen59400422014-03-05 18:07:04 -08001574 if (appWidgetInfo.isCustomWidget) {
1575 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001576 }
1577
Adam Cohen59400422014-03-05 18:07:04 -08001578 LauncherAppWidgetInfo launcherInfo;
1579 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1580 launcherInfo.spanX = info.spanX;
1581 launcherInfo.spanY = info.spanY;
1582 launcherInfo.minSpanX = info.minSpanX;
1583 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001584 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001585
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001586 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001587 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001588
1589 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001590 if (hostView == null) {
1591 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001592 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1593 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001594 } else {
1595 // The AppWidgetHostView has already been inflated and instantiated
1596 launcherInfo.hostView = hostView;
1597 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001598 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001599 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001600 launcherInfo.notifyWidgetSizeChanged(this);
1601
Adam Cohen59400422014-03-05 18:07:04 -08001602 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1603 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001604
1605 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001606 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001607 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001608 }
Romain Guycbb89e42009-06-08 15:52:54 -07001609
Adam Cohended9f8d2010-11-03 13:25:16 -07001610 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1611 @Override
1612 public void onReceive(Context context, Intent intent) {
1613 final String action = intent.getAction();
1614 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1615 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001616 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001617 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001618
Winson Chungc100e8e2011-08-09 16:02:43 -07001619 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001620 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001621 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001622 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001623 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001624 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001625 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1626 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001627 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001628 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1629 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001630 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001631 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1632 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1633 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001634 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001635 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1636 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001637 }
1638 }
1639 };
1640
1641 @Override
1642 public void onAttachedToWindow() {
1643 super.onAttachedToWindow();
1644
1645 // Listen for broadcasts related to user-presence
1646 final IntentFilter filter = new IntentFilter();
1647 filter.addAction(Intent.ACTION_SCREEN_OFF);
1648 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001649 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001650 if (ENABLE_DEBUG_INTENTS) {
1651 filter.addAction(DebugIntents.DELETE_DATABASE);
1652 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1653 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001654 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001655 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001656 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001657 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001658 mVisible = true;
1659 }
1660
Adam Cohen0b395352014-06-09 22:54:36 +00001661 /**
1662 * Sets up transparent navigation and status bars in LMP.
1663 * This method is a no-op for other platform versions.
1664 */
Sunny Goyald0091012015-01-20 15:55:34 -08001665 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Adam Cohen0b395352014-06-09 22:54:36 +00001666 private void setupTransparentSystemBarsForLmp() {
Kenny Guyd794a3f2014-09-16 15:17:58 +01001667 if (Utilities.isLmpOrAbove()) {
Sunny Goyald0091012015-01-20 15:55:34 -08001668 Window window = getWindow();
1669 window.getAttributes().systemUiVisibility |=
1670 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1671 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1672 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1673 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1674 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1675 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1676 window.setStatusBarColor(Color.TRANSPARENT);
1677 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001678 }
1679 }
1680
Adam Cohended9f8d2010-11-03 13:25:16 -07001681 @Override
1682 public void onDetachedFromWindow() {
1683 super.onDetachedFromWindow();
1684 mVisible = false;
1685
Adam Cohend113e0c2010-11-11 10:48:05 -08001686 if (mAttached) {
1687 unregisterReceiver(mReceiver);
1688 mAttached = false;
1689 }
Winson Chungb745afb2015-03-02 11:51:23 -08001690 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001691 }
1692
1693 public void onWindowVisibilityChanged(int visibility) {
1694 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001695 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001696 // The following code used to be in onResume, but it turns out onResume is called when
1697 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1698 // is a more appropriate event to handle
1699 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001700 if (!mWorkspaceLoading) {
1701 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001702 // We want to let Launcher draw itself at least once before we force it to build
1703 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001704 // apps is nice and speedy.
1705 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001706 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001707 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001708 if (mStarted) return;
1709 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001710 // We delay the layer building a bit in order to give
1711 // other message processing a time to run. In particular
1712 // this avoids a delay in hiding the IME if it was
1713 // currently shown, because doing that may involve
1714 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001715 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001716 final ViewTreeObserver.OnDrawListener listener = this;
1717 mWorkspace.post(new Runnable() {
1718 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001719 if (mWorkspace != null &&
1720 mWorkspace.getViewTreeObserver() != null) {
1721 mWorkspace.getViewTreeObserver().
1722 removeOnDrawListener(listener);
1723 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001724 }
1725 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001726 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001727 }
1728 });
1729 }
1730 clearTypedText();
1731 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001732 }
1733
Adam Cohen091440a2015-03-18 14:16:05 -07001734 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001735 mHandler.removeMessages(ADVANCE_MSG);
1736 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1737 mHandler.sendMessageDelayed(msg, delay);
1738 mAutoAdvanceSentTime = System.currentTimeMillis();
1739 }
1740
Adam Cohen091440a2015-03-18 14:16:05 -07001741 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001742 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1743 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1744 mAutoAdvanceRunning = autoAdvanceRunning;
1745 if (autoAdvanceRunning) {
1746 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1747 sendAdvanceMessage(delay);
1748 } else {
1749 if (!mWidgetsToAdvance.isEmpty()) {
1750 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1751 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1752 }
1753 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001754 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001755 }
1756 }
1757 }
1758
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001759 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1760
Adam Cohended9f8d2010-11-03 13:25:16 -07001761 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001762 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001763 if (msg.what == ADVANCE_MSG) {
1764 int i = 0;
1765 for (View key: mWidgetsToAdvance.keySet()) {
1766 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1767 final int delay = mAdvanceStagger * i;
1768 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001769 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001770 public void run() {
1771 ((Advanceable) v).advance();
1772 }
1773 }, delay);
1774 }
1775 i++;
1776 }
1777 sendAdvanceMessage(mAdvanceInterval);
1778 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001779 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001780 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001781 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001782
1783 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001784 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001785 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1786 if (v instanceof Advanceable) {
1787 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001788 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001789 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001790 }
1791 }
1792
1793 void removeWidgetToAutoAdvance(View hostView) {
1794 if (mWidgetsToAdvance.containsKey(hostView)) {
1795 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001796 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001797 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001798 }
1799
Joe Onorato9c1289c2009-08-17 11:03:03 -04001800 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001801 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001802 launcherInfo.hostView = null;
1803 }
1804
Hyunyoung Song3f471442015-04-08 19:01:34 -07001805 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001806 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1807 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001808 }
1809
Winson Chunga6945242014-01-08 14:04:34 -08001810 public DragLayer getDragLayer() {
1811 return mDragLayer;
1812 }
1813
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001814 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001815 return mAppsView;
1816 }
1817
Hyunyoung Song3f471442015-04-08 19:01:34 -07001818 public WidgetsContainerView getWidgetsView() {
1819 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001820 }
1821
Winson Chunga6945242014-01-08 14:04:34 -08001822 public Workspace getWorkspace() {
1823 return mWorkspace;
1824 }
1825
1826 public Hotseat getHotseat() {
1827 return mHotseat;
1828 }
1829
Jorim Jaggid017f882014-01-14 17:08:48 -08001830 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001831 return mOverviewPanel;
1832 }
1833
Winson Chung006ee262015-08-03 14:40:11 -07001834 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001835 return mSearchDropTargetBar;
1836 }
1837
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001838 public LauncherAppWidgetHost getAppWidgetHost() {
1839 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001840 }
Romain Guycbb89e42009-06-08 15:52:54 -07001841
Winson Chunga9abd0e2010-10-27 17:18:37 -07001842 public LauncherModel getModel() {
1843 return mModel;
1844 }
1845
Winson Chunga6945242014-01-08 14:04:34 -08001846 protected SharedPreferences getSharedPrefs() {
1847 return mSharedPrefs;
1848 }
1849
Adam Cohen2e6da152015-05-06 11:42:25 -07001850 public DeviceProfile getDeviceProfile() {
1851 return mDeviceProfile;
1852 }
1853
Bjorn Bringertc459e522013-06-07 19:36:01 +01001854 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001855 getWindow().closeAllPanels();
1856
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001857 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001858 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001859 }
1860
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001861 @Override
1862 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001863 long startTime = 0;
1864 if (DEBUG_RESUME_TIME) {
1865 startTime = System.currentTimeMillis();
1866 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001867 super.onNewIntent(intent);
1868
1869 // Close the menu
1870 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001871 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001872 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001873
Adam Cohened307df2013-10-02 09:37:31 -07001874 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1875 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1876 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001877
Adam Cohen6fecd412013-10-02 17:41:50 -07001878 if (mWorkspace == null) {
1879 // Can be cases where mWorkspace is null, this prevents a NPE
1880 return;
1881 }
1882 Folder openFolder = mWorkspace.getOpenFolder();
1883 // In all these cases, only animate if we're already on home
1884 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001885
1886 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1887 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Adam Cohen6fecd412013-10-02 17:41:50 -07001888 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Cohen9211d422014-10-07 18:14:53 -07001889 openFolder == null && moveToDefaultScreen) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001890 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001891 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001892
Adam Cohen6fecd412013-10-02 17:41:50 -07001893 closeFolder();
1894 exitSpringLoadedDragMode();
1895
1896 // If we are already on home, then just animate back to the workspace,
1897 // otherwise, just wait until onResume to set the state back to Workspace
1898 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001899 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001900 } else {
1901 mOnResumeState = State.WORKSPACE;
1902 }
1903
1904 final View v = getWindow().peekDecorView();
1905 if (v != null && v.getWindowToken() != null) {
1906 InputMethodManager imm = (InputMethodManager)getSystemService(
1907 INPUT_METHOD_SERVICE);
1908 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1909 }
1910
Winson Chungb745afb2015-03-02 11:51:23 -08001911 // Reset the apps view
1912 if (!alreadyOnHome && mAppsView != null) {
1913 mAppsView.scrollToTop();
1914 }
1915
Hyunyoung Song3f471442015-04-08 19:01:34 -07001916 // Reset the widgets view
1917 if (!alreadyOnHome && mWidgetsView != null) {
1918 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001919 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001920
Adam Cohen9211d422014-10-07 18:14:53 -07001921 if (mLauncherCallbacks != null) {
1922 mLauncherCallbacks.onHomeIntent();
1923 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001924 }
Adam Cohened307df2013-10-02 09:37:31 -07001925
Michael Jurka447bf842013-05-15 14:52:15 +02001926 if (DEBUG_RESUME_TIME) {
1927 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1928 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001929
Adam Cohen9211d422014-10-07 18:14:53 -07001930 if (mLauncherCallbacks != null) {
1931 mLauncherCallbacks.onNewIntent(intent);
1932 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001933 }
1934
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001935 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001936 public void onRestoreInstanceState(Bundle state) {
1937 super.onRestoreInstanceState(state);
1938 for (int page: mSynchronouslyBoundPages) {
1939 mWorkspace.restoreInstanceStateForChild(page);
1940 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001941 }
1942
1943 @Override
1944 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001945 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001946 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1947 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001948 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001949 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001950
Michael Jurka883f55b2010-10-21 15:47:14 -07001951 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001952 // We close any open folder since it will not be re-opened, and we need to make sure
1953 // this state is reflected.
1954 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001955
Adam Cohendcd297f2013-06-18 13:13:40 -07001956 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001957 mWaitingForResult) {
1958 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001959 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001960 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1961 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001962 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1963 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1964 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001965 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001966 }
1967
Hyunyoung Song3f471442015-04-08 19:01:34 -07001968 // Save the current widgets tray?
1969 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001970 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001971
1972 if (mLauncherCallbacks != null) {
1973 mLauncherCallbacks.onSaveInstanceState(outState);
1974 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001975 }
1976
1977 @Override
1978 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001979 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001980
Winson Chunge7a03942011-08-05 15:05:12 -07001981 // Remove all pending runnables
1982 mHandler.removeMessages(ADVANCE_MSG);
1983 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001984 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001985
Winson Chungcd2b0142011-06-08 16:02:26 -07001986 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001987 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001988
1989 // It's possible to receive onDestroy after a new Launcher activity has
1990 // been created. In this case, don't interfere with the new Launcher.
1991 if (mModel.isCurrentCallbacks(this)) {
1992 mModel.stopLoader();
1993 app.setLauncher(null);
1994 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001995
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001996 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001997 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001998 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001999 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002000 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002001 mAppWidgetHost = null;
2002
2003 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002004
2005 TextKeyListener.getInstance().release();
2006
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002007 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002008
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002009 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002010 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002011 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002012 mWorkspace = null;
2013 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002014
Michael Jurka2ecf9952012-06-18 12:52:28 -07002015 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002016
2017 if (mLauncherCallbacks != null) {
2018 mLauncherCallbacks.onDestroy();
2019 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002020 }
2021
Adam Cohena9cf38f2011-05-02 15:36:58 -07002022 public DragController getDragController() {
2023 return mDragController;
2024 }
2025
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002026 @Override
2027 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002028 onStartForResult(requestCode);
2029 super.startActivityForResult(intent, requestCode);
2030 }
2031
2032 @Override
2033 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2034 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2035 onStartForResult(requestCode);
2036 try {
2037 super.startIntentSenderForResult(intent, requestCode,
2038 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2039 } catch (IntentSender.SendIntentException e) {
2040 throw new ActivityNotFoundException();
2041 }
2042 }
2043
2044 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002045 if (requestCode >= 0) {
2046 setWaitingForResult(true);
2047 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002048 }
2049
Winson Chung70d72102011-08-12 11:24:35 -07002050 /**
2051 * Indicates that we want global search for this activity by setting the globalSearch
2052 * argument for {@link #startSearch} to true.
2053 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002054 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002055 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002056 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002057
Karl Rosaen138a0412009-04-23 19:00:21 -07002058 if (initialQuery == null) {
2059 // Use any text typed in the launcher as the initial query
2060 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002061 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002062 if (appSearchData == null) {
2063 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002064 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002065 }
Winson Chungadf0c182012-08-23 14:59:07 -07002066 Rect sourceBounds = new Rect();
2067 if (mSearchDropTargetBar != null) {
2068 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2069 }
Romain Guycbb89e42009-06-08 15:52:54 -07002070
Ian Parkinson047036e2014-09-01 15:40:53 +01002071 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002072 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002073 if (clearTextImmediately) {
2074 clearTypedText();
2075 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002076
2077 // We need to show the workspace after starting the search
2078 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002079 }
2080
Ian Parkinson047036e2014-09-01 15:40:53 +01002081 /**
2082 * Start a text search.
2083 *
2084 * @return {@code true} if the search will start immediately, so any further keypresses
2085 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2086 * to buffer keypresses.
2087 */
2088 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002089 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002090 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2091 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2092 sourceBounds);
2093 }
2094
Michael Jurkaa33411c2012-06-14 16:18:21 -07002095 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002096 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002097 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002098 }
2099
2100 /**
2101 * Starts the global search activity. This code is a copied from SearchManager
2102 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002103 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002104 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002105 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002106 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2107 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2108 if (globalSearchActivity == null) {
2109 Log.w(TAG, "No global search activity found.");
2110 return;
2111 }
2112 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2113 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2114 intent.setComponent(globalSearchActivity);
2115 // Make sure that we have a Bundle to put source in
2116 if (appSearchData == null) {
2117 appSearchData = new Bundle();
2118 } else {
2119 appSearchData = new Bundle(appSearchData);
2120 }
Adam Cohen9211d422014-10-07 18:14:53 -07002121 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002122 if (!appSearchData.containsKey("source")) {
2123 appSearchData.putString("source", getPackageName());
2124 }
2125 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2126 if (!TextUtils.isEmpty(initialQuery)) {
2127 intent.putExtra(SearchManager.QUERY, initialQuery);
2128 }
2129 if (selectInitialQuery) {
2130 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2131 }
2132 intent.setSourceBounds(sourceBounds);
2133 try {
2134 startActivity(intent);
2135 } catch (ActivityNotFoundException ex) {
2136 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2137 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002138 }
2139
Winson Chungbedf9232015-07-10 12:38:30 -07002140 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2141 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2142 return;
2143 }
2144
2145 // If not handled, then just start the provided search intent
2146 startActivitySafely(v, searchIntent, null);
2147 }
2148
Yura4f93ec62014-02-04 14:15:21 +00002149 public boolean isOnCustomContent() {
2150 return mWorkspace.isOnOrMovingToCustomContent();
2151 }
2152
Winson Chung70d72102011-08-12 11:24:35 -07002153 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002154 public boolean onPrepareOptionsMenu(Menu menu) {
2155 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002156 if (!isOnCustomContent()) {
2157 // Close any open folders
2158 closeFolder();
2159 // Stop resizing any widgets
2160 mWorkspace.exitWidgetResizeMode();
2161 if (!mWorkspace.isInOverviewMode()) {
2162 // Show the overview mode
2163 showOverviewMode(true);
2164 } else {
2165 showWorkspace(true);
2166 }
Winson Chunge0298742014-01-17 12:03:00 -08002167 }
Adam Cohen9211d422014-10-07 18:14:53 -07002168 if (mLauncherCallbacks != null) {
2169 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2170 }
2171
Michael Jurkab94f3f82013-09-11 18:08:54 +02002172 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002173 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002174
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002175 @Override
2176 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002177 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002178 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002179 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002180 }
2181
Joe Onorato9c1289c2009-08-17 11:03:03 -04002182 public boolean isWorkspaceLocked() {
2183 return mWorkspaceLoading || mWaitingForResult;
2184 }
2185
Adam Cohen517a7f52014-03-01 12:12:59 -08002186 public boolean isWorkspaceLoading() {
2187 return mWorkspaceLoading;
2188 }
2189
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002190 private void setWorkspaceLoading(boolean value) {
2191 boolean isLocked = isWorkspaceLocked();
2192 mWorkspaceLoading = value;
2193 if (isLocked != isWorkspaceLocked()) {
2194 onWorkspaceLockedChanged();
2195 }
2196 }
2197
2198 private void setWaitingForResult(boolean value) {
2199 boolean isLocked = isWorkspaceLocked();
2200 mWaitingForResult = value;
2201 if (isLocked != isWorkspaceLocked()) {
2202 onWorkspaceLockedChanged();
2203 }
2204 }
2205
Adam Cohen9211d422014-10-07 18:14:53 -07002206 protected void onWorkspaceLockedChanged() {
2207 if (mLauncherCallbacks != null) {
2208 mLauncherCallbacks.onWorkspaceLockedChanged();
2209 }
2210 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002211
Michael Jurka0280c3b2010-09-17 15:00:07 -07002212 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002213 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002214 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002215 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2216 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002217 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002218 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002219 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002220
Sunny Goyale6b63a32015-01-16 16:14:29 -08002221 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002222 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002223 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2224 }
2225
Sunny Goyale6b63a32015-01-16 16:14:29 -08002226 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002227 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2228 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002229 if (appWidgetInfo.configure != null) {
2230 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002231 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002232
Bjorn Bringert7984c942009-12-09 15:38:25 +00002233 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002234 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2235 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2236
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002237 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002238 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002239 Runnable onComplete = new Runnable() {
2240 @Override
2241 public void run() {
2242 // Exit spring loaded mode if necessary after adding the widget
2243 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2244 null);
2245 }
2246 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002247 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002248 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002249 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002250 }
2251 }
Romain Guycbb89e42009-06-08 15:52:54 -07002252
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002253 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002254 // Close any folders that may be open.
2255 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002256 mWorkspace.moveToCustomContentScreen(animate);
2257 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002258
2259 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2260 int[] cell, int spanX, int spanY) {
2261 switch (info.itemType) {
2262 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2263 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2264 int span[] = new int[2];
2265 span[0] = spanX;
2266 span[1] = spanY;
2267 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2268 container, screenId, cell, span);
2269 break;
2270 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2271 processShortcutFromDrop(info.componentName, container, screenId, cell);
2272 break;
2273 default:
2274 throw new IllegalStateException("Unknown item type: " + info.itemType);
2275 }
2276 }
2277
Adam Cohenfbba09b2011-07-18 21:43:05 -07002278 /**
2279 * Process a shortcut drop.
2280 *
2281 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002282 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002283 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002284 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002285 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2286 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002287 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002288 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002289 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002290 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002291
2292 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002293 mPendingAddInfo.cellX = cell[0];
2294 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002295 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002296
2297 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2298 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002299 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002300 }
2301
Adam Cohenfbba09b2011-07-18 21:43:05 -07002302 /**
2303 * Process a widget drop.
2304 *
2305 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002306 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002307 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002308 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002309 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2310 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002311 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002312 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002313 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002314 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002315 mPendingAddInfo.minSpanX = info.minSpanX;
2316 mPendingAddInfo.minSpanY = info.minSpanY;
2317
Adam Cohenfbba09b2011-07-18 21:43:05 -07002318 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002319 mPendingAddInfo.cellX = cell[0];
2320 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002321 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002322 if (span != null) {
2323 mPendingAddInfo.spanX = span[0];
2324 mPendingAddInfo.spanY = span[1];
2325 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002326
Adam Cohened66b2b2012-01-23 17:28:51 -08002327 AppWidgetHostView hostView = info.boundWidget;
2328 int appWidgetId;
2329 if (hostView != null) {
2330 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002331 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002332
2333 // Clear the boundWidget so that it doesn't get destroyed.
2334 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002335 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002336 // In this case, we either need to start an activity to get permission to bind
2337 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002338 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002339 Bundle options = info.bindOptions;
2340
Sunny Goyalffe83f12014-08-14 17:39:34 -07002341 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2342 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002343 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002344 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002345 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002346 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002347 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2348 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2349 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002350 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2351 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002352 // TODO: we need to make sure that this accounts for the options bundle.
2353 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002354 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2355 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002356 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002357 }
2358
Adam Cohendcd297f2013-06-18 13:13:40 -07002359 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002360 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002361 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002362 folderInfo.title = getText(R.string.folder_name);
2363
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002364 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002365 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2366 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002367 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002368
2369 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002370 FolderIcon newFolder =
2371 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002372 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002373 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002374 // Force measure the new folder icon
2375 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2376 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002377 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002378 }
Romain Guycbb89e42009-06-08 15:52:54 -07002379
Joe Onorato9c1289c2009-08-17 11:03:03 -04002380 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002381 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002382 }
2383
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002384 @Override
2385 public boolean dispatchKeyEvent(KeyEvent event) {
2386 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2387 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002388 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002389 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002390 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002391 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002392 dumpState();
2393 return true;
2394 }
2395 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002396 }
2397 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2398 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002399 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002400 return true;
2401 }
2402 }
2403
2404 return super.dispatchKeyEvent(event);
2405 }
2406
Joe Onorato88ec0992009-11-19 13:16:06 -08002407 @Override
2408 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002409 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2410 return;
2411 }
2412
Sunny Goyal45478022015-06-08 16:52:41 -07002413 if (mDragController.isDragging()) {
2414 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002415 return;
2416 }
2417
Winson Chungb745afb2015-03-02 11:51:23 -08002418 if (isAppsViewVisible()) {
2419 showWorkspace(true);
2420 } else if (isWidgetsViewVisible()) {
2421 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002422 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002423 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002424 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002425 Folder openFolder = mWorkspace.getOpenFolder();
2426 if (openFolder.isEditingName()) {
2427 openFolder.dismissEditingName();
2428 } else {
2429 closeFolder();
2430 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002431 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002432 mWorkspace.exitWidgetResizeMode();
2433
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002434 // Back button is a no-op here, but give at least some feedback for the button press
2435 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002436 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002437 }
2438
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002439 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002440 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002441 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002442 @Override
2443 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002444 if (mAppWidgetHost != null) {
2445 mAppWidgetHost.startListening();
2446 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002447 }
2448
2449 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002450 * Launches the intent referred by the clicked shortcut.
2451 *
2452 * @param v The view representing the clicked shortcut.
2453 */
2454 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002455 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2456 // view has detached (it's possible for this to happen if the view is removed mid touch).
2457 if (v.getWindowToken() == null) {
2458 return;
2459 }
2460
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002461 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002462 return;
2463 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002464
Adam Cohen1697b792013-09-17 19:08:21 -07002465 if (v instanceof Workspace) {
2466 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002467 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002468 }
2469 return;
2470 }
2471
2472 if (v instanceof CellLayout) {
2473 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002474 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002475 }
2476 }
2477
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002478 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002479 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002480 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002481 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002482 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002483 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002484 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002485 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002486 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002487 } else if (tag instanceof AppInfo) {
2488 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002489 } else if (tag instanceof LauncherAppWidgetInfo) {
2490 if (v instanceof PendingAppWidgetHostView) {
2491 onClickPendingWidget((PendingAppWidgetHostView) v);
2492 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002493 }
2494 }
2495
Sunny Goyal70660032015-05-14 00:07:08 -07002496 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002497 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002498 return false;
2499 }
2500
Michael Jurkaaf442092010-06-10 17:01:57 -07002501 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002502 * Event handler for the app widget view which has not fully restored.
2503 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002504 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002505 if (mIsSafeModeEnabled) {
2506 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2507 return;
2508 }
2509
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002510 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002511 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002512 int widgetId = info.appWidgetId;
2513 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2514 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002515 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2516 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002517 mPendingAddInfo.copyFrom(info);
2518 mPendingAddWidgetId = widgetId;
2519
Sunny Goyalffe83f12014-08-14 17:39:34 -07002520 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2521 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002522 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002523 } else if (info.installProgress < 0) {
2524 // The install has not been queued
2525 final String packageName = info.providerName.getPackageName();
2526 showBrokenAppInstallDialog(packageName,
2527 new DialogInterface.OnClickListener() {
2528 public void onClick(DialogInterface dialog, int id) {
2529 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2530 }
2531 });
2532 } else {
2533 // Download has started.
2534 final String packageName = info.providerName.getPackageName();
2535 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002536 }
2537 }
2538
2539 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002540 * Event handler for the "grid" button that appears on the home screen, which
2541 * enters all apps mode.
2542 *
2543 * @param v The view that was clicked.
2544 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002545 protected void onClickAllAppsButton(View v) {
2546 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002547 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002548 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002549 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002550
2551 if (mLauncherCallbacks != null) {
2552 mLauncherCallbacks.onClickAllAppsButton(v);
2553 }
Winson Chung76648c52015-07-10 14:33:23 -07002554 }
2555 }
2556
2557 protected void onLongClickAllAppsButton(View v) {
2558 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2559 if (!isAppsViewVisible()) {
2560 showAppsView(true /* animated */, false /* resetListToTop */,
2561 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002562 }
2563 }
2564
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002565 private void showBrokenAppInstallDialog(final String packageName,
2566 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002567 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002568 .setTitle(R.string.abandoned_promises_title)
2569 .setMessage(R.string.abandoned_promise_explanation)
2570 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2571 .setNeutralButton(R.string.abandoned_clean_this,
2572 new DialogInterface.OnClickListener() {
2573 public void onClick(DialogInterface dialog, int id) {
2574 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2575 mWorkspace.removeAbandonedPromise(packageName, user);
2576 }
2577 })
2578 .create().show();
2579 return;
2580 }
2581
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002582 /**
2583 * Event handler for an app shortcut click.
2584 *
2585 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2586 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002587 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002588 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2589 Object tag = v.getTag();
2590 if (!(tag instanceof ShortcutInfo)) {
2591 throw new IllegalArgumentException("Input must be a Shortcut");
2592 }
2593
2594 // Open shortcut
2595 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002596
2597 if (shortcut.isDisabled != 0) {
2598 int error = R.string.activity_not_available;
2599 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2600 error = R.string.safemode_shortcut_error;
2601 }
2602 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2603 return;
2604 }
2605
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002606 final Intent intent = shortcut.intent;
2607
2608 // Check for special shortcuts
2609 if (intent.getComponent() != null) {
2610 final String shortcutClass = intent.getComponent().getClassName();
2611
2612 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2613 MemoryDumpActivity.startDump(this);
2614 return;
2615 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2616 toggleShowWeightWatcher();
2617 return;
2618 }
2619 }
2620
Chris Wren40c5ed32014-06-24 18:24:23 -04002621 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002622 if ((v instanceof BubbleTextView)
2623 && shortcut.isPromise()
2624 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002625 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002626 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002627 new DialogInterface.OnClickListener() {
2628 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002629 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002630 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002631 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002632 return;
2633 }
2634
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002635 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002636 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002637
2638 if (mLauncherCallbacks != null) {
2639 mLauncherCallbacks.onClickAppShortcut(v);
2640 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002641 }
2642
Adam Cohen091440a2015-03-18 14:16:05 -07002643 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002644 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002645 final ShortcutInfo shortcut;
2646 final Intent intent;
2647 if (tag instanceof ShortcutInfo) {
2648 shortcut = (ShortcutInfo) tag;
2649 intent = shortcut.intent;
2650 int[] pos = new int[2];
2651 v.getLocationOnScreen(pos);
2652 intent.setSourceBounds(new Rect(pos[0], pos[1],
2653 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002654
Sunny Goyal508da152014-08-14 10:53:27 -07002655 } else if (tag instanceof AppInfo) {
2656 shortcut = null;
2657 intent = ((AppInfo) tag).intent;
2658 } else {
2659 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2660 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002661
2662 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002663 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002664
2665 if (success && v instanceof BubbleTextView) {
2666 mWaitingForResume = (BubbleTextView) v;
2667 mWaitingForResume.setStayPressed(true);
2668 }
2669 }
2670
2671 /**
2672 * Event handler for a folder icon click.
2673 *
2674 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2675 */
2676 protected void onClickFolderIcon(View v) {
2677 if (LOGD) Log.d(TAG, "onClickFolder");
2678 if (!(v instanceof FolderIcon)){
2679 throw new IllegalArgumentException("Input must be a FolderIcon");
2680 }
2681
Sunny Goyal317698b2015-07-29 11:45:41 -07002682 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002683 FolderIcon folderIcon = (FolderIcon) v;
2684 final FolderInfo info = folderIcon.getFolderInfo();
2685 Folder openFolder = mWorkspace.getFolderForTag(info);
2686
2687 // If the folder info reports that the associated folder is open, then verify that
2688 // it is actually opened. There have been a few instances where this gets out of sync.
2689 if (info.opened && openFolder == null) {
2690 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2691 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2692 info.opened = false;
2693 }
2694
2695 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2696 // Close any open folder
2697 closeFolder();
2698 // Open the requested folder
2699 openFolder(folderIcon);
2700 } else {
2701 // Find the open folder...
2702 int folderScreen;
2703 if (openFolder != null) {
2704 folderScreen = mWorkspace.getPageForView(openFolder);
2705 // .. and close it
2706 closeFolder(openFolder);
2707 if (folderScreen != mWorkspace.getCurrentPage()) {
2708 // Close any folder open on the current screen
2709 closeFolder();
2710 // Pull the folder onto this screen
2711 openFolder(folderIcon);
2712 }
2713 }
2714 }
Adam Cohen9211d422014-10-07 18:14:53 -07002715
2716 if (mLauncherCallbacks != null) {
2717 mLauncherCallbacks.onClickFolderIcon(v);
2718 }
Michael Jurka5130e402011-10-13 04:55:35 -07002719 }
2720
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002721 /**
2722 * Event handler for the (Add) Widgets button that appears after a long press
2723 * on the home screen.
2724 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002725 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002726 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002727 if (mIsSafeModeEnabled) {
2728 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2729 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002730 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002731 if (mLauncherCallbacks != null) {
2732 mLauncherCallbacks.onClickAddWidgetButton(view);
2733 }
Adam Cohen9211d422014-10-07 18:14:53 -07002734 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002735 }
2736
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002737 /**
2738 * Event handler for the wallpaper picker button that appears after a long press
2739 * on the home screen.
2740 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002741 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002742 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002743 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2744 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002745
2746 if (mLauncherCallbacks != null) {
2747 mLauncherCallbacks.onClickWallpaperPicker(v);
2748 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002749 }
2750
2751 /**
2752 * Event handler for a click on the settings button that appears after a long press
2753 * on the home screen.
2754 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002755 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002756 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002757 if (mLauncherCallbacks != null) {
2758 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002759 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002760 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002761 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002762 }
2763
Adam Cohen61f560d2013-09-30 15:58:20 -07002764 public View.OnTouchListener getHapticFeedbackTouchListener() {
2765 if (mHapticFeedbackTouchListener == null) {
2766 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002767 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002768 @Override
2769 public boolean onTouch(View v, MotionEvent event) {
2770 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2771 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2772 }
2773 return false;
2774 }
2775 };
2776 }
2777 return mHapticFeedbackTouchListener;
2778 }
2779
Adam Cohen9211d422014-10-07 18:14:53 -07002780 public void onDragStarted(View view) {
2781 if (isOnCustomContent()) {
2782 // Custom content screen doesn't participate in drag and drop. If on custom
2783 // content screen, move to default.
2784 moveWorkspaceToDefaultScreen();
2785 }
2786
2787 if (mLauncherCallbacks != null) {
2788 mLauncherCallbacks.onDragStarted(view);
2789 }
2790 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002791
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002792 /**
2793 * Called when the user stops interacting with the launcher.
2794 * This implies that the user is now on the homescreen and is not doing housekeeping.
2795 */
Adam Cohen9211d422014-10-07 18:14:53 -07002796 protected void onInteractionEnd() {
2797 if (mLauncherCallbacks != null) {
2798 mLauncherCallbacks.onInteractionEnd();
2799 }
2800 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002801
2802 /**
2803 * Called when the user starts interacting with the launcher.
2804 * The possible interactions are:
2805 * - open all apps
2806 * - reorder an app shortcut, or a widget
2807 * - open the overview mode.
2808 * This is a good time to stop doing things that only make sense
2809 * when the user is on the homescreen and not doing housekeeping.
2810 */
Adam Cohen9211d422014-10-07 18:14:53 -07002811 protected void onInteractionBegin() {
2812 if (mLauncherCallbacks != null) {
2813 mLauncherCallbacks.onInteractionBegin();
2814 }
2815 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002816
Winson Chungcd99cd32015-04-29 11:03:24 -07002817 /** Updates the interaction state. */
2818 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002819 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002820 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002821 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2822 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002823 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002824 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002825 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002826 onInteractionEnd();
2827 }
2828 }
2829
Kenny Guyf07af7b2014-07-31 11:39:16 +01002830 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002831 try {
2832 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002833 launcherApps.showAppDetailsForProfile(componentName, user);
2834 } catch (SecurityException e) {
2835 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2836 Log.e(TAG, "Launcher does not have permission to launch settings");
2837 } catch (ActivityNotFoundException e) {
2838 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2839 Log.e(TAG, "Unable to launch settings");
2840 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002841 }
2842
Michael Jurka1e2f4652013-07-08 18:03:46 -07002843 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002844 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2845 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002846 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002847 // System applications cannot be installed. For now, show a toast explaining that.
2848 // We may give them the option of disabling apps this way.
2849 int messageId = R.string.uninstall_system_app_text;
2850 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002851 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002852 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002853 String packageName = componentName.getPackageName();
2854 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002855 Intent intent = new Intent(
2856 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002857 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2858 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002859 if (user != null) {
2860 user.addToIntent(intent, Intent.EXTRA_USER);
2861 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002862 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002863 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002864 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002865 }
2866
Winson Chung8f1eff72015-05-28 17:33:40 -07002867 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002868 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002869 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002870 // Only launch using the new animation if the shortcut has not opted out (this is a
2871 // private contract between launcher and may be ignored in the future).
2872 boolean useLaunchAnimation = (v != null) &&
2873 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002874 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2875 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002876
Kenny Guy1317e2d2014-05-08 18:52:50 +01002877 UserHandleCompat user = null;
2878 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2879 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2880 user = userManager.getUserForSerialNumber(serialNumber);
2881 }
2882
2883 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002884 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002885 ActivityOptions opts = null;
2886 if (sClipRevealMethod != null) {
2887 // TODO: call method directly when Launcher3 can depend on M APIs
2888 int left = 0, top = 0;
2889 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2890 if (v instanceof TextView) {
2891 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002892 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2893 if (icon != null) {
2894 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002895 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002896 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002897 width = bounds.width();
2898 height = bounds.height();
2899 }
2900 }
2901 try {
2902 opts = (ActivityOptions) sClipRevealMethod.invoke(null, v,
2903 left, top, width, height);
2904 } catch (IllegalAccessException e) {
2905 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2906 sClipRevealMethod = null;
2907 } catch (InvocationTargetException e) {
2908 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2909 sClipRevealMethod = null;
2910 }
2911 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002912 if (opts == null && !Utilities.isLmpOrAbove()) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002913 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002914 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002915 v.getMeasuredWidth(), v.getMeasuredHeight());
Adam Cohen947e02b2015-05-22 19:23:34 -07002916 } else if (opts == null && Utilities.isLmpMR1()) {
2917 // On L devices, we use the device default slide-up transition.
2918 // On L MR1 devices, we a custom version of the slide-up transition which
2919 // doesn't have the delay present in the device default.
2920 opts = ActivityOptions.makeCustomAnimation(this,
2921 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002922 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002923 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002924 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002925
2926 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2927 // Could be launching some bookkeeping activity
2928 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002929 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002930 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002931 launcherApps.startActivityForProfile(intent.getComponent(), user,
2932 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002933 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002934 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002935 } catch (SecurityException e) {
2936 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002937 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002938 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002939 "or use the exported attribute for this activity. "
2940 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002941 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002942 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002943 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002944
Winson Chungbedf9232015-07-10 12:38:30 -07002945 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002946 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002947 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2948 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2949 return false;
2950 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002951 try {
2952 success = startActivity(v, intent, tag);
2953 } catch (ActivityNotFoundException e) {
2954 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2955 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2956 }
2957 return success;
2958 }
2959
Adam Cohen268c4752012-06-06 17:47:33 -07002960 /**
2961 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2962 * in the DragLayer in the exact absolute location of the original FolderIcon.
2963 */
2964 private void copyFolderIconToImage(FolderIcon fi) {
2965 final int width = fi.getMeasuredWidth();
2966 final int height = fi.getMeasuredHeight();
2967
2968 // Lazy load ImageView, Bitmap and Canvas
2969 if (mFolderIconImageView == null) {
2970 mFolderIconImageView = new ImageView(this);
2971 }
2972 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2973 mFolderIconBitmap.getHeight() != height) {
2974 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2975 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2976 }
2977
2978 DragLayer.LayoutParams lp;
2979 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2980 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2981 } else {
2982 lp = new DragLayer.LayoutParams(width, height);
2983 }
2984
Adam Cohen307fe232012-08-16 17:55:58 -07002985 // The layout from which the folder is being opened may be scaled, adjust the starting
2986 // view size by this scale factor.
2987 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002988 lp.customPosition = true;
2989 lp.x = mRectForFolderAnimation.left;
2990 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002991 lp.width = (int) (scale * width);
2992 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002993
2994 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2995 fi.draw(mFolderIconCanvas);
2996 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002997 if (fi.getFolder() != null) {
2998 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2999 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003000 }
Adam Cohen268c4752012-06-06 17:47:33 -07003001 // Just in case this image view is still in the drag layer from a previous animation,
3002 // we remove it and re-add it.
3003 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3004 mDragLayer.removeView(mFolderIconImageView);
3005 }
3006 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003007 if (fi.getFolder() != null) {
3008 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003009 }
Adam Cohen268c4752012-06-06 17:47:33 -07003010 }
3011
Adam Cohen2801caf2011-05-13 20:57:39 -07003012 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003013 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003014 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3015 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3016 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3017
Adam Cohenc51934b2011-07-26 21:07:43 -07003018 FolderInfo info = (FolderInfo) fi.getTag();
3019 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3020 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003021 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3022 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003023 }
3024
Adam Cohen268c4752012-06-06 17:47:33 -07003025 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3026 copyFolderIconToImage(fi);
3027 fi.setVisibility(View.INVISIBLE);
3028
Michael Jurka2ecf9952012-06-18 12:52:28 -07003029 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003030 scaleX, scaleY);
Kenny Guyd794a3f2014-09-16 15:17:58 +01003031 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003032 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3033 }
3034 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003035 oa.start();
3036 }
3037
Adam Cohen268c4752012-06-06 17:47:33 -07003038 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003039 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003040 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3041 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3042 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3043
Adam Cohen268c4752012-06-06 17:47:33 -07003044 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003045
Adam Cohen268c4752012-06-06 17:47:33 -07003046 // We remove and re-draw the FolderIcon in-case it has changed
3047 mDragLayer.removeView(mFolderIconImageView);
3048 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003049 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003050 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003051 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003052 oa.addListener(new AnimatorListenerAdapter() {
3053 @Override
3054 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003055 if (cl != null) {
3056 cl.clearFolderLeaveBehind();
3057 // Remove the ImageView copy of the FolderIcon and make the original visible.
3058 mDragLayer.removeView(mFolderIconImageView);
3059 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003060 }
3061 }
3062 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003063 oa.start();
3064 }
3065
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003066 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003067 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003068 * is animated relative to the specified View. If the View is null, no animation
3069 * is played.
3070 *
3071 * @param folderInfo The FolderInfo describing the folder to open.
3072 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003073 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003074 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003075 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3076 if (openFolder != null && openFolder != folder) {
3077 // Close any open folder before opening a folder.
3078 closeFolder();
3079 }
3080
Adam Cohena9cf38f2011-05-02 15:36:58 -07003081 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003082
Adam Cohena9cf38f2011-05-02 15:36:58 -07003083 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003084
Sunny Goyalf4066152015-04-15 09:42:19 -07003085 // While the folder is open, the position of the icon cannot change.
3086 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3087
Adam Cohen4554ee12011-08-03 16:13:21 -07003088 // Just verify that the folder hasn't already been added to the DragLayer.
3089 // There was a one-off crash where the folder had a parent already.
3090 if (folder.getParent() == null) {
3091 mDragLayer.addView(folder);
3092 mDragController.addDropTarget((DropTarget) folder);
3093 } else {
3094 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3095 folder.getParent() + ").");
3096 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003097 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003098 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003099
3100 // Notify the accessibility manager that this folder "window" has appeared and occluded
3101 // the workspace items
3102 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3103 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003104 }
3105
3106 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003107 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003108 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003109 if (folder.isEditingName()) {
3110 folder.dismissEditingName();
3111 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003112 closeFolder(folder);
3113 }
3114 }
3115
Sunny Goyal83a8f042015-05-19 12:52:12 -07003116 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003117 folder.getInfo().opened = false;
3118
3119 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3120 if (parent != null) {
3121 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3122 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003123 if (fi != null) {
3124 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3125 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003126 }
3127 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003128
3129 // Notify the accessibility manager that this folder "window" has disappeard and no
3130 // longer occludeds the workspace items
3131 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003132 }
3133
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003134 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003135 if (!isDraggingEnabled()) return false;
3136 if (isWorkspaceLocked()) return false;
3137 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003138
Winson Chung76648c52015-07-10 14:33:23 -07003139 if (v == mAllAppsButton) {
3140 onLongClickAllAppsButton(v);
3141 return true;
3142 }
3143
Adam Cohen1697b792013-09-17 19:08:21 -07003144 if (v instanceof Workspace) {
3145 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003146 if (!mWorkspace.isTouchActive()) {
3147 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003148 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3149 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3150 return true;
3151 } else {
3152 return false;
3153 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003154 } else {
3155 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003156 }
Adam Cohen1697b792013-09-17 19:08:21 -07003157 }
3158
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003159 CellLayout.CellInfo longClickCellInfo = null;
3160 View itemUnderLongClick = null;
3161 if (v.getTag() instanceof ItemInfo) {
3162 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003163 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003164 itemUnderLongClick = longClickCellInfo.cell;
3165 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003166 }
3167
Winson Chung3d503fb2011-07-13 17:25:49 -07003168 // The hotseat touch handling does not go through Workspace, and we always allow long press
3169 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003170 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003171 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003172 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003173 // User long pressed on empty space
3174 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3175 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003176 if (mWorkspace.isInOverviewMode()) {
3177 mWorkspace.startReordering(v);
3178 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003179 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003180 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003181 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003182 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3183 mHotseat.getOrderInHotseat(
3184 longClickCellInfo.cellX,
3185 longClickCellInfo.cellY));
3186 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003187 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003188 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003189 }
3190 }
3191 }
3192 return true;
3193 }
3194
Winson Chung3d503fb2011-07-13 17:25:49 -07003195 boolean isHotseatLayout(View layout) {
3196 return mHotseat != null && layout != null &&
3197 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3198 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003199
Winson Chung3d503fb2011-07-13 17:25:49 -07003200 /**
3201 * Returns the CellLayout of the specified container at the specified screen.
3202 */
Sunny Goyal92820592015-03-02 11:31:35 -08003203 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003204 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3205 if (mHotseat != null) {
3206 return mHotseat.getLayout();
3207 } else {
3208 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003209 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003210 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003211 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003212 }
3213 }
3214
Winson Chungb745afb2015-03-02 11:51:23 -08003215 /**
3216 * For overridden classes.
3217 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003218 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003219 return isAppsViewVisible();
3220 }
3221
3222 public boolean isAppsViewVisible() {
3223 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3224 }
3225
3226 public boolean isWidgetsViewVisible() {
3227 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003228 }
3229
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003230 private void setWorkspaceBackground(int background) {
3231 switch (background) {
3232 case WORKSPACE_BACKGROUND_TRANSPARENT:
3233 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3234 break;
3235 case WORKSPACE_BACKGROUND_BLACK:
3236 getWindow().setBackgroundDrawable(null);
3237 break;
3238 default:
3239 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3240 }
Craig Mautner360310b2012-10-26 15:13:08 -07003241 }
3242
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003243 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003244 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3245 int curflags = getWindow().getAttributes().flags
3246 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3247 if (wpflags != curflags) {
3248 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3249 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003250 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003251 }
3252
Michael Jurkae326f182011-11-21 14:05:46 -08003253 @Override
3254 public void onTrimMemory(int level) {
3255 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003256 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3257 // The widget preview db can result in holding onto over
3258 // 3MB of memory for caching which isn't necessary.
3259 SQLiteDatabase.releaseMemory();
3260
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003261 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003262 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003263 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003264 if (mLauncherCallbacks != null) {
3265 mLauncherCallbacks.onTrimMemory(level);
3266 }
Michael Jurkae326f182011-11-21 14:05:46 -08003267 }
3268
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003269 public void showWorkspace(boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003270 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003271 }
3272
Sunny Goyal83a8f042015-05-19 12:52:12 -07003273 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003274 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003275 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003276 }
3277
3278 protected void showWorkspace(int snapToPage, boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003279 showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003280 }
3281
Winson Chungef7f8742015-06-04 17:18:17 -07003282 void showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003283 boolean changed = mState != State.WORKSPACE ||
3284 mWorkspace.getState() != Workspace.State.NORMAL;
3285 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003286 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003287 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3288 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003289
Michael Jurkab3e22d92011-10-31 15:58:33 -07003290 // Set focus to the AppsCustomize button
3291 if (mAllAppsButton != null) {
3292 mAllAppsButton.requestFocus();
3293 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003294 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003295
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003296 // Change the state *after* we've called all the transition code
3297 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003298
Winson Chung5fb63472011-02-02 17:03:37 -08003299 // Resume the auto-advance of widgets
3300 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003301 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003302
Winson Chung0f785722015-04-08 10:27:49 -07003303 if (changed) {
3304 // Send an accessibility event to announce the context change
3305 getWindow().getDecorView()
3306 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003307 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003308 }
3309
Adam Cohened307df2013-10-02 09:37:31 -07003310 void showOverviewMode(boolean animated) {
3311 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003312 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3313 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003314 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3315 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003316 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003317 }
3318
Winson Chungb745afb2015-03-02 11:51:23 -08003319 /**
3320 * Shows the apps view.
3321 */
Winson Chung76648c52015-07-10 14:33:23 -07003322 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3323 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003324 if (resetListToTop) {
3325 mAppsView.scrollToTop();
3326 }
Winson Chung4ac30062015-05-08 17:34:17 -07003327 if (updatePredictedApps) {
3328 tryAndUpdatePredictedApps();
3329 }
Winson Chung76648c52015-07-10 14:33:23 -07003330 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003331 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003332
Winson Chungb745afb2015-03-02 11:51:23 -08003333 /**
3334 * Shows the widgets view.
3335 */
3336 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003337 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003338 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003339 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003340 }
Winson Chung76648c52015-07-10 14:33:23 -07003341 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003342
3343 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003344 @Override
3345 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003346 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003347 }
3348 });
Winson Chungb745afb2015-03-02 11:51:23 -08003349 }
3350
3351 /**
3352 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003353 *
3354 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003355 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003356 // TODO: calling method should use the return value so that when {@code false} is returned
3357 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003358 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003359 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3360 mState != State.WIDGETS_SPRING_LOADED) {
3361 return false;
3362 }
3363 if (toState != State.APPS && toState != State.WIDGETS) {
3364 return false;
3365 }
Winson Chungb745afb2015-03-02 11:51:23 -08003366
3367 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003368 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3369 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003370 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003371 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003372 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003373
Michael Jurkab3e22d92011-10-31 15:58:33 -07003374 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003375 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003376
3377 // Pause the auto-advance of widgets until we are out of AllApps
3378 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003379 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003380 closeFolder();
3381
3382 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003383 getWindow().getDecorView()
3384 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003385 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003386 }
3387
Winson Chungcd99cd32015-04-29 11:03:24 -07003388 /**
3389 * Updates the workspace and interaction state on state change, and return the animation to this
3390 * new state.
3391 */
3392 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003393 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003394 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003395 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003396 updateInteraction(fromState, toState);
3397 return anim;
3398 }
3399
Hyunyoung Song3f471442015-04-08 19:01:34 -07003400 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003401 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003402 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3403 mState == State.WIDGETS_SPRING_LOADED) {
3404 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003405 }
Winson Chungb745afb2015-03-02 11:51:23 -08003406
Winson Chung006ee262015-08-03 14:40:11 -07003407 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3408 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003409 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3410 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003411 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003412 }
Adam Cohen7777d962011-08-18 18:58:38 -07003413
Hyunyoung Song3f471442015-04-08 19:01:34 -07003414 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003415 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003416 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003417
Winson Chunge7a03942011-08-05 15:05:12 -07003418 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003419 @Override
3420 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003421 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003422 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3423 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003424 // Before we show workspace, hide all apps again because
3425 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3426 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003427 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003428 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003429 } else {
3430 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003431 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003432 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003433 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003434 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003435
Michael Jurkad3ef3062010-11-23 16:23:58 -08003436 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003437 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003438 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003439 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003440 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003441 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003442 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003443 }
3444
Winson Chung4ac30062015-05-08 17:34:17 -07003445 /**
3446 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3447 * resumed.
3448 */
3449 private void tryAndUpdatePredictedApps() {
3450 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003451 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003452 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003453 mAppsView.setPredictedApps(apps);
3454 }
3455 }
3456 }
3457
Michael Jurkab3e22d92011-10-31 15:58:33 -07003458 void lockAllApps() {
3459 // TODO
3460 }
3461
3462 void unlockAllApps() {
3463 // TODO
3464 }
3465
Sunny Goyal594d76d2014-11-06 10:12:54 -08003466 protected void disableVoiceButtonProxy(boolean disable) {
3467 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003468 }
3469
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003470 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003471 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3472 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003473 }
3474
Adam Cohen24ce0b32014-01-14 16:18:14 -08003475 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003476 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3477 if (searchProvider == null) {
3478 return null;
3479 }
3480
3481 Bundle opts = new Bundle();
3482 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003483 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003484
3485 SharedPreferences sp = getSharedPreferences(
3486 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3487 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003488 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003489 if (!searchProvider.provider.flattenToString().equals(
3490 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003491 || (widgetInfo == null)
3492 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003493 // A valid widget is not already bound.
3494 if (widgetId > -1) {
3495 mAppWidgetHost.deleteAppWidgetId(widgetId);
3496 widgetId = -1;
3497 }
3498
3499 // Try to bind a new widget
3500 widgetId = mAppWidgetHost.allocateAppWidgetId();
3501
3502 if (!AppWidgetManagerCompat.getInstance(this)
3503 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3504 mAppWidgetHost.deleteAppWidgetId(widgetId);
3505 widgetId = -1;
3506 }
3507
3508 sp.edit()
3509 .putInt(QSB_WIDGET_ID, widgetId)
3510 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3511 .commit();
3512 }
3513
Sunny Goyal8d595092015-07-06 12:22:14 -07003514 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003515 if (widgetId != -1) {
3516 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3517 mQsb.updateAppWidgetOptions(opts);
3518 mQsb.setPadding(0, 0, 0, 0);
3519 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003520 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003521 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003522 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003523 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003524 }
3525
Sunny Goyal22235bc2015-04-03 09:23:43 -07003526 private void reinflateQSBIfNecessary() {
3527 if (mQsb instanceof LauncherAppWidgetHostView &&
3528 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3529 mSearchDropTargetBar.removeView(mQsb);
3530 mQsb = null;
3531 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3532 }
3533 }
3534
Michael Jurkad7c28052012-04-27 15:43:36 -07003535 @Override
3536 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003537 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003538 final List<CharSequence> text = event.getText();
3539 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003540 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003541 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003542 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003543 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003544 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003545 } else if (mWorkspace != null) {
3546 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003547 } else {
3548 text.add(getString(R.string.all_apps_home_button_label));
3549 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003550 return result;
3551 }
3552
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003553 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003554 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003555 */
Adam Cohen091440a2015-03-18 14:16:05 -07003556 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003557 @Override
3558 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003559 closeSystemDialogs();
3560 }
3561 }
3562
3563 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003564 * If the activity is currently paused, signal that we need to run the passed Runnable
3565 * in onResume.
3566 *
3567 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003568 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3569 * wrong when we're not running, and if the activity comes back to what the configuration was
3570 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003571 *
3572 * Implementation of the method from LauncherModel.Callbacks.
3573 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003574 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003575 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003576 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003577 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003578 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003579 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003580 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003581 }
3582 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003583 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003584 return true;
3585 } else {
3586 return false;
3587 }
3588 }
3589
Michael Jurkac402cd92013-05-20 15:49:32 +02003590 private boolean waitUntilResume(Runnable run) {
3591 return waitUntilResume(run, false);
3592 }
3593
Michael Jurka1e2f4652013-07-08 18:03:46 -07003594 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003595 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003596 }
3597
Michael Jurka7607c2f2013-04-03 14:33:19 -07003598 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003599 * If the activity is currently paused, signal that we need to re-run the loader
3600 * in onResume.
3601 *
3602 * This needs to be called from incoming places where resources might have been loaded
3603 * while we are paused. That is becaues the Configuration might be wrong
3604 * when we're not running, and if it comes back to what it was when we
3605 * were paused, we are not restarted.
3606 *
3607 * Implementation of the method from LauncherModel.Callbacks.
3608 *
3609 * @return true if we are currently paused. The caller might be able to
3610 * skip some work in that case since we will come back again.
3611 */
3612 public boolean setLoadOnResume() {
3613 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003614 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003615 mOnResumeNeedsLoad = true;
3616 return true;
3617 } else {
3618 return false;
3619 }
3620 }
3621
3622 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003623 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003624 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003625 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003626 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003627 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003628 } else {
3629 return SCREEN_COUNT / 2;
3630 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003631 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003632
Joe Onorato9c1289c2009-08-17 11:03:03 -04003633 /**
3634 * Refreshes the shortcuts shown on the workspace.
3635 *
3636 * Implementation of the method from LauncherModel.Callbacks.
3637 */
3638 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003639 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003640
Michael Jurka7607c2f2013-04-03 14:33:19 -07003641 // If we're starting binding all over again, clear any bind calls we'd postponed in
3642 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3643 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003644 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003645
Winson Chungd64d1762013-08-20 14:37:16 -07003646 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003647 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003648 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003649
Michael Jurka05bf644e2011-11-30 20:28:53 -08003650 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003651 if (mHotseat != null) {
3652 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003653 }
3654 }
3655
Adam Cohendcd297f2013-06-18 13:13:40 -07003656 @Override
3657 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003658 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003659
Adam Cohen5084cba2013-09-03 12:01:16 -07003660 // If there are no screens, we need to have an empty screen
3661 if (orderedScreenIds.size() == 0) {
3662 mWorkspace.addExtraEmptyScreen();
3663 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003664
3665 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003666 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003667 if (hasCustomContentToLeft()) {
3668 mWorkspace.createCustomContentContainer();
3669 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003670 }
Winson Chung64359a52013-07-08 17:17:08 -07003671 }
3672
3673 @Override
3674 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003675 int count = orderedScreenIds.size();
3676 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003677 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003678 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003679 }
3680
Adam Cohen39a06042013-07-19 14:30:12 -07003681 private boolean shouldShowWeightWatcher() {
3682 String spKey = LauncherAppState.getSharedPreferencesKey();
3683 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003684 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003685
3686 return show;
3687 }
3688
3689 private void toggleShowWeightWatcher() {
3690 String spKey = LauncherAppState.getSharedPreferencesKey();
3691 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3692 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3693
3694 show = !show;
3695
3696 SharedPreferences.Editor editor = sp.edit();
3697 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3698 editor.commit();
3699
3700 if (mWeightWatcher != null) {
3701 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3702 }
3703 }
3704
Winson Chungd64d1762013-08-20 14:37:16 -07003705 public void bindAppsAdded(final ArrayList<Long> newScreens,
3706 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003707 final ArrayList<ItemInfo> addAnimated,
3708 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003709 Runnable r = new Runnable() {
3710 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003711 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003712 }
3713 };
3714 if (waitUntilResume(r)) {
3715 return;
3716 }
3717
Winson Chungd64d1762013-08-20 14:37:16 -07003718 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003719 if (newScreens != null) {
3720 bindAddScreens(newScreens);
3721 }
Winson Chungd64d1762013-08-20 14:37:16 -07003722
3723 // We add the items without animation on non-visible pages, and with
3724 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003725 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003726 bindItems(addNotAnimated, 0,
3727 addNotAnimated.size(), false);
3728 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003729 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003730 bindItems(addAnimated, 0,
3731 addAnimated.size(), true);
3732 }
Winson Chungc58497e2013-09-03 17:48:37 -07003733
Winson Chung87412982013-10-03 18:34:14 -07003734 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003735 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003736
Winson Chungb745afb2015-03-02 11:51:23 -08003737 if (addedApps != null && mAppsView != null) {
3738 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003739 }
Winson Chungd64d1762013-08-20 14:37:16 -07003740 }
3741
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003742 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003743 * Bind the items start-end from the list.
3744 *
3745 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003746 */
Winson Chung64359a52013-07-08 17:17:08 -07003747 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3748 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003749 Runnable r = new Runnable() {
3750 public void run() {
3751 bindItems(shortcuts, start, end, forceAnimateIcons);
3752 }
3753 };
3754 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003755 return;
3756 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003757
Winson Chungf0c6ae02012-03-21 16:10:31 -07003758 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003759 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3760 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003761 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003762 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003763 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003764 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003765 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003766
3767 // Short circuit if we are loading dock items for a configuration which has no dock
3768 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3769 mHotseat == null) {
3770 continue;
3771 }
3772
Joe Onorato9c1289c2009-08-17 11:03:03 -04003773 switch (item.itemType) {
3774 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3775 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003776 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003777 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003778
Winson Chung64359a52013-07-08 17:17:08 -07003779 /*
3780 * TODO: FIX collision case
3781 */
Winson Chungce376632013-07-11 16:12:41 -07003782 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3783 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3784 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003785 View v = cl.getChildAt(item.cellX, item.cellY);
3786 Object tag = v.getTag();
3787 String desc = "Collision while binding workspace item: " + item
3788 + ". Collides with " + tag;
3789 if (LauncherAppState.isDogfoodBuild()) {
3790 throw (new RuntimeException(desc));
3791 } else {
3792 Log.d(TAG, desc);
3793 }
Winson Chungce376632013-07-11 16:12:41 -07003794 }
Winson Chung64359a52013-07-08 17:17:08 -07003795 }
3796
Adam Cohendcd297f2013-06-18 13:13:40 -07003797 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3798 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003799 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003800 // Animate all the applications up now
3801 shortcut.setAlpha(0f);
3802 shortcut.setScaleX(0f);
3803 shortcut.setScaleY(0f);
3804 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003805 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003806 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003807 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003808 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003809 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003810 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003811 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003812 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3813 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003814 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003815 default:
3816 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003817 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003818 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003819
Winson Chung997a9232013-07-24 15:33:46 -07003820 if (animateIcons) {
3821 // Animate to the correct page
3822 if (newShortcutsScreenId > -1) {
3823 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003824 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003825 final Runnable startBounceAnimRunnable = new Runnable() {
3826 public void run() {
3827 anim.playTogether(bounceAnims);
3828 anim.start();
3829 }
3830 };
Winson Chung997a9232013-07-24 15:33:46 -07003831 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003832 // We post the animation slightly delayed to prevent slowdowns
3833 // when we are loading right after we return to launcher.
3834 mWorkspace.postDelayed(new Runnable() {
3835 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003836 if (mWorkspace != null) {
3837 mWorkspace.snapToPage(newScreenIndex);
3838 mWorkspace.postDelayed(startBounceAnimRunnable,
3839 NEW_APPS_ANIMATION_DELAY);
3840 }
Winson Chung94d67682013-09-25 16:29:40 -07003841 }
3842 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003843 } else {
3844 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003845 }
3846 }
Winson Chung64359a52013-07-08 17:17:08 -07003847 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003848 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003849 }
3850
Joe Onorato9c1289c2009-08-17 11:03:03 -04003851 /**
3852 * Implementation of the method from LauncherModel.Callbacks.
3853 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003854 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003855 Runnable r = new Runnable() {
3856 public void run() {
3857 bindFolders(folders);
3858 }
3859 };
3860 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003861 return;
3862 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003863 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003864 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003865
3866 /**
3867 * Add the views for a widget to the workspace.
3868 *
3869 * Implementation of the method from LauncherModel.Callbacks.
3870 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003871 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003872 Runnable r = new Runnable() {
3873 public void run() {
3874 bindAppWidget(item);
3875 }
3876 };
3877 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003878 return;
3879 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003880
Daniel Sandler843e8602010-06-07 14:59:01 -04003881 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3882 if (DEBUG_WIDGETS) {
3883 Log.d(TAG, "bindAppWidget: " + item);
3884 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003885 final Workspace workspace = mWorkspace;
3886
Adam Cohen59400422014-03-05 18:07:04 -08003887 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003888 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003889
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003890 if (!mIsSafeModeEnabled
3891 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003892 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
3893
Sunny Goyalff572272014-07-23 13:58:07 -07003894 if (appWidgetInfo == null) {
3895 if (DEBUG_WIDGETS) {
3896 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3897 + " belongs to component " + item.providerName
3898 + ", as the povider is null");
3899 }
3900 LauncherModel.deleteItemFromDatabase(this, item);
3901 return;
3902 }
Sunny Goyalff572272014-07-23 13:58:07 -07003903
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003904 // If we do not have a valid id, try to bind an id.
3905 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
3906 // Note: This assumes that the id remap broadcast is received before this step.
3907 // If that is not the case, the id remap will be ignored and user may see the
3908 // click to setup view.
3909 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
3910 pendingInfo.spanX = item.spanX;
3911 pendingInfo.spanY = item.spanY;
3912 pendingInfo.minSpanX = item.minSpanX;
3913 pendingInfo.minSpanY = item.minSpanY;
3914 Bundle options = null;
3915 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003916
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003917 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
3918 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3919 newWidgetId, appWidgetInfo, options);
3920
3921 // TODO consider showing a permission dialog when the widget is clicked.
3922 if (!success) {
3923 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3924 if (DEBUG_WIDGETS) {
3925 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3926 + " belongs to component " + item.providerName
3927 + ", as the launcher is unable to bing a new widget id");
3928 }
3929 LauncherModel.deleteItemFromDatabase(this, item);
3930 return;
Sunny Goyalff572272014-07-23 13:58:07 -07003931 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003932
3933 item.appWidgetId = newWidgetId;
3934
3935 // If the widget has a configure activity, it is still needs to set it up, otherwise
3936 // the widget is ready to go.
3937 item.restoreStatus = (appWidgetInfo.configure == null)
3938 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3939 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3940
3941 LauncherModel.updateItemInDatabase(this, item);
3942 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
3943 && (appWidgetInfo.configure == null)) {
3944 // If the ID is already valid, verify if we need to configure or not.
3945 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3946 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07003947 }
Sunny Goyalff572272014-07-23 13:58:07 -07003948 }
3949
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003950 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003951 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003952 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003953 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3954 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003955 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003956
Sunny Goyal651077b2014-06-30 14:15:31 -07003957 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07003958 item.minSpanX = appWidgetInfo.minSpanX;
3959 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07003960 } else {
3961 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003962 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3963 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003964 view.updateIcon(mIconCache);
3965 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003966 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003967 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003968 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003969
Joe Onorato9c1289c2009-08-17 11:03:03 -04003970 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003971 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003972
Adam Cohendcd297f2013-06-18 13:13:40 -07003973 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003974 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003975 if (!item.isCustomWidget()) {
3976 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3977 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003978
Joe Onorato9c1289c2009-08-17 11:03:03 -04003979 workspace.requestLayout();
3980
Daniel Sandler843e8602010-06-07 14:59:01 -04003981 if (DEBUG_WIDGETS) {
3982 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3983 + (SystemClock.uptimeMillis()-start) + "ms");
3984 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003985 }
3986
Sunny Goyalff572272014-07-23 13:58:07 -07003987 /**
3988 * Restores a pending widget.
3989 *
3990 * @param appWidgetId The app widget id
3991 * @param cellInfo The position on screen where to create the widget.
3992 */
3993 private void completeRestoreAppWidget(final int appWidgetId) {
3994 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3995 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3996 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3997 return;
3998 }
3999
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004000 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004001 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4002
4003 mWorkspace.reinflateWidgetsIfNecessary();
4004 LauncherModel.updateItemInDatabase(this, info);
4005 }
4006
Adam Cohen1462de32012-07-24 22:34:36 -07004007 public void onPageBoundSynchronously(int page) {
4008 mSynchronouslyBoundPages.add(page);
4009 }
4010
Joe Onorato9c1289c2009-08-17 11:03:03 -04004011 /**
4012 * Callback saying that there aren't any more items to bind.
4013 *
4014 * Implementation of the method from LauncherModel.Callbacks.
4015 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004016 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004017 Runnable r = new Runnable() {
4018 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004019 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004020 }
4021 };
4022 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004023 return;
4024 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004025 if (mSavedState != null) {
4026 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004027 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004028 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004029 mSavedState = null;
4030 }
4031
Adam Cohen1462de32012-07-24 22:34:36 -07004032 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004033
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004034 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004035 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004036
4037 // If we received the result of any pending adds while the loader was running (e.g. the
4038 // widget configuration forced an orientation change), process them now.
4039 if (sPendingAddItem != null) {
4040 final long screenId = completeAdd(sPendingAddItem);
4041
4042 // TODO: this moves the user to the page where the pending item was added. Ideally,
4043 // the screen would be guaranteed to exist after bind, and the page would be set through
4044 // the workspace restore process.
4045 mWorkspace.post(new Runnable() {
4046 @Override
4047 public void run() {
4048 mWorkspace.snapToScreenId(screenId);
4049 }
4050 });
4051 sPendingAddItem = null;
4052 }
4053
Sunny Goyal756adbc2015-04-16 15:20:51 -07004054 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004055
4056 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004057 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004058 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004059 }
4060
Adam Cohen3ed316a2014-07-23 18:21:20 -07004061 private void sendLoadingCompleteBroadcastIfNecessary() {
4062 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4063 String permission =
4064 getResources().getString(R.string.receive_first_load_broadcast_permission);
4065 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4066 sendBroadcast(intent, permission);
4067 SharedPreferences.Editor editor = mSharedPrefs.edit();
4068 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4069 editor.apply();
4070 }
4071 }
4072
Winson Chunga0b7e862013-09-05 16:03:15 -07004073 public boolean isAllAppsButtonRank(int rank) {
4074 if (mHotseat != null) {
4075 return mHotseat.isAllAppsButtonRank(rank);
4076 }
4077 return false;
4078 }
4079
Winson Chunga2413752012-04-03 14:22:34 -07004080 private boolean canRunNewAppsAnimation() {
4081 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4082 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4083 }
4084
Winson Chungc9168342013-06-26 14:54:55 -07004085 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4086 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4087 PropertyValuesHolder.ofFloat("alpha", 1f),
4088 PropertyValuesHolder.ofFloat("scaleX", 1f),
4089 PropertyValuesHolder.ofFloat("scaleY", 1f));
4090 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4091 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004092 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004093 return bounceAnim;
4094 }
4095
Adam Cohen27772732013-11-11 14:00:56 +00004096 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004097 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004098 }
4099
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004100 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004101 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004102 }
4103
Winson Chung88fa7412015-08-03 14:25:28 -07004104 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004105 if (mSearchDropTargetBar == null) {
4106 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004107 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004108 if (mQsb != null) {
4109 mSearchDropTargetBar.removeView(mQsb);
4110 mQsb = null;
4111 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004112 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004113 }
4114
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004115 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004116 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4117 * multiple calls to bind the same list.)
4118 */
4119 @Thunk ArrayList<AppInfo> mTmpAppsList;
4120 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4121 public void run() {
4122 bindAllApplications(mTmpAppsList);
4123 mTmpAppsList = null;
4124 }
4125 };
4126
4127 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004128 * Add the icons for all apps.
4129 *
4130 * Implementation of the method from LauncherModel.Callbacks.
4131 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004132 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004133 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4134 mTmpAppsList = apps;
4135 return;
4136 }
4137
Winson Chungb745afb2015-03-02 11:51:23 -08004138 if (mAppsView != null) {
4139 mAppsView.setApps(apps);
4140 }
Adam Cohen9211d422014-10-07 18:14:53 -07004141 if (mLauncherCallbacks != null) {
4142 mLauncherCallbacks.bindAllApplications(apps);
4143 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004144 }
4145
4146 /**
4147 * A package was updated.
4148 *
4149 * Implementation of the method from LauncherModel.Callbacks.
4150 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004151 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004152 Runnable r = new Runnable() {
4153 public void run() {
4154 bindAppsUpdated(apps);
4155 }
4156 };
4157 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004158 return;
4159 }
4160
Winson Chungb745afb2015-03-02 11:51:23 -08004161 if (mAppsView != null) {
4162 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004163 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004164 }
4165
Sunny Goyal4390ace2014-10-13 11:33:11 -07004166 @Override
4167 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4168 Runnable r = new Runnable() {
4169 public void run() {
4170 bindWidgetsRestored(widgets);
4171 }
4172 };
4173 if (waitUntilResume(r)) {
4174 return;
4175 }
4176 mWorkspace.widgetsRestored(widgets);
4177 }
4178
Joe Onorato9c1289c2009-08-17 11:03:03 -04004179 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004180 * Some shortcuts were updated in the background.
4181 *
4182 * Implementation of the method from LauncherModel.Callbacks.
4183 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004184 @Override
4185 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4186 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004187 Runnable r = new Runnable() {
4188 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004189 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004190 }
4191 };
4192 if (waitUntilResume(r)) {
4193 return;
4194 }
4195
Sunny Goyal4390ace2014-10-13 11:33:11 -07004196 if (!updated.isEmpty()) {
4197 mWorkspace.updateShortcuts(updated);
4198 }
4199
4200 if (!removed.isEmpty()) {
4201 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4202 for (ShortcutInfo si : removed) {
4203 removedComponents.add(si.getTargetComponent());
4204 }
4205 mWorkspace.removeItemsByComponentName(removedComponents, user);
4206 // Notify the drag controller
4207 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004208 }
4209 }
4210
4211 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004212 * Update the state of a package, typically related to install state.
4213 *
4214 * Implementation of the method from LauncherModel.Callbacks.
4215 */
Sunny Goyale755d462014-07-22 13:48:29 -07004216 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004217 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4218 Runnable r = new Runnable() {
4219 public void run() {
4220 bindRestoreItemsChange(updates);
4221 }
4222 };
4223 if (waitUntilResume(r)) {
4224 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004225 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004226
Sunny Goyal756adbc2015-04-16 15:20:51 -07004227 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004228 }
4229
4230 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004231 * A package was uninstalled. We take both the super set of packageNames
4232 * in addition to specific applications to remove, the reason being that
4233 * this can be called when a package is updated as well. In that scenario,
4234 * we only remove specific components from the workspace, where as
4235 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004236 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004237 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004238 * Implementation of the method from LauncherModel.Callbacks.
4239 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004240 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004241 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004242 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004243 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004244 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004245 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004246 }
Winson Chungd64d1762013-08-20 14:37:16 -07004247 };
4248 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004249 return;
4250 }
4251
Sunny Goyal1a745e82014-10-02 15:58:31 -07004252 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004253 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4254 for (AppInfo info : appInfos) {
4255 removedComponents.add(info.componentName);
4256 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004257 if (!packageNames.isEmpty()) {
4258 mWorkspace.removeItemsByPackageName(packageNames, user);
4259 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004260 if (!removedComponents.isEmpty()) {
4261 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004262 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004263 // Notify the drag controller
4264 mDragController.onAppsRemoved(packageNames, removedComponents);
4265
Sunny Goyal1a745e82014-10-02 15:58:31 -07004266 } else {
4267 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004268 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004269
Winson Chungdf95eb12013-10-16 14:57:07 -07004270 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004271 if (mAppsView != null) {
4272 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004273 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004274 }
Joe Onoratobe386092009-11-17 17:32:16 -08004275
Michael Jurkac402cd92013-05-20 15:49:32 +02004276 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004277 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004278 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004279 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004280 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004281
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004282 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004283 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004284 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004285 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004286 return;
4287 }
4288
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004289 if (mWidgetsView != null && model != null) {
4290 mWidgetsView.addWidgets(model);
4291 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004292 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004293 }
4294
Winson Chung400438b2011-01-16 17:53:48 -08004295 private int mapConfigurationOriActivityInfoOri(int configOri) {
4296 final Display d = getWindowManager().getDefaultDisplay();
4297 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4298 switch (d.getRotation()) {
4299 case Surface.ROTATION_0:
4300 case Surface.ROTATION_180:
4301 // We are currently in the same basic orientation as the natural orientation
4302 naturalOri = configOri;
4303 break;
4304 case Surface.ROTATION_90:
4305 case Surface.ROTATION_270:
4306 // We are currently in the other basic orientation to the natural orientation
4307 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4308 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4309 break;
4310 }
4311
4312 int[] oriMap = {
4313 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4314 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4315 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4316 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4317 };
4318 // Since the map starts at portrait, we need to offset if this device's natural orientation
4319 // is landscape.
4320 int indexOffset = 0;
4321 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4322 indexOffset = 1;
4323 }
4324 return oriMap[(d.getRotation() + indexOffset) % 4];
4325 }
Adam Cohen446e9402011-09-15 18:21:21 -07004326
Winson Chung4b919f82012-05-01 10:44:08 -07004327 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004328 if (mRotationEnabled) {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004329 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
4330 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4331 .getConfiguration().orientation));
4332 } else {
4333 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4334 }
Winson Chung4b919f82012-05-01 10:44:08 -07004335 }
4336 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004337
Winson Chung4b919f82012-05-01 10:44:08 -07004338 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004339 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004340 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004341 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004342 } else {
4343 mHandler.postDelayed(new Runnable() {
4344 public void run() {
4345 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4346 }
4347 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004348 }
Winson Chung4b919f82012-05-01 10:44:08 -07004349 }
Winson Chung400438b2011-01-16 17:53:48 -08004350 }
4351
Winson Chunge43a1e72014-01-15 10:33:02 -08004352 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004353 if (mLauncherCallbacks != null) {
4354 return mLauncherCallbacks.isLauncherPreinstalled();
4355 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004356 PackageManager pm = getPackageManager();
4357 try {
4358 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4359 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4360 return true;
4361 } else {
4362 return false;
4363 }
4364 } catch (NameNotFoundException e) {
4365 e.printStackTrace();
4366 return false;
4367 }
4368 }
4369
Adam Cohenea90f832014-05-21 15:03:34 -07004370 /**
4371 * This method indicates whether or not we should suggest default wallpaper dimensions
4372 * when our wallpaper cropper was not yet used to set a wallpaper.
4373 */
4374 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004375 if (mLauncherCallbacks != null) {
4376 return mLauncherCallbacks.overrideWallpaperDimensions();
4377 }
Adam Cohenea90f832014-05-21 15:03:34 -07004378 return true;
4379 }
4380
Adam Cohen432609a2014-03-13 17:03:22 -07004381 /**
4382 * To be overridden by subclasses to indicate that there is an activity to launch
4383 * before showing the standard launcher experience.
4384 */
4385 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004386 if (mLauncherCallbacks != null) {
4387 return mLauncherCallbacks.hasFirstRunActivity();
4388 }
Adam Cohen432609a2014-03-13 17:03:22 -07004389 return false;
4390 }
4391
4392 /**
4393 * To be overridden by subclasses to launch any first run activity
4394 */
4395 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004396 if (mLauncherCallbacks != null) {
4397 return mLauncherCallbacks.getFirstRunActivity();
4398 }
Adam Cohen432609a2014-03-13 17:03:22 -07004399 return null;
4400 }
4401
Winson Chunga6945242014-01-08 14:04:34 -08004402 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004403 return !ActivityManager.isRunningInTestHarness() &&
4404 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004405 }
4406
Adam Cohen4a9423d2014-03-28 14:22:31 -07004407 protected boolean hasRunFirstRunActivity() {
4408 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4409 }
4410
Adam Cohen432609a2014-03-13 17:03:22 -07004411 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004412 if (shouldRunFirstRunActivity() &&
4413 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004414 Intent firstRunIntent = getFirstRunActivity();
4415 if (firstRunIntent != null) {
4416 startActivity(firstRunIntent);
4417 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004418 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004419 }
4420 }
Adam Cohen432609a2014-03-13 17:03:22 -07004421 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004422 }
4423
4424 private void markFirstRunActivityShown() {
4425 SharedPreferences.Editor editor = mSharedPrefs.edit();
4426 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4427 editor.apply();
4428 }
4429
Adam Cohen432609a2014-03-13 17:03:22 -07004430 /**
4431 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4432 * screen that must be displayed and dismissed.
4433 */
4434 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004435 if (mLauncherCallbacks != null) {
4436 return mLauncherCallbacks.hasDismissableIntroScreen();
4437 }
Adam Cohen432609a2014-03-13 17:03:22 -07004438 return false;
4439 }
4440
4441 /**
4442 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4443 */
4444 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004445 if (mLauncherCallbacks != null) {
4446 return mLauncherCallbacks.getIntroScreen();
4447 }
Adam Cohen432609a2014-03-13 17:03:22 -07004448 return null;
4449 }
4450
4451 /**
4452 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4453 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4454 */
4455 private boolean shouldShowIntroScreen() {
4456 return hasDismissableIntroScreen() &&
4457 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4458 }
4459
4460 protected void showIntroScreen() {
4461 View introScreen = getIntroScreen();
4462 changeWallpaperVisiblity(false);
4463 if (introScreen != null) {
4464 mDragLayer.showOverlayView(introScreen);
4465 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004466 if (mLauncherOverlayContainer != null) {
4467 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4468 }
Adam Cohen432609a2014-03-13 17:03:22 -07004469 }
4470
4471 public void dismissIntroScreen() {
4472 markIntroScreenDismissed();
4473 if (showFirstRunActivity()) {
4474 // We delay hiding the intro view until the first run activity is showing. This
4475 // avoids a blip.
4476 mWorkspace.postDelayed(new Runnable() {
4477 @Override
4478 public void run() {
4479 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004480 if (mLauncherOverlayContainer != null) {
4481 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4482 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004483 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004484 }
4485 }, ACTIVITY_START_DELAY);
4486 } else {
4487 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004488 if (mLauncherOverlayContainer != null) {
4489 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4490 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004491 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004492 }
4493 changeWallpaperVisiblity(true);
4494 }
4495
4496 private void markIntroScreenDismissed() {
4497 SharedPreferences.Editor editor = mSharedPrefs.edit();
4498 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4499 editor.apply();
4500 }
4501
Adam Cohen091440a2015-03-18 14:16:05 -07004502 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004503 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4504 // on the device, then we always show the first run cling experience (or if there is no
4505 // launcher2). Otherwise, we prompt the user upon started for migration
4506 LauncherClings launcherClings = new LauncherClings(this);
4507 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4508 if (mModel.canMigrateFromOldLauncherDb(this)) {
4509 launcherClings.showMigrationCling();
4510 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004511 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004512 }
4513 }
4514 }
4515
Winson Chunga6945242014-01-08 14:04:34 -08004516 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004517 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4518 if (mHotseat != null) mHotseat.setAlpha(1f);
4519 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004520 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4521 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004522 }
4523
4524 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004525 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4526 if (mHotseat != null) mHotseat.setAlpha(0f);
4527 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004528 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4529 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004530 }
4531
Winson Chung5ffd51d2015-06-25 11:36:50 -07004532 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004533 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004534 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004535 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004536 UserHandleCompat user = null;
4537 if (Utilities.isLmpOrAbove()) {
4538 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4539 if (userHandle != null) {
4540 user = UserHandleCompat.fromUser(userHandle);
4541 }
4542 }
4543 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004544 }
4545
4546 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004547 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004548 if (user == null) {
4549 user = UserHandleCompat.myUserHandle();
4550 }
4551
4552 // Called from search suggestion, add the profile extra to the intent to ensure that we
4553 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004554 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004555 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004556 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004557 return null;
4558 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004559 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004560 }
4561
Winson Chung5ffd51d2015-06-25 11:36:50 -07004562 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004563 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4564 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004565 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004566 UserHandleCompat.myUserHandle());
4567 }
4568
Winson Chung5ffd51d2015-06-25 11:36:50 -07004569 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004570 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4571 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004572 mWorkspace.onExternalDragStartedWithItem(dragView);
4573 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004574 }
4575
Winson Chung5ffd51d2015-06-25 11:36:50 -07004576 protected void moveWorkspaceToDefaultScreen() {
4577 mWorkspace.moveToDefaultScreen(false);
4578 }
4579
Anjali Koppalf5d29132014-02-28 13:33:27 -08004580 @Override
4581 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004582 if (mLauncherCallbacks != null) {
4583 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4584 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004585 }
4586
Winson Chung80baf5a2010-08-09 16:03:15 -07004587 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004588 * Returns a FastBitmapDrawable with the icon, accurately sized.
4589 */
4590 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4591 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4592 d.setFilterBitmap(true);
4593 resizeIconDrawable(d);
4594 return d;
4595 }
4596
4597 /**
4598 * Resizes an icon drawable to the correct icon size.
4599 */
4600 public void resizeIconDrawable(Drawable icon) {
4601 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4602 }
4603
4604 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004605 * Prints out out state for debugging.
4606 */
4607 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004608 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004609 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004610 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4611 Log.d(TAG, "mRestoring=" + mRestoring);
4612 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4613 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004614 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004615 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004616 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004617
Daniel Sandler325dc232013-06-05 22:57:57 -04004618 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004619 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004620
4621 @Override
4622 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4623 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004624 synchronized (sDumpLogs) {
4625 writer.println(" ");
4626 writer.println("Debug logs: ");
4627 for (int i = 0; i < sDumpLogs.size(); i++) {
4628 writer.println(" " + sDumpLogs.get(i));
4629 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004630 }
Adam Cohen9211d422014-10-07 18:14:53 -07004631 if (mLauncherCallbacks != null) {
4632 mLauncherCallbacks.dump(prefix, fd, writer, args);
4633 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004634 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004635
4636 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004637 if (DEBUG_DUMP_LOG) {
4638 synchronized (sDumpLogs) {
4639 Log.d(TAG, "");
4640 Log.d(TAG, "*********************");
4641 Log.d(TAG, "Launcher debug logs: ");
4642 for (int i = 0; i < sDumpLogs.size(); i++) {
4643 Log.d(TAG, " " + sDumpLogs.get(i));
4644 }
4645 Log.d(TAG, "*********************");
4646 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004647 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004648 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004649 }
4650
4651 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004652 addDumpLog(tag, log, null, debugLog);
4653 }
4654
4655 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004656 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004657 if (e != null) {
4658 Log.d(tag, log, e);
4659 } else {
4660 Log.d(tag, log);
4661 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004662 }
Winson Chungede41292013-09-19 16:27:36 -07004663 if (DEBUG_DUMP_LOG) {
4664 sDateStamp.setTime(System.currentTimeMillis());
4665 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004666 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4667 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004668 }
Winson Chungede41292013-09-19 16:27:36 -07004669 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004670 }
4671
Adam Cohen59400422014-03-05 18:07:04 -08004672 public static CustomAppWidget getCustomAppWidget(String name) {
4673 return sCustomAppWidgets.get(name);
4674 }
4675
4676 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4677 return sCustomAppWidgets;
4678 }
4679
Winson Chungede41292013-09-19 16:27:36 -07004680 public void dumpLogsToLocalData() {
4681 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004682 new AsyncTask<Void, Void, Void>() {
4683 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004684 boolean success = false;
4685 sDateStamp.setTime(sRunStart);
4686 String FILENAME = sDateStamp.getMonth() + "-"
4687 + sDateStamp.getDay() + "_"
4688 + sDateStamp.getHours() + "-"
4689 + sDateStamp.getMinutes() + "_"
4690 + sDateStamp.getSeconds() + ".txt";
4691
4692 FileOutputStream fos = null;
4693 File outFile = null;
4694 try {
4695 outFile = new File(getFilesDir(), FILENAME);
4696 outFile.createNewFile();
4697 fos = new FileOutputStream(outFile);
4698 } catch (Exception e) {
4699 e.printStackTrace();
4700 }
4701 if (fos != null) {
4702 PrintWriter writer = new PrintWriter(fos);
4703
4704 writer.println(" ");
4705 writer.println("Debug logs: ");
4706 synchronized (sDumpLogs) {
4707 for (int i = 0; i < sDumpLogs.size(); i++) {
4708 writer.println(" " + sDumpLogs.get(i));
4709 }
4710 }
4711 writer.close();
4712 }
4713 try {
4714 if (fos != null) {
4715 fos.close();
4716 success = true;
4717 }
4718 } catch (IOException e) {
4719 e.printStackTrace();
4720 }
Michael Jurka43467462013-11-14 12:03:58 +01004721 return null;
Winson Chungede41292013-09-19 16:27:36 -07004722 }
Michael Jurka43467462013-11-14 12:03:58 +01004723 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004724 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004725 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004726}
Michael Jurka2763be32011-02-24 11:19:57 -08004727
Dan Sandlerd5024042014-01-09 15:01:33 -05004728interface DebugIntents {
4729 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4730 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004731}