blob: 24e9f142d4453d2e708947894c893c656e89f9e2 [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;
Adam Cohen4caf2982013-08-20 18:54:31 -0700119import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700120import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700121import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700122import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700123import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700124import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700125import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000126import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700127
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800128/**
129 * Default launcher application.
130 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100131public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700132 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chung006ee262015-08-03 14:40:11 -0700133 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700134 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700135 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136
Daniel Sandlerf061f822013-06-27 13:59:36 -0400137 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700138 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700139 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400140 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700141 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700142
Dan Sandlerd5024042014-01-09 15:01:33 -0500143 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
144
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800145 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700146 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700147 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700148 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800149
Michael Jurka8b805b12012-04-18 14:23:14 -0700150 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700151 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700152
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700153 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
154 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
155 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
156
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700157 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
158
Mathew Inwood876a8462013-06-14 14:12:41 +0100159 /**
160 * IntentStarter uses request codes starting with this. This must be greater than all activity
161 * request codes used internally.
162 */
163 protected static final int REQUEST_LAST = 100;
164
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800165 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800166
Michael Jurka0a457bf2012-11-19 14:05:05 -0800167 // To turn on these properties, type
168 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800169 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800170
Winson Chung2672ff92012-05-04 16:22:30 -0700171 // The Intent extra that defines whether to ignore the launch animation
172 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400173 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700174
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800175 // Type: int
176 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700177 // Type: int
178 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700180 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
181 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
183 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700184 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700187 // Type: int
188 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
189 // Type: int
190 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
191 // Type: parcelable
192 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000193 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800194 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000195 // Type: int[]
196 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800197
Adam Cohen432609a2014-03-13 17:03:22 -0700198 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800199 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
200
Adam Cohen3ed316a2014-07-23 18:21:20 -0700201 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
202 static final String ACTION_FIRST_LOAD_COMPLETE =
203 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
204
Adam Cohen39a06042013-07-19 14:30:12 -0700205 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700206 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700207
Sunny Goyal594d76d2014-11-06 10:12:54 -0800208 private static final String QSB_WIDGET_ID = "qsb_widget_id";
209 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
210
Winson Chunga6945242014-01-08 14:04:34 -0800211 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
212
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700213 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700214 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
215
Adam Cohen091440a2015-03-18 14:16:05 -0700216 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700217 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700218
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700219 private boolean mIsSafeModeEnabled;
220
Adam Cohenc2d6e892014-10-16 09:49:24 -0700221 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
222 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700223 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700224
Joe Onorato9c1289c2009-08-17 11:03:03 -0400225 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700226 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
227 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700228 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800229
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000230 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
231 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
232
Winson Chunga2413752012-04-03 14:22:34 -0700233 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700234 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
235 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700236 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700237
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800238 private final BroadcastReceiver mCloseSystemDialogsReceiver
239 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800240
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800241 private LayoutInflater mInflater;
242
Adam Cohen091440a2015-03-18 14:16:05 -0700243 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700244 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800245 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700246 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800247 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700248 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700249
Sunny Goyalffe83f12014-08-14 17:39:34 -0700250 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700251 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700252
Adam Cohen091440a2015-03-18 14:16:05 -0700253 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800254 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800255 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700256
Michael Jurka0280c3b2010-09-17 15:00:07 -0700257 private int[] mTmpAddItemCellCoordinates = new int[2];
258
Sunny Goyal316490e2015-06-02 09:38:28 -0700259 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800260 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700261
Michael Jurka838a4ca2011-02-07 13:33:06 -0800262 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700263 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700264
Winson Chungc51db6a2011-10-05 11:44:49 -0700265 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700266
267 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700268 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700269
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700270 // Main container view and the model for the widget tray screen.
271 @Thunk WidgetsContainerView mWidgetsView;
272 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700273
Winson Chungf0ea4d32011-06-06 14:27:16 -0700274 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800275 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800276
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800277 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700278 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
279 // scroll issues (because the workspace may not have been measured yet) and extra work.
280 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
281 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800282
283 private SpannableStringBuilder mDefaultKeySsb = null;
284
Adam Cohen091440a2015-03-18 14:16:05 -0700285 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400286
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800287 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800288 private boolean mRestoring;
289 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700290 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291
Michael Jurka1e2f4652013-07-08 18:03:46 -0700292 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700293 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
294
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800295 private Bundle mSavedInstanceState;
296
Joe Onorato9c1289c2009-08-17 11:03:03 -0400297 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800298 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700299 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800300 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700301 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800302 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400303
Sunny Goyale2df0622015-04-24 11:27:00 -0700304 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700305
Adam Cohen61f560d2013-09-30 15:58:20 -0700306 private View.OnTouchListener mHapticFeedbackTouchListener;
307
Adam Cohended9f8d2010-11-03 13:25:16 -0700308 // Related to the auto-advancing of widgets
309 private final int ADVANCE_MSG = 1;
310 private final int mAdvanceInterval = 20000;
311 private final int mAdvanceStagger = 250;
312 private long mAutoAdvanceSentTime;
313 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700314 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700315 new HashMap<View, AppWidgetProviderInfo>();
316
Winson Chung400438b2011-01-16 17:53:48 -0800317 // Determines how long to wait after a rotation before restoring the screen orientation to
318 // match the sensor state.
319 private final int mRestoreScreenOrientationDelay = 500;
320
Adam Cohen091440a2015-03-18 14:16:05 -0700321 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700322
Adam Cohen1462de32012-07-24 22:34:36 -0700323 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700324 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700325
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700326 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700327 static Date sDateStamp = new Date();
328 static DateFormat sDateFormat =
329 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
330 static long sRunStart = System.currentTimeMillis();
331 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700332
Winson Chung46353de2012-02-16 14:05:10 -0800333 // We only want to get the SharedPreferences once since it does an FS stat each time we get
334 // it from the context.
335 private SharedPreferences mSharedPrefs;
336
Winson Chungf0c6ae02012-03-21 16:10:31 -0700337 // Holds the page that we need to animate to, and the icon views that we need to animate up
338 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700339 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700340 private Bitmap mFolderIconBitmap;
341 private Canvas mFolderIconCanvas;
342 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700343
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700344 private DeviceProfile mDeviceProfile;
345
Winson Chung13eb5272015-05-11 16:30:13 -0700346 // This is set to the view that launched the activity that navigated the user away from
347 // launcher. Since there is no callback for when the activity has finished launching, enable
348 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800349 private BubbleTextView mWaitingForResume;
350
Adam Cohen59400422014-03-05 18:07:04 -0800351 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
352 new HashMap<String, CustomAppWidget>();
353
354 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
355 static {
356 if (ENABLE_CUSTOM_WIDGET_TEST) {
357 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
358 }
359 }
360
Adam Cohen091440a2015-03-18 14:16:05 -0700361 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700362 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700363 if (mWorkspace != null) {
364 mWorkspace.buildPageHardwareLayers();
365 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700366 }
367 };
368
Adam Cohendb364c32014-05-20 14:23:40 -0700369 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800370
Adam Cohen091440a2015-03-18 14:16:05 -0700371 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800372 int requestCode;
373 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700374 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700375 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800376 int cellX;
377 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700378 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800379 }
380
Daniel Sandlerff02d492013-08-05 02:12:05 -0400381 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700382 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700383 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400384
385 @Thunk void setOrientation() {
386 if (mRotationEnabled) {
387 unlockScreenOrientation(true);
388 } else {
389 setRequestedOrientation(
390 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700391 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400392 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700393
Sunny Goyal7779d622015-06-11 16:18:39 -0700394 private Runnable mUpdateOrientationRunnable = new Runnable() {
395 public void run() {
396 setOrientation();
397 }
398 };
399
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800400 @Override
401 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700402 if (DEBUG_STRICT_MODE) {
403 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
404 .detectDiskReads()
405 .detectDiskWrites()
406 .detectNetwork() // or .detectAll() for all detectable problems
407 .penaltyLog()
408 .build());
409 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
410 .detectLeakedSqlLiteObjects()
411 .detectLeakedClosableObjects()
412 .penaltyLog()
413 .penaltyDeath()
414 .build());
415 }
416
Adam Cohen9211d422014-10-07 18:14:53 -0700417 if (mLauncherCallbacks != null) {
418 mLauncherCallbacks.preOnCreate();
419 }
420
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800421 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400422
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400423 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400424 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700425
Adam Cohen2e6da152015-05-06 11:42:25 -0700426 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700427 mDeviceProfile = getResources().getConfiguration().orientation
428 == Configuration.ORIENTATION_LANDSCAPE ?
429 app.getInvariantDeviceProfile().landscapeProfile
430 : app.getInvariantDeviceProfile().portraitProfile;
431
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400432 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700433 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700434 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800435 mModel = app.setLauncher(this);
436 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700437
Joe Onorato41a12d22009-10-31 18:30:00 -0400438 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800439 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700440 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700441
Daniel Sandlerff02d492013-08-05 02:12:05 -0400442 mStats = new Stats(this);
443
Sunny Goyalffe83f12014-08-14 17:39:34 -0700444 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700445
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700446 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
447 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700448
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700449 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
450 // this also ensures that any synchronous binding below doesn't re-trigger another
451 // LauncherModel load.
452 mPaused = false;
453
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800454 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200455 android.os.Debug.startMethodTracing(
456 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800457 }
458
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800459 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700460
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800461 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700462 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800463
Joe Onorato7c312c12009-08-13 21:36:53 -0700464 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700465
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800466 mSavedState = savedInstanceState;
467 restoreState(mSavedState);
468
469 if (PROFILE_STARTUP) {
470 android.os.Debug.stopMethodTracing();
471 }
472
473 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700474 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700475 // If the user leaves launcher, then we should just load items asynchronously when
476 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700477 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700478 } else {
479 // We only load the page synchronously if the user rotates (or triggers a
480 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700481 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700482 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800483 }
484
485 // For handling default keys
486 mDefaultKeySsb = new SpannableStringBuilder();
487 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800488
489 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
490 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800491
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700492 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
493 // In case we are on a device with locked rotation, we should look at preferences to check
494 // if the user has specifically allowed rotation.
495 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400496 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700497 }
498
499 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
500 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400501 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700502
Adam Cohen9211d422014-10-07 18:14:53 -0700503 if (mLauncherCallbacks != null) {
504 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700505 if (mLauncherCallbacks.hasLauncherOverlay()) {
506 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700507 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
508 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
509 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700510 mWorkspace.setLauncherOverlay(mLauncherOverlay);
511 }
Adam Cohen9211d422014-10-07 18:14:53 -0700512 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700513
514 if (shouldShowIntroScreen()) {
515 showIntroScreen();
516 } else {
517 showFirstRunActivity();
518 showFirstRunClings();
519 }
Adam Cohen9211d422014-10-07 18:14:53 -0700520 }
521
Sunny Goyal7779d622015-06-11 16:18:39 -0700522 @Override
523 public void onSettingsChanged(String settings, boolean value) {
524 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
525 mRotationEnabled = value;
526 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
527 mUpdateOrientationRunnable.run();
528 }
529 }
530 }
531
Adam Cohen9211d422014-10-07 18:14:53 -0700532 private LauncherCallbacks mLauncherCallbacks;
533
534 public void onPostCreate(Bundle savedInstanceState) {
535 super.onPostCreate(savedInstanceState);
536 if (mLauncherCallbacks != null) {
537 mLauncherCallbacks.onPostCreate(savedInstanceState);
538 }
539 }
540
541 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
542 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700543 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700544 private boolean mWorkspaceImportanceStored = false;
545 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700546 private int mWorkspaceImportanceForAccessibility =
547 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
548 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
549
550 @Override
551 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700552 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700553 return;
554 }
555 // The underlying workspace and hotseat are temporarily suppressed by the search
556 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700557 if (mWorkspace != null) {
558 mWorkspaceImportanceForAccessibility =
559 mWorkspace.getImportantForAccessibility();
560 mWorkspace.setImportantForAccessibility(
561 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
562 mWorkspaceImportanceStored = true;
563 }
564 if (mHotseat != null) {
565 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
566 mHotseat.setImportantForAccessibility(
567 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
568 mHotseatImportanceStored = true;
569 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700570 }
571
572 @Override
573 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700574 if (mWorkspaceImportanceStored && mWorkspace != null) {
575 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
576 }
577 if (mHotseatImportanceStored && mHotseat != null) {
578 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
579 }
580 mWorkspaceImportanceStored = false;
581 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700582 }
583 });
Adam Cohen9211d422014-10-07 18:14:53 -0700584 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700585 }
586
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700587 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700588 public void onLauncherProviderChange() {
589 if (mLauncherCallbacks != null) {
590 mLauncherCallbacks.onLauncherProviderChange();
591 }
592 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700593
Winson Chungef7f8742015-06-04 17:18:17 -0700594 /**
595 * Updates the bounds of all the overlays to match the new fixed bounds.
596 */
597 public void updateOverlayBounds(Rect newBounds) {
598 mAppsView.setSearchBarBounds(newBounds);
599 mWidgetsView.setSearchBarBounds(newBounds);
600 }
601
Adam Cohen9211d422014-10-07 18:14:53 -0700602 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700603 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700604 if (mLauncherCallbacks != null) {
605 return mLauncherCallbacks.hasCustomContentToLeft();
606 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700607 return false;
608 }
609
Dave Hawkeya8881582013-09-17 15:55:33 -0600610 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500611 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600612 * {@link #addToCustomContentPage}. This will only be invoked if
613 * {@link #hasCustomContentToLeft()} is {@code true}.
614 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500615 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700616 if (mLauncherCallbacks != null) {
617 mLauncherCallbacks.populateCustomContentContainer();
618 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600619 }
620
621 /**
622 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
623 * ensure the custom content page is added or removed if necessary.
624 */
625 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600626 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600627 // Not bound yet, wait for bindScreens to be called.
628 return;
629 }
630
631 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
632 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500633 mWorkspace.createCustomContentContainer();
634 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600635 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
636 mWorkspace.removeCustomContentPage();
637 }
638 }
639
Anton Hanssona2f665f2013-09-26 12:18:32 +0100640 public Stats getStats() {
641 return mStats;
642 }
643
Bjorn Bringertc459e522013-06-07 19:36:01 +0100644 public LayoutInflater getInflater() {
645 return mInflater;
646 }
647
Hyunyoung Song3f471442015-04-08 19:01:34 -0700648 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700649 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
650 // that is subsequently removed from the workspace in startBinding().
651 return !mModel.isLoadingWorkspace();
652 }
653
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800654 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000655 public static int generateViewId() {
Sunny Goyal9fc953b2015-08-17 12:24:25 -0700656 if (Utilities.ATLEAST_JB_MR1) {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100657 return View.generateViewId();
658 } else {
659 // View.generateViewId() is not available. The following fallback logic is a copy
660 // of its implementation.
661 for (;;) {
662 final int result = sNextGeneratedId.get();
663 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
664 int newValue = result + 1;
665 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
666 if (sNextGeneratedId.compareAndSet(result, newValue)) {
667 return result;
668 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000669 }
670 }
671 }
672
673 public int getViewIdForItem(ItemInfo info) {
674 // This cast is safe given the > 2B range for int.
675 int itemId = (int) info.id;
676 if (mItemIdToViewId.containsKey(itemId)) {
677 return mItemIdToViewId.get(itemId);
678 }
679 int viewId = generateViewId();
680 mItemIdToViewId.put(itemId, viewId);
681 return viewId;
682 }
683
684 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700685 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
686 * a configuration step, this allows the proper animations to run after other transitions.
687 */
Adam Cohendb364c32014-05-20 14:23:40 -0700688 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700689 long screenId = args.screenId;
690 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
691 // When the screen id represents an actual screen (as opposed to a rank) we make sure
692 // that the drop page actually exists.
693 screenId = ensurePendingDropLayoutExists(args.screenId);
694 }
Adam Cohendb364c32014-05-20 14:23:40 -0700695
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800696 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800697 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700698 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700699 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700700 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800701 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700702 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700703 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700704 case REQUEST_RECONFIGURE_APPWIDGET:
705 completeRestoreAppWidget(args.appWidgetId);
706 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800707 }
Michael Jurka27614d22012-04-02 06:40:22 -0700708 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
709 // if you turned the screen off and then back while in All Apps, Launcher would not
710 // return to the workspace. Clearing mAddInfo.container here fixes this issue
711 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700712 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800713 }
714
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800715 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700716 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700717 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700718 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700719 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800720 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700721
Adam Cohenad4e15c2013-10-17 16:21:35 -0700722 Runnable exitSpringLoaded = new Runnable() {
723 @Override
724 public void run() {
725 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
726 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
727 }
728 };
729
Michael Jurka8b805b12012-04-18 14:23:14 -0700730 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700731 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700732 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700733 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
734 if (resultCode == RESULT_CANCELED) {
735 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700736 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700737 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700738 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800739 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700740 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700741
742 // When the user has granted permission to bind widgets, we should check to see if
743 // we can inflate the default search bar widget.
744 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700745 }
746 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200747 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
748 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700749 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200750 }
751 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700752 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200753
Adam Cohened66b2b2012-01-23 17:28:51 -0800754 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700755 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700756
Adam Cohendb364c32014-05-20 14:23:40 -0700757 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800758 // We have special handling for widgets
759 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800760 final int appWidgetId;
761 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
762 : -1;
763 if (widgetId < 0) {
764 appWidgetId = pendingAddWidgetId;
765 } else {
766 appWidgetId = widgetId;
767 }
768
Adam Cohenad4e15c2013-10-17 16:21:35 -0700769 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800770 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700771 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
772 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700773 result = RESULT_CANCELED;
774 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700775 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700776 @Override
777 public void run() {
778 exitSpringLoadedDragModeDelayed(false, 0, null);
779 }
780 };
Adam Cohendb364c32014-05-20 14:23:40 -0700781 if (workspaceLocked) {
782 // No need to remove the empty screen if we're mid-binding, as the
783 // the bind will not add the empty screen.
784 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
785 } else {
786 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
787 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
788 }
Winson Chung5aaab772012-04-27 15:24:02 -0700789 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700790 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700791 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
792 // When the screen id represents an actual screen (as opposed to a rank)
793 // we make sure that the drop page actually exists.
794 mPendingAddInfo.screenId =
795 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
796 }
Adam Cohendb364c32014-05-20 14:23:40 -0700797 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
798
799 dropLayout.setDropPending(true);
800 final Runnable onComplete = new Runnable() {
801 @Override
802 public void run() {
803 completeTwoStageWidgetDrop(resultCode, appWidgetId);
804 dropLayout.setDropPending(false);
805 }
806 };
807 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
808 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
809 } else {
810 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
811 mPendingAddInfo);
812 sPendingAddItem = args;
813 }
Winson Chung5aaab772012-04-27 15:24:02 -0700814 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800815 return;
816 }
817
Sunny Goyalff572272014-07-23 13:58:07 -0700818 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
819 if (resultCode == RESULT_OK) {
820 // Update the widget view.
821 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
822 pendingAddWidgetId, mPendingAddInfo);
823 if (workspaceLocked) {
824 sPendingAddItem = args;
825 } else {
826 completeAdd(args);
827 }
828 }
829 // Leave the widget in the pending state if the user canceled the configure.
830 return;
831 }
832
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800833 // The pattern used here is that a user PICKs a specific application,
834 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700835
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800836 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
837 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700838 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700839 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
840 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800841 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700842 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800843 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700844 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700845 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
846 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800847 }
Adam Cohen00074722013-10-11 17:46:09 -0700848 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700849 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700850 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800851 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800852 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800853
854 }
855
856 @Override
857 protected void onActivityResult(
858 final int requestCode, final int resultCode, final Intent data) {
859 handleActivityResult(requestCode, resultCode, data);
860 if (mLauncherCallbacks != null) {
861 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
862 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800863 }
864
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600865 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700866 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600867 int[] grantResults) {
868 if (mLauncherCallbacks != null) {
869 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
870 grantResults);
871 }
872 }
873
Adam Cohendb364c32014-05-20 14:23:40 -0700874 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
875 appWidgetId, ItemInfo info) {
876 PendingAddArguments args = new PendingAddArguments();
877 args.requestCode = requestCode;
878 args.intent = data;
879 args.container = info.container;
880 args.screenId = info.screenId;
881 args.cellX = info.cellX;
882 args.cellY = info.cellY;
883 args.appWidgetId = appWidgetId;
884 return args;
885 }
886
887 /**
888 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
889 *
890 * @param screenId the screen id to check
891 * @return the new screen, or screenId if it exists
892 */
893 private long ensurePendingDropLayoutExists(long screenId) {
894 CellLayout dropLayout =
895 (CellLayout) mWorkspace.getScreenWithId(screenId);
896 if (dropLayout == null) {
897 // it's possible that the add screen was removed because it was
898 // empty and a re-bind occurred
899 mWorkspace.addExtraEmptyScreen();
900 return mWorkspace.commitExtraEmptyScreen();
901 } else {
902 return screenId;
903 }
904 }
905
Adam Cohen091440a2015-03-18 14:16:05 -0700906 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700907 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700908 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800909 Runnable onCompleteRunnable = null;
910 int animationType = 0;
911
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700912 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800913 if (resultCode == RESULT_OK) {
914 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
915 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700916 mPendingAddWidgetInfo);
917 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800918 onCompleteRunnable = new Runnable() {
919 @Override
920 public void run() {
921 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700922 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700923 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
924 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800925 }
926 };
927 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800928 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800929 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800930 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700931 if (mDragLayer.getAnimatedView() != null) {
932 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
933 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
934 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700935 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700936 // The animated view may be null in the case of a rotation during widget configuration
937 onCompleteRunnable.run();
938 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800939 }
940
941 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700942 protected void onStop() {
943 super.onStop();
944 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700945
946 if (mLauncherCallbacks != null) {
947 mLauncherCallbacks.onStop();
948 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700949 }
950
951 @Override
952 protected void onStart() {
953 super.onStart();
954 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700955
956 if (mLauncherCallbacks != null) {
957 mLauncherCallbacks.onStart();
958 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700959 }
960
961 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800962 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200963 long startTime = 0;
964 if (DEBUG_RESUME_TIME) {
965 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400966 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200967 }
Adam Cohen9211d422014-10-07 18:14:53 -0700968
969 if (mLauncherCallbacks != null) {
970 mLauncherCallbacks.preOnResume();
971 }
972
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800973 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700974
Winson Chung4a2afa32012-07-19 14:53:05 -0700975 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700976 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700977 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800978 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700979 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700980 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700981 // view after launching an app, as they may be depending on the UI to be static to
982 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700983 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700984 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800985 } else if (mOnResumeState == State.WIDGETS) {
986 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700987 }
988 mOnResumeState = State.NONE;
989
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700990 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700991 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
992 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700993
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800994 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700995 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700996 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700997 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400998 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700999 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001000 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001001 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001002 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1003 // execute them here
1004 long startTimeCallbacks = 0;
1005 if (DEBUG_RESUME_TIME) {
1006 startTimeCallbacks = System.currentTimeMillis();
1007 }
1008
Michael Jurka1e2f4652013-07-08 18:03:46 -07001009 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1010 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001011 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001012 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001013 if (DEBUG_RESUME_TIME) {
1014 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1015 (System.currentTimeMillis() - startTimeCallbacks));
1016 }
Michael Jurka447bf842013-05-15 14:52:15 +02001017 }
Michael Jurka54554252013-08-01 12:52:23 +02001018 if (mOnResumeCallbacks.size() > 0) {
1019 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1020 mOnResumeCallbacks.get(i).run();
1021 }
1022 mOnResumeCallbacks.clear();
1023 }
Winson Chunge4e50662012-01-23 14:45:13 -08001024
1025 // Reset the pressed state of icons that were locked in the press state while activities
1026 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001027 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001028 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001029 mWaitingForResume.setStayPressed(false);
1030 }
Winson Chung82963d52013-10-09 11:20:57 -07001031
Adam Cohen06dff352012-06-01 17:17:08 -07001032 // It is possible that widgets can receive updates while launcher is not in the foreground.
1033 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1034 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1035 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001036 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001037 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001038
Michael Jurka447bf842013-05-15 14:52:15 +02001039 if (DEBUG_RESUME_TIME) {
1040 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1041 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001042
1043 if (mWorkspace.getCustomContentCallbacks() != null) {
1044 // If we are resuming and the custom content is the current page, we call onShow().
1045 // It is also poassible that onShow will instead be called slightly after first layout
1046 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1047 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001048 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001049 }
1050 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001051 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001052 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001053
Sunny Goyal756adbc2015-04-16 15:20:51 -07001054 if (!isWorkspaceLoading()) {
1055 // Process any items that were added while Launcher was away.
1056 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1057 }
Adam Cohen9211d422014-10-07 18:14:53 -07001058
1059 if (mLauncherCallbacks != null) {
1060 mLauncherCallbacks.onResume();
1061 }
Adam Cohen06dff352012-06-01 17:17:08 -07001062 }
1063
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001064 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001065 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001066 // Ensure that items added to Launcher are queued until Launcher returns
1067 InstallShortcutReceiver.enableInstallQueue();
1068
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001069 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001070 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001071 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001072 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001073
1074 // We call onHide() aggressively. The custom content callbacks should be able to
1075 // debounce excess onHide calls.
1076 if (mWorkspace.getCustomContentCallbacks() != null) {
1077 mWorkspace.getCustomContentCallbacks().onHide();
1078 }
Romain Guycbb89e42009-06-08 15:52:54 -07001079
Adam Cohen9211d422014-10-07 18:14:53 -07001080 if (mLauncherCallbacks != null) {
1081 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001082 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001083 }
1084
1085 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001086 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1087 // by a onResume or by scrolling otherwise.
1088 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001089
1090 // Custom content is completely hidden
1091 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001092
1093 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1094 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001095
1096 // Indicates whether the user is allowed to scroll away from the custom content.
1097 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001098 }
1099
Adam Cohenc2d6e892014-10-16 09:49:24 -07001100 public interface LauncherOverlay {
1101
1102 /**
1103 * Touch interaction leading to overscroll has begun
1104 */
1105 public void onScrollInteractionBegin();
1106
1107 /**
1108 * Touch interaction related to overscroll has ended
1109 */
1110 public void onScrollInteractionEnd();
1111
1112 /**
1113 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1114 * screen (or in the case of RTL, the rightmost screen).
1115 */
1116 public void onScrollChange(int progress, boolean rtl);
1117
1118 /**
1119 * Screen has stopped scrolling
1120 */
1121 public void onScrollSettled();
1122
1123 /**
1124 * This method can be called by the Launcher in order to force the LauncherOverlay
1125 * to exit fully immersive mode.
1126 */
1127 public void forceExitFullImmersion();
1128 }
1129
Jun Mukai8af0cd82015-05-12 12:32:12 -07001130 public interface LauncherSearchCallbacks {
1131 /**
1132 * Called when the search overlay is shown.
1133 */
1134 public void onSearchOverlayOpened();
1135
1136 /**
1137 * Called when the search overlay is dismissed.
1138 */
1139 public void onSearchOverlayClosed();
1140 }
1141
Adam Cohenc2d6e892014-10-16 09:49:24 -07001142 public interface LauncherOverlayCallbacks {
1143 /**
1144 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1145 * however it doesn't modify any state within the launcher.
1146 */
1147 public boolean canEnterFullImmersion();
1148
1149 /**
1150 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1151 * eg. by occupying the full screen and handling all touch events.
1152 *
1153 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1154 * case, Launcher will modify any necessary state and assumes the overlay is
1155 * handling all interaction. If false, the LauncherOverlay should cancel any
1156 *
1157 */
1158 public boolean enterFullImmersion();
1159
1160 /**
1161 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1162 * full control over UI and state.
1163 */
1164 public void exitFullImmersion();
1165 }
1166
1167 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1168
1169 @Override
1170 public boolean canEnterFullImmersion() {
1171 return mState == State.WORKSPACE;
1172 }
1173
1174 @Override
1175 public boolean enterFullImmersion() {
1176 if (mState == State.WORKSPACE) {
1177 // When fully immersed, disregard any touches which fall through.
1178 mDragLayer.setBlockTouch(true);
1179 return true;
1180 }
1181 return false;
1182 }
1183
1184 @Override
1185 public void exitFullImmersion() {
1186 mDragLayer.setBlockTouch(false);
1187 }
1188 }
1189
Jorim Jaggid017f882014-01-14 17:08:48 -08001190 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001191 if (mLauncherCallbacks != null) {
1192 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001193 } else {
1194 // On devices with a locked orientation, we will at least have the allow rotation
1195 // setting.
1196 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001197 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001198 }
1199
Adam Cohen9211d422014-10-07 18:14:53 -07001200 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001201 CustomContentCallbacks callbacks, String description) {
1202 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001203 }
1204
Adam Cohenedb40762013-07-18 16:45:45 -07001205 // The custom content needs to offset its content to account for the QSB
1206 public int getTopOffsetForCustomContent() {
1207 return mWorkspace.getPaddingTop();
1208 }
1209
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001210 @Override
1211 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001212 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001213 if (mModel.isCurrentCallbacks(this)) {
1214 mModel.stopLoader();
1215 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001216 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1217
Romain Guy13c2e7b2010-03-10 19:45:00 -08001218 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001219 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001220
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001221 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001222 @Override
1223 public void onWindowFocusChanged(boolean hasFocus) {
1224 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001225 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001226
1227 if (mLauncherCallbacks != null) {
1228 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1229 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001230 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001231
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001232 private boolean acceptFilter() {
1233 final InputMethodManager inputManager = (InputMethodManager)
1234 getSystemService(Context.INPUT_METHOD_SERVICE);
1235 return !inputManager.isFullscreenMode();
1236 }
1237
1238 @Override
1239 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001240 final int uniChar = event.getUnicodeChar();
1241 final boolean handled = super.onKeyDown(keyCode, event);
1242 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1243 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001244 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1245 keyCode, event);
1246 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001247 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001248 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001249 // showSearchDialog()
1250 // If there are multiple keystrokes before the search dialog takes focus,
1251 // onSearchRequested() will be called for every keystroke,
1252 // but it is idempotent, so it's fine.
1253 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001254 }
1255 }
1256
Joe Onorato8a9625e2010-01-28 15:55:35 -08001257 // Eat the long press event so the keyboard doesn't come up.
1258 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1259 return true;
1260 }
1261
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001262 return handled;
1263 }
1264
Karl Rosaen138a0412009-04-23 19:00:21 -07001265 private String getTypedText() {
1266 return mDefaultKeySsb.toString();
1267 }
1268
1269 private void clearTypedText() {
1270 mDefaultKeySsb.clear();
1271 mDefaultKeySsb.clearSpans();
1272 Selection.setSelection(mDefaultKeySsb, 0);
1273 }
1274
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001275 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001276 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1277 * State
1278 */
1279 private static State intToState(int stateOrdinal) {
1280 State state = State.WORKSPACE;
1281 final State[] stateValues = State.values();
1282 for (int i = 0; i < stateValues.length; i++) {
1283 if (stateValues[i].ordinal() == stateOrdinal) {
1284 state = stateValues[i];
1285 break;
1286 }
1287 }
1288 return state;
1289 }
1290
1291 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001292 * Restores the previous state, if it exists.
1293 *
1294 * @param savedState The previous state.
1295 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001296 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001297 private void restoreState(Bundle savedState) {
1298 if (savedState == null) {
1299 return;
1300 }
1301
Michael Jurka883f55b2010-10-21 15:47:14 -07001302 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001303 if (state == State.APPS || state == State.WIDGETS) {
1304 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001305 }
1306
Adam Cohen21cd0022013-10-09 18:57:02 -07001307 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1308 PagedView.INVALID_RESTORE_PAGE);
1309 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001310 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001311 }
1312
Winson Chung3d503fb2011-07-13 17:25:49 -07001313 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001314 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001315
Winson Chung3d503fb2011-07-13 17:25:49 -07001316 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1317 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001318 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001319 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1320 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001321 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1322 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001323 AppWidgetProviderInfo info = savedState.getParcelable(
1324 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001325 mPendingAddWidgetInfo = info == null ?
1326 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1327
Adam Cohen4637b5a2013-11-04 18:21:24 -08001328 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001329 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001330 mRestoring = true;
1331 }
1332
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001333 mItemIdToViewId = (HashMap<Integer, Integer>)
1334 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001335 }
1336
1337 /**
1338 * Finds all the views we need and configure them properly.
1339 */
1340 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001341 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001342
Craig Mautner360310b2012-10-26 15:13:08 -07001343 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001344 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001345 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1346 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001347 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001348 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001349
John Spurlock77e1f472013-09-11 10:09:51 -04001350 mLauncherView.setSystemUiVisibility(
1351 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001352 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001353
Winson Chung4c98d922011-05-31 16:50:48 -07001354 // Setup the drag layer
1355 mDragLayer.setup(this, dragController);
1356
Winson Chung3d503fb2011-07-13 17:25:49 -07001357 // Setup the hotseat
1358 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1359 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001360 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001361 }
1362
Jorim Jaggid017f882014-01-14 17:08:48 -08001363 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001364 mWidgetsButton = findViewById(R.id.widget_button);
1365 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001366 @Override
1367 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001368 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001369 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001370 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001371 }
1372 });
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001373 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001374
1375 View wallpaperButton = findViewById(R.id.wallpaper_button);
1376 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001377 @Override
1378 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001379 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001380 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001381 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001382 }
1383 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001384 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1385
1386 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001387 if (hasSettings()) {
1388 settingsButton.setOnClickListener(new OnClickListener() {
1389 @Override
1390 public void onClick(View arg0) {
1391 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001392 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001393 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001394 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001395 });
1396 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1397 } else {
1398 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001399 }
1400
Adam Cohendbdff6b2013-09-18 19:09:15 -07001401 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001402
Winson Chung4c98d922011-05-31 16:50:48 -07001403 // Setup the workspace
1404 mWorkspace.setHapticFeedbackEnabled(false);
1405 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001406 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001407 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001408
Winson Chungf0ea4d32011-06-06 14:27:16 -07001409 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001410 mSearchDropTargetBar = (SearchDropTargetBar)
1411 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001412
Winson Chungef7f8742015-06-04 17:18:17 -07001413 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001414 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001415 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001416 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1417 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1418 } else {
1419 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1420 }
Craig Mautner360310b2012-10-26 15:13:08 -07001421
Winson Chung3d503fb2011-07-13 17:25:49 -07001422 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001423 dragController.setDragScoller(mWorkspace);
1424 dragController.setScrollView(mDragLayer);
1425 dragController.setMoveTarget(mWorkspace);
1426 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001427 if (mSearchDropTargetBar != null) {
1428 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001429 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001430 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001431
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001432 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001433 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001434 mWeightWatcher = new WeightWatcher(this);
1435 mWeightWatcher.setAlpha(0.5f);
1436 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001437 new FrameLayout.LayoutParams(
1438 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001439 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001440 Gravity.BOTTOM)
1441 );
Adam Cohen39a06042013-07-19 14:30:12 -07001442
1443 boolean show = shouldShowWeightWatcher();
1444 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001445 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001446 }
1447
1448 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001449 * Sets the all apps button. This method is called from {@link Hotseat}.
1450 */
1451 public void setAllAppsButton(View allAppsButton) {
1452 mAllAppsButton = allAppsButton;
1453 }
1454
1455 public View getAllAppsButton() {
1456 return mAllAppsButton;
1457 }
1458
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001459 public View getWidgetsButton() {
1460 return mWidgetsButton;
1461 }
1462
Anjali Koppal5ad44842014-03-10 20:34:39 -07001463 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001464 * Creates a view representing a shortcut.
1465 *
1466 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001467 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001468 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001469 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001470 }
1471
1472 /**
1473 * Creates a view representing a shortcut inflated from the specified resource.
1474 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001475 * @param parent The group the shortcut belongs to.
1476 * @param info The data structure describing the shortcut.
1477 *
1478 * @return A View inflated from layoutResId.
1479 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001480 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001481 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001482 parent, false);
1483 favorite.applyFromShortcutInfo(info, mIconCache);
1484 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001485 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001486 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001487 return favorite;
1488 }
1489
1490 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001491 * Add a shortcut to the workspace.
1492 *
1493 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001494 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001495 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001496 int cellY) {
1497 int[] cellXY = mTmpAddItemCellCoordinates;
1498 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001499 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001500
Sunny Goyal5c97f512015-05-19 16:03:28 -07001501 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001502 if (info == null) {
1503 return;
1504 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001505 final View view = createShortcut(info);
1506
Sunny Goyal5c97f512015-05-19 16:03:28 -07001507 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001508 // First we check if we already know the exact location where we want to add this item.
1509 if (cellX >= 0 && cellY >= 0) {
1510 cellXY[0] = cellX;
1511 cellXY[1] = cellY;
1512 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001513
1514 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001515 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001516 true, null,null)) {
1517 return;
1518 }
1519 DragObject dragObject = new DragObject();
1520 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001521 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1522 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001523 return;
1524 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001525 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001526 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001527 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001528 foundCellSpan = (result != null);
1529 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001530 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001531 }
1532
1533 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001534 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001535 return;
1536 }
1537
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001538 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001539
1540 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001541 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001542 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001543 }
1544 }
1545
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001546 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001547 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001548 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001549 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001550 */
Adam Cohen091440a2015-03-18 14:16:05 -07001551 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001552 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1553
1554 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001555 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001556 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1557 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001558 }
Romain Guycbb89e42009-06-08 15:52:54 -07001559
Adam Cohen59400422014-03-05 18:07:04 -08001560 if (appWidgetInfo.isCustomWidget) {
1561 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001562 }
1563
Adam Cohen59400422014-03-05 18:07:04 -08001564 LauncherAppWidgetInfo launcherInfo;
1565 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1566 launcherInfo.spanX = info.spanX;
1567 launcherInfo.spanY = info.spanY;
1568 launcherInfo.minSpanX = info.minSpanX;
1569 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001570 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001571
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001572 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001573 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001574
1575 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001576 if (hostView == null) {
1577 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001578 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1579 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001580 } else {
1581 // The AppWidgetHostView has already been inflated and instantiated
1582 launcherInfo.hostView = hostView;
1583 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001584 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001585 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001586 launcherInfo.notifyWidgetSizeChanged(this);
1587
Adam Cohen59400422014-03-05 18:07:04 -08001588 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1589 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001590
1591 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001592 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001593 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001594 }
Romain Guycbb89e42009-06-08 15:52:54 -07001595
Adam Cohended9f8d2010-11-03 13:25:16 -07001596 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1597 @Override
1598 public void onReceive(Context context, Intent intent) {
1599 final String action = intent.getAction();
1600 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1601 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001602 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001603 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001604
Winson Chungc100e8e2011-08-09 16:02:43 -07001605 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001606 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001607 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001608 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001609 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001610 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001611 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1612 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001613 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001614 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1615 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001616 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001617 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1618 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1619 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001620 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001621 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1622 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001623 }
1624 }
1625 };
1626
1627 @Override
1628 public void onAttachedToWindow() {
1629 super.onAttachedToWindow();
1630
1631 // Listen for broadcasts related to user-presence
1632 final IntentFilter filter = new IntentFilter();
1633 filter.addAction(Intent.ACTION_SCREEN_OFF);
1634 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001635 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001636 if (ENABLE_DEBUG_INTENTS) {
1637 filter.addAction(DebugIntents.DELETE_DATABASE);
1638 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1639 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001640 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001641 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001642 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001643 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001644 mVisible = true;
1645 }
1646
Adam Cohen0b395352014-06-09 22:54:36 +00001647 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001648 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001649 * This method is a no-op for other platform versions.
1650 */
Sunny Goyald0091012015-01-20 15:55:34 -08001651 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001652 private void setupTransparentSystemBarsForLollipop() {
1653 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001654 Window window = getWindow();
1655 window.getAttributes().systemUiVisibility |=
1656 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1657 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1658 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1659 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1660 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1661 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1662 window.setStatusBarColor(Color.TRANSPARENT);
1663 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001664 }
1665 }
1666
Adam Cohended9f8d2010-11-03 13:25:16 -07001667 @Override
1668 public void onDetachedFromWindow() {
1669 super.onDetachedFromWindow();
1670 mVisible = false;
1671
Adam Cohend113e0c2010-11-11 10:48:05 -08001672 if (mAttached) {
1673 unregisterReceiver(mReceiver);
1674 mAttached = false;
1675 }
Winson Chungb745afb2015-03-02 11:51:23 -08001676 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001677 }
1678
1679 public void onWindowVisibilityChanged(int visibility) {
1680 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001681 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001682 // The following code used to be in onResume, but it turns out onResume is called when
1683 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1684 // is a more appropriate event to handle
1685 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001686 if (!mWorkspaceLoading) {
1687 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001688 // We want to let Launcher draw itself at least once before we force it to build
1689 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001690 // apps is nice and speedy.
1691 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001692 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001693 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001694 if (mStarted) return;
1695 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001696 // We delay the layer building a bit in order to give
1697 // other message processing a time to run. In particular
1698 // this avoids a delay in hiding the IME if it was
1699 // currently shown, because doing that may involve
1700 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001701 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001702 final ViewTreeObserver.OnDrawListener listener = this;
1703 mWorkspace.post(new Runnable() {
1704 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001705 if (mWorkspace != null &&
1706 mWorkspace.getViewTreeObserver() != null) {
1707 mWorkspace.getViewTreeObserver().
1708 removeOnDrawListener(listener);
1709 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001710 }
1711 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001712 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001713 }
1714 });
1715 }
1716 clearTypedText();
1717 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001718 }
1719
Adam Cohen091440a2015-03-18 14:16:05 -07001720 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001721 mHandler.removeMessages(ADVANCE_MSG);
1722 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1723 mHandler.sendMessageDelayed(msg, delay);
1724 mAutoAdvanceSentTime = System.currentTimeMillis();
1725 }
1726
Adam Cohen091440a2015-03-18 14:16:05 -07001727 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001728 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1729 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1730 mAutoAdvanceRunning = autoAdvanceRunning;
1731 if (autoAdvanceRunning) {
1732 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1733 sendAdvanceMessage(delay);
1734 } else {
1735 if (!mWidgetsToAdvance.isEmpty()) {
1736 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1737 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1738 }
1739 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001740 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001741 }
1742 }
1743 }
1744
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001745 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1746
Adam Cohended9f8d2010-11-03 13:25:16 -07001747 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001748 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001749 if (msg.what == ADVANCE_MSG) {
1750 int i = 0;
1751 for (View key: mWidgetsToAdvance.keySet()) {
1752 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1753 final int delay = mAdvanceStagger * i;
1754 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001755 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001756 public void run() {
1757 ((Advanceable) v).advance();
1758 }
1759 }, delay);
1760 }
1761 i++;
1762 }
1763 sendAdvanceMessage(mAdvanceInterval);
1764 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001765 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001766 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001767 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001768
1769 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001770 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001771 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1772 if (v instanceof Advanceable) {
1773 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001774 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001775 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001776 }
1777 }
1778
1779 void removeWidgetToAutoAdvance(View hostView) {
1780 if (mWidgetsToAdvance.containsKey(hostView)) {
1781 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001782 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001783 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001784 }
1785
Joe Onorato9c1289c2009-08-17 11:03:03 -04001786 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001787 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001788 launcherInfo.hostView = null;
1789 }
1790
Hyunyoung Song3f471442015-04-08 19:01:34 -07001791 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001792 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1793 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001794 }
1795
Winson Chunga6945242014-01-08 14:04:34 -08001796 public DragLayer getDragLayer() {
1797 return mDragLayer;
1798 }
1799
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001800 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001801 return mAppsView;
1802 }
1803
Hyunyoung Song3f471442015-04-08 19:01:34 -07001804 public WidgetsContainerView getWidgetsView() {
1805 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001806 }
1807
Winson Chunga6945242014-01-08 14:04:34 -08001808 public Workspace getWorkspace() {
1809 return mWorkspace;
1810 }
1811
1812 public Hotseat getHotseat() {
1813 return mHotseat;
1814 }
1815
Jorim Jaggid017f882014-01-14 17:08:48 -08001816 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001817 return mOverviewPanel;
1818 }
1819
Winson Chung006ee262015-08-03 14:40:11 -07001820 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001821 return mSearchDropTargetBar;
1822 }
1823
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001824 public LauncherAppWidgetHost getAppWidgetHost() {
1825 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001826 }
Romain Guycbb89e42009-06-08 15:52:54 -07001827
Winson Chunga9abd0e2010-10-27 17:18:37 -07001828 public LauncherModel getModel() {
1829 return mModel;
1830 }
1831
Winson Chunga6945242014-01-08 14:04:34 -08001832 protected SharedPreferences getSharedPrefs() {
1833 return mSharedPrefs;
1834 }
1835
Adam Cohen2e6da152015-05-06 11:42:25 -07001836 public DeviceProfile getDeviceProfile() {
1837 return mDeviceProfile;
1838 }
1839
Bjorn Bringertc459e522013-06-07 19:36:01 +01001840 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001841 getWindow().closeAllPanels();
1842
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001843 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001844 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001845 }
1846
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001847 @Override
1848 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001849 long startTime = 0;
1850 if (DEBUG_RESUME_TIME) {
1851 startTime = System.currentTimeMillis();
1852 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001853 super.onNewIntent(intent);
1854
1855 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001856 Folder openFolder = mWorkspace.getOpenFolder();
1857 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1858 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1859 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Winson16615f22015-08-31 11:32:38 -07001860 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1861 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001862 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1863 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001864 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001865 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001866
Adam Cohen6fecd412013-10-02 17:41:50 -07001867 if (mWorkspace == null) {
1868 // Can be cases where mWorkspace is null, this prevents a NPE
1869 return;
1870 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001871 // In all these cases, only animate if we're already on home
1872 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001873
Adam Cohen6fecd412013-10-02 17:41:50 -07001874 closeFolder();
1875 exitSpringLoadedDragMode();
1876
1877 // If we are already on home, then just animate back to the workspace,
1878 // otherwise, just wait until onResume to set the state back to Workspace
1879 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001880 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001881 } else {
1882 mOnResumeState = State.WORKSPACE;
1883 }
1884
1885 final View v = getWindow().peekDecorView();
1886 if (v != null && v.getWindowToken() != null) {
1887 InputMethodManager imm = (InputMethodManager)getSystemService(
1888 INPUT_METHOD_SERVICE);
1889 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1890 }
1891
Winson Chungb745afb2015-03-02 11:51:23 -08001892 // Reset the apps view
1893 if (!alreadyOnHome && mAppsView != null) {
1894 mAppsView.scrollToTop();
1895 }
1896
Hyunyoung Song3f471442015-04-08 19:01:34 -07001897 // Reset the widgets view
1898 if (!alreadyOnHome && mWidgetsView != null) {
1899 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001900 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001901
Adam Cohen9211d422014-10-07 18:14:53 -07001902 if (mLauncherCallbacks != null) {
1903 mLauncherCallbacks.onHomeIntent();
1904 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001905 }
Adam Cohened307df2013-10-02 09:37:31 -07001906
Adam Cohen9211d422014-10-07 18:14:53 -07001907 if (mLauncherCallbacks != null) {
1908 mLauncherCallbacks.onNewIntent(intent);
1909 }
Winson15f8b172015-08-19 11:02:39 -07001910
1911 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1912 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1913 // animation.
1914 if (isActionMain) {
Winson15f8b172015-08-19 11:02:39 -07001915 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1916 openFolder == null && moveToDefaultScreen) {
1917 mWorkspace.post(new Runnable() {
1918 @Override
1919 public void run() {
1920 mWorkspace.moveToDefaultScreen(true);
1921 }
1922 });
1923 }
1924 }
1925
1926 if (DEBUG_RESUME_TIME) {
1927 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1928 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001929 }
1930
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001931 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001932 public void onRestoreInstanceState(Bundle state) {
1933 super.onRestoreInstanceState(state);
1934 for (int page: mSynchronouslyBoundPages) {
1935 mWorkspace.restoreInstanceStateForChild(page);
1936 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001937 }
1938
1939 @Override
1940 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001941 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001942 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1943 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001944 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001945 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001946
Michael Jurka883f55b2010-10-21 15:47:14 -07001947 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001948 // We close any open folder since it will not be re-opened, and we need to make sure
1949 // this state is reflected.
1950 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001951
Adam Cohendcd297f2013-06-18 13:13:40 -07001952 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001953 mWaitingForResult) {
1954 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001955 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001956 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1957 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001958 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1959 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1960 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001961 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001962 }
1963
Hyunyoung Song3f471442015-04-08 19:01:34 -07001964 // Save the current widgets tray?
1965 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001966 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001967
1968 if (mLauncherCallbacks != null) {
1969 mLauncherCallbacks.onSaveInstanceState(outState);
1970 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001971 }
1972
1973 @Override
1974 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001975 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001976
Winson Chunge7a03942011-08-05 15:05:12 -07001977 // Remove all pending runnables
1978 mHandler.removeMessages(ADVANCE_MSG);
1979 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001980 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001981
Winson Chungcd2b0142011-06-08 16:02:26 -07001982 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001983 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001984
1985 // It's possible to receive onDestroy after a new Launcher activity has
1986 // been created. In this case, don't interfere with the new Launcher.
1987 if (mModel.isCurrentCallbacks(this)) {
1988 mModel.stopLoader();
1989 app.setLauncher(null);
1990 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001991
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001992 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001993 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001994 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001995 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001996 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001997 mAppWidgetHost = null;
1998
1999 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002000
2001 TextKeyListener.getInstance().release();
2002
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002003 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002004
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002005 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002006 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002007 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002008 mWorkspace = null;
2009 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002010
Michael Jurka2ecf9952012-06-18 12:52:28 -07002011 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002012
2013 if (mLauncherCallbacks != null) {
2014 mLauncherCallbacks.onDestroy();
2015 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002016 }
2017
Adam Cohena9cf38f2011-05-02 15:36:58 -07002018 public DragController getDragController() {
2019 return mDragController;
2020 }
2021
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002022 @Override
2023 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002024 onStartForResult(requestCode);
2025 super.startActivityForResult(intent, requestCode);
2026 }
2027
2028 @Override
2029 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2030 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2031 onStartForResult(requestCode);
2032 try {
2033 super.startIntentSenderForResult(intent, requestCode,
2034 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2035 } catch (IntentSender.SendIntentException e) {
2036 throw new ActivityNotFoundException();
2037 }
2038 }
2039
2040 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002041 if (requestCode >= 0) {
2042 setWaitingForResult(true);
2043 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002044 }
2045
Winson Chung70d72102011-08-12 11:24:35 -07002046 /**
2047 * Indicates that we want global search for this activity by setting the globalSearch
2048 * argument for {@link #startSearch} to true.
2049 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002050 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002051 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002052 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002053
Karl Rosaen138a0412009-04-23 19:00:21 -07002054 if (initialQuery == null) {
2055 // Use any text typed in the launcher as the initial query
2056 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002057 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002058 if (appSearchData == null) {
2059 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002060 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002061 }
Winson Chungadf0c182012-08-23 14:59:07 -07002062 Rect sourceBounds = new Rect();
2063 if (mSearchDropTargetBar != null) {
2064 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2065 }
Romain Guycbb89e42009-06-08 15:52:54 -07002066
Ian Parkinson047036e2014-09-01 15:40:53 +01002067 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002068 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002069 if (clearTextImmediately) {
2070 clearTypedText();
2071 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002072
2073 // We need to show the workspace after starting the search
2074 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002075 }
2076
Ian Parkinson047036e2014-09-01 15:40:53 +01002077 /**
2078 * Start a text search.
2079 *
2080 * @return {@code true} if the search will start immediately, so any further keypresses
2081 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2082 * to buffer keypresses.
2083 */
2084 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002085 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002086 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2087 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2088 sourceBounds);
2089 }
2090
Michael Jurkaa33411c2012-06-14 16:18:21 -07002091 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002092 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002093 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002094 }
2095
2096 /**
2097 * Starts the global search activity. This code is a copied from SearchManager
2098 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002099 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002100 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002101 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002102 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2103 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2104 if (globalSearchActivity == null) {
2105 Log.w(TAG, "No global search activity found.");
2106 return;
2107 }
2108 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2109 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2110 intent.setComponent(globalSearchActivity);
2111 // Make sure that we have a Bundle to put source in
2112 if (appSearchData == null) {
2113 appSearchData = new Bundle();
2114 } else {
2115 appSearchData = new Bundle(appSearchData);
2116 }
Adam Cohen9211d422014-10-07 18:14:53 -07002117 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002118 if (!appSearchData.containsKey("source")) {
2119 appSearchData.putString("source", getPackageName());
2120 }
2121 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2122 if (!TextUtils.isEmpty(initialQuery)) {
2123 intent.putExtra(SearchManager.QUERY, initialQuery);
2124 }
2125 if (selectInitialQuery) {
2126 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2127 }
2128 intent.setSourceBounds(sourceBounds);
2129 try {
2130 startActivity(intent);
2131 } catch (ActivityNotFoundException ex) {
2132 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2133 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002134 }
2135
Winson Chungbedf9232015-07-10 12:38:30 -07002136 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2137 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2138 return;
2139 }
2140
2141 // If not handled, then just start the provided search intent
2142 startActivitySafely(v, searchIntent, null);
2143 }
2144
Yura4f93ec62014-02-04 14:15:21 +00002145 public boolean isOnCustomContent() {
2146 return mWorkspace.isOnOrMovingToCustomContent();
2147 }
2148
Winson Chung70d72102011-08-12 11:24:35 -07002149 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002150 public boolean onPrepareOptionsMenu(Menu menu) {
2151 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002152 if (!isOnCustomContent()) {
2153 // Close any open folders
2154 closeFolder();
2155 // Stop resizing any widgets
2156 mWorkspace.exitWidgetResizeMode();
2157 if (!mWorkspace.isInOverviewMode()) {
2158 // Show the overview mode
2159 showOverviewMode(true);
2160 } else {
2161 showWorkspace(true);
2162 }
Winson Chunge0298742014-01-17 12:03:00 -08002163 }
Adam Cohen9211d422014-10-07 18:14:53 -07002164 if (mLauncherCallbacks != null) {
2165 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2166 }
2167
Michael Jurkab94f3f82013-09-11 18:08:54 +02002168 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002169 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002170
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002171 @Override
2172 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002173 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002174 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002175 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002176 }
2177
Joe Onorato9c1289c2009-08-17 11:03:03 -04002178 public boolean isWorkspaceLocked() {
2179 return mWorkspaceLoading || mWaitingForResult;
2180 }
2181
Adam Cohen517a7f52014-03-01 12:12:59 -08002182 public boolean isWorkspaceLoading() {
2183 return mWorkspaceLoading;
2184 }
2185
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002186 private void setWorkspaceLoading(boolean value) {
2187 boolean isLocked = isWorkspaceLocked();
2188 mWorkspaceLoading = value;
2189 if (isLocked != isWorkspaceLocked()) {
2190 onWorkspaceLockedChanged();
2191 }
2192 }
2193
2194 private void setWaitingForResult(boolean value) {
2195 boolean isLocked = isWorkspaceLocked();
2196 mWaitingForResult = value;
2197 if (isLocked != isWorkspaceLocked()) {
2198 onWorkspaceLockedChanged();
2199 }
2200 }
2201
Adam Cohen9211d422014-10-07 18:14:53 -07002202 protected void onWorkspaceLockedChanged() {
2203 if (mLauncherCallbacks != null) {
2204 mLauncherCallbacks.onWorkspaceLockedChanged();
2205 }
2206 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002207
Michael Jurka0280c3b2010-09-17 15:00:07 -07002208 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002209 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002210 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002211 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2212 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002213 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002214 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002215 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002216
Sunny Goyale6b63a32015-01-16 16:14:29 -08002217 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002218 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002219 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2220 }
2221
Sunny Goyale6b63a32015-01-16 16:14:29 -08002222 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002223 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2224 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002225 if (appWidgetInfo.configure != null) {
2226 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002227 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002228
Bjorn Bringert7984c942009-12-09 15:38:25 +00002229 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002230 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2231 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2232
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002233 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002234 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002235 Runnable onComplete = new Runnable() {
2236 @Override
2237 public void run() {
2238 // Exit spring loaded mode if necessary after adding the widget
2239 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2240 null);
2241 }
2242 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002243 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002244 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002245 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002246 }
2247 }
Romain Guycbb89e42009-06-08 15:52:54 -07002248
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002249 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002250 // Close any folders that may be open.
2251 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002252 mWorkspace.moveToCustomContentScreen(animate);
2253 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002254
2255 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2256 int[] cell, int spanX, int spanY) {
2257 switch (info.itemType) {
2258 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2259 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2260 int span[] = new int[2];
2261 span[0] = spanX;
2262 span[1] = spanY;
2263 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2264 container, screenId, cell, span);
2265 break;
2266 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2267 processShortcutFromDrop(info.componentName, container, screenId, cell);
2268 break;
2269 default:
2270 throw new IllegalStateException("Unknown item type: " + info.itemType);
2271 }
2272 }
2273
Adam Cohenfbba09b2011-07-18 21:43:05 -07002274 /**
2275 * Process a shortcut drop.
2276 *
2277 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002278 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002279 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002280 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002281 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2282 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002283 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002284 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002285 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002286 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002287
2288 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002289 mPendingAddInfo.cellX = cell[0];
2290 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002291 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002292
2293 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2294 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002295 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002296 }
2297
Adam Cohenfbba09b2011-07-18 21:43:05 -07002298 /**
2299 * Process a widget drop.
2300 *
2301 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002302 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002303 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002304 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002305 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2306 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002307 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002308 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002309 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002310 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002311 mPendingAddInfo.minSpanX = info.minSpanX;
2312 mPendingAddInfo.minSpanY = info.minSpanY;
2313
Adam Cohenfbba09b2011-07-18 21:43:05 -07002314 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002315 mPendingAddInfo.cellX = cell[0];
2316 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002317 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002318 if (span != null) {
2319 mPendingAddInfo.spanX = span[0];
2320 mPendingAddInfo.spanY = span[1];
2321 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002322
Adam Cohened66b2b2012-01-23 17:28:51 -08002323 AppWidgetHostView hostView = info.boundWidget;
2324 int appWidgetId;
2325 if (hostView != null) {
2326 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002327 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002328
2329 // Clear the boundWidget so that it doesn't get destroyed.
2330 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002331 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002332 // In this case, we either need to start an activity to get permission to bind
2333 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002334 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002335 Bundle options = info.bindOptions;
2336
Sunny Goyalffe83f12014-08-14 17:39:34 -07002337 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2338 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002339 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002340 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002341 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002342 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002343 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2344 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2345 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002346 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2347 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002348 // TODO: we need to make sure that this accounts for the options bundle.
2349 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002350 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2351 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002352 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002353 }
2354
Adam Cohendcd297f2013-06-18 13:13:40 -07002355 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002356 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002357 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002358 folderInfo.title = getText(R.string.folder_name);
2359
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002360 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002361 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2362 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002363 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002364
2365 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002366 FolderIcon newFolder =
2367 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002368 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002369 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002370 // Force measure the new folder icon
2371 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2372 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002373 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002374 }
Romain Guycbb89e42009-06-08 15:52:54 -07002375
Joe Onorato9c1289c2009-08-17 11:03:03 -04002376 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002377 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002378 }
2379
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002380 @Override
2381 public boolean dispatchKeyEvent(KeyEvent event) {
2382 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2383 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002384 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002385 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002386 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002387 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002388 dumpState();
2389 return true;
2390 }
2391 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002392 }
2393 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2394 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002395 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002396 return true;
2397 }
2398 }
2399
2400 return super.dispatchKeyEvent(event);
2401 }
2402
Joe Onorato88ec0992009-11-19 13:16:06 -08002403 @Override
2404 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002405 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2406 return;
2407 }
2408
Sunny Goyal45478022015-06-08 16:52:41 -07002409 if (mDragController.isDragging()) {
2410 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002411 return;
2412 }
2413
Winson Chungb745afb2015-03-02 11:51:23 -08002414 if (isAppsViewVisible()) {
2415 showWorkspace(true);
2416 } else if (isWidgetsViewVisible()) {
2417 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002418 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002419 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002420 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002421 Folder openFolder = mWorkspace.getOpenFolder();
2422 if (openFolder.isEditingName()) {
2423 openFolder.dismissEditingName();
2424 } else {
2425 closeFolder();
2426 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002427 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002428 mWorkspace.exitWidgetResizeMode();
2429
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002430 // Back button is a no-op here, but give at least some feedback for the button press
2431 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002432 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002433 }
2434
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002435 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002436 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002437 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002438 @Override
2439 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002440 if (mAppWidgetHost != null) {
2441 mAppWidgetHost.startListening();
2442 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002443 }
2444
2445 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002446 * Launches the intent referred by the clicked shortcut.
2447 *
2448 * @param v The view representing the clicked shortcut.
2449 */
2450 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002451 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2452 // view has detached (it's possible for this to happen if the view is removed mid touch).
2453 if (v.getWindowToken() == null) {
2454 return;
2455 }
2456
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002457 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002458 return;
2459 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002460
Adam Cohen1697b792013-09-17 19:08:21 -07002461 if (v instanceof Workspace) {
2462 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002463 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002464 }
2465 return;
2466 }
2467
2468 if (v instanceof CellLayout) {
2469 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002470 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002471 }
2472 }
2473
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002474 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002475 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002476 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002477 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002478 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002479 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002480 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002481 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002482 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002483 } else if (tag instanceof AppInfo) {
2484 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002485 } else if (tag instanceof LauncherAppWidgetInfo) {
2486 if (v instanceof PendingAppWidgetHostView) {
2487 onClickPendingWidget((PendingAppWidgetHostView) v);
2488 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002489 }
2490 }
2491
Sunny Goyal70660032015-05-14 00:07:08 -07002492 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002493 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002494 return false;
2495 }
2496
Michael Jurkaaf442092010-06-10 17:01:57 -07002497 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002498 * Event handler for the app widget view which has not fully restored.
2499 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002500 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002501 if (mIsSafeModeEnabled) {
2502 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2503 return;
2504 }
2505
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002506 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002507 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002508 int widgetId = info.appWidgetId;
2509 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2510 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002511 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2512 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002513 mPendingAddInfo.copyFrom(info);
2514 mPendingAddWidgetId = widgetId;
2515
Sunny Goyalffe83f12014-08-14 17:39:34 -07002516 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2517 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002518 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002519 } else if (info.installProgress < 0) {
2520 // The install has not been queued
2521 final String packageName = info.providerName.getPackageName();
2522 showBrokenAppInstallDialog(packageName,
2523 new DialogInterface.OnClickListener() {
2524 public void onClick(DialogInterface dialog, int id) {
2525 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2526 }
2527 });
2528 } else {
2529 // Download has started.
2530 final String packageName = info.providerName.getPackageName();
2531 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002532 }
2533 }
2534
2535 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002536 * Event handler for the "grid" button that appears on the home screen, which
2537 * enters all apps mode.
2538 *
2539 * @param v The view that was clicked.
2540 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002541 protected void onClickAllAppsButton(View v) {
2542 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002543 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002544 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002545 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002546
2547 if (mLauncherCallbacks != null) {
2548 mLauncherCallbacks.onClickAllAppsButton(v);
2549 }
Winson Chung76648c52015-07-10 14:33:23 -07002550 }
2551 }
2552
2553 protected void onLongClickAllAppsButton(View v) {
2554 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2555 if (!isAppsViewVisible()) {
2556 showAppsView(true /* animated */, false /* resetListToTop */,
2557 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002558 }
2559 }
2560
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002561 private void showBrokenAppInstallDialog(final String packageName,
2562 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002563 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002564 .setTitle(R.string.abandoned_promises_title)
2565 .setMessage(R.string.abandoned_promise_explanation)
2566 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2567 .setNeutralButton(R.string.abandoned_clean_this,
2568 new DialogInterface.OnClickListener() {
2569 public void onClick(DialogInterface dialog, int id) {
2570 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2571 mWorkspace.removeAbandonedPromise(packageName, user);
2572 }
2573 })
2574 .create().show();
2575 return;
2576 }
2577
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002578 /**
2579 * Event handler for an app shortcut click.
2580 *
2581 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2582 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002583 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002584 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2585 Object tag = v.getTag();
2586 if (!(tag instanceof ShortcutInfo)) {
2587 throw new IllegalArgumentException("Input must be a Shortcut");
2588 }
2589
2590 // Open shortcut
2591 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002592
2593 if (shortcut.isDisabled != 0) {
2594 int error = R.string.activity_not_available;
2595 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2596 error = R.string.safemode_shortcut_error;
2597 }
2598 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2599 return;
2600 }
2601
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002602 final Intent intent = shortcut.intent;
2603
2604 // Check for special shortcuts
2605 if (intent.getComponent() != null) {
2606 final String shortcutClass = intent.getComponent().getClassName();
2607
2608 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2609 MemoryDumpActivity.startDump(this);
2610 return;
2611 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2612 toggleShowWeightWatcher();
2613 return;
2614 }
2615 }
2616
Chris Wren40c5ed32014-06-24 18:24:23 -04002617 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002618 if ((v instanceof BubbleTextView)
2619 && shortcut.isPromise()
2620 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002621 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002622 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002623 new DialogInterface.OnClickListener() {
2624 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002625 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002626 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002627 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002628 return;
2629 }
2630
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002631 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002632 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002633
2634 if (mLauncherCallbacks != null) {
2635 mLauncherCallbacks.onClickAppShortcut(v);
2636 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002637 }
2638
Adam Cohen091440a2015-03-18 14:16:05 -07002639 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002640 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002641 final ShortcutInfo shortcut;
2642 final Intent intent;
2643 if (tag instanceof ShortcutInfo) {
2644 shortcut = (ShortcutInfo) tag;
2645 intent = shortcut.intent;
2646 int[] pos = new int[2];
2647 v.getLocationOnScreen(pos);
2648 intent.setSourceBounds(new Rect(pos[0], pos[1],
2649 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002650
Sunny Goyal508da152014-08-14 10:53:27 -07002651 } else if (tag instanceof AppInfo) {
2652 shortcut = null;
2653 intent = ((AppInfo) tag).intent;
2654 } else {
2655 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2656 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002657
2658 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002659 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002660
2661 if (success && v instanceof BubbleTextView) {
2662 mWaitingForResume = (BubbleTextView) v;
2663 mWaitingForResume.setStayPressed(true);
2664 }
2665 }
2666
2667 /**
2668 * Event handler for a folder icon click.
2669 *
2670 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2671 */
2672 protected void onClickFolderIcon(View v) {
2673 if (LOGD) Log.d(TAG, "onClickFolder");
2674 if (!(v instanceof FolderIcon)){
2675 throw new IllegalArgumentException("Input must be a FolderIcon");
2676 }
2677
Sunny Goyal317698b2015-07-29 11:45:41 -07002678 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002679 FolderIcon folderIcon = (FolderIcon) v;
2680 final FolderInfo info = folderIcon.getFolderInfo();
2681 Folder openFolder = mWorkspace.getFolderForTag(info);
2682
2683 // If the folder info reports that the associated folder is open, then verify that
2684 // it is actually opened. There have been a few instances where this gets out of sync.
2685 if (info.opened && openFolder == null) {
2686 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2687 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2688 info.opened = false;
2689 }
2690
2691 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2692 // Close any open folder
2693 closeFolder();
2694 // Open the requested folder
2695 openFolder(folderIcon);
2696 } else {
2697 // Find the open folder...
2698 int folderScreen;
2699 if (openFolder != null) {
2700 folderScreen = mWorkspace.getPageForView(openFolder);
2701 // .. and close it
2702 closeFolder(openFolder);
2703 if (folderScreen != mWorkspace.getCurrentPage()) {
2704 // Close any folder open on the current screen
2705 closeFolder();
2706 // Pull the folder onto this screen
2707 openFolder(folderIcon);
2708 }
2709 }
2710 }
Adam Cohen9211d422014-10-07 18:14:53 -07002711
2712 if (mLauncherCallbacks != null) {
2713 mLauncherCallbacks.onClickFolderIcon(v);
2714 }
Michael Jurka5130e402011-10-13 04:55:35 -07002715 }
2716
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002717 /**
2718 * Event handler for the (Add) Widgets button that appears after a long press
2719 * on the home screen.
2720 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002721 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002722 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002723 if (mIsSafeModeEnabled) {
2724 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2725 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002726 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002727 if (mLauncherCallbacks != null) {
2728 mLauncherCallbacks.onClickAddWidgetButton(view);
2729 }
Adam Cohen9211d422014-10-07 18:14:53 -07002730 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002731 }
2732
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002733 /**
2734 * Event handler for the wallpaper picker button that appears after a long press
2735 * on the home screen.
2736 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002737 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002738 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002739 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2740 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002741
2742 if (mLauncherCallbacks != null) {
2743 mLauncherCallbacks.onClickWallpaperPicker(v);
2744 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002745 }
2746
2747 /**
2748 * Event handler for a click on the settings button that appears after a long press
2749 * on the home screen.
2750 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002751 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002752 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002753 if (mLauncherCallbacks != null) {
2754 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002755 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002756 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002757 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002758 }
2759
Adam Cohen61f560d2013-09-30 15:58:20 -07002760 public View.OnTouchListener getHapticFeedbackTouchListener() {
2761 if (mHapticFeedbackTouchListener == null) {
2762 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002763 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002764 @Override
2765 public boolean onTouch(View v, MotionEvent event) {
2766 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2767 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2768 }
2769 return false;
2770 }
2771 };
2772 }
2773 return mHapticFeedbackTouchListener;
2774 }
2775
Adam Cohen9211d422014-10-07 18:14:53 -07002776 public void onDragStarted(View view) {
2777 if (isOnCustomContent()) {
2778 // Custom content screen doesn't participate in drag and drop. If on custom
2779 // content screen, move to default.
2780 moveWorkspaceToDefaultScreen();
2781 }
2782
2783 if (mLauncherCallbacks != null) {
2784 mLauncherCallbacks.onDragStarted(view);
2785 }
2786 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002787
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002788 /**
2789 * Called when the user stops interacting with the launcher.
2790 * This implies that the user is now on the homescreen and is not doing housekeeping.
2791 */
Adam Cohen9211d422014-10-07 18:14:53 -07002792 protected void onInteractionEnd() {
2793 if (mLauncherCallbacks != null) {
2794 mLauncherCallbacks.onInteractionEnd();
2795 }
2796 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002797
2798 /**
2799 * Called when the user starts interacting with the launcher.
2800 * The possible interactions are:
2801 * - open all apps
2802 * - reorder an app shortcut, or a widget
2803 * - open the overview mode.
2804 * This is a good time to stop doing things that only make sense
2805 * when the user is on the homescreen and not doing housekeeping.
2806 */
Adam Cohen9211d422014-10-07 18:14:53 -07002807 protected void onInteractionBegin() {
2808 if (mLauncherCallbacks != null) {
2809 mLauncherCallbacks.onInteractionBegin();
2810 }
2811 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002812
Winson Chungcd99cd32015-04-29 11:03:24 -07002813 /** Updates the interaction state. */
2814 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002815 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002816 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002817 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2818 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002819 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002820 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002821 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002822 onInteractionEnd();
2823 }
2824 }
2825
Kenny Guyf07af7b2014-07-31 11:39:16 +01002826 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002827 try {
2828 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002829 launcherApps.showAppDetailsForProfile(componentName, user);
2830 } catch (SecurityException e) {
2831 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2832 Log.e(TAG, "Launcher does not have permission to launch settings");
2833 } catch (ActivityNotFoundException e) {
2834 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2835 Log.e(TAG, "Unable to launch settings");
2836 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002837 }
2838
Michael Jurka1e2f4652013-07-08 18:03:46 -07002839 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002840 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2841 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002842 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002843 // System applications cannot be installed. For now, show a toast explaining that.
2844 // We may give them the option of disabling apps this way.
2845 int messageId = R.string.uninstall_system_app_text;
2846 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002847 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002848 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002849 String packageName = componentName.getPackageName();
2850 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002851 Intent intent = new Intent(
2852 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002853 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2854 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002855 if (user != null) {
2856 user.addToIntent(intent, Intent.EXTRA_USER);
2857 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002858 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002859 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002860 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002861 }
2862
Winson Chung8f1eff72015-05-28 17:33:40 -07002863 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002864 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002865 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002866 // Only launch using the new animation if the shortcut has not opted out (this is a
2867 // private contract between launcher and may be ignored in the future).
2868 boolean useLaunchAnimation = (v != null) &&
2869 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002870 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2871 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002872
Kenny Guy1317e2d2014-05-08 18:52:50 +01002873 UserHandleCompat user = null;
2874 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2875 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2876 user = userManager.getUserForSerialNumber(serialNumber);
2877 }
2878
2879 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002880 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002881 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002882 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002883 int left = 0, top = 0;
2884 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2885 if (v instanceof TextView) {
2886 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002887 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2888 if (icon != null) {
2889 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002890 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002891 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002892 width = bounds.width();
2893 height = bounds.height();
2894 }
2895 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002896 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2897 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002898 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002899 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002900 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002901 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002902 // On L devices, we use the device default slide-up transition.
2903 // On L MR1 devices, we a custom version of the slide-up transition which
2904 // doesn't have the delay present in the device default.
2905 opts = ActivityOptions.makeCustomAnimation(this,
2906 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002907 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002908 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002909 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002910
2911 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2912 // Could be launching some bookkeeping activity
2913 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002914 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002915 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002916 launcherApps.startActivityForProfile(intent.getComponent(), user,
2917 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002918 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002919 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002920 } catch (SecurityException e) {
2921 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002922 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002923 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002924 "or use the exported attribute for this activity. "
2925 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002926 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002927 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002928 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002929
Winson Chungbedf9232015-07-10 12:38:30 -07002930 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002931 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002932 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2933 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2934 return false;
2935 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002936 try {
2937 success = startActivity(v, intent, tag);
2938 } catch (ActivityNotFoundException e) {
2939 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2940 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2941 }
2942 return success;
2943 }
2944
Adam Cohen268c4752012-06-06 17:47:33 -07002945 /**
2946 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2947 * in the DragLayer in the exact absolute location of the original FolderIcon.
2948 */
2949 private void copyFolderIconToImage(FolderIcon fi) {
2950 final int width = fi.getMeasuredWidth();
2951 final int height = fi.getMeasuredHeight();
2952
2953 // Lazy load ImageView, Bitmap and Canvas
2954 if (mFolderIconImageView == null) {
2955 mFolderIconImageView = new ImageView(this);
2956 }
2957 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2958 mFolderIconBitmap.getHeight() != height) {
2959 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2960 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2961 }
2962
2963 DragLayer.LayoutParams lp;
2964 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2965 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2966 } else {
2967 lp = new DragLayer.LayoutParams(width, height);
2968 }
2969
Adam Cohen307fe232012-08-16 17:55:58 -07002970 // The layout from which the folder is being opened may be scaled, adjust the starting
2971 // view size by this scale factor.
2972 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002973 lp.customPosition = true;
2974 lp.x = mRectForFolderAnimation.left;
2975 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002976 lp.width = (int) (scale * width);
2977 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002978
2979 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2980 fi.draw(mFolderIconCanvas);
2981 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002982 if (fi.getFolder() != null) {
2983 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2984 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002985 }
Adam Cohen268c4752012-06-06 17:47:33 -07002986 // Just in case this image view is still in the drag layer from a previous animation,
2987 // we remove it and re-add it.
2988 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2989 mDragLayer.removeView(mFolderIconImageView);
2990 }
2991 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002992 if (fi.getFolder() != null) {
2993 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002994 }
Adam Cohen268c4752012-06-06 17:47:33 -07002995 }
2996
Adam Cohen2801caf2011-05-13 20:57:39 -07002997 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002998 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002999 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3000 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3001 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3002
Adam Cohenc51934b2011-07-26 21:07:43 -07003003 FolderInfo info = (FolderInfo) fi.getTag();
3004 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3005 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003006 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3007 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003008 }
3009
Adam Cohen268c4752012-06-06 17:47:33 -07003010 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3011 copyFolderIconToImage(fi);
3012 fi.setVisibility(View.INVISIBLE);
3013
Michael Jurka2ecf9952012-06-18 12:52:28 -07003014 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003015 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003016 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003017 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3018 }
3019 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003020 oa.start();
3021 }
3022
Adam Cohen268c4752012-06-06 17:47:33 -07003023 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003024 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003025 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3026 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3027 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3028
Adam Cohen268c4752012-06-06 17:47:33 -07003029 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003030
Adam Cohen268c4752012-06-06 17:47:33 -07003031 // We remove and re-draw the FolderIcon in-case it has changed
3032 mDragLayer.removeView(mFolderIconImageView);
3033 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003034 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003035 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003036 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003037 oa.addListener(new AnimatorListenerAdapter() {
3038 @Override
3039 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003040 if (cl != null) {
3041 cl.clearFolderLeaveBehind();
3042 // Remove the ImageView copy of the FolderIcon and make the original visible.
3043 mDragLayer.removeView(mFolderIconImageView);
3044 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003045 }
3046 }
3047 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003048 oa.start();
3049 }
3050
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003051 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003052 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003053 * is animated relative to the specified View. If the View is null, no animation
3054 * is played.
3055 *
3056 * @param folderInfo The FolderInfo describing the folder to open.
3057 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003058 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003059 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003060 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3061 if (openFolder != null && openFolder != folder) {
3062 // Close any open folder before opening a folder.
3063 closeFolder();
3064 }
3065
Adam Cohena9cf38f2011-05-02 15:36:58 -07003066 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003067
Adam Cohena9cf38f2011-05-02 15:36:58 -07003068 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003069
Sunny Goyalf4066152015-04-15 09:42:19 -07003070 // While the folder is open, the position of the icon cannot change.
3071 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3072
Adam Cohen4554ee12011-08-03 16:13:21 -07003073 // Just verify that the folder hasn't already been added to the DragLayer.
3074 // There was a one-off crash where the folder had a parent already.
3075 if (folder.getParent() == null) {
3076 mDragLayer.addView(folder);
3077 mDragController.addDropTarget((DropTarget) folder);
3078 } else {
3079 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3080 folder.getParent() + ").");
3081 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003082 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003083 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003084
3085 // Notify the accessibility manager that this folder "window" has appeared and occluded
3086 // the workspace items
3087 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3088 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003089 }
3090
3091 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003092 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003093 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003094 if (folder.isEditingName()) {
3095 folder.dismissEditingName();
3096 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003097 closeFolder(folder);
3098 }
3099 }
3100
Sunny Goyal83a8f042015-05-19 12:52:12 -07003101 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003102 folder.getInfo().opened = false;
3103
3104 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3105 if (parent != null) {
3106 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3107 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003108 if (fi != null) {
3109 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3110 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003111 }
3112 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003113
3114 // Notify the accessibility manager that this folder "window" has disappeard and no
3115 // longer occludeds the workspace items
3116 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003117 }
3118
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003119 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003120 if (!isDraggingEnabled()) return false;
3121 if (isWorkspaceLocked()) return false;
3122 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003123
Winson Chung76648c52015-07-10 14:33:23 -07003124 if (v == mAllAppsButton) {
3125 onLongClickAllAppsButton(v);
3126 return true;
3127 }
3128
Adam Cohen1697b792013-09-17 19:08:21 -07003129 if (v instanceof Workspace) {
3130 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003131 if (!mWorkspace.isTouchActive()) {
3132 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003133 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3134 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3135 return true;
3136 } else {
3137 return false;
3138 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003139 } else {
3140 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003141 }
Adam Cohen1697b792013-09-17 19:08:21 -07003142 }
3143
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003144 CellLayout.CellInfo longClickCellInfo = null;
3145 View itemUnderLongClick = null;
3146 if (v.getTag() instanceof ItemInfo) {
3147 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003148 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003149 itemUnderLongClick = longClickCellInfo.cell;
3150 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003151 }
3152
Winson Chung3d503fb2011-07-13 17:25:49 -07003153 // The hotseat touch handling does not go through Workspace, and we always allow long press
3154 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003155 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003156 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003157 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003158 // User long pressed on empty space
3159 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3160 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003161 if (mWorkspace.isInOverviewMode()) {
3162 mWorkspace.startReordering(v);
3163 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003164 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003165 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003166 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003167 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3168 mHotseat.getOrderInHotseat(
3169 longClickCellInfo.cellX,
3170 longClickCellInfo.cellY));
3171 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003172 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003173 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003174 }
3175 }
3176 }
3177 return true;
3178 }
3179
Winson Chung3d503fb2011-07-13 17:25:49 -07003180 boolean isHotseatLayout(View layout) {
3181 return mHotseat != null && layout != null &&
3182 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3183 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003184
Winson Chung3d503fb2011-07-13 17:25:49 -07003185 /**
3186 * Returns the CellLayout of the specified container at the specified screen.
3187 */
Sunny Goyal92820592015-03-02 11:31:35 -08003188 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003189 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3190 if (mHotseat != null) {
3191 return mHotseat.getLayout();
3192 } else {
3193 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003194 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003195 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003196 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003197 }
3198 }
3199
Winson Chungb745afb2015-03-02 11:51:23 -08003200 /**
3201 * For overridden classes.
3202 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003203 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003204 return isAppsViewVisible();
3205 }
3206
3207 public boolean isAppsViewVisible() {
3208 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3209 }
3210
3211 public boolean isWidgetsViewVisible() {
3212 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003213 }
3214
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003215 private void setWorkspaceBackground(int background) {
3216 switch (background) {
3217 case WORKSPACE_BACKGROUND_TRANSPARENT:
3218 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3219 break;
3220 case WORKSPACE_BACKGROUND_BLACK:
3221 getWindow().setBackgroundDrawable(null);
3222 break;
3223 default:
3224 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3225 }
Craig Mautner360310b2012-10-26 15:13:08 -07003226 }
3227
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003228 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003229 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3230 int curflags = getWindow().getAttributes().flags
3231 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3232 if (wpflags != curflags) {
3233 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3234 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003235 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003236 }
3237
Michael Jurkae326f182011-11-21 14:05:46 -08003238 @Override
3239 public void onTrimMemory(int level) {
3240 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003241 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3242 // The widget preview db can result in holding onto over
3243 // 3MB of memory for caching which isn't necessary.
3244 SQLiteDatabase.releaseMemory();
3245
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003246 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003247 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003248 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003249 if (mLauncherCallbacks != null) {
3250 mLauncherCallbacks.onTrimMemory(level);
3251 }
Michael Jurkae326f182011-11-21 14:05:46 -08003252 }
3253
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003254 public void showWorkspace(boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003255 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003256 }
3257
Sunny Goyal83a8f042015-05-19 12:52:12 -07003258 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003259 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003260 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003261 }
3262
3263 protected void showWorkspace(int snapToPage, boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003264 showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003265 }
3266
Winson Chungef7f8742015-06-04 17:18:17 -07003267 void showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003268 boolean changed = mState != State.WORKSPACE ||
3269 mWorkspace.getState() != Workspace.State.NORMAL;
3270 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003271 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003272 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3273 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003274
Michael Jurkab3e22d92011-10-31 15:58:33 -07003275 // Set focus to the AppsCustomize button
3276 if (mAllAppsButton != null) {
3277 mAllAppsButton.requestFocus();
3278 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003279 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003280
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003281 // Change the state *after* we've called all the transition code
3282 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003283
Winson Chung5fb63472011-02-02 17:03:37 -08003284 // Resume the auto-advance of widgets
3285 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003286 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003287
Winson Chung0f785722015-04-08 10:27:49 -07003288 if (changed) {
3289 // Send an accessibility event to announce the context change
3290 getWindow().getDecorView()
3291 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003292 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003293 }
3294
Adam Cohened307df2013-10-02 09:37:31 -07003295 void showOverviewMode(boolean animated) {
3296 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003297 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3298 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003299 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3300 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003301 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003302 }
3303
Winson Chungb745afb2015-03-02 11:51:23 -08003304 /**
3305 * Shows the apps view.
3306 */
Winson Chung76648c52015-07-10 14:33:23 -07003307 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3308 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003309 if (resetListToTop) {
3310 mAppsView.scrollToTop();
3311 }
Winson Chung4ac30062015-05-08 17:34:17 -07003312 if (updatePredictedApps) {
3313 tryAndUpdatePredictedApps();
3314 }
Winson Chung76648c52015-07-10 14:33:23 -07003315 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003316 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003317
Winson Chungb745afb2015-03-02 11:51:23 -08003318 /**
3319 * Shows the widgets view.
3320 */
3321 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003322 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003323 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003324 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003325 }
Winson Chung76648c52015-07-10 14:33:23 -07003326 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003327
3328 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003329 @Override
3330 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003331 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003332 }
3333 });
Winson Chungb745afb2015-03-02 11:51:23 -08003334 }
3335
3336 /**
3337 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003338 *
3339 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003340 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003341 // TODO: calling method should use the return value so that when {@code false} is returned
3342 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003343 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003344 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3345 mState != State.WIDGETS_SPRING_LOADED) {
3346 return false;
3347 }
3348 if (toState != State.APPS && toState != State.WIDGETS) {
3349 return false;
3350 }
Winson Chungb745afb2015-03-02 11:51:23 -08003351
3352 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003353 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3354 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003355 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003356 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003357 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003358
Michael Jurkab3e22d92011-10-31 15:58:33 -07003359 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003360 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003361
3362 // Pause the auto-advance of widgets until we are out of AllApps
3363 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003364 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003365 closeFolder();
3366
3367 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003368 getWindow().getDecorView()
3369 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003370 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003371 }
3372
Winson Chungcd99cd32015-04-29 11:03:24 -07003373 /**
3374 * Updates the workspace and interaction state on state change, and return the animation to this
3375 * new state.
3376 */
3377 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003378 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003379 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003380 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003381 updateInteraction(fromState, toState);
3382 return anim;
3383 }
3384
Hyunyoung Song3f471442015-04-08 19:01:34 -07003385 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003386 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003387 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3388 mState == State.WIDGETS_SPRING_LOADED) {
3389 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003390 }
Winson Chungb745afb2015-03-02 11:51:23 -08003391
Winson Chung006ee262015-08-03 14:40:11 -07003392 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3393 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003394 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3395 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003396 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003397 }
Adam Cohen7777d962011-08-18 18:58:38 -07003398
Hyunyoung Song3f471442015-04-08 19:01:34 -07003399 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003400 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003401 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003402
Winson Chunge7a03942011-08-05 15:05:12 -07003403 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003404 @Override
3405 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003406 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003407 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3408 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003409 // Before we show workspace, hide all apps again because
3410 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3411 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003412 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003413 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003414 } else {
3415 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003416 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003417 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003418 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003419 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003420
Michael Jurkad3ef3062010-11-23 16:23:58 -08003421 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003422 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003423 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003424 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003425 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003426 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003427 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003428 }
3429
Winson Chung4ac30062015-05-08 17:34:17 -07003430 /**
3431 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3432 * resumed.
3433 */
3434 private void tryAndUpdatePredictedApps() {
3435 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003436 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003437 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003438 mAppsView.setPredictedApps(apps);
3439 }
3440 }
3441 }
3442
Michael Jurkab3e22d92011-10-31 15:58:33 -07003443 void lockAllApps() {
3444 // TODO
3445 }
3446
3447 void unlockAllApps() {
3448 // TODO
3449 }
3450
Sunny Goyal594d76d2014-11-06 10:12:54 -08003451 protected void disableVoiceButtonProxy(boolean disable) {
3452 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003453 }
3454
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003455 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003456 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3457 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003458 }
3459
Adam Cohen24ce0b32014-01-14 16:18:14 -08003460 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003461 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3462 if (searchProvider == null) {
3463 return null;
3464 }
3465
3466 Bundle opts = new Bundle();
3467 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003468 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003469
3470 SharedPreferences sp = getSharedPreferences(
3471 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3472 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003473 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003474 if (!searchProvider.provider.flattenToString().equals(
3475 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003476 || (widgetInfo == null)
3477 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003478 // A valid widget is not already bound.
3479 if (widgetId > -1) {
3480 mAppWidgetHost.deleteAppWidgetId(widgetId);
3481 widgetId = -1;
3482 }
3483
3484 // Try to bind a new widget
3485 widgetId = mAppWidgetHost.allocateAppWidgetId();
3486
3487 if (!AppWidgetManagerCompat.getInstance(this)
3488 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3489 mAppWidgetHost.deleteAppWidgetId(widgetId);
3490 widgetId = -1;
3491 }
3492
3493 sp.edit()
3494 .putInt(QSB_WIDGET_ID, widgetId)
3495 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3496 .commit();
3497 }
3498
Sunny Goyal8d595092015-07-06 12:22:14 -07003499 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003500 if (widgetId != -1) {
3501 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3502 mQsb.updateAppWidgetOptions(opts);
3503 mQsb.setPadding(0, 0, 0, 0);
3504 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003505 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003506 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003507 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003508 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003509 }
3510
Sunny Goyal22235bc2015-04-03 09:23:43 -07003511 private void reinflateQSBIfNecessary() {
3512 if (mQsb instanceof LauncherAppWidgetHostView &&
3513 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3514 mSearchDropTargetBar.removeView(mQsb);
3515 mQsb = null;
3516 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3517 }
3518 }
3519
Michael Jurkad7c28052012-04-27 15:43:36 -07003520 @Override
3521 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003522 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003523 final List<CharSequence> text = event.getText();
3524 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003525 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003526 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003527 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003528 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003529 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003530 } else if (mWorkspace != null) {
3531 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003532 } else {
3533 text.add(getString(R.string.all_apps_home_button_label));
3534 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003535 return result;
3536 }
3537
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003538 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003539 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003540 */
Adam Cohen091440a2015-03-18 14:16:05 -07003541 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003542 @Override
3543 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003544 closeSystemDialogs();
3545 }
3546 }
3547
3548 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003549 * If the activity is currently paused, signal that we need to run the passed Runnable
3550 * in onResume.
3551 *
3552 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003553 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3554 * wrong when we're not running, and if the activity comes back to what the configuration was
3555 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003556 *
3557 * Implementation of the method from LauncherModel.Callbacks.
3558 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003559 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003560 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003561 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003562 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003563 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003564 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003565 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003566 }
3567 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003568 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003569 return true;
3570 } else {
3571 return false;
3572 }
3573 }
3574
Michael Jurkac402cd92013-05-20 15:49:32 +02003575 private boolean waitUntilResume(Runnable run) {
3576 return waitUntilResume(run, false);
3577 }
3578
Michael Jurka1e2f4652013-07-08 18:03:46 -07003579 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003580 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003581 }
3582
Michael Jurka7607c2f2013-04-03 14:33:19 -07003583 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003584 * If the activity is currently paused, signal that we need to re-run the loader
3585 * in onResume.
3586 *
3587 * This needs to be called from incoming places where resources might have been loaded
3588 * while we are paused. That is becaues the Configuration might be wrong
3589 * when we're not running, and if it comes back to what it was when we
3590 * were paused, we are not restarted.
3591 *
3592 * Implementation of the method from LauncherModel.Callbacks.
3593 *
3594 * @return true if we are currently paused. The caller might be able to
3595 * skip some work in that case since we will come back again.
3596 */
3597 public boolean setLoadOnResume() {
3598 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003599 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003600 mOnResumeNeedsLoad = true;
3601 return true;
3602 } else {
3603 return false;
3604 }
3605 }
3606
3607 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003608 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003609 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003610 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003611 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003612 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003613 } else {
3614 return SCREEN_COUNT / 2;
3615 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003616 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003617
Joe Onorato9c1289c2009-08-17 11:03:03 -04003618 /**
3619 * Refreshes the shortcuts shown on the workspace.
3620 *
3621 * Implementation of the method from LauncherModel.Callbacks.
3622 */
3623 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003624 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003625
Michael Jurka7607c2f2013-04-03 14:33:19 -07003626 // If we're starting binding all over again, clear any bind calls we'd postponed in
3627 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3628 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003629 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003630
Winson Chungd64d1762013-08-20 14:37:16 -07003631 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003632 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003633 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003634
Michael Jurka05bf644e2011-11-30 20:28:53 -08003635 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003636 if (mHotseat != null) {
3637 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003638 }
3639 }
3640
Adam Cohendcd297f2013-06-18 13:13:40 -07003641 @Override
3642 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003643 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003644
Adam Cohen5084cba2013-09-03 12:01:16 -07003645 // If there are no screens, we need to have an empty screen
3646 if (orderedScreenIds.size() == 0) {
3647 mWorkspace.addExtraEmptyScreen();
3648 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003649
3650 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003651 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003652 if (hasCustomContentToLeft()) {
3653 mWorkspace.createCustomContentContainer();
3654 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003655 }
Winson Chung64359a52013-07-08 17:17:08 -07003656 }
3657
3658 @Override
3659 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003660 int count = orderedScreenIds.size();
3661 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003662 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003663 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003664 }
3665
Adam Cohen39a06042013-07-19 14:30:12 -07003666 private boolean shouldShowWeightWatcher() {
3667 String spKey = LauncherAppState.getSharedPreferencesKey();
3668 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003669 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003670
3671 return show;
3672 }
3673
3674 private void toggleShowWeightWatcher() {
3675 String spKey = LauncherAppState.getSharedPreferencesKey();
3676 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3677 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3678
3679 show = !show;
3680
3681 SharedPreferences.Editor editor = sp.edit();
3682 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3683 editor.commit();
3684
3685 if (mWeightWatcher != null) {
3686 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3687 }
3688 }
3689
Winson Chungd64d1762013-08-20 14:37:16 -07003690 public void bindAppsAdded(final ArrayList<Long> newScreens,
3691 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003692 final ArrayList<ItemInfo> addAnimated,
3693 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003694 Runnable r = new Runnable() {
3695 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003696 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003697 }
3698 };
3699 if (waitUntilResume(r)) {
3700 return;
3701 }
3702
Winson Chungd64d1762013-08-20 14:37:16 -07003703 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003704 if (newScreens != null) {
3705 bindAddScreens(newScreens);
3706 }
Winson Chungd64d1762013-08-20 14:37:16 -07003707
3708 // We add the items without animation on non-visible pages, and with
3709 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003710 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003711 bindItems(addNotAnimated, 0,
3712 addNotAnimated.size(), false);
3713 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003714 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003715 bindItems(addAnimated, 0,
3716 addAnimated.size(), true);
3717 }
Winson Chungc58497e2013-09-03 17:48:37 -07003718
Winson Chung87412982013-10-03 18:34:14 -07003719 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003720 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003721
Winson Chungb745afb2015-03-02 11:51:23 -08003722 if (addedApps != null && mAppsView != null) {
3723 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003724 }
Winson Chungd64d1762013-08-20 14:37:16 -07003725 }
3726
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003727 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003728 * Bind the items start-end from the list.
3729 *
3730 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003731 */
Winson Chung64359a52013-07-08 17:17:08 -07003732 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3733 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003734 Runnable r = new Runnable() {
3735 public void run() {
3736 bindItems(shortcuts, start, end, forceAnimateIcons);
3737 }
3738 };
3739 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003740 return;
3741 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003742
Winson Chungf0c6ae02012-03-21 16:10:31 -07003743 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003744 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3745 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003746 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003747 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003748 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003749 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003750 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003751
3752 // Short circuit if we are loading dock items for a configuration which has no dock
3753 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3754 mHotseat == null) {
3755 continue;
3756 }
3757
Joe Onorato9c1289c2009-08-17 11:03:03 -04003758 switch (item.itemType) {
3759 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3760 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003761 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003762 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003763
Winson Chung64359a52013-07-08 17:17:08 -07003764 /*
3765 * TODO: FIX collision case
3766 */
Winson Chungce376632013-07-11 16:12:41 -07003767 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3768 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3769 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003770 View v = cl.getChildAt(item.cellX, item.cellY);
3771 Object tag = v.getTag();
3772 String desc = "Collision while binding workspace item: " + item
3773 + ". Collides with " + tag;
3774 if (LauncherAppState.isDogfoodBuild()) {
3775 throw (new RuntimeException(desc));
3776 } else {
3777 Log.d(TAG, desc);
3778 }
Winson Chungce376632013-07-11 16:12:41 -07003779 }
Winson Chung64359a52013-07-08 17:17:08 -07003780 }
3781
Adam Cohendcd297f2013-06-18 13:13:40 -07003782 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3783 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003784 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003785 // Animate all the applications up now
3786 shortcut.setAlpha(0f);
3787 shortcut.setScaleX(0f);
3788 shortcut.setScaleY(0f);
3789 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003790 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003791 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003792 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003793 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003794 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003795 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003796 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003797 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3798 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003799 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003800 default:
3801 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003802 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003803 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003804
Winson Chung997a9232013-07-24 15:33:46 -07003805 if (animateIcons) {
3806 // Animate to the correct page
3807 if (newShortcutsScreenId > -1) {
3808 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003809 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003810 final Runnable startBounceAnimRunnable = new Runnable() {
3811 public void run() {
3812 anim.playTogether(bounceAnims);
3813 anim.start();
3814 }
3815 };
Winson Chung997a9232013-07-24 15:33:46 -07003816 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003817 // We post the animation slightly delayed to prevent slowdowns
3818 // when we are loading right after we return to launcher.
3819 mWorkspace.postDelayed(new Runnable() {
3820 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003821 if (mWorkspace != null) {
3822 mWorkspace.snapToPage(newScreenIndex);
3823 mWorkspace.postDelayed(startBounceAnimRunnable,
3824 NEW_APPS_ANIMATION_DELAY);
3825 }
Winson Chung94d67682013-09-25 16:29:40 -07003826 }
3827 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003828 } else {
3829 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003830 }
3831 }
Winson Chung64359a52013-07-08 17:17:08 -07003832 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003833 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003834 }
3835
Joe Onorato9c1289c2009-08-17 11:03:03 -04003836 /**
3837 * Implementation of the method from LauncherModel.Callbacks.
3838 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003839 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003840 Runnable r = new Runnable() {
3841 public void run() {
3842 bindFolders(folders);
3843 }
3844 };
3845 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003846 return;
3847 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003848 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003849 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003850
3851 /**
3852 * Add the views for a widget to the workspace.
3853 *
3854 * Implementation of the method from LauncherModel.Callbacks.
3855 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003856 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003857 Runnable r = new Runnable() {
3858 public void run() {
3859 bindAppWidget(item);
3860 }
3861 };
3862 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003863 return;
3864 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003865
Daniel Sandler843e8602010-06-07 14:59:01 -04003866 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3867 if (DEBUG_WIDGETS) {
3868 Log.d(TAG, "bindAppWidget: " + item);
3869 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003870 final Workspace workspace = mWorkspace;
3871
Adam Cohen59400422014-03-05 18:07:04 -08003872 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003873 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003874
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003875 if (!mIsSafeModeEnabled
3876 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003877 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
3878
Sunny Goyalff572272014-07-23 13:58:07 -07003879 if (appWidgetInfo == null) {
3880 if (DEBUG_WIDGETS) {
3881 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3882 + " belongs to component " + item.providerName
3883 + ", as the povider is null");
3884 }
3885 LauncherModel.deleteItemFromDatabase(this, item);
3886 return;
3887 }
Sunny Goyalff572272014-07-23 13:58:07 -07003888
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003889 // If we do not have a valid id, try to bind an id.
3890 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
3891 // Note: This assumes that the id remap broadcast is received before this step.
3892 // If that is not the case, the id remap will be ignored and user may see the
3893 // click to setup view.
3894 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
3895 pendingInfo.spanX = item.spanX;
3896 pendingInfo.spanY = item.spanY;
3897 pendingInfo.minSpanX = item.minSpanX;
3898 pendingInfo.minSpanY = item.minSpanY;
3899 Bundle options = null;
3900 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003901
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003902 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
3903 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3904 newWidgetId, appWidgetInfo, options);
3905
3906 // TODO consider showing a permission dialog when the widget is clicked.
3907 if (!success) {
3908 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3909 if (DEBUG_WIDGETS) {
3910 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3911 + " belongs to component " + item.providerName
3912 + ", as the launcher is unable to bing a new widget id");
3913 }
3914 LauncherModel.deleteItemFromDatabase(this, item);
3915 return;
Sunny Goyalff572272014-07-23 13:58:07 -07003916 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003917
3918 item.appWidgetId = newWidgetId;
3919
3920 // If the widget has a configure activity, it is still needs to set it up, otherwise
3921 // the widget is ready to go.
3922 item.restoreStatus = (appWidgetInfo.configure == null)
3923 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3924 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3925
3926 LauncherModel.updateItemInDatabase(this, item);
3927 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
3928 && (appWidgetInfo.configure == null)) {
3929 // If the ID is already valid, verify if we need to configure or not.
3930 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3931 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07003932 }
Sunny Goyalff572272014-07-23 13:58:07 -07003933 }
3934
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003935 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003936 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003937 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003938 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3939 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003940 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003941
Sunny Goyal651077b2014-06-30 14:15:31 -07003942 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07003943 item.minSpanX = appWidgetInfo.minSpanX;
3944 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07003945 } else {
3946 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003947 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3948 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003949 view.updateIcon(mIconCache);
3950 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003951 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003952 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003953 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003954
Joe Onorato9c1289c2009-08-17 11:03:03 -04003955 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003956 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003957
Adam Cohendcd297f2013-06-18 13:13:40 -07003958 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003959 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003960 if (!item.isCustomWidget()) {
3961 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3962 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003963
Joe Onorato9c1289c2009-08-17 11:03:03 -04003964 workspace.requestLayout();
3965
Daniel Sandler843e8602010-06-07 14:59:01 -04003966 if (DEBUG_WIDGETS) {
3967 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3968 + (SystemClock.uptimeMillis()-start) + "ms");
3969 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003970 }
3971
Sunny Goyalff572272014-07-23 13:58:07 -07003972 /**
3973 * Restores a pending widget.
3974 *
3975 * @param appWidgetId The app widget id
3976 * @param cellInfo The position on screen where to create the widget.
3977 */
3978 private void completeRestoreAppWidget(final int appWidgetId) {
3979 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3980 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3981 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3982 return;
3983 }
3984
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003985 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003986 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3987
3988 mWorkspace.reinflateWidgetsIfNecessary();
3989 LauncherModel.updateItemInDatabase(this, info);
3990 }
3991
Adam Cohen1462de32012-07-24 22:34:36 -07003992 public void onPageBoundSynchronously(int page) {
3993 mSynchronouslyBoundPages.add(page);
3994 }
3995
Joe Onorato9c1289c2009-08-17 11:03:03 -04003996 /**
3997 * Callback saying that there aren't any more items to bind.
3998 *
3999 * Implementation of the method from LauncherModel.Callbacks.
4000 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004001 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004002 Runnable r = new Runnable() {
4003 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004004 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004005 }
4006 };
4007 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004008 return;
4009 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004010 if (mSavedState != null) {
4011 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004012 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004013 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004014 mSavedState = null;
4015 }
4016
Adam Cohen1462de32012-07-24 22:34:36 -07004017 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004018
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004019 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004020 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004021
4022 // If we received the result of any pending adds while the loader was running (e.g. the
4023 // widget configuration forced an orientation change), process them now.
4024 if (sPendingAddItem != null) {
4025 final long screenId = completeAdd(sPendingAddItem);
4026
4027 // TODO: this moves the user to the page where the pending item was added. Ideally,
4028 // the screen would be guaranteed to exist after bind, and the page would be set through
4029 // the workspace restore process.
4030 mWorkspace.post(new Runnable() {
4031 @Override
4032 public void run() {
4033 mWorkspace.snapToScreenId(screenId);
4034 }
4035 });
4036 sPendingAddItem = null;
4037 }
4038
Sunny Goyal756adbc2015-04-16 15:20:51 -07004039 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004040
4041 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004042 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004043 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004044 }
4045
Adam Cohen3ed316a2014-07-23 18:21:20 -07004046 private void sendLoadingCompleteBroadcastIfNecessary() {
4047 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4048 String permission =
4049 getResources().getString(R.string.receive_first_load_broadcast_permission);
4050 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4051 sendBroadcast(intent, permission);
4052 SharedPreferences.Editor editor = mSharedPrefs.edit();
4053 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4054 editor.apply();
4055 }
4056 }
4057
Winson Chunga0b7e862013-09-05 16:03:15 -07004058 public boolean isAllAppsButtonRank(int rank) {
4059 if (mHotseat != null) {
4060 return mHotseat.isAllAppsButtonRank(rank);
4061 }
4062 return false;
4063 }
4064
Winson Chunga2413752012-04-03 14:22:34 -07004065 private boolean canRunNewAppsAnimation() {
4066 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4067 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4068 }
4069
Winson Chungc9168342013-06-26 14:54:55 -07004070 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4071 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4072 PropertyValuesHolder.ofFloat("alpha", 1f),
4073 PropertyValuesHolder.ofFloat("scaleX", 1f),
4074 PropertyValuesHolder.ofFloat("scaleY", 1f));
4075 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4076 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004077 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004078 return bounceAnim;
4079 }
4080
Adam Cohen27772732013-11-11 14:00:56 +00004081 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004082 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004083 }
4084
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004085 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004086 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004087 }
4088
Winson Chung88fa7412015-08-03 14:25:28 -07004089 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004090 if (mSearchDropTargetBar == null) {
4091 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004092 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004093 if (mQsb != null) {
4094 mSearchDropTargetBar.removeView(mQsb);
4095 mQsb = null;
4096 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004097 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004098 }
4099
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004100 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004101 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4102 * multiple calls to bind the same list.)
4103 */
4104 @Thunk ArrayList<AppInfo> mTmpAppsList;
4105 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4106 public void run() {
4107 bindAllApplications(mTmpAppsList);
4108 mTmpAppsList = null;
4109 }
4110 };
4111
4112 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004113 * Add the icons for all apps.
4114 *
4115 * Implementation of the method from LauncherModel.Callbacks.
4116 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004117 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004118 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4119 mTmpAppsList = apps;
4120 return;
4121 }
4122
Winson Chungb745afb2015-03-02 11:51:23 -08004123 if (mAppsView != null) {
4124 mAppsView.setApps(apps);
4125 }
Adam Cohen9211d422014-10-07 18:14:53 -07004126 if (mLauncherCallbacks != null) {
4127 mLauncherCallbacks.bindAllApplications(apps);
4128 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004129 }
4130
4131 /**
4132 * A package was updated.
4133 *
4134 * Implementation of the method from LauncherModel.Callbacks.
4135 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004136 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004137 Runnable r = new Runnable() {
4138 public void run() {
4139 bindAppsUpdated(apps);
4140 }
4141 };
4142 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004143 return;
4144 }
4145
Winson Chungb745afb2015-03-02 11:51:23 -08004146 if (mAppsView != null) {
4147 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004148 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004149 }
4150
Sunny Goyal4390ace2014-10-13 11:33:11 -07004151 @Override
4152 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4153 Runnable r = new Runnable() {
4154 public void run() {
4155 bindWidgetsRestored(widgets);
4156 }
4157 };
4158 if (waitUntilResume(r)) {
4159 return;
4160 }
4161 mWorkspace.widgetsRestored(widgets);
4162 }
4163
Joe Onorato9c1289c2009-08-17 11:03:03 -04004164 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004165 * Some shortcuts were updated in the background.
4166 *
4167 * Implementation of the method from LauncherModel.Callbacks.
4168 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004169 @Override
4170 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4171 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004172 Runnable r = new Runnable() {
4173 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004174 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004175 }
4176 };
4177 if (waitUntilResume(r)) {
4178 return;
4179 }
4180
Sunny Goyal4390ace2014-10-13 11:33:11 -07004181 if (!updated.isEmpty()) {
4182 mWorkspace.updateShortcuts(updated);
4183 }
4184
4185 if (!removed.isEmpty()) {
4186 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4187 for (ShortcutInfo si : removed) {
4188 removedComponents.add(si.getTargetComponent());
4189 }
4190 mWorkspace.removeItemsByComponentName(removedComponents, user);
4191 // Notify the drag controller
4192 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004193 }
4194 }
4195
4196 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004197 * Update the state of a package, typically related to install state.
4198 *
4199 * Implementation of the method from LauncherModel.Callbacks.
4200 */
Sunny Goyale755d462014-07-22 13:48:29 -07004201 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004202 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4203 Runnable r = new Runnable() {
4204 public void run() {
4205 bindRestoreItemsChange(updates);
4206 }
4207 };
4208 if (waitUntilResume(r)) {
4209 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004210 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004211
Sunny Goyal756adbc2015-04-16 15:20:51 -07004212 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004213 }
4214
4215 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004216 * A package was uninstalled. We take both the super set of packageNames
4217 * in addition to specific applications to remove, the reason being that
4218 * this can be called when a package is updated as well. In that scenario,
4219 * we only remove specific components from the workspace, where as
4220 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004221 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004222 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004223 * Implementation of the method from LauncherModel.Callbacks.
4224 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004225 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004226 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004227 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004228 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004229 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004230 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004231 }
Winson Chungd64d1762013-08-20 14:37:16 -07004232 };
4233 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004234 return;
4235 }
4236
Sunny Goyal1a745e82014-10-02 15:58:31 -07004237 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004238 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4239 for (AppInfo info : appInfos) {
4240 removedComponents.add(info.componentName);
4241 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004242 if (!packageNames.isEmpty()) {
4243 mWorkspace.removeItemsByPackageName(packageNames, user);
4244 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004245 if (!removedComponents.isEmpty()) {
4246 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004247 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004248 // Notify the drag controller
4249 mDragController.onAppsRemoved(packageNames, removedComponents);
4250
Sunny Goyal1a745e82014-10-02 15:58:31 -07004251 } else {
4252 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004253 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004254
Winson Chungdf95eb12013-10-16 14:57:07 -07004255 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004256 if (mAppsView != null) {
4257 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004258 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004259 }
Joe Onoratobe386092009-11-17 17:32:16 -08004260
Michael Jurkac402cd92013-05-20 15:49:32 +02004261 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004262 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004263 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004264 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004265 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004266
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004267 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004268 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004269 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004270 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004271 return;
4272 }
4273
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004274 if (mWidgetsView != null && model != null) {
4275 mWidgetsView.addWidgets(model);
4276 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004277 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004278 }
4279
Winson Chung400438b2011-01-16 17:53:48 -08004280 private int mapConfigurationOriActivityInfoOri(int configOri) {
4281 final Display d = getWindowManager().getDefaultDisplay();
4282 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4283 switch (d.getRotation()) {
4284 case Surface.ROTATION_0:
4285 case Surface.ROTATION_180:
4286 // We are currently in the same basic orientation as the natural orientation
4287 naturalOri = configOri;
4288 break;
4289 case Surface.ROTATION_90:
4290 case Surface.ROTATION_270:
4291 // We are currently in the other basic orientation to the natural orientation
4292 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4293 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4294 break;
4295 }
4296
4297 int[] oriMap = {
4298 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4299 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4300 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4301 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4302 };
4303 // Since the map starts at portrait, we need to offset if this device's natural orientation
4304 // is landscape.
4305 int indexOffset = 0;
4306 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4307 indexOffset = 1;
4308 }
4309 return oriMap[(d.getRotation() + indexOffset) % 4];
4310 }
Adam Cohen446e9402011-09-15 18:21:21 -07004311
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004312 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004313 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004314 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004315 if (Utilities.ATLEAST_JB_MR2) {
4316 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4317 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004318 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4319 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004320 }
Winson Chung4b919f82012-05-01 10:44:08 -07004321 }
4322 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004323
Winson Chung4b919f82012-05-01 10:44:08 -07004324 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004325 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004326 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004327 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004328 } else {
4329 mHandler.postDelayed(new Runnable() {
4330 public void run() {
4331 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4332 }
4333 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004334 }
Winson Chung4b919f82012-05-01 10:44:08 -07004335 }
Winson Chung400438b2011-01-16 17:53:48 -08004336 }
4337
Winson Chunge43a1e72014-01-15 10:33:02 -08004338 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004339 if (mLauncherCallbacks != null) {
4340 return mLauncherCallbacks.isLauncherPreinstalled();
4341 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004342 PackageManager pm = getPackageManager();
4343 try {
4344 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4345 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4346 return true;
4347 } else {
4348 return false;
4349 }
4350 } catch (NameNotFoundException e) {
4351 e.printStackTrace();
4352 return false;
4353 }
4354 }
4355
Adam Cohenea90f832014-05-21 15:03:34 -07004356 /**
4357 * This method indicates whether or not we should suggest default wallpaper dimensions
4358 * when our wallpaper cropper was not yet used to set a wallpaper.
4359 */
4360 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004361 if (mLauncherCallbacks != null) {
4362 return mLauncherCallbacks.overrideWallpaperDimensions();
4363 }
Adam Cohenea90f832014-05-21 15:03:34 -07004364 return true;
4365 }
4366
Adam Cohen432609a2014-03-13 17:03:22 -07004367 /**
4368 * To be overridden by subclasses to indicate that there is an activity to launch
4369 * before showing the standard launcher experience.
4370 */
4371 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004372 if (mLauncherCallbacks != null) {
4373 return mLauncherCallbacks.hasFirstRunActivity();
4374 }
Adam Cohen432609a2014-03-13 17:03:22 -07004375 return false;
4376 }
4377
4378 /**
4379 * To be overridden by subclasses to launch any first run activity
4380 */
4381 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004382 if (mLauncherCallbacks != null) {
4383 return mLauncherCallbacks.getFirstRunActivity();
4384 }
Adam Cohen432609a2014-03-13 17:03:22 -07004385 return null;
4386 }
4387
Winson Chunga6945242014-01-08 14:04:34 -08004388 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004389 return !ActivityManager.isRunningInTestHarness() &&
4390 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004391 }
4392
Adam Cohen4a9423d2014-03-28 14:22:31 -07004393 protected boolean hasRunFirstRunActivity() {
4394 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4395 }
4396
Adam Cohen432609a2014-03-13 17:03:22 -07004397 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004398 if (shouldRunFirstRunActivity() &&
4399 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004400 Intent firstRunIntent = getFirstRunActivity();
4401 if (firstRunIntent != null) {
4402 startActivity(firstRunIntent);
4403 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004404 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004405 }
4406 }
Adam Cohen432609a2014-03-13 17:03:22 -07004407 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004408 }
4409
4410 private void markFirstRunActivityShown() {
4411 SharedPreferences.Editor editor = mSharedPrefs.edit();
4412 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4413 editor.apply();
4414 }
4415
Adam Cohen432609a2014-03-13 17:03:22 -07004416 /**
4417 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4418 * screen that must be displayed and dismissed.
4419 */
4420 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004421 if (mLauncherCallbacks != null) {
4422 return mLauncherCallbacks.hasDismissableIntroScreen();
4423 }
Adam Cohen432609a2014-03-13 17:03:22 -07004424 return false;
4425 }
4426
4427 /**
4428 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4429 */
4430 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004431 if (mLauncherCallbacks != null) {
4432 return mLauncherCallbacks.getIntroScreen();
4433 }
Adam Cohen432609a2014-03-13 17:03:22 -07004434 return null;
4435 }
4436
4437 /**
4438 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4439 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4440 */
4441 private boolean shouldShowIntroScreen() {
4442 return hasDismissableIntroScreen() &&
4443 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4444 }
4445
4446 protected void showIntroScreen() {
4447 View introScreen = getIntroScreen();
4448 changeWallpaperVisiblity(false);
4449 if (introScreen != null) {
4450 mDragLayer.showOverlayView(introScreen);
4451 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004452 if (mLauncherOverlayContainer != null) {
4453 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4454 }
Adam Cohen432609a2014-03-13 17:03:22 -07004455 }
4456
4457 public void dismissIntroScreen() {
4458 markIntroScreenDismissed();
4459 if (showFirstRunActivity()) {
4460 // We delay hiding the intro view until the first run activity is showing. This
4461 // avoids a blip.
4462 mWorkspace.postDelayed(new Runnable() {
4463 @Override
4464 public void run() {
4465 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004466 if (mLauncherOverlayContainer != null) {
4467 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4468 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004469 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004470 }
4471 }, ACTIVITY_START_DELAY);
4472 } else {
4473 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004474 if (mLauncherOverlayContainer != null) {
4475 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4476 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004477 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004478 }
4479 changeWallpaperVisiblity(true);
4480 }
4481
4482 private void markIntroScreenDismissed() {
4483 SharedPreferences.Editor editor = mSharedPrefs.edit();
4484 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4485 editor.apply();
4486 }
4487
Adam Cohen091440a2015-03-18 14:16:05 -07004488 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004489 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4490 // on the device, then we always show the first run cling experience (or if there is no
4491 // launcher2). Otherwise, we prompt the user upon started for migration
4492 LauncherClings launcherClings = new LauncherClings(this);
4493 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4494 if (mModel.canMigrateFromOldLauncherDb(this)) {
4495 launcherClings.showMigrationCling();
4496 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004497 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004498 }
4499 }
4500 }
4501
Winson Chunga6945242014-01-08 14:04:34 -08004502 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004503 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4504 if (mHotseat != null) mHotseat.setAlpha(1f);
4505 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004506 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4507 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004508 }
4509
4510 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004511 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4512 if (mHotseat != null) mHotseat.setAlpha(0f);
4513 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004514 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4515 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004516 }
4517
Winson Chung5ffd51d2015-06-25 11:36:50 -07004518 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004519 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004520 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004521 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004522 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004523 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004524 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4525 if (userHandle != null) {
4526 user = UserHandleCompat.fromUser(userHandle);
4527 }
4528 }
4529 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004530 }
4531
4532 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004533 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004534 if (user == null) {
4535 user = UserHandleCompat.myUserHandle();
4536 }
4537
4538 // Called from search suggestion, add the profile extra to the intent to ensure that we
4539 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004540 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004541 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004542 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004543 return null;
4544 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004545 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004546 }
4547
Winson Chung5ffd51d2015-06-25 11:36:50 -07004548 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004549 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4550 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004551 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004552 UserHandleCompat.myUserHandle());
4553 }
4554
Winson Chung5ffd51d2015-06-25 11:36:50 -07004555 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004556 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4557 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004558 mWorkspace.onExternalDragStartedWithItem(dragView);
4559 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004560 }
4561
Winson Chung5ffd51d2015-06-25 11:36:50 -07004562 protected void moveWorkspaceToDefaultScreen() {
4563 mWorkspace.moveToDefaultScreen(false);
4564 }
4565
Anjali Koppalf5d29132014-02-28 13:33:27 -08004566 @Override
4567 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004568 if (mLauncherCallbacks != null) {
4569 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4570 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004571 }
4572
Winson Chung80baf5a2010-08-09 16:03:15 -07004573 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004574 * Returns a FastBitmapDrawable with the icon, accurately sized.
4575 */
4576 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4577 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4578 d.setFilterBitmap(true);
4579 resizeIconDrawable(d);
4580 return d;
4581 }
4582
4583 /**
4584 * Resizes an icon drawable to the correct icon size.
4585 */
4586 public void resizeIconDrawable(Drawable icon) {
4587 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4588 }
4589
4590 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004591 * Prints out out state for debugging.
4592 */
4593 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004594 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004595 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004596 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4597 Log.d(TAG, "mRestoring=" + mRestoring);
4598 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4599 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004600 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004601 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004602 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004603
Daniel Sandler325dc232013-06-05 22:57:57 -04004604 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004605 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004606
4607 @Override
4608 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4609 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004610 synchronized (sDumpLogs) {
4611 writer.println(" ");
4612 writer.println("Debug logs: ");
4613 for (int i = 0; i < sDumpLogs.size(); i++) {
4614 writer.println(" " + sDumpLogs.get(i));
4615 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004616 }
Adam Cohen9211d422014-10-07 18:14:53 -07004617 if (mLauncherCallbacks != null) {
4618 mLauncherCallbacks.dump(prefix, fd, writer, args);
4619 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004620 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004621
4622 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004623 if (DEBUG_DUMP_LOG) {
4624 synchronized (sDumpLogs) {
4625 Log.d(TAG, "");
4626 Log.d(TAG, "*********************");
4627 Log.d(TAG, "Launcher debug logs: ");
4628 for (int i = 0; i < sDumpLogs.size(); i++) {
4629 Log.d(TAG, " " + sDumpLogs.get(i));
4630 }
4631 Log.d(TAG, "*********************");
4632 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004633 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004634 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004635 }
4636
4637 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004638 addDumpLog(tag, log, null, debugLog);
4639 }
4640
4641 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004642 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004643 if (e != null) {
4644 Log.d(tag, log, e);
4645 } else {
4646 Log.d(tag, log);
4647 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004648 }
Winson Chungede41292013-09-19 16:27:36 -07004649 if (DEBUG_DUMP_LOG) {
4650 sDateStamp.setTime(System.currentTimeMillis());
4651 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004652 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4653 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004654 }
Winson Chungede41292013-09-19 16:27:36 -07004655 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004656 }
4657
Adam Cohen59400422014-03-05 18:07:04 -08004658 public static CustomAppWidget getCustomAppWidget(String name) {
4659 return sCustomAppWidgets.get(name);
4660 }
4661
4662 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4663 return sCustomAppWidgets;
4664 }
4665
Winson Chungede41292013-09-19 16:27:36 -07004666 public void dumpLogsToLocalData() {
4667 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004668 new AsyncTask<Void, Void, Void>() {
4669 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004670 boolean success = false;
4671 sDateStamp.setTime(sRunStart);
4672 String FILENAME = sDateStamp.getMonth() + "-"
4673 + sDateStamp.getDay() + "_"
4674 + sDateStamp.getHours() + "-"
4675 + sDateStamp.getMinutes() + "_"
4676 + sDateStamp.getSeconds() + ".txt";
4677
4678 FileOutputStream fos = null;
4679 File outFile = null;
4680 try {
4681 outFile = new File(getFilesDir(), FILENAME);
4682 outFile.createNewFile();
4683 fos = new FileOutputStream(outFile);
4684 } catch (Exception e) {
4685 e.printStackTrace();
4686 }
4687 if (fos != null) {
4688 PrintWriter writer = new PrintWriter(fos);
4689
4690 writer.println(" ");
4691 writer.println("Debug logs: ");
4692 synchronized (sDumpLogs) {
4693 for (int i = 0; i < sDumpLogs.size(); i++) {
4694 writer.println(" " + sDumpLogs.get(i));
4695 }
4696 }
4697 writer.close();
4698 }
4699 try {
4700 if (fos != null) {
4701 fos.close();
4702 success = true;
4703 }
4704 } catch (IOException e) {
4705 e.printStackTrace();
4706 }
Michael Jurka43467462013-11-14 12:03:58 +01004707 return null;
Winson Chungede41292013-09-19 16:27:36 -07004708 }
Michael Jurka43467462013-11-14 12:03:58 +01004709 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004710 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004711 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004712}
Michael Jurka2763be32011-02-24 11:19:57 -08004713
Dan Sandlerd5024042014-01-09 15:01:33 -05004714interface DebugIntents {
4715 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4716 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004717}