blob: 20c42377edc17b6b683fbfdfe8e343dcdc272bf4 [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;
Winsonc0880492015-08-21 11:16:27 -070049import android.content.pm.ResolveInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070051import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070052import android.graphics.Bitmap;
53import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070054import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070055import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070056import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070057import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070058import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040059import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070060import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020061import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080062import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020063import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080064import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070065import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070066import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040067import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070068import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069import android.text.Selection;
70import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070071import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070073import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070074import android.view.Display;
75import android.view.Gravity;
76import android.view.HapticFeedbackConstants;
77import android.view.KeyEvent;
78import android.view.LayoutInflater;
79import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070080import android.view.MotionEvent;
81import android.view.Surface;
82import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070083import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080084import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070086import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070087import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070088import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070089import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080090import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070091import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080092import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070093import android.widget.Advanceable;
94import android.widget.FrameLayout;
95import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080096import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070097import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070098
Sunny Goyal651077b2014-06-30 14:15:31 -070099import com.android.launcher3.DropTarget.DragObject;
100import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700101import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700102import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100103import com.android.launcher3.compat.LauncherActivityInfoCompat;
104import com.android.launcher3.compat.LauncherAppsCompat;
105import com.android.launcher3.compat.UserHandleCompat;
106import com.android.launcher3.compat.UserManagerCompat;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700107import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700108import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700109import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700110import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700111import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700112import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700113import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700114
Adam Cohen4caf2982013-08-20 18:54:31 -0700115import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700116import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700117import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700118import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700119import java.io.PrintWriter;
Adam Cohen4caf2982013-08-20 18:54:31 -0700120import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700121import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700122import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700123import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700124import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700125import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700126import java.util.List;
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;
Sunny Goyalc84e6e12015-10-02 12:48:37 -0700138 static final boolean DEBUG_WIDGETS = false;
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";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800195
Adam Cohen432609a2014-03-13 17:03:22 -0700196 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800197 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
198
Adam Cohen3ed316a2014-07-23 18:21:20 -0700199 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
200 static final String ACTION_FIRST_LOAD_COMPLETE =
201 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
202
Adam Cohen39a06042013-07-19 14:30:12 -0700203 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700204 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700205
Sunny Goyal594d76d2014-11-06 10:12:54 -0800206 private static final String QSB_WIDGET_ID = "qsb_widget_id";
207 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
208
Winson Chunga6945242014-01-08 14:04:34 -0800209 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
210
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700211 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700212 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
213
Adam Cohen091440a2015-03-18 14:16:05 -0700214 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700215 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700216
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700217 private boolean mIsSafeModeEnabled;
218
Adam Cohenc2d6e892014-10-16 09:49:24 -0700219 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
220 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700221 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700222
Joe Onorato9c1289c2009-08-17 11:03:03 -0400223 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700224 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
225 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700226 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800227
Winson Chunga2413752012-04-03 14:22:34 -0700228 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700229 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
230 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700231 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700232
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800233 private final BroadcastReceiver mCloseSystemDialogsReceiver
234 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800235
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800236 private LayoutInflater mInflater;
237
Adam Cohen091440a2015-03-18 14:16:05 -0700238 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700239 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800240 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700241 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800242 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700243 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700244
Sunny Goyalffe83f12014-08-14 17:39:34 -0700245 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700246 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700247
Adam Cohen091440a2015-03-18 14:16:05 -0700248 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800249 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800250 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700251
Michael Jurka0280c3b2010-09-17 15:00:07 -0700252 private int[] mTmpAddItemCellCoordinates = new int[2];
253
Sunny Goyal316490e2015-06-02 09:38:28 -0700254 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800255 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700256
Michael Jurka838a4ca2011-02-07 13:33:06 -0800257 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700258 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700259
Winson Chungc51db6a2011-10-05 11:44:49 -0700260 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700261
262 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700263 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700264
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700265 // Main container view and the model for the widget tray screen.
266 @Thunk WidgetsContainerView mWidgetsView;
267 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700268
Winson Chungf0ea4d32011-06-06 14:27:16 -0700269 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800270 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800271
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800272 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700273 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
274 // scroll issues (because the workspace may not have been measured yet) and extra work.
275 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
276 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800277
278 private SpannableStringBuilder mDefaultKeySsb = null;
279
Adam Cohen091440a2015-03-18 14:16:05 -0700280 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400281
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800282 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800283 private boolean mRestoring;
284 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700285 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800286
Michael Jurka1e2f4652013-07-08 18:03:46 -0700287 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700288 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
289
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800290 private Bundle mSavedInstanceState;
291
Joe Onorato9c1289c2009-08-17 11:03:03 -0400292 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800293 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700294 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800295 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700296 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800297 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400298
Sunny Goyal639e9062015-08-19 19:17:06 -0700299 private LauncherClings mClings;
300
Sunny Goyale2df0622015-04-24 11:27:00 -0700301 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700302
Adam Cohen61f560d2013-09-30 15:58:20 -0700303 private View.OnTouchListener mHapticFeedbackTouchListener;
304
Adam Cohended9f8d2010-11-03 13:25:16 -0700305 // Related to the auto-advancing of widgets
306 private final int ADVANCE_MSG = 1;
307 private final int mAdvanceInterval = 20000;
308 private final int mAdvanceStagger = 250;
309 private long mAutoAdvanceSentTime;
310 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700311 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700312 new HashMap<View, AppWidgetProviderInfo>();
313
Winson Chung400438b2011-01-16 17:53:48 -0800314 // Determines how long to wait after a rotation before restoring the screen orientation to
315 // match the sensor state.
316 private final int mRestoreScreenOrientationDelay = 500;
317
Adam Cohen091440a2015-03-18 14:16:05 -0700318 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700319
Adam Cohen1462de32012-07-24 22:34:36 -0700320 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700321 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700322
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700323 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700324 static Date sDateStamp = new Date();
325 static DateFormat sDateFormat =
326 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
327 static long sRunStart = System.currentTimeMillis();
328 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700329
Winson Chung46353de2012-02-16 14:05:10 -0800330 // We only want to get the SharedPreferences once since it does an FS stat each time we get
331 // it from the context.
332 private SharedPreferences mSharedPrefs;
333
Winson Chungf0c6ae02012-03-21 16:10:31 -0700334 // Holds the page that we need to animate to, and the icon views that we need to animate up
335 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700336 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700337 private Bitmap mFolderIconBitmap;
338 private Canvas mFolderIconCanvas;
339 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700340
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700341 private DeviceProfile mDeviceProfile;
342
Adam Cohen4b66bf32015-09-18 12:15:19 -0700343 private boolean mMoveToDefaultScreenFromNewIntent;
344
Winson Chung13eb5272015-05-11 16:30:13 -0700345 // This is set to the view that launched the activity that navigated the user away from
346 // launcher. Since there is no callback for when the activity has finished launching, enable
347 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800348 private BubbleTextView mWaitingForResume;
349
Adam Cohen59400422014-03-05 18:07:04 -0800350 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
351 new HashMap<String, CustomAppWidget>();
352
353 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
354 static {
355 if (ENABLE_CUSTOM_WIDGET_TEST) {
356 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
357 }
358 }
359
Adam Cohen091440a2015-03-18 14:16:05 -0700360 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700361 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700362 if (mWorkspace != null) {
363 mWorkspace.buildPageHardwareLayers();
364 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700365 }
366 };
367
Adam Cohendb364c32014-05-20 14:23:40 -0700368 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800369
Adam Cohen091440a2015-03-18 14:16:05 -0700370 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800371 int requestCode;
372 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700373 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700374 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800375 int cellX;
376 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700377 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800378 }
379
Daniel Sandlerff02d492013-08-05 02:12:05 -0400380 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700381 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700382 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400383
384 @Thunk void setOrientation() {
385 if (mRotationEnabled) {
386 unlockScreenOrientation(true);
387 } else {
388 setRequestedOrientation(
389 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700390 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400391 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700392
Sunny Goyal7779d622015-06-11 16:18:39 -0700393 private Runnable mUpdateOrientationRunnable = new Runnable() {
394 public void run() {
395 setOrientation();
396 }
397 };
398
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800399 @Override
400 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700401 if (DEBUG_STRICT_MODE) {
402 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
403 .detectDiskReads()
404 .detectDiskWrites()
405 .detectNetwork() // or .detectAll() for all detectable problems
406 .penaltyLog()
407 .build());
408 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
409 .detectLeakedSqlLiteObjects()
410 .detectLeakedClosableObjects()
411 .penaltyLog()
412 .penaltyDeath()
413 .build());
414 }
415
Adam Cohen9211d422014-10-07 18:14:53 -0700416 if (mLauncherCallbacks != null) {
417 mLauncherCallbacks.preOnCreate();
418 }
419
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800420 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400421
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400422 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400423 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700424
Adam Cohen2e6da152015-05-06 11:42:25 -0700425 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700426 mDeviceProfile = getResources().getConfiguration().orientation
427 == Configuration.ORIENTATION_LANDSCAPE ?
Tony Wickham3a3517f2015-10-06 11:27:04 -0700428 app.getInvariantDeviceProfile().landscapeProfile
429 : app.getInvariantDeviceProfile().portraitProfile;
Sunny Goyalc6205602015-05-21 20:46:33 -0700430
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400431 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700432 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700433 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800434 mModel = app.setLauncher(this);
435 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700436
Joe Onorato41a12d22009-10-31 18:30:00 -0400437 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800438 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700439 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700440
Daniel Sandlerff02d492013-08-05 02:12:05 -0400441 mStats = new Stats(this);
442
Sunny Goyalffe83f12014-08-14 17:39:34 -0700443 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700444
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700445 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
446 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700447
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700448 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
449 // this also ensures that any synchronous binding below doesn't re-trigger another
450 // LauncherModel load.
451 mPaused = false;
452
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800453 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200454 android.os.Debug.startMethodTracing(
455 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800456 }
457
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800458 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700459
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800460 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700461 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800462
Joe Onorato7c312c12009-08-13 21:36:53 -0700463 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700464
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465 mSavedState = savedInstanceState;
466 restoreState(mSavedState);
467
468 if (PROFILE_STARTUP) {
469 android.os.Debug.stopMethodTracing();
470 }
471
472 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700473 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700474 // If the user leaves launcher, then we should just load items asynchronously when
475 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700476 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700477 } else {
478 // We only load the page synchronously if the user rotates (or triggers a
479 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700480 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700481 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800482 }
483
484 // For handling default keys
485 mDefaultKeySsb = new SpannableStringBuilder();
486 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800487
488 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
489 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800490
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700491 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
492 // In case we are on a device with locked rotation, we should look at preferences to check
493 // if the user has specifically allowed rotation.
494 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400495 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700496 }
497
498 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
499 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400500 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700501
Adam Cohen9211d422014-10-07 18:14:53 -0700502 if (mLauncherCallbacks != null) {
503 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700504 if (mLauncherCallbacks.hasLauncherOverlay()) {
505 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700506 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
507 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
508 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700509 mWorkspace.setLauncherOverlay(mLauncherOverlay);
510 }
Adam Cohen9211d422014-10-07 18:14:53 -0700511 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700512
513 if (shouldShowIntroScreen()) {
514 showIntroScreen();
515 } else {
516 showFirstRunActivity();
517 showFirstRunClings();
518 }
Adam Cohen9211d422014-10-07 18:14:53 -0700519 }
520
Sunny Goyal7779d622015-06-11 16:18:39 -0700521 @Override
522 public void onSettingsChanged(String settings, boolean value) {
523 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
524 mRotationEnabled = value;
525 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
526 mUpdateOrientationRunnable.run();
527 }
528 }
529 }
530
Adam Cohen9211d422014-10-07 18:14:53 -0700531 private LauncherCallbacks mLauncherCallbacks;
532
533 public void onPostCreate(Bundle savedInstanceState) {
534 super.onPostCreate(savedInstanceState);
535 if (mLauncherCallbacks != null) {
536 mLauncherCallbacks.onPostCreate(savedInstanceState);
537 }
538 }
539
540 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
541 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700542 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700543 private boolean mWorkspaceImportanceStored = false;
544 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700545 private int mWorkspaceImportanceForAccessibility =
546 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
547 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
548
549 @Override
550 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700551 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700552 return;
553 }
554 // The underlying workspace and hotseat are temporarily suppressed by the search
555 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700556 if (mWorkspace != null) {
557 mWorkspaceImportanceForAccessibility =
558 mWorkspace.getImportantForAccessibility();
559 mWorkspace.setImportantForAccessibility(
560 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
561 mWorkspaceImportanceStored = true;
562 }
563 if (mHotseat != null) {
564 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
565 mHotseat.setImportantForAccessibility(
566 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
567 mHotseatImportanceStored = true;
568 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700569 }
570
571 @Override
572 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700573 if (mWorkspaceImportanceStored && mWorkspace != null) {
574 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
575 }
576 if (mHotseatImportanceStored && mHotseat != null) {
577 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
578 }
579 mWorkspaceImportanceStored = false;
580 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700581 }
582 });
Adam Cohen9211d422014-10-07 18:14:53 -0700583 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700584 }
585
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700586 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700587 public void onLauncherProviderChange() {
588 if (mLauncherCallbacks != null) {
589 mLauncherCallbacks.onLauncherProviderChange();
590 }
591 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700592
Winson Chungef7f8742015-06-04 17:18:17 -0700593 /**
594 * Updates the bounds of all the overlays to match the new fixed bounds.
595 */
596 public void updateOverlayBounds(Rect newBounds) {
597 mAppsView.setSearchBarBounds(newBounds);
598 mWidgetsView.setSearchBarBounds(newBounds);
599 }
600
Adam Cohen9211d422014-10-07 18:14:53 -0700601 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700602 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700603 if (mLauncherCallbacks != null) {
604 return mLauncherCallbacks.hasCustomContentToLeft();
605 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700606 return false;
607 }
608
Dave Hawkeya8881582013-09-17 15:55:33 -0600609 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500610 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600611 * {@link #addToCustomContentPage}. This will only be invoked if
612 * {@link #hasCustomContentToLeft()} is {@code true}.
613 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500614 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700615 if (mLauncherCallbacks != null) {
616 mLauncherCallbacks.populateCustomContentContainer();
617 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600618 }
619
620 /**
621 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
622 * ensure the custom content page is added or removed if necessary.
623 */
624 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600625 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600626 // Not bound yet, wait for bindScreens to be called.
627 return;
628 }
629
630 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
631 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500632 mWorkspace.createCustomContentContainer();
633 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600634 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
635 mWorkspace.removeCustomContentPage();
636 }
637 }
638
Anton Hanssona2f665f2013-09-26 12:18:32 +0100639 public Stats getStats() {
640 return mStats;
641 }
642
Bjorn Bringertc459e522013-06-07 19:36:01 +0100643 public LayoutInflater getInflater() {
644 return mInflater;
645 }
646
Hyunyoung Song3f471442015-04-08 19:01:34 -0700647 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700648 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
649 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700650 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700651 }
652
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000653 public int getViewIdForItem(ItemInfo info) {
Sunny Goyald1a0e8b2015-08-27 17:45:46 -0700654 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
655 // This cast is safe as long as the id < 0x00FFFFFF
656 // Since we jail all the dynamically generated views, there should be no clashes
657 // with any other views.
658 return (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000659 }
660
661 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700662 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
663 * a configuration step, this allows the proper animations to run after other transitions.
664 */
Adam Cohendb364c32014-05-20 14:23:40 -0700665 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700666 long screenId = args.screenId;
667 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
668 // When the screen id represents an actual screen (as opposed to a rank) we make sure
669 // that the drop page actually exists.
670 screenId = ensurePendingDropLayoutExists(args.screenId);
671 }
Adam Cohendb364c32014-05-20 14:23:40 -0700672
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800673 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800674 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700675 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700676 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700677 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800678 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700679 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700680 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700681 case REQUEST_RECONFIGURE_APPWIDGET:
682 completeRestoreAppWidget(args.appWidgetId);
683 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800684 }
Michael Jurka27614d22012-04-02 06:40:22 -0700685 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
686 // if you turned the screen off and then back while in All Apps, Launcher would not
687 // return to the workspace. Clearing mAddInfo.container here fixes this issue
688 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700689 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800690 }
691
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800692 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700693 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700694 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700695 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700696 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800697 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700698
Adam Cohenad4e15c2013-10-17 16:21:35 -0700699 Runnable exitSpringLoaded = new Runnable() {
700 @Override
701 public void run() {
702 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
703 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
704 }
705 };
706
Michael Jurka8b805b12012-04-18 14:23:14 -0700707 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700708 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700709 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700710 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
711 if (resultCode == RESULT_CANCELED) {
712 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700713 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700714 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700715 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800716 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700717 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700718
719 // When the user has granted permission to bind widgets, we should check to see if
720 // we can inflate the default search bar widget.
721 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700722 }
723 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200724 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
725 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Tony Wickham6ed058c2015-09-09 18:21:49 -0700726 // User could have free-scrolled between pages before picking a wallpaper; make sure
727 // we move to the closest one now to avoid visual jump.
728 mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen());
Winson Chungdc61c4d2015-04-20 18:26:57 -0700729 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200730 }
731 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700732 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200733
Adam Cohened66b2b2012-01-23 17:28:51 -0800734 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700735 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700736
Adam Cohendb364c32014-05-20 14:23:40 -0700737 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800738 // We have special handling for widgets
739 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800740 final int appWidgetId;
741 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
742 : -1;
743 if (widgetId < 0) {
744 appWidgetId = pendingAddWidgetId;
745 } else {
746 appWidgetId = widgetId;
747 }
748
Adam Cohenad4e15c2013-10-17 16:21:35 -0700749 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800750 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700751 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
752 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700753 result = RESULT_CANCELED;
754 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700755 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700756 @Override
757 public void run() {
758 exitSpringLoadedDragModeDelayed(false, 0, null);
759 }
760 };
Adam Cohendb364c32014-05-20 14:23:40 -0700761 if (workspaceLocked) {
762 // No need to remove the empty screen if we're mid-binding, as the
763 // the bind will not add the empty screen.
764 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
765 } else {
766 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
767 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
768 }
Winson Chung5aaab772012-04-27 15:24:02 -0700769 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700770 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700771 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
772 // When the screen id represents an actual screen (as opposed to a rank)
773 // we make sure that the drop page actually exists.
774 mPendingAddInfo.screenId =
775 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
776 }
Adam Cohendb364c32014-05-20 14:23:40 -0700777 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
778
779 dropLayout.setDropPending(true);
780 final Runnable onComplete = new Runnable() {
781 @Override
782 public void run() {
783 completeTwoStageWidgetDrop(resultCode, appWidgetId);
784 dropLayout.setDropPending(false);
785 }
786 };
787 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
788 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
789 } else {
790 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
791 mPendingAddInfo);
792 sPendingAddItem = args;
793 }
Winson Chung5aaab772012-04-27 15:24:02 -0700794 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800795 return;
796 }
797
Sunny Goyalff572272014-07-23 13:58:07 -0700798 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
799 if (resultCode == RESULT_OK) {
800 // Update the widget view.
801 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
802 pendingAddWidgetId, mPendingAddInfo);
803 if (workspaceLocked) {
804 sPendingAddItem = args;
805 } else {
806 completeAdd(args);
807 }
808 }
809 // Leave the widget in the pending state if the user canceled the configure.
810 return;
811 }
812
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800813 // The pattern used here is that a user PICKs a specific application,
814 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700815
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800816 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
817 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700818 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700819 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
820 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800821 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700822 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800823 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700824 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700825 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
826 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800827 }
Adam Cohen00074722013-10-11 17:46:09 -0700828 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700829 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700830 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800831 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800832 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800833
834 }
835
836 @Override
837 protected void onActivityResult(
838 final int requestCode, final int resultCode, final Intent data) {
839 handleActivityResult(requestCode, resultCode, data);
840 if (mLauncherCallbacks != null) {
841 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
842 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800843 }
844
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600845 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700846 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600847 int[] grantResults) {
848 if (mLauncherCallbacks != null) {
849 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
850 grantResults);
851 }
852 }
853
Adam Cohendb364c32014-05-20 14:23:40 -0700854 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
855 appWidgetId, ItemInfo info) {
856 PendingAddArguments args = new PendingAddArguments();
857 args.requestCode = requestCode;
858 args.intent = data;
859 args.container = info.container;
860 args.screenId = info.screenId;
861 args.cellX = info.cellX;
862 args.cellY = info.cellY;
863 args.appWidgetId = appWidgetId;
864 return args;
865 }
866
867 /**
868 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
869 *
870 * @param screenId the screen id to check
871 * @return the new screen, or screenId if it exists
872 */
873 private long ensurePendingDropLayoutExists(long screenId) {
874 CellLayout dropLayout =
875 (CellLayout) mWorkspace.getScreenWithId(screenId);
876 if (dropLayout == null) {
877 // it's possible that the add screen was removed because it was
878 // empty and a re-bind occurred
879 mWorkspace.addExtraEmptyScreen();
880 return mWorkspace.commitExtraEmptyScreen();
881 } else {
882 return screenId;
883 }
884 }
885
Adam Cohen091440a2015-03-18 14:16:05 -0700886 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700887 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700888 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800889 Runnable onCompleteRunnable = null;
890 int animationType = 0;
891
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700892 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800893 if (resultCode == RESULT_OK) {
894 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
895 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700896 mPendingAddWidgetInfo);
897 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800898 onCompleteRunnable = new Runnable() {
899 @Override
900 public void run() {
901 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700902 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700903 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
904 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800905 }
906 };
907 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800908 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800909 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800910 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700911 if (mDragLayer.getAnimatedView() != null) {
912 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
913 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
914 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700915 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700916 // The animated view may be null in the case of a rotation during widget configuration
917 onCompleteRunnable.run();
918 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800919 }
920
921 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700922 protected void onStop() {
923 super.onStop();
924 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700925
926 if (mLauncherCallbacks != null) {
927 mLauncherCallbacks.onStop();
928 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700929 }
930
931 @Override
932 protected void onStart() {
933 super.onStart();
934 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700935
936 if (mLauncherCallbacks != null) {
937 mLauncherCallbacks.onStart();
938 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700939 }
940
941 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800942 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200943 long startTime = 0;
944 if (DEBUG_RESUME_TIME) {
945 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400946 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200947 }
Adam Cohen9211d422014-10-07 18:14:53 -0700948
949 if (mLauncherCallbacks != null) {
950 mLauncherCallbacks.preOnResume();
951 }
952
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800953 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700954
Winson Chung4a2afa32012-07-19 14:53:05 -0700955 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700956 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700957 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800958 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700959 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700960 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700961 // view after launching an app, as they may be depending on the UI to be static to
962 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700963 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700964 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800965 } else if (mOnResumeState == State.WIDGETS) {
966 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700967 }
968 mOnResumeState = State.NONE;
969
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700970 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700971 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
972 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700973
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800974 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700975 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700976 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -0700977
978 // If we're starting binding all over again, clear any bind calls we'd postponed in
979 // the past (see waitUntilResume) -- we don't need them since we're starting binding
980 // from scratch again
981 mBindOnResumeCallbacks.clear();
982
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700983 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400984 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700985 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800986 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700987 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200988 // We might have postponed some bind calls until onResume (see waitUntilResume) --
989 // execute them here
990 long startTimeCallbacks = 0;
991 if (DEBUG_RESUME_TIME) {
992 startTimeCallbacks = System.currentTimeMillis();
993 }
994
Michael Jurka1e2f4652013-07-08 18:03:46 -0700995 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
996 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +0200997 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700998 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +0200999 if (DEBUG_RESUME_TIME) {
1000 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1001 (System.currentTimeMillis() - startTimeCallbacks));
1002 }
Michael Jurka447bf842013-05-15 14:52:15 +02001003 }
Michael Jurka54554252013-08-01 12:52:23 +02001004 if (mOnResumeCallbacks.size() > 0) {
1005 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1006 mOnResumeCallbacks.get(i).run();
1007 }
1008 mOnResumeCallbacks.clear();
1009 }
Winson Chunge4e50662012-01-23 14:45:13 -08001010
1011 // Reset the pressed state of icons that were locked in the press state while activities
1012 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001013 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001014 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001015 mWaitingForResume.setStayPressed(false);
1016 }
Winson Chung82963d52013-10-09 11:20:57 -07001017
Adam Cohen06dff352012-06-01 17:17:08 -07001018 // It is possible that widgets can receive updates while launcher is not in the foreground.
1019 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1020 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1021 // orientation.
Sunny Goyal6bec75f2015-10-01 18:50:48 -07001022 if (!isWorkspaceLoading()) {
1023 getWorkspace().reinflateWidgetsIfNecessary();
1024 }
Sunny Goyal22235bc2015-04-03 09:23:43 -07001025 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001026
Michael Jurka447bf842013-05-15 14:52:15 +02001027 if (DEBUG_RESUME_TIME) {
1028 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1029 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001030
Adam Cohen4b66bf32015-09-18 12:15:19 -07001031 // We want to suppress callbacks about CustomContent being shown if we have just received
1032 // onNewIntent while the user was present within launcher. In that case, we post a call
1033 // to move the user to the main screen (which will occur after onResume). We don't want to
1034 // have onHide (from onPause), then onShow, then onHide again, which we get if we don't
1035 // suppress here.
1036 if (mWorkspace.getCustomContentCallbacks() != null
1037 && !mMoveToDefaultScreenFromNewIntent) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001038 // If we are resuming and the custom content is the current page, we call onShow().
Adam Cohen4b66bf32015-09-18 12:15:19 -07001039 // It is also possible that onShow will instead be called slightly after first layout
Adam Cohen6fecd412013-10-02 17:41:50 -07001040 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1041 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001042 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001043 }
1044 }
Adam Cohen4b66bf32015-09-18 12:15:19 -07001045 mMoveToDefaultScreenFromNewIntent = false;
Winson Chungcd99cd32015-04-29 11:03:24 -07001046 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001047 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001048
Sunny Goyal756adbc2015-04-16 15:20:51 -07001049 if (!isWorkspaceLoading()) {
1050 // Process any items that were added while Launcher was away.
1051 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1052 }
Adam Cohen9211d422014-10-07 18:14:53 -07001053
1054 if (mLauncherCallbacks != null) {
1055 mLauncherCallbacks.onResume();
1056 }
Adam Cohen06dff352012-06-01 17:17:08 -07001057 }
1058
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001059 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001060 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001061 // Ensure that items added to Launcher are queued until Launcher returns
1062 InstallShortcutReceiver.enableInstallQueue();
1063
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001064 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001065 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001066 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001067 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001068
1069 // We call onHide() aggressively. The custom content callbacks should be able to
1070 // debounce excess onHide calls.
1071 if (mWorkspace.getCustomContentCallbacks() != null) {
1072 mWorkspace.getCustomContentCallbacks().onHide();
1073 }
Romain Guycbb89e42009-06-08 15:52:54 -07001074
Adam Cohen9211d422014-10-07 18:14:53 -07001075 if (mLauncherCallbacks != null) {
1076 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001077 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001078 }
1079
1080 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001081 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1082 // by a onResume or by scrolling otherwise.
1083 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001084
1085 // Custom content is completely hidden
1086 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001087
1088 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1089 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001090
1091 // Indicates whether the user is allowed to scroll away from the custom content.
1092 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001093 }
1094
Adam Cohenc2d6e892014-10-16 09:49:24 -07001095 public interface LauncherOverlay {
1096
1097 /**
1098 * Touch interaction leading to overscroll has begun
1099 */
1100 public void onScrollInteractionBegin();
1101
1102 /**
1103 * Touch interaction related to overscroll has ended
1104 */
1105 public void onScrollInteractionEnd();
1106
1107 /**
1108 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1109 * screen (or in the case of RTL, the rightmost screen).
1110 */
1111 public void onScrollChange(int progress, boolean rtl);
1112
1113 /**
1114 * Screen has stopped scrolling
1115 */
1116 public void onScrollSettled();
1117
1118 /**
1119 * This method can be called by the Launcher in order to force the LauncherOverlay
1120 * to exit fully immersive mode.
1121 */
1122 public void forceExitFullImmersion();
1123 }
1124
Jun Mukai8af0cd82015-05-12 12:32:12 -07001125 public interface LauncherSearchCallbacks {
1126 /**
1127 * Called when the search overlay is shown.
1128 */
1129 public void onSearchOverlayOpened();
1130
1131 /**
1132 * Called when the search overlay is dismissed.
1133 */
1134 public void onSearchOverlayClosed();
1135 }
1136
Adam Cohenc2d6e892014-10-16 09:49:24 -07001137 public interface LauncherOverlayCallbacks {
1138 /**
1139 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1140 * however it doesn't modify any state within the launcher.
1141 */
1142 public boolean canEnterFullImmersion();
1143
1144 /**
1145 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1146 * eg. by occupying the full screen and handling all touch events.
1147 *
1148 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1149 * case, Launcher will modify any necessary state and assumes the overlay is
1150 * handling all interaction. If false, the LauncherOverlay should cancel any
1151 *
1152 */
1153 public boolean enterFullImmersion();
1154
1155 /**
1156 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1157 * full control over UI and state.
1158 */
1159 public void exitFullImmersion();
1160 }
1161
1162 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1163
1164 @Override
1165 public boolean canEnterFullImmersion() {
1166 return mState == State.WORKSPACE;
1167 }
1168
1169 @Override
1170 public boolean enterFullImmersion() {
1171 if (mState == State.WORKSPACE) {
1172 // When fully immersed, disregard any touches which fall through.
1173 mDragLayer.setBlockTouch(true);
1174 return true;
1175 }
1176 return false;
1177 }
1178
1179 @Override
1180 public void exitFullImmersion() {
1181 mDragLayer.setBlockTouch(false);
1182 }
1183 }
1184
Jorim Jaggid017f882014-01-14 17:08:48 -08001185 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001186 if (mLauncherCallbacks != null) {
1187 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001188 } else {
1189 // On devices with a locked orientation, we will at least have the allow rotation
1190 // setting.
1191 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001192 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001193 }
1194
Adam Cohen9211d422014-10-07 18:14:53 -07001195 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001196 CustomContentCallbacks callbacks, String description) {
1197 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001198 }
1199
Adam Cohenedb40762013-07-18 16:45:45 -07001200 // The custom content needs to offset its content to account for the QSB
1201 public int getTopOffsetForCustomContent() {
1202 return mWorkspace.getPaddingTop();
1203 }
1204
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001205 @Override
1206 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001207 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001208 if (mModel.isCurrentCallbacks(this)) {
1209 mModel.stopLoader();
1210 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001211 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1212
Romain Guy13c2e7b2010-03-10 19:45:00 -08001213 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001214 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001215
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001216 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001217 @Override
1218 public void onWindowFocusChanged(boolean hasFocus) {
1219 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001220 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001221
1222 if (mLauncherCallbacks != null) {
1223 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1224 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001225 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001226
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001227 private boolean acceptFilter() {
1228 final InputMethodManager inputManager = (InputMethodManager)
1229 getSystemService(Context.INPUT_METHOD_SERVICE);
1230 return !inputManager.isFullscreenMode();
1231 }
1232
1233 @Override
1234 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001235 final int uniChar = event.getUnicodeChar();
1236 final boolean handled = super.onKeyDown(keyCode, event);
1237 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1238 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001239 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1240 keyCode, event);
1241 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001242 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001243 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001244 // showSearchDialog()
1245 // If there are multiple keystrokes before the search dialog takes focus,
1246 // onSearchRequested() will be called for every keystroke,
1247 // but it is idempotent, so it's fine.
1248 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001249 }
1250 }
1251
Joe Onorato8a9625e2010-01-28 15:55:35 -08001252 // Eat the long press event so the keyboard doesn't come up.
1253 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1254 return true;
1255 }
1256
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001257 return handled;
1258 }
1259
Winson46163472015-09-22 17:31:56 -07001260 @Override
1261 public boolean onKeyUp(int keyCode, KeyEvent event) {
1262 if (keyCode == KeyEvent.KEYCODE_MENU) {
1263 // Ignore the menu key if we are currently dragging or are on the custom content screen
1264 if (!isOnCustomContent() && !mDragController.isDragging()) {
1265 // Close any open folders
1266 closeFolder();
1267
1268 // Stop resizing any widgets
1269 mWorkspace.exitWidgetResizeMode();
1270
1271 // Show the overview mode if we are on the workspace
1272 if (mState == State.WORKSPACE && !mWorkspace.isInOverviewMode() &&
1273 !mWorkspace.isSwitchingState()) {
1274 mOverviewPanel.requestFocus();
1275 showOverviewMode(true);
1276 }
1277 }
1278 return true;
1279 }
1280 return super.onKeyUp(keyCode, event);
1281 }
1282
Karl Rosaen138a0412009-04-23 19:00:21 -07001283 private String getTypedText() {
1284 return mDefaultKeySsb.toString();
1285 }
1286
1287 private void clearTypedText() {
1288 mDefaultKeySsb.clear();
1289 mDefaultKeySsb.clearSpans();
1290 Selection.setSelection(mDefaultKeySsb, 0);
1291 }
1292
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001293 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001294 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1295 * State
1296 */
1297 private static State intToState(int stateOrdinal) {
1298 State state = State.WORKSPACE;
1299 final State[] stateValues = State.values();
1300 for (int i = 0; i < stateValues.length; i++) {
1301 if (stateValues[i].ordinal() == stateOrdinal) {
1302 state = stateValues[i];
1303 break;
1304 }
1305 }
1306 return state;
1307 }
1308
1309 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001310 * Restores the previous state, if it exists.
1311 *
1312 * @param savedState The previous state.
1313 */
1314 private void restoreState(Bundle savedState) {
1315 if (savedState == null) {
1316 return;
1317 }
1318
Michael Jurka883f55b2010-10-21 15:47:14 -07001319 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001320 if (state == State.APPS || state == State.WIDGETS) {
1321 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001322 }
1323
Adam Cohen21cd0022013-10-09 18:57:02 -07001324 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1325 PagedView.INVALID_RESTORE_PAGE);
1326 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001327 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001328 }
1329
Winson Chung3d503fb2011-07-13 17:25:49 -07001330 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001331 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001332
Winson Chung3d503fb2011-07-13 17:25:49 -07001333 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1334 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001335 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001336 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1337 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001338 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1339 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001340 AppWidgetProviderInfo info = savedState.getParcelable(
1341 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001342 mPendingAddWidgetInfo = info == null ?
1343 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1344
Adam Cohen4637b5a2013-11-04 18:21:24 -08001345 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001346 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001347 mRestoring = true;
1348 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001349 }
1350
1351 /**
1352 * Finds all the views we need and configure them properly.
1353 */
1354 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001355 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001356
Craig Mautner360310b2012-10-26 15:13:08 -07001357 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001358 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001359 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1360 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001361 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001362 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001363
John Spurlock77e1f472013-09-11 10:09:51 -04001364 mLauncherView.setSystemUiVisibility(
1365 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001366 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001367
Winson Chung4c98d922011-05-31 16:50:48 -07001368 // Setup the drag layer
1369 mDragLayer.setup(this, dragController);
1370
Winson Chung3d503fb2011-07-13 17:25:49 -07001371 // Setup the hotseat
1372 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1373 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001374 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001375 }
1376
Jorim Jaggid017f882014-01-14 17:08:48 -08001377 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Tony Wickham6b7653d2015-09-02 16:11:09 -07001378 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1379 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1380 @Override
1381 public boolean onLongClick(View v) {
1382 return v.performClick();
1383 }
1384 };
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001385 mWidgetsButton = findViewById(R.id.widget_button);
1386 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001387 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001388 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001389 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001390 onClickAddWidgetButton(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001391 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001392 }
1393 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001394 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001395 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001396
1397 View wallpaperButton = findViewById(R.id.wallpaper_button);
1398 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001399 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001400 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001401 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001402 onClickWallpaperPicker(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001403 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001404 }
1405 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001406 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
Adam Cohen61f560d2013-09-30 15:58:20 -07001407 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1408
1409 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001410 if (hasSettings()) {
1411 settingsButton.setOnClickListener(new OnClickListener() {
1412 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001413 public void onClick(View view) {
Jorim Jaggid017f882014-01-14 17:08:48 -08001414 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001415 onClickSettingsButton(view);
Jorim Jaggid017f882014-01-14 17:08:48 -08001416 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001417 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001418 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001419 settingsButton.setOnLongClickListener(performClickOnLongClick);
Jorim Jaggid017f882014-01-14 17:08:48 -08001420 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1421 } else {
1422 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001423 }
1424
Adam Cohendbdff6b2013-09-18 19:09:15 -07001425 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001426
Winson Chung4c98d922011-05-31 16:50:48 -07001427 // Setup the workspace
1428 mWorkspace.setHapticFeedbackEnabled(false);
1429 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001430 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001431 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001432
Winson Chungf0ea4d32011-06-06 14:27:16 -07001433 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001434 mSearchDropTargetBar = (SearchDropTargetBar)
1435 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001436
Winson Chungef7f8742015-06-04 17:18:17 -07001437 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001438 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001439 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001440 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1441 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1442 } else {
1443 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1444 }
Craig Mautner360310b2012-10-26 15:13:08 -07001445
Winson Chung3d503fb2011-07-13 17:25:49 -07001446 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001447 dragController.setDragScoller(mWorkspace);
1448 dragController.setScrollView(mDragLayer);
1449 dragController.setMoveTarget(mWorkspace);
1450 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001451 if (mSearchDropTargetBar != null) {
1452 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001453 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001454 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001455
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001456 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001457 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001458 mWeightWatcher = new WeightWatcher(this);
1459 mWeightWatcher.setAlpha(0.5f);
1460 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001461 new FrameLayout.LayoutParams(
1462 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001463 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001464 Gravity.BOTTOM)
1465 );
Adam Cohen39a06042013-07-19 14:30:12 -07001466
1467 boolean show = shouldShowWeightWatcher();
1468 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001469 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001470 }
1471
1472 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001473 * Sets the all apps button. This method is called from {@link Hotseat}.
1474 */
1475 public void setAllAppsButton(View allAppsButton) {
1476 mAllAppsButton = allAppsButton;
1477 }
1478
1479 public View getAllAppsButton() {
1480 return mAllAppsButton;
1481 }
1482
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001483 public View getWidgetsButton() {
1484 return mWidgetsButton;
1485 }
1486
Anjali Koppal5ad44842014-03-10 20:34:39 -07001487 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488 * Creates a view representing a shortcut.
1489 *
1490 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001491 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001492 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001493 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001494 }
1495
1496 /**
1497 * Creates a view representing a shortcut inflated from the specified resource.
1498 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001499 * @param parent The group the shortcut belongs to.
1500 * @param info The data structure describing the shortcut.
1501 *
1502 * @return A View inflated from layoutResId.
1503 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001504 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001505 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001506 parent, false);
1507 favorite.applyFromShortcutInfo(info, mIconCache);
1508 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001509 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001510 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001511 return favorite;
1512 }
1513
1514 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001515 * Add a shortcut to the workspace.
1516 *
1517 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001518 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001519 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001520 int cellY) {
1521 int[] cellXY = mTmpAddItemCellCoordinates;
1522 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001523 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001524
Sunny Goyal5c97f512015-05-19 16:03:28 -07001525 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001526 if (info == null) {
1527 return;
1528 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001529 final View view = createShortcut(info);
1530
Sunny Goyal5c97f512015-05-19 16:03:28 -07001531 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001532 // First we check if we already know the exact location where we want to add this item.
1533 if (cellX >= 0 && cellY >= 0) {
1534 cellXY[0] = cellX;
1535 cellXY[1] = cellY;
1536 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001537
1538 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001539 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001540 true, null,null)) {
1541 return;
1542 }
1543 DragObject dragObject = new DragObject();
1544 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001545 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1546 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001547 return;
1548 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001549 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001550 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001551 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001552 foundCellSpan = (result != null);
1553 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001554 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001555 }
1556
1557 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001558 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001559 return;
1560 }
1561
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001562 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001563
1564 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001565 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001566 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001567 }
1568 }
1569
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001570 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001571 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001572 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001573 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001574 */
Adam Cohen091440a2015-03-18 14:16:05 -07001575 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001576 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1577
1578 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001579 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001580 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1581 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001582 }
Romain Guycbb89e42009-06-08 15:52:54 -07001583
Adam Cohen59400422014-03-05 18:07:04 -08001584 if (appWidgetInfo.isCustomWidget) {
1585 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001586 }
1587
Adam Cohen59400422014-03-05 18:07:04 -08001588 LauncherAppWidgetInfo launcherInfo;
1589 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1590 launcherInfo.spanX = info.spanX;
1591 launcherInfo.spanY = info.spanY;
1592 launcherInfo.minSpanX = info.minSpanX;
1593 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001594 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001595
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001596 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001597 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001598
1599 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001600 if (hostView == null) {
1601 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001602 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1603 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001604 } else {
1605 // The AppWidgetHostView has already been inflated and instantiated
1606 launcherInfo.hostView = hostView;
1607 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001608 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001609 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001610 launcherInfo.notifyWidgetSizeChanged(this);
1611
Adam Cohen59400422014-03-05 18:07:04 -08001612 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1613 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001614
1615 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001616 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001617 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001618 }
Romain Guycbb89e42009-06-08 15:52:54 -07001619
Adam Cohended9f8d2010-11-03 13:25:16 -07001620 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1621 @Override
1622 public void onReceive(Context context, Intent intent) {
1623 final String action = intent.getAction();
1624 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1625 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001626 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001627 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001628
Winson Chungc100e8e2011-08-09 16:02:43 -07001629 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001630 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001631 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001632 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001633 if (!showWorkspace(false)) {
1634 // If we are already on the workspace, then manually reset all apps
1635 mAppsView.reset();
1636 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001637 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001638 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1639 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001640 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001641 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1642 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001643 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001644 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1645 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1646 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001647 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001648 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1649 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001650 }
1651 }
1652 };
1653
1654 @Override
1655 public void onAttachedToWindow() {
1656 super.onAttachedToWindow();
1657
1658 // Listen for broadcasts related to user-presence
1659 final IntentFilter filter = new IntentFilter();
1660 filter.addAction(Intent.ACTION_SCREEN_OFF);
1661 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001662 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001663 if (ENABLE_DEBUG_INTENTS) {
1664 filter.addAction(DebugIntents.DELETE_DATABASE);
1665 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1666 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001667 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001668 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001669 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001670 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001671 mVisible = true;
1672 }
1673
Adam Cohen0b395352014-06-09 22:54:36 +00001674 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001675 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001676 * This method is a no-op for other platform versions.
1677 */
Sunny Goyald0091012015-01-20 15:55:34 -08001678 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001679 private void setupTransparentSystemBarsForLollipop() {
1680 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001681 Window window = getWindow();
1682 window.getAttributes().systemUiVisibility |=
1683 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1684 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1685 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1686 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1687 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1688 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1689 window.setStatusBarColor(Color.TRANSPARENT);
1690 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001691 }
1692 }
1693
Adam Cohended9f8d2010-11-03 13:25:16 -07001694 @Override
1695 public void onDetachedFromWindow() {
1696 super.onDetachedFromWindow();
1697 mVisible = false;
1698
Adam Cohend113e0c2010-11-11 10:48:05 -08001699 if (mAttached) {
1700 unregisterReceiver(mReceiver);
1701 mAttached = false;
1702 }
Winson Chungb745afb2015-03-02 11:51:23 -08001703 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001704 }
1705
1706 public void onWindowVisibilityChanged(int visibility) {
1707 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001708 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001709 // The following code used to be in onResume, but it turns out onResume is called when
1710 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1711 // is a more appropriate event to handle
1712 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001713 if (!mWorkspaceLoading) {
1714 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001715 // We want to let Launcher draw itself at least once before we force it to build
1716 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001717 // apps is nice and speedy.
1718 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001719 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001720 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001721 if (mStarted) return;
1722 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001723 // We delay the layer building a bit in order to give
1724 // other message processing a time to run. In particular
1725 // this avoids a delay in hiding the IME if it was
1726 // currently shown, because doing that may involve
1727 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001728 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001729 final ViewTreeObserver.OnDrawListener listener = this;
1730 mWorkspace.post(new Runnable() {
1731 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001732 if (mWorkspace != null &&
1733 mWorkspace.getViewTreeObserver() != null) {
1734 mWorkspace.getViewTreeObserver().
1735 removeOnDrawListener(listener);
1736 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001737 }
1738 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001739 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001740 }
1741 });
1742 }
1743 clearTypedText();
1744 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001745 }
1746
Adam Cohen091440a2015-03-18 14:16:05 -07001747 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001748 mHandler.removeMessages(ADVANCE_MSG);
1749 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1750 mHandler.sendMessageDelayed(msg, delay);
1751 mAutoAdvanceSentTime = System.currentTimeMillis();
1752 }
1753
Adam Cohen091440a2015-03-18 14:16:05 -07001754 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001755 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1756 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1757 mAutoAdvanceRunning = autoAdvanceRunning;
1758 if (autoAdvanceRunning) {
1759 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1760 sendAdvanceMessage(delay);
1761 } else {
1762 if (!mWidgetsToAdvance.isEmpty()) {
1763 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1764 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1765 }
1766 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001767 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001768 }
1769 }
1770 }
1771
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001772 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1773
Adam Cohended9f8d2010-11-03 13:25:16 -07001774 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001775 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001776 if (msg.what == ADVANCE_MSG) {
1777 int i = 0;
1778 for (View key: mWidgetsToAdvance.keySet()) {
1779 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1780 final int delay = mAdvanceStagger * i;
1781 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001782 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001783 public void run() {
1784 ((Advanceable) v).advance();
1785 }
1786 }, delay);
1787 }
1788 i++;
1789 }
1790 sendAdvanceMessage(mAdvanceInterval);
1791 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001792 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001793 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001794 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001795
Winsonc0b52fe2015-09-09 16:38:15 -07001796 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001797 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001798 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1799 if (v instanceof Advanceable) {
1800 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001801 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001802 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001803 }
1804 }
1805
Winsonc0b52fe2015-09-09 16:38:15 -07001806 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001807 if (mWidgetsToAdvance.containsKey(hostView)) {
1808 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001809 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001810 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001811 }
1812
Hyunyoung Song3f471442015-04-08 19:01:34 -07001813 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001814 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1815 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001816 }
1817
Winson Chunga6945242014-01-08 14:04:34 -08001818 public DragLayer getDragLayer() {
1819 return mDragLayer;
1820 }
1821
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001822 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001823 return mAppsView;
1824 }
1825
Hyunyoung Song3f471442015-04-08 19:01:34 -07001826 public WidgetsContainerView getWidgetsView() {
1827 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001828 }
1829
Winson Chunga6945242014-01-08 14:04:34 -08001830 public Workspace getWorkspace() {
1831 return mWorkspace;
1832 }
1833
1834 public Hotseat getHotseat() {
1835 return mHotseat;
1836 }
1837
Jorim Jaggid017f882014-01-14 17:08:48 -08001838 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001839 return mOverviewPanel;
1840 }
1841
Winson Chung006ee262015-08-03 14:40:11 -07001842 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001843 return mSearchDropTargetBar;
1844 }
1845
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001846 public LauncherAppWidgetHost getAppWidgetHost() {
1847 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001848 }
Romain Guycbb89e42009-06-08 15:52:54 -07001849
Winson Chunga9abd0e2010-10-27 17:18:37 -07001850 public LauncherModel getModel() {
1851 return mModel;
1852 }
1853
Winson Chunga6945242014-01-08 14:04:34 -08001854 protected SharedPreferences getSharedPrefs() {
1855 return mSharedPrefs;
1856 }
1857
Adam Cohen2e6da152015-05-06 11:42:25 -07001858 public DeviceProfile getDeviceProfile() {
1859 return mDeviceProfile;
1860 }
1861
Bjorn Bringertc459e522013-06-07 19:36:01 +01001862 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001863 getWindow().closeAllPanels();
1864
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001865 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001866 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001867 }
1868
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001869 @Override
1870 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001871 long startTime = 0;
1872 if (DEBUG_RESUME_TIME) {
1873 startTime = System.currentTimeMillis();
1874 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001875 super.onNewIntent(intent);
1876
1877 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001878 Folder openFolder = mWorkspace.getOpenFolder();
1879 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1880 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1881 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1882 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1883 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001884 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001885 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001886
Adam Cohen6fecd412013-10-02 17:41:50 -07001887 if (mWorkspace == null) {
1888 // Can be cases where mWorkspace is null, this prevents a NPE
1889 return;
1890 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001891 // In all these cases, only animate if we're already on home
1892 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001893
Adam Cohen6fecd412013-10-02 17:41:50 -07001894 closeFolder();
1895 exitSpringLoadedDragMode();
1896
1897 // If we are already on home, then just animate back to the workspace,
1898 // otherwise, just wait until onResume to set the state back to Workspace
1899 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001900 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001901 } else {
1902 mOnResumeState = State.WORKSPACE;
1903 }
1904
1905 final View v = getWindow().peekDecorView();
1906 if (v != null && v.getWindowToken() != null) {
1907 InputMethodManager imm = (InputMethodManager)getSystemService(
1908 INPUT_METHOD_SERVICE);
1909 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1910 }
1911
Winson Chungb745afb2015-03-02 11:51:23 -08001912 // Reset the apps view
1913 if (!alreadyOnHome && mAppsView != null) {
1914 mAppsView.scrollToTop();
1915 }
1916
Hyunyoung Song3f471442015-04-08 19:01:34 -07001917 // Reset the widgets view
1918 if (!alreadyOnHome && mWidgetsView != null) {
1919 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001920 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001921
Adam Cohen9211d422014-10-07 18:14:53 -07001922 if (mLauncherCallbacks != null) {
1923 mLauncherCallbacks.onHomeIntent();
1924 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001925 }
Adam Cohened307df2013-10-02 09:37:31 -07001926
Adam Cohen9211d422014-10-07 18:14:53 -07001927 if (mLauncherCallbacks != null) {
1928 mLauncherCallbacks.onNewIntent(intent);
1929 }
Winson15f8b172015-08-19 11:02:39 -07001930
1931 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1932 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1933 // animation.
1934 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001935 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1936 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001937 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1938 openFolder == null && moveToDefaultScreen) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001939
1940 // We use this flag to suppress noisy callbacks above custom content state
1941 // from onResume.
1942 mMoveToDefaultScreenFromNewIntent = true;
Winson15f8b172015-08-19 11:02:39 -07001943 mWorkspace.post(new Runnable() {
1944 @Override
1945 public void run() {
1946 mWorkspace.moveToDefaultScreen(true);
1947 }
1948 });
1949 }
1950 }
1951
1952 if (DEBUG_RESUME_TIME) {
1953 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1954 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001955 }
1956
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001957 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001958 public void onRestoreInstanceState(Bundle state) {
1959 super.onRestoreInstanceState(state);
1960 for (int page: mSynchronouslyBoundPages) {
1961 mWorkspace.restoreInstanceStateForChild(page);
1962 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001963 }
1964
1965 @Override
1966 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001967 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001968 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1969 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001970 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001971 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001972
Michael Jurka883f55b2010-10-21 15:47:14 -07001973 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001974 // We close any open folder since it will not be re-opened, and we need to make sure
1975 // this state is reflected.
1976 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001977
Adam Cohendcd297f2013-06-18 13:13:40 -07001978 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001979 mWaitingForResult) {
1980 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001981 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001982 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1983 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001984 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1985 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1986 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001987 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001988 }
1989
Hyunyoung Song3f471442015-04-08 19:01:34 -07001990 // Save the current widgets tray?
1991 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07001992
1993 if (mLauncherCallbacks != null) {
1994 mLauncherCallbacks.onSaveInstanceState(outState);
1995 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001996 }
1997
1998 @Override
1999 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002000 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002001
Winson Chunge7a03942011-08-05 15:05:12 -07002002 // Remove all pending runnables
2003 mHandler.removeMessages(ADVANCE_MSG);
2004 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002005 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002006
Winson Chungcd2b0142011-06-08 16:02:26 -07002007 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002008 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002009
2010 // It's possible to receive onDestroy after a new Launcher activity has
2011 // been created. In this case, don't interfere with the new Launcher.
2012 if (mModel.isCurrentCallbacks(this)) {
2013 mModel.stopLoader();
2014 app.setLauncher(null);
2015 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002016
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002017 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002018 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002019 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002020 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002021 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002022 mAppWidgetHost = null;
2023
2024 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002025
2026 TextKeyListener.getInstance().release();
2027
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002028 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002029
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002030 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002031 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002032 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002033 mWorkspace = null;
2034 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002035
Michael Jurka2ecf9952012-06-18 12:52:28 -07002036 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002037
2038 if (mLauncherCallbacks != null) {
2039 mLauncherCallbacks.onDestroy();
2040 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002041 }
2042
Adam Cohena9cf38f2011-05-02 15:36:58 -07002043 public DragController getDragController() {
2044 return mDragController;
2045 }
2046
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002047 @Override
2048 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002049 onStartForResult(requestCode);
2050 super.startActivityForResult(intent, requestCode);
2051 }
2052
2053 @Override
2054 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2055 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2056 onStartForResult(requestCode);
2057 try {
2058 super.startIntentSenderForResult(intent, requestCode,
2059 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2060 } catch (IntentSender.SendIntentException e) {
2061 throw new ActivityNotFoundException();
2062 }
2063 }
2064
2065 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002066 if (requestCode >= 0) {
2067 setWaitingForResult(true);
2068 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002069 }
2070
Winson Chung70d72102011-08-12 11:24:35 -07002071 /**
2072 * Indicates that we want global search for this activity by setting the globalSearch
2073 * argument for {@link #startSearch} to true.
2074 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002075 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002076 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002077 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002078
Karl Rosaen138a0412009-04-23 19:00:21 -07002079 if (initialQuery == null) {
2080 // Use any text typed in the launcher as the initial query
2081 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002082 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002083 if (appSearchData == null) {
2084 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002085 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002086 }
Winson Chungadf0c182012-08-23 14:59:07 -07002087 Rect sourceBounds = new Rect();
2088 if (mSearchDropTargetBar != null) {
2089 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2090 }
Romain Guycbb89e42009-06-08 15:52:54 -07002091
Ian Parkinson047036e2014-09-01 15:40:53 +01002092 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002093 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002094 if (clearTextImmediately) {
2095 clearTypedText();
2096 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002097
2098 // We need to show the workspace after starting the search
2099 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002100 }
2101
Ian Parkinson047036e2014-09-01 15:40:53 +01002102 /**
2103 * Start a text search.
2104 *
2105 * @return {@code true} if the search will start immediately, so any further keypresses
2106 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2107 * to buffer keypresses.
2108 */
2109 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002110 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002111 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2112 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2113 sourceBounds);
2114 }
2115
Michael Jurkaa33411c2012-06-14 16:18:21 -07002116 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002117 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002118 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002119 }
2120
2121 /**
2122 * Starts the global search activity. This code is a copied from SearchManager
2123 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002124 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002125 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002126 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002127 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2128 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2129 if (globalSearchActivity == null) {
2130 Log.w(TAG, "No global search activity found.");
2131 return;
2132 }
2133 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2134 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2135 intent.setComponent(globalSearchActivity);
2136 // Make sure that we have a Bundle to put source in
2137 if (appSearchData == null) {
2138 appSearchData = new Bundle();
2139 } else {
2140 appSearchData = new Bundle(appSearchData);
2141 }
Adam Cohen9211d422014-10-07 18:14:53 -07002142 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002143 if (!appSearchData.containsKey("source")) {
2144 appSearchData.putString("source", getPackageName());
2145 }
2146 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2147 if (!TextUtils.isEmpty(initialQuery)) {
2148 intent.putExtra(SearchManager.QUERY, initialQuery);
2149 }
2150 if (selectInitialQuery) {
2151 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2152 }
2153 intent.setSourceBounds(sourceBounds);
2154 try {
2155 startActivity(intent);
2156 } catch (ActivityNotFoundException ex) {
2157 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2158 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002159 }
2160
Winson Chungbedf9232015-07-10 12:38:30 -07002161 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2162 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2163 return;
2164 }
2165
2166 // If not handled, then just start the provided search intent
2167 startActivitySafely(v, searchIntent, null);
2168 }
2169
Yura4f93ec62014-02-04 14:15:21 +00002170 public boolean isOnCustomContent() {
2171 return mWorkspace.isOnOrMovingToCustomContent();
2172 }
2173
Winson Chung70d72102011-08-12 11:24:35 -07002174 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002175 public boolean onPrepareOptionsMenu(Menu menu) {
2176 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07002177 if (mLauncherCallbacks != null) {
2178 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2179 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002180 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002181 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002182
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002183 @Override
2184 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002185 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002186 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002187 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002188 }
2189
Joe Onorato9c1289c2009-08-17 11:03:03 -04002190 public boolean isWorkspaceLocked() {
2191 return mWorkspaceLoading || mWaitingForResult;
2192 }
2193
Adam Cohen517a7f52014-03-01 12:12:59 -08002194 public boolean isWorkspaceLoading() {
2195 return mWorkspaceLoading;
2196 }
2197
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002198 private void setWorkspaceLoading(boolean value) {
2199 boolean isLocked = isWorkspaceLocked();
2200 mWorkspaceLoading = value;
2201 if (isLocked != isWorkspaceLocked()) {
2202 onWorkspaceLockedChanged();
2203 }
2204 }
2205
2206 private void setWaitingForResult(boolean value) {
2207 boolean isLocked = isWorkspaceLocked();
2208 mWaitingForResult = value;
2209 if (isLocked != isWorkspaceLocked()) {
2210 onWorkspaceLockedChanged();
2211 }
2212 }
2213
Adam Cohen9211d422014-10-07 18:14:53 -07002214 protected void onWorkspaceLockedChanged() {
2215 if (mLauncherCallbacks != null) {
2216 mLauncherCallbacks.onWorkspaceLockedChanged();
2217 }
2218 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002219
Michael Jurka0280c3b2010-09-17 15:00:07 -07002220 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002221 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002222 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002223 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2224 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002225 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002226 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002227 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002228
Sunny Goyale6b63a32015-01-16 16:14:29 -08002229 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002230 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002231 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2232 }
2233
Sunny Goyale6b63a32015-01-16 16:14:29 -08002234 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002235 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2236 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002237 if (appWidgetInfo.configure != null) {
2238 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002239 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002240
Bjorn Bringert7984c942009-12-09 15:38:25 +00002241 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002242 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2243 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2244
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002245 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002246 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002247 Runnable onComplete = new Runnable() {
2248 @Override
2249 public void run() {
2250 // Exit spring loaded mode if necessary after adding the widget
2251 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2252 null);
2253 }
2254 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002255 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002256 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002257 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002258 }
2259 }
Romain Guycbb89e42009-06-08 15:52:54 -07002260
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002261 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002262 // Close any folders that may be open.
2263 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002264 mWorkspace.moveToCustomContentScreen(animate);
2265 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002266
2267 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2268 int[] cell, int spanX, int spanY) {
2269 switch (info.itemType) {
2270 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2271 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2272 int span[] = new int[2];
2273 span[0] = spanX;
2274 span[1] = spanY;
2275 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2276 container, screenId, cell, span);
2277 break;
2278 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2279 processShortcutFromDrop(info.componentName, container, screenId, cell);
2280 break;
2281 default:
2282 throw new IllegalStateException("Unknown item type: " + info.itemType);
2283 }
2284 }
2285
Adam Cohenfbba09b2011-07-18 21:43:05 -07002286 /**
2287 * Process a shortcut drop.
2288 *
2289 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002290 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002291 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002292 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002293 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2294 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002295 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002296 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002297 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002298 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002299
2300 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002301 mPendingAddInfo.cellX = cell[0];
2302 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002303 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002304
2305 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2306 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002307 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002308 }
2309
Adam Cohenfbba09b2011-07-18 21:43:05 -07002310 /**
2311 * Process a widget drop.
2312 *
2313 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002314 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002315 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002316 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002317 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2318 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002319 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002320 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002321 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002322 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002323 mPendingAddInfo.minSpanX = info.minSpanX;
2324 mPendingAddInfo.minSpanY = info.minSpanY;
2325
Adam Cohenfbba09b2011-07-18 21:43:05 -07002326 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002327 mPendingAddInfo.cellX = cell[0];
2328 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002329 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002330 if (span != null) {
2331 mPendingAddInfo.spanX = span[0];
2332 mPendingAddInfo.spanY = span[1];
2333 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002334
Adam Cohened66b2b2012-01-23 17:28:51 -08002335 AppWidgetHostView hostView = info.boundWidget;
2336 int appWidgetId;
2337 if (hostView != null) {
2338 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002339 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002340
2341 // Clear the boundWidget so that it doesn't get destroyed.
2342 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002343 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002344 // In this case, we either need to start an activity to get permission to bind
2345 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002346 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002347 Bundle options = info.bindOptions;
2348
Sunny Goyalffe83f12014-08-14 17:39:34 -07002349 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2350 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002351 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002352 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002353 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002354 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002355 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2356 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2357 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002358 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2359 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002360 // TODO: we need to make sure that this accounts for the options bundle.
2361 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002362 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2363 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002364 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002365 }
2366
Adam Cohendcd297f2013-06-18 13:13:40 -07002367 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002368 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002369 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002370 folderInfo.title = getText(R.string.folder_name);
2371
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002372 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002373 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2374 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002375 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002376
2377 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002378 FolderIcon newFolder =
2379 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002380 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002381 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002382 // Force measure the new folder icon
2383 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2384 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002385 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002386 }
Romain Guycbb89e42009-06-08 15:52:54 -07002387
Winsonc0b52fe2015-09-09 16:38:15 -07002388 /**
Winsonfa56b3f2015-09-14 12:01:13 -07002389 * Unbinds the view for the specified item, and removes the item and all its children.
2390 *
2391 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07002392 * @param itemInfo the {@link ItemInfo} for this view.
2393 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07002394 */
Winson2949fb52015-09-24 09:56:11 -07002395 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07002396 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07002397 // Remove the shortcut from the folder before removing it from launcher
Winson2949fb52015-09-24 09:56:11 -07002398 FolderInfo folderInfo = sFolders.get(itemInfo.container);
2399 if (folderInfo != null) {
2400 folderInfo.remove((ShortcutInfo) itemInfo);
Winsonfa56b3f2015-09-14 12:01:13 -07002401 } else {
2402 mWorkspace.removeWorkspaceItem(v);
2403 }
Winsonc0b52fe2015-09-09 16:38:15 -07002404 if (deleteFromDb) {
2405 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2406 }
2407 } else if (itemInfo instanceof FolderInfo) {
2408 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2409 unbindFolder(folderInfo);
2410 mWorkspace.removeWorkspaceItem(v);
2411 if (deleteFromDb) {
2412 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2413 }
2414 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2415 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
2416 unbindAppWidget(widgetInfo, deleteFromDb);
Winson44818e02015-10-02 11:25:46 -07002417 mWorkspace.removeWorkspaceItem(v);
Winsonc0b52fe2015-09-09 16:38:15 -07002418 if (deleteFromDb) {
2419 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
2420 }
2421 } else {
2422 return false;
2423 }
2424 return true;
2425 }
2426
2427 /**
2428 * Unbinds any launcher references to the folder.
2429 */
2430 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002431 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002432 }
2433
Winsonc0b52fe2015-09-09 16:38:15 -07002434 /**
2435 * Unbinds any launcher references to the widget and deletes the app widget id.
2436 */
2437 private void unbindAppWidget(final LauncherAppWidgetInfo widgetInfo, boolean deleteAppWidgetId) {
2438 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
2439 if (deleteAppWidgetId && appWidgetHost != null &&
2440 !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
2441 // Deleting an app widget ID is a void call but writes to disk before returning
2442 // to the caller...
2443 new AsyncTask<Void, Void, Void>() {
2444 public Void doInBackground(Void ... args) {
2445 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2446 return null;
2447 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07002448 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07002449 }
2450 removeWidgetToAutoAdvance(widgetInfo.hostView);
2451 widgetInfo.hostView = null;
2452 }
2453
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002454 @Override
2455 public boolean dispatchKeyEvent(KeyEvent event) {
2456 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2457 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002458 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002459 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002460 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002461 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002462 dumpState();
2463 return true;
2464 }
2465 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002466 }
2467 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2468 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002469 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002470 return true;
2471 }
2472 }
2473
2474 return super.dispatchKeyEvent(event);
2475 }
2476
Joe Onorato88ec0992009-11-19 13:16:06 -08002477 @Override
2478 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002479 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2480 return;
2481 }
2482
Sunny Goyal45478022015-06-08 16:52:41 -07002483 if (mDragController.isDragging()) {
2484 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002485 return;
2486 }
2487
Winson Chungb745afb2015-03-02 11:51:23 -08002488 if (isAppsViewVisible()) {
2489 showWorkspace(true);
2490 } else if (isWidgetsViewVisible()) {
2491 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002492 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002493 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002494 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002495 Folder openFolder = mWorkspace.getOpenFolder();
2496 if (openFolder.isEditingName()) {
2497 openFolder.dismissEditingName();
2498 } else {
2499 closeFolder();
2500 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002501 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002502 mWorkspace.exitWidgetResizeMode();
2503
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002504 // Back button is a no-op here, but give at least some feedback for the button press
2505 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002506 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002507 }
2508
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002509 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002510 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002511 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002512 @Override
2513 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002514 if (mAppWidgetHost != null) {
2515 mAppWidgetHost.startListening();
2516 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002517 }
2518
2519 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002520 * Launches the intent referred by the clicked shortcut.
2521 *
2522 * @param v The view representing the clicked shortcut.
2523 */
2524 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002525 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2526 // view has detached (it's possible for this to happen if the view is removed mid touch).
2527 if (v.getWindowToken() == null) {
2528 return;
2529 }
2530
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002531 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002532 return;
2533 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002534
Adam Cohen1697b792013-09-17 19:08:21 -07002535 if (v instanceof Workspace) {
2536 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002537 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002538 }
2539 return;
2540 }
2541
2542 if (v instanceof CellLayout) {
2543 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002544 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002545 }
2546 }
2547
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002548 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002549 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002550 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002551 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002552 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002553 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002554 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002555 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002556 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002557 } else if (tag instanceof AppInfo) {
2558 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002559 } else if (tag instanceof LauncherAppWidgetInfo) {
2560 if (v instanceof PendingAppWidgetHostView) {
2561 onClickPendingWidget((PendingAppWidgetHostView) v);
2562 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002563 }
2564 }
2565
Sunny Goyal70660032015-05-14 00:07:08 -07002566 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002567 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002568 return false;
2569 }
2570
Michael Jurkaaf442092010-06-10 17:01:57 -07002571 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002572 * Event handler for the app widget view which has not fully restored.
2573 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002574 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002575 if (mIsSafeModeEnabled) {
2576 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2577 return;
2578 }
2579
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002580 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002581 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002582 int widgetId = info.appWidgetId;
2583 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2584 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002585 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2586 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002587 mPendingAddInfo.copyFrom(info);
2588 mPendingAddWidgetId = widgetId;
2589
Sunny Goyalffe83f12014-08-14 17:39:34 -07002590 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2591 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002592 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002593 } else if (info.installProgress < 0) {
2594 // The install has not been queued
2595 final String packageName = info.providerName.getPackageName();
2596 showBrokenAppInstallDialog(packageName,
2597 new DialogInterface.OnClickListener() {
2598 public void onClick(DialogInterface dialog, int id) {
2599 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2600 }
2601 });
2602 } else {
2603 // Download has started.
2604 final String packageName = info.providerName.getPackageName();
2605 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002606 }
2607 }
2608
2609 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002610 * Event handler for the "grid" button that appears on the home screen, which
2611 * enters all apps mode.
2612 *
2613 * @param v The view that was clicked.
2614 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002615 protected void onClickAllAppsButton(View v) {
2616 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002617 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002618 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002619 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002620
2621 if (mLauncherCallbacks != null) {
2622 mLauncherCallbacks.onClickAllAppsButton(v);
2623 }
Winson Chung76648c52015-07-10 14:33:23 -07002624 }
2625 }
2626
2627 protected void onLongClickAllAppsButton(View v) {
2628 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2629 if (!isAppsViewVisible()) {
2630 showAppsView(true /* animated */, false /* resetListToTop */,
2631 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002632 }
2633 }
2634
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002635 private void showBrokenAppInstallDialog(final String packageName,
2636 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002637 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002638 .setTitle(R.string.abandoned_promises_title)
2639 .setMessage(R.string.abandoned_promise_explanation)
2640 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2641 .setNeutralButton(R.string.abandoned_clean_this,
2642 new DialogInterface.OnClickListener() {
2643 public void onClick(DialogInterface dialog, int id) {
2644 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2645 mWorkspace.removeAbandonedPromise(packageName, user);
2646 }
2647 })
2648 .create().show();
2649 return;
2650 }
2651
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002652 /**
2653 * Event handler for an app shortcut click.
2654 *
2655 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2656 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002657 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002658 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2659 Object tag = v.getTag();
2660 if (!(tag instanceof ShortcutInfo)) {
2661 throw new IllegalArgumentException("Input must be a Shortcut");
2662 }
2663
2664 // Open shortcut
2665 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002666
2667 if (shortcut.isDisabled != 0) {
2668 int error = R.string.activity_not_available;
2669 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2670 error = R.string.safemode_shortcut_error;
2671 }
2672 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2673 return;
2674 }
2675
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002676 final Intent intent = shortcut.intent;
2677
2678 // Check for special shortcuts
2679 if (intent.getComponent() != null) {
2680 final String shortcutClass = intent.getComponent().getClassName();
2681
2682 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2683 MemoryDumpActivity.startDump(this);
2684 return;
2685 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2686 toggleShowWeightWatcher();
2687 return;
2688 }
2689 }
2690
Chris Wren40c5ed32014-06-24 18:24:23 -04002691 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002692 if ((v instanceof BubbleTextView)
2693 && shortcut.isPromise()
2694 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002695 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002696 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002697 new DialogInterface.OnClickListener() {
2698 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002699 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002700 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002701 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002702 return;
2703 }
2704
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002705 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002706 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002707
2708 if (mLauncherCallbacks != null) {
2709 mLauncherCallbacks.onClickAppShortcut(v);
2710 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002711 }
2712
Adam Cohen091440a2015-03-18 14:16:05 -07002713 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002714 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002715 final ShortcutInfo shortcut;
2716 final Intent intent;
2717 if (tag instanceof ShortcutInfo) {
2718 shortcut = (ShortcutInfo) tag;
2719 intent = shortcut.intent;
2720 int[] pos = new int[2];
2721 v.getLocationOnScreen(pos);
2722 intent.setSourceBounds(new Rect(pos[0], pos[1],
2723 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002724
Sunny Goyal508da152014-08-14 10:53:27 -07002725 } else if (tag instanceof AppInfo) {
2726 shortcut = null;
2727 intent = ((AppInfo) tag).intent;
2728 } else {
2729 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2730 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002731
2732 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002733 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002734
2735 if (success && v instanceof BubbleTextView) {
2736 mWaitingForResume = (BubbleTextView) v;
2737 mWaitingForResume.setStayPressed(true);
2738 }
2739 }
2740
2741 /**
2742 * Event handler for a folder icon click.
2743 *
2744 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2745 */
2746 protected void onClickFolderIcon(View v) {
2747 if (LOGD) Log.d(TAG, "onClickFolder");
2748 if (!(v instanceof FolderIcon)){
2749 throw new IllegalArgumentException("Input must be a FolderIcon");
2750 }
2751
Sunny Goyal317698b2015-07-29 11:45:41 -07002752 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002753 FolderIcon folderIcon = (FolderIcon) v;
2754 final FolderInfo info = folderIcon.getFolderInfo();
2755 Folder openFolder = mWorkspace.getFolderForTag(info);
2756
2757 // If the folder info reports that the associated folder is open, then verify that
2758 // it is actually opened. There have been a few instances where this gets out of sync.
2759 if (info.opened && openFolder == null) {
2760 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2761 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2762 info.opened = false;
2763 }
2764
2765 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2766 // Close any open folder
2767 closeFolder();
2768 // Open the requested folder
2769 openFolder(folderIcon);
2770 } else {
2771 // Find the open folder...
2772 int folderScreen;
2773 if (openFolder != null) {
2774 folderScreen = mWorkspace.getPageForView(openFolder);
2775 // .. and close it
2776 closeFolder(openFolder);
2777 if (folderScreen != mWorkspace.getCurrentPage()) {
2778 // Close any folder open on the current screen
2779 closeFolder();
2780 // Pull the folder onto this screen
2781 openFolder(folderIcon);
2782 }
2783 }
2784 }
Adam Cohen9211d422014-10-07 18:14:53 -07002785
2786 if (mLauncherCallbacks != null) {
2787 mLauncherCallbacks.onClickFolderIcon(v);
2788 }
Michael Jurka5130e402011-10-13 04:55:35 -07002789 }
2790
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002791 /**
2792 * Event handler for the (Add) Widgets button that appears after a long press
2793 * on the home screen.
2794 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002795 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002796 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002797 if (mIsSafeModeEnabled) {
2798 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2799 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002800 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002801 if (mLauncherCallbacks != null) {
2802 mLauncherCallbacks.onClickAddWidgetButton(view);
2803 }
Adam Cohen9211d422014-10-07 18:14:53 -07002804 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002805 }
2806
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002807 /**
2808 * Event handler for the wallpaper picker button that appears after a long press
2809 * on the home screen.
2810 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002811 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002812 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham3e776a82015-09-09 18:21:49 -07002813 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2814 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2815 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2816 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002817 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002818
2819 if (mLauncherCallbacks != null) {
2820 mLauncherCallbacks.onClickWallpaperPicker(v);
2821 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002822 }
2823
2824 /**
2825 * Event handler for a click on the settings button that appears after a long press
2826 * on the home screen.
2827 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002828 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002829 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002830 if (mLauncherCallbacks != null) {
2831 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002832 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002833 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002834 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002835 }
2836
Adam Cohen61f560d2013-09-30 15:58:20 -07002837 public View.OnTouchListener getHapticFeedbackTouchListener() {
2838 if (mHapticFeedbackTouchListener == null) {
2839 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002840 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002841 @Override
2842 public boolean onTouch(View v, MotionEvent event) {
2843 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2844 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2845 }
2846 return false;
2847 }
2848 };
2849 }
2850 return mHapticFeedbackTouchListener;
2851 }
2852
Adam Cohen9211d422014-10-07 18:14:53 -07002853 public void onDragStarted(View view) {
2854 if (isOnCustomContent()) {
2855 // Custom content screen doesn't participate in drag and drop. If on custom
2856 // content screen, move to default.
2857 moveWorkspaceToDefaultScreen();
2858 }
2859
2860 if (mLauncherCallbacks != null) {
2861 mLauncherCallbacks.onDragStarted(view);
2862 }
2863 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002864
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002865 /**
2866 * Called when the user stops interacting with the launcher.
2867 * This implies that the user is now on the homescreen and is not doing housekeeping.
2868 */
Adam Cohen9211d422014-10-07 18:14:53 -07002869 protected void onInteractionEnd() {
2870 if (mLauncherCallbacks != null) {
2871 mLauncherCallbacks.onInteractionEnd();
2872 }
2873 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002874
2875 /**
2876 * Called when the user starts interacting with the launcher.
2877 * The possible interactions are:
2878 * - open all apps
2879 * - reorder an app shortcut, or a widget
2880 * - open the overview mode.
2881 * This is a good time to stop doing things that only make sense
2882 * when the user is on the homescreen and not doing housekeeping.
2883 */
Adam Cohen9211d422014-10-07 18:14:53 -07002884 protected void onInteractionBegin() {
2885 if (mLauncherCallbacks != null) {
2886 mLauncherCallbacks.onInteractionBegin();
2887 }
2888 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002889
Winson Chungcd99cd32015-04-29 11:03:24 -07002890 /** Updates the interaction state. */
2891 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002892 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002893 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002894 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2895 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002896 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002897 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002898 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002899 onInteractionEnd();
2900 }
2901 }
2902
Kenny Guyf07af7b2014-07-31 11:39:16 +01002903 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002904 try {
2905 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002906 launcherApps.showAppDetailsForProfile(componentName, user);
2907 } catch (SecurityException e) {
2908 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2909 Log.e(TAG, "Launcher does not have permission to launch settings");
2910 } catch (ActivityNotFoundException e) {
2911 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2912 Log.e(TAG, "Unable to launch settings");
2913 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002914 }
2915
Michael Jurka1e2f4652013-07-08 18:03:46 -07002916 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002917 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2918 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002919 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002920 // System applications cannot be installed. For now, show a toast explaining that.
2921 // We may give them the option of disabling apps this way.
2922 int messageId = R.string.uninstall_system_app_text;
2923 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002924 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002925 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002926 String packageName = componentName.getPackageName();
2927 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002928 Intent intent = new Intent(
2929 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002930 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2931 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002932 if (user != null) {
2933 user.addToIntent(intent, Intent.EXTRA_USER);
2934 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002935 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002936 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002937 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002938 }
2939
Winson Chung8f1eff72015-05-28 17:33:40 -07002940 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002941 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002942 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002943 // Only launch using the new animation if the shortcut has not opted out (this is a
2944 // private contract between launcher and may be ignored in the future).
2945 boolean useLaunchAnimation = (v != null) &&
2946 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002947 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2948 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002949
Kenny Guy1317e2d2014-05-08 18:52:50 +01002950 UserHandleCompat user = null;
2951 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2952 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2953 user = userManager.getUserForSerialNumber(serialNumber);
2954 }
2955
2956 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002957 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002958 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002959 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002960 int left = 0, top = 0;
2961 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2962 if (v instanceof TextView) {
2963 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002964 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2965 if (icon != null) {
2966 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002967 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002968 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002969 width = bounds.width();
2970 height = bounds.height();
2971 }
2972 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002973 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2974 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002975 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002976 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002977 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002978 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002979 // On L devices, we use the device default slide-up transition.
2980 // On L MR1 devices, we a custom version of the slide-up transition which
2981 // doesn't have the delay present in the device default.
2982 opts = ActivityOptions.makeCustomAnimation(this,
2983 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002984 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002985 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002986 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002987
2988 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2989 // Could be launching some bookkeeping activity
2990 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002991 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002992 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002993 launcherApps.startActivityForProfile(intent.getComponent(), user,
2994 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002995 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002996 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002997 } catch (SecurityException e) {
2998 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002999 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003000 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07003001 "or use the exported attribute for this activity. "
3002 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003003 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003004 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003005 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003006
Winson Chungbedf9232015-07-10 12:38:30 -07003007 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07003008 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003009 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
3010 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
3011 return false;
3012 }
Michael Jurka86a720e2012-05-09 11:23:23 -07003013 try {
3014 success = startActivity(v, intent, tag);
3015 } catch (ActivityNotFoundException e) {
3016 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
3017 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
3018 }
3019 return success;
3020 }
3021
Adam Cohen268c4752012-06-06 17:47:33 -07003022 /**
3023 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
3024 * in the DragLayer in the exact absolute location of the original FolderIcon.
3025 */
3026 private void copyFolderIconToImage(FolderIcon fi) {
3027 final int width = fi.getMeasuredWidth();
3028 final int height = fi.getMeasuredHeight();
3029
3030 // Lazy load ImageView, Bitmap and Canvas
3031 if (mFolderIconImageView == null) {
3032 mFolderIconImageView = new ImageView(this);
3033 }
3034 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3035 mFolderIconBitmap.getHeight() != height) {
3036 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3037 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3038 }
3039
3040 DragLayer.LayoutParams lp;
3041 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3042 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3043 } else {
3044 lp = new DragLayer.LayoutParams(width, height);
3045 }
3046
Adam Cohen307fe232012-08-16 17:55:58 -07003047 // The layout from which the folder is being opened may be scaled, adjust the starting
3048 // view size by this scale factor.
3049 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003050 lp.customPosition = true;
3051 lp.x = mRectForFolderAnimation.left;
3052 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003053 lp.width = (int) (scale * width);
3054 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003055
3056 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3057 fi.draw(mFolderIconCanvas);
3058 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003059 if (fi.getFolder() != null) {
3060 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3061 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003062 }
Adam Cohen268c4752012-06-06 17:47:33 -07003063 // Just in case this image view is still in the drag layer from a previous animation,
3064 // we remove it and re-add it.
3065 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3066 mDragLayer.removeView(mFolderIconImageView);
3067 }
3068 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003069 if (fi.getFolder() != null) {
3070 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003071 }
Adam Cohen268c4752012-06-06 17:47:33 -07003072 }
3073
Adam Cohen2801caf2011-05-13 20:57:39 -07003074 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003075 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003076 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3077 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3078 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3079
Adam Cohenc51934b2011-07-26 21:07:43 -07003080 FolderInfo info = (FolderInfo) fi.getTag();
3081 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3082 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003083 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3084 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003085 }
3086
Adam Cohen268c4752012-06-06 17:47:33 -07003087 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3088 copyFolderIconToImage(fi);
3089 fi.setVisibility(View.INVISIBLE);
3090
Michael Jurka2ecf9952012-06-18 12:52:28 -07003091 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003092 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003093 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003094 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3095 }
3096 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003097 oa.start();
3098 }
3099
Adam Cohen268c4752012-06-06 17:47:33 -07003100 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003101 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003102 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3103 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3104 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3105
Adam Cohen268c4752012-06-06 17:47:33 -07003106 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003107
Adam Cohen268c4752012-06-06 17:47:33 -07003108 // We remove and re-draw the FolderIcon in-case it has changed
3109 mDragLayer.removeView(mFolderIconImageView);
3110 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003111 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003112 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003113 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003114 oa.addListener(new AnimatorListenerAdapter() {
3115 @Override
3116 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003117 if (cl != null) {
3118 cl.clearFolderLeaveBehind();
3119 // Remove the ImageView copy of the FolderIcon and make the original visible.
3120 mDragLayer.removeView(mFolderIconImageView);
3121 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003122 }
3123 }
3124 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003125 oa.start();
3126 }
3127
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003128 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003129 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003130 * is animated relative to the specified View. If the View is null, no animation
3131 * is played.
3132 *
3133 * @param folderInfo The FolderInfo describing the folder to open.
3134 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003135 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003136 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003137 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3138 if (openFolder != null && openFolder != folder) {
3139 // Close any open folder before opening a folder.
3140 closeFolder();
3141 }
3142
Adam Cohena9cf38f2011-05-02 15:36:58 -07003143 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003144
Adam Cohena9cf38f2011-05-02 15:36:58 -07003145 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003146
Sunny Goyalf4066152015-04-15 09:42:19 -07003147 // While the folder is open, the position of the icon cannot change.
3148 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3149
Adam Cohen4554ee12011-08-03 16:13:21 -07003150 // Just verify that the folder hasn't already been added to the DragLayer.
3151 // There was a one-off crash where the folder had a parent already.
3152 if (folder.getParent() == null) {
3153 mDragLayer.addView(folder);
3154 mDragController.addDropTarget((DropTarget) folder);
3155 } else {
3156 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3157 folder.getParent() + ").");
3158 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003159 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003160 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003161
3162 // Notify the accessibility manager that this folder "window" has appeared and occluded
3163 // the workspace items
3164 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3165 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003166 }
3167
3168 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003169 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003170 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003171 if (folder.isEditingName()) {
3172 folder.dismissEditingName();
3173 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003174 closeFolder(folder);
3175 }
3176 }
3177
Sunny Goyal83a8f042015-05-19 12:52:12 -07003178 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003179 folder.getInfo().opened = false;
3180
3181 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3182 if (parent != null) {
3183 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3184 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003185 if (fi != null) {
3186 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3187 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003188 }
3189 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003190
3191 // Notify the accessibility manager that this folder "window" has disappeard and no
3192 // longer occludeds the workspace items
3193 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003194 }
3195
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003196 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003197 if (!isDraggingEnabled()) return false;
3198 if (isWorkspaceLocked()) return false;
3199 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003200
Winson Chung76648c52015-07-10 14:33:23 -07003201 if (v == mAllAppsButton) {
3202 onLongClickAllAppsButton(v);
3203 return true;
3204 }
3205
Adam Cohen1697b792013-09-17 19:08:21 -07003206 if (v instanceof Workspace) {
3207 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003208 if (!mWorkspace.isTouchActive()) {
3209 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003210 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3211 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3212 return true;
3213 } else {
3214 return false;
3215 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003216 } else {
3217 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003218 }
Adam Cohen1697b792013-09-17 19:08:21 -07003219 }
3220
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003221 CellLayout.CellInfo longClickCellInfo = null;
3222 View itemUnderLongClick = null;
3223 if (v.getTag() instanceof ItemInfo) {
3224 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003225 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003226 itemUnderLongClick = longClickCellInfo.cell;
3227 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003228 }
3229
Winson Chung3d503fb2011-07-13 17:25:49 -07003230 // The hotseat touch handling does not go through Workspace, and we always allow long press
3231 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003232 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003233 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003234 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003235 // User long pressed on empty space
3236 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3237 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003238 if (mWorkspace.isInOverviewMode()) {
3239 mWorkspace.startReordering(v);
3240 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003241 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003242 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003243 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003244 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3245 mHotseat.getOrderInHotseat(
3246 longClickCellInfo.cellX,
3247 longClickCellInfo.cellY));
3248 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003249 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003250 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003251 }
3252 }
3253 }
3254 return true;
3255 }
3256
Winson Chung3d503fb2011-07-13 17:25:49 -07003257 boolean isHotseatLayout(View layout) {
3258 return mHotseat != null && layout != null &&
3259 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3260 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003261
Winson Chung3d503fb2011-07-13 17:25:49 -07003262 /**
3263 * Returns the CellLayout of the specified container at the specified screen.
3264 */
Sunny Goyal92820592015-03-02 11:31:35 -08003265 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003266 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3267 if (mHotseat != null) {
3268 return mHotseat.getLayout();
3269 } else {
3270 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003271 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003272 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003273 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003274 }
3275 }
3276
Winson Chungb745afb2015-03-02 11:51:23 -08003277 /**
3278 * For overridden classes.
3279 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003280 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003281 return isAppsViewVisible();
3282 }
3283
3284 public boolean isAppsViewVisible() {
3285 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3286 }
3287
3288 public boolean isWidgetsViewVisible() {
3289 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003290 }
3291
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003292 private void setWorkspaceBackground(int background) {
3293 switch (background) {
3294 case WORKSPACE_BACKGROUND_TRANSPARENT:
3295 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3296 break;
3297 case WORKSPACE_BACKGROUND_BLACK:
3298 getWindow().setBackgroundDrawable(null);
3299 break;
3300 default:
3301 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3302 }
Craig Mautner360310b2012-10-26 15:13:08 -07003303 }
3304
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003305 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003306 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3307 int curflags = getWindow().getAttributes().flags
3308 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3309 if (wpflags != curflags) {
3310 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3311 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003312 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003313 }
3314
Michael Jurkae326f182011-11-21 14:05:46 -08003315 @Override
3316 public void onTrimMemory(int level) {
3317 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003318 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3319 // The widget preview db can result in holding onto over
3320 // 3MB of memory for caching which isn't necessary.
3321 SQLiteDatabase.releaseMemory();
3322
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003323 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003324 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003325 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003326 if (mLauncherCallbacks != null) {
3327 mLauncherCallbacks.onTrimMemory(level);
3328 }
Michael Jurkae326f182011-11-21 14:05:46 -08003329 }
3330
Winson5c6bdbb2015-09-03 11:36:19 -07003331 /**
3332 * @return whether or not the Launcher state changed.
3333 */
3334 public boolean showWorkspace(boolean animated) {
3335 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003336 }
3337
Winson5c6bdbb2015-09-03 11:36:19 -07003338 /**
3339 * @return whether or not the Launcher state changed.
3340 */
3341 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
3342 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003343 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003344 }
3345
Winson5c6bdbb2015-09-03 11:36:19 -07003346 /**
3347 * @return whether or not the Launcher state changed.
3348 */
3349 protected boolean showWorkspace(int snapToPage, boolean animated) {
3350 return showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003351 }
3352
Winson5c6bdbb2015-09-03 11:36:19 -07003353 /**
3354 * @return whether or not the Launcher state changed.
3355 */
3356 boolean showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003357 boolean changed = mState != State.WORKSPACE ||
3358 mWorkspace.getState() != Workspace.State.NORMAL;
3359 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003360 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003361 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3362 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003363
Michael Jurkab3e22d92011-10-31 15:58:33 -07003364 // Set focus to the AppsCustomize button
3365 if (mAllAppsButton != null) {
3366 mAllAppsButton.requestFocus();
3367 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003368 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003369
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003370 // Change the state *after* we've called all the transition code
3371 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003372
Winson Chung5fb63472011-02-02 17:03:37 -08003373 // Resume the auto-advance of widgets
3374 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003375 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003376
Winson Chung0f785722015-04-08 10:27:49 -07003377 if (changed) {
3378 // Send an accessibility event to announce the context change
3379 getWindow().getDecorView()
3380 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003381 }
Winson5c6bdbb2015-09-03 11:36:19 -07003382 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003383 }
3384
Adam Cohened307df2013-10-02 09:37:31 -07003385 void showOverviewMode(boolean animated) {
3386 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003387 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3388 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003389 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3390 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003391 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003392 }
3393
Winson Chungb745afb2015-03-02 11:51:23 -08003394 /**
3395 * Shows the apps view.
3396 */
Winson Chung76648c52015-07-10 14:33:23 -07003397 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3398 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003399 if (resetListToTop) {
3400 mAppsView.scrollToTop();
3401 }
Winson Chung4ac30062015-05-08 17:34:17 -07003402 if (updatePredictedApps) {
3403 tryAndUpdatePredictedApps();
3404 }
Winson Chung76648c52015-07-10 14:33:23 -07003405 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003406 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003407
Winson Chungb745afb2015-03-02 11:51:23 -08003408 /**
3409 * Shows the widgets view.
3410 */
3411 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003412 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003413 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003414 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003415 }
Winson Chung76648c52015-07-10 14:33:23 -07003416 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003417
3418 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003419 @Override
3420 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003421 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003422 }
3423 });
Winson Chungb745afb2015-03-02 11:51:23 -08003424 }
3425
3426 /**
3427 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003428 *
3429 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003430 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003431 // TODO: calling method should use the return value so that when {@code false} is returned
3432 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003433 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003434 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3435 mState != State.WIDGETS_SPRING_LOADED) {
3436 return false;
3437 }
3438 if (toState != State.APPS && toState != State.WIDGETS) {
3439 return false;
3440 }
Winson Chungb745afb2015-03-02 11:51:23 -08003441
3442 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003443 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3444 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003445 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003446 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003447 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003448
Michael Jurkab3e22d92011-10-31 15:58:33 -07003449 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003450 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003451
3452 // Pause the auto-advance of widgets until we are out of AllApps
3453 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003454 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003455 closeFolder();
3456
3457 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003458 getWindow().getDecorView()
3459 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003460 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003461 }
3462
Winson Chungcd99cd32015-04-29 11:03:24 -07003463 /**
3464 * Updates the workspace and interaction state on state change, and return the animation to this
3465 * new state.
3466 */
3467 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003468 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003469 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003470 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003471 updateInteraction(fromState, toState);
3472 return anim;
3473 }
3474
Hyunyoung Song3f471442015-04-08 19:01:34 -07003475 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003476 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003477 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3478 mState == State.WIDGETS_SPRING_LOADED) {
3479 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003480 }
Winson Chungb745afb2015-03-02 11:51:23 -08003481
Winson Chung006ee262015-08-03 14:40:11 -07003482 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3483 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003484 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3485 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003486 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003487 }
Adam Cohen7777d962011-08-18 18:58:38 -07003488
Hyunyoung Song3f471442015-04-08 19:01:34 -07003489 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003490 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003491 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003492
Winson Chunge7a03942011-08-05 15:05:12 -07003493 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003494 @Override
3495 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003496 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003497 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3498 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003499 // Before we show workspace, hide all apps again because
3500 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3501 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003502 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003503 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003504 } else {
3505 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003506 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003507 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003508 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003509 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003510
Michael Jurkad3ef3062010-11-23 16:23:58 -08003511 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003512 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003513 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003514 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003515 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003516 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003517 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003518 }
3519
Winson Chung4ac30062015-05-08 17:34:17 -07003520 /**
3521 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3522 * resumed.
3523 */
3524 private void tryAndUpdatePredictedApps() {
3525 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003526 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003527 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003528 mAppsView.setPredictedApps(apps);
3529 }
3530 }
3531 }
3532
Michael Jurkab3e22d92011-10-31 15:58:33 -07003533 void lockAllApps() {
3534 // TODO
3535 }
3536
3537 void unlockAllApps() {
3538 // TODO
3539 }
3540
Sunny Goyal594d76d2014-11-06 10:12:54 -08003541 protected void disableVoiceButtonProxy(boolean disable) {
3542 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003543 }
3544
Winsonf768d932015-09-25 16:12:35 -07003545 public boolean launcherCallbacksProvidesSearch() {
3546 return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch());
3547 }
3548
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003549 public View getOrCreateQsbBar() {
Winsonf768d932015-09-25 16:12:35 -07003550 if (launcherCallbacksProvidesSearch()) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003551 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003552 }
3553
Adam Cohen24ce0b32014-01-14 16:18:14 -08003554 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003555 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3556 if (searchProvider == null) {
3557 return null;
3558 }
3559
3560 Bundle opts = new Bundle();
3561 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003562 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003563
Tony Wickham3a3517f2015-10-06 11:27:04 -07003564 // Determine the min and max dimensions of the widget.
3565 LauncherAppState app = LauncherAppState.getInstance();
3566 DeviceProfile portraitProfile = app.getInvariantDeviceProfile().portraitProfile;
3567 DeviceProfile landscapeProfile = app.getInvariantDeviceProfile().landscapeProfile;
3568 float density = getResources().getDisplayMetrics().density;
3569 Rect searchBounds = portraitProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
3570 int maxHeight = (int) (searchBounds.height() / density);
3571 int minHeight = maxHeight;
3572 int maxWidth = (int) (searchBounds.width() / density);
3573 int minWidth = maxWidth;
3574 if (!landscapeProfile.isVerticalBarLayout()) {
3575 searchBounds = landscapeProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
3576 maxHeight = (int) Math.max(maxHeight, searchBounds.height() / density);
3577 minHeight = (int) Math.min(minHeight, searchBounds.height() / density);
3578 maxWidth = (int) Math.max(maxWidth, searchBounds.width() / density);
3579 minWidth = (int) Math.min(minWidth, searchBounds.width() / density);
3580 }
3581 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT, maxHeight);
3582 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT, minHeight);
3583 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH, maxWidth);
3584 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH, minWidth);
3585
Sunny Goyal594d76d2014-11-06 10:12:54 -08003586 SharedPreferences sp = getSharedPreferences(
3587 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3588 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003589 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003590 if (!searchProvider.provider.flattenToString().equals(
3591 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003592 || (widgetInfo == null)
3593 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003594 // A valid widget is not already bound.
3595 if (widgetId > -1) {
3596 mAppWidgetHost.deleteAppWidgetId(widgetId);
3597 widgetId = -1;
3598 }
3599
3600 // Try to bind a new widget
3601 widgetId = mAppWidgetHost.allocateAppWidgetId();
3602
3603 if (!AppWidgetManagerCompat.getInstance(this)
3604 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3605 mAppWidgetHost.deleteAppWidgetId(widgetId);
3606 widgetId = -1;
3607 }
3608
3609 sp.edit()
3610 .putInt(QSB_WIDGET_ID, widgetId)
3611 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3612 .commit();
3613 }
3614
Sunny Goyal8d595092015-07-06 12:22:14 -07003615 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003616 if (widgetId != -1) {
3617 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003618 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003619 mQsb.updateAppWidgetOptions(opts);
3620 mQsb.setPadding(0, 0, 0, 0);
3621 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003622 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003623 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003624 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003625 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003626 }
3627
Sunny Goyal22235bc2015-04-03 09:23:43 -07003628 private void reinflateQSBIfNecessary() {
3629 if (mQsb instanceof LauncherAppWidgetHostView &&
3630 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3631 mSearchDropTargetBar.removeView(mQsb);
3632 mQsb = null;
3633 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3634 }
3635 }
3636
Michael Jurkad7c28052012-04-27 15:43:36 -07003637 @Override
3638 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003639 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003640 final List<CharSequence> text = event.getText();
3641 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003642 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003643 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003644 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003645 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003646 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003647 } else if (mWorkspace != null) {
3648 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003649 } else {
3650 text.add(getString(R.string.all_apps_home_button_label));
3651 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003652 return result;
3653 }
3654
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003655 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003656 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003657 */
Adam Cohen091440a2015-03-18 14:16:05 -07003658 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003659 @Override
3660 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003661 closeSystemDialogs();
3662 }
3663 }
3664
3665 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003666 * If the activity is currently paused, signal that we need to run the passed Runnable
3667 * in onResume.
3668 *
3669 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003670 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3671 * wrong when we're not running, and if the activity comes back to what the configuration was
3672 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003673 *
3674 * Implementation of the method from LauncherModel.Callbacks.
3675 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003676 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003677 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003678 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003679 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003680 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003681 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003682 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003683 }
3684 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003685 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003686 return true;
3687 } else {
3688 return false;
3689 }
3690 }
3691
Michael Jurkac402cd92013-05-20 15:49:32 +02003692 private boolean waitUntilResume(Runnable run) {
3693 return waitUntilResume(run, false);
3694 }
3695
Michael Jurka1e2f4652013-07-08 18:03:46 -07003696 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003697 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003698 }
3699
Michael Jurka7607c2f2013-04-03 14:33:19 -07003700 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003701 * If the activity is currently paused, signal that we need to re-run the loader
3702 * in onResume.
3703 *
3704 * This needs to be called from incoming places where resources might have been loaded
3705 * while we are paused. That is becaues the Configuration might be wrong
3706 * when we're not running, and if it comes back to what it was when we
3707 * were paused, we are not restarted.
3708 *
3709 * Implementation of the method from LauncherModel.Callbacks.
3710 *
3711 * @return true if we are currently paused. The caller might be able to
3712 * skip some work in that case since we will come back again.
3713 */
3714 public boolean setLoadOnResume() {
3715 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003716 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003717 mOnResumeNeedsLoad = true;
3718 return true;
3719 } else {
3720 return false;
3721 }
3722 }
3723
3724 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003725 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003726 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003727 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003728 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003729 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003730 } else {
3731 return SCREEN_COUNT / 2;
3732 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003733 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003734
Joe Onorato9c1289c2009-08-17 11:03:03 -04003735 /**
3736 * Refreshes the shortcuts shown on the workspace.
3737 *
3738 * Implementation of the method from LauncherModel.Callbacks.
3739 */
3740 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003741 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003742
Michael Jurka7607c2f2013-04-03 14:33:19 -07003743 // If we're starting binding all over again, clear any bind calls we'd postponed in
3744 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3745 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003746 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003747
Winson Chungd64d1762013-08-20 14:37:16 -07003748 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003749 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003750 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003751
Michael Jurka05bf644e2011-11-30 20:28:53 -08003752 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003753 if (mHotseat != null) {
3754 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003755 }
3756 }
3757
Adam Cohendcd297f2013-06-18 13:13:40 -07003758 @Override
3759 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003760 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003761
Adam Cohen5084cba2013-09-03 12:01:16 -07003762 // If there are no screens, we need to have an empty screen
3763 if (orderedScreenIds.size() == 0) {
3764 mWorkspace.addExtraEmptyScreen();
3765 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003766
3767 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003768 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003769 if (hasCustomContentToLeft()) {
3770 mWorkspace.createCustomContentContainer();
3771 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003772 }
Winson Chung64359a52013-07-08 17:17:08 -07003773 }
3774
3775 @Override
3776 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003777 int count = orderedScreenIds.size();
3778 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003779 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003780 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003781 }
3782
Adam Cohen39a06042013-07-19 14:30:12 -07003783 private boolean shouldShowWeightWatcher() {
3784 String spKey = LauncherAppState.getSharedPreferencesKey();
3785 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003786 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003787
3788 return show;
3789 }
3790
3791 private void toggleShowWeightWatcher() {
3792 String spKey = LauncherAppState.getSharedPreferencesKey();
3793 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3794 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3795
3796 show = !show;
3797
3798 SharedPreferences.Editor editor = sp.edit();
3799 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3800 editor.commit();
3801
3802 if (mWeightWatcher != null) {
3803 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3804 }
3805 }
3806
Winson Chungd64d1762013-08-20 14:37:16 -07003807 public void bindAppsAdded(final ArrayList<Long> newScreens,
3808 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003809 final ArrayList<ItemInfo> addAnimated,
3810 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003811 Runnable r = new Runnable() {
3812 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003813 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003814 }
3815 };
3816 if (waitUntilResume(r)) {
3817 return;
3818 }
3819
Winson Chungd64d1762013-08-20 14:37:16 -07003820 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003821 if (newScreens != null) {
3822 bindAddScreens(newScreens);
3823 }
Winson Chungd64d1762013-08-20 14:37:16 -07003824
3825 // We add the items without animation on non-visible pages, and with
3826 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003827 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003828 bindItems(addNotAnimated, 0,
3829 addNotAnimated.size(), false);
3830 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003831 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003832 bindItems(addAnimated, 0,
3833 addAnimated.size(), true);
3834 }
Winson Chungc58497e2013-09-03 17:48:37 -07003835
Winson Chung87412982013-10-03 18:34:14 -07003836 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003837 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003838
Winson Chungb745afb2015-03-02 11:51:23 -08003839 if (addedApps != null && mAppsView != null) {
3840 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003841 }
Winson Chungd64d1762013-08-20 14:37:16 -07003842 }
3843
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003844 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003845 * Bind the items start-end from the list.
3846 *
3847 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003848 */
Winson Chung64359a52013-07-08 17:17:08 -07003849 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3850 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003851 Runnable r = new Runnable() {
3852 public void run() {
3853 bindItems(shortcuts, start, end, forceAnimateIcons);
3854 }
3855 };
3856 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003857 return;
3858 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003859
Winson Chungf0c6ae02012-03-21 16:10:31 -07003860 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003861 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3862 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003863 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003864 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003865 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003866 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003867 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003868
3869 // Short circuit if we are loading dock items for a configuration which has no dock
3870 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3871 mHotseat == null) {
3872 continue;
3873 }
3874
Sunny Goyal639e9062015-08-19 19:17:06 -07003875 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003876 switch (item.itemType) {
3877 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3878 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003879 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003880 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003881
Winson Chung64359a52013-07-08 17:17:08 -07003882 /*
3883 * TODO: FIX collision case
3884 */
Winson Chungce376632013-07-11 16:12:41 -07003885 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3886 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3887 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003888 View v = cl.getChildAt(item.cellX, item.cellY);
3889 Object tag = v.getTag();
3890 String desc = "Collision while binding workspace item: " + item
3891 + ". Collides with " + tag;
3892 if (LauncherAppState.isDogfoodBuild()) {
3893 throw (new RuntimeException(desc));
3894 } else {
3895 Log.d(TAG, desc);
3896 }
Winson Chungce376632013-07-11 16:12:41 -07003897 }
Winson Chung64359a52013-07-08 17:17:08 -07003898 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003899 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003900 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003901 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003902 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003903 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003904 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003905 default:
3906 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003907 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003908
3909 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3910 item.cellY, 1, 1);
3911 if (animateIcons) {
3912 // Animate all the applications up now
3913 view.setAlpha(0f);
3914 view.setScaleX(0f);
3915 view.setScaleY(0f);
3916 bounceAnims.add(createNewAppBounceAnimation(view, i));
3917 newShortcutsScreenId = item.screenId;
3918 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003919 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003920
Winson Chung997a9232013-07-24 15:33:46 -07003921 if (animateIcons) {
3922 // Animate to the correct page
3923 if (newShortcutsScreenId > -1) {
3924 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003925 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003926 final Runnable startBounceAnimRunnable = new Runnable() {
3927 public void run() {
3928 anim.playTogether(bounceAnims);
3929 anim.start();
3930 }
3931 };
Winson Chung997a9232013-07-24 15:33:46 -07003932 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003933 // We post the animation slightly delayed to prevent slowdowns
3934 // when we are loading right after we return to launcher.
3935 mWorkspace.postDelayed(new Runnable() {
3936 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003937 if (mWorkspace != null) {
3938 mWorkspace.snapToPage(newScreenIndex);
3939 mWorkspace.postDelayed(startBounceAnimRunnable,
3940 NEW_APPS_ANIMATION_DELAY);
3941 }
Winson Chung94d67682013-09-25 16:29:40 -07003942 }
3943 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003944 } else {
3945 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003946 }
3947 }
Winson Chung64359a52013-07-08 17:17:08 -07003948 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003949 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003950 }
3951
Joe Onorato9c1289c2009-08-17 11:03:03 -04003952 /**
3953 * Implementation of the method from LauncherModel.Callbacks.
3954 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003955 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003956 Runnable r = new Runnable() {
3957 public void run() {
3958 bindFolders(folders);
3959 }
3960 };
3961 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003962 return;
3963 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003964 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003965 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003966
3967 /**
3968 * Add the views for a widget to the workspace.
3969 *
3970 * Implementation of the method from LauncherModel.Callbacks.
3971 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003972 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003973 Runnable r = new Runnable() {
3974 public void run() {
3975 bindAppWidget(item);
3976 }
3977 };
3978 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003979 return;
3980 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003981
Daniel Sandler843e8602010-06-07 14:59:01 -04003982 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3983 if (DEBUG_WIDGETS) {
3984 Log.d(TAG, "bindAppWidget: " + item);
3985 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003986 final Workspace workspace = mWorkspace;
3987
Adam Cohen59400422014-03-05 18:07:04 -08003988 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003989 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003990
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003991 if (!mIsSafeModeEnabled
3992 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003993 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
3994
Sunny Goyalff572272014-07-23 13:58:07 -07003995 if (appWidgetInfo == null) {
3996 if (DEBUG_WIDGETS) {
3997 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3998 + " belongs to component " + item.providerName
3999 + ", as the povider is null");
4000 }
4001 LauncherModel.deleteItemFromDatabase(this, item);
4002 return;
4003 }
Sunny Goyalff572272014-07-23 13:58:07 -07004004
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004005 // If we do not have a valid id, try to bind an id.
4006 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
4007 // Note: This assumes that the id remap broadcast is received before this step.
4008 // If that is not the case, the id remap will be ignored and user may see the
4009 // click to setup view.
4010 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
4011 pendingInfo.spanX = item.spanX;
4012 pendingInfo.spanY = item.spanY;
4013 pendingInfo.minSpanX = item.minSpanX;
4014 pendingInfo.minSpanY = item.minSpanY;
4015 Bundle options = null;
4016 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07004017
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004018 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
4019 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4020 newWidgetId, appWidgetInfo, options);
4021
4022 // TODO consider showing a permission dialog when the widget is clicked.
4023 if (!success) {
4024 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4025 if (DEBUG_WIDGETS) {
4026 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4027 + " belongs to component " + item.providerName
4028 + ", as the launcher is unable to bing a new widget id");
4029 }
4030 LauncherModel.deleteItemFromDatabase(this, item);
4031 return;
Sunny Goyalff572272014-07-23 13:58:07 -07004032 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004033
4034 item.appWidgetId = newWidgetId;
4035
4036 // If the widget has a configure activity, it is still needs to set it up, otherwise
4037 // the widget is ready to go.
4038 item.restoreStatus = (appWidgetInfo.configure == null)
4039 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4040 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4041
4042 LauncherModel.updateItemInDatabase(this, item);
4043 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
4044 && (appWidgetInfo.configure == null)) {
4045 // If the ID is already valid, verify if we need to configure or not.
4046 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4047 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07004048 }
Sunny Goyalff572272014-07-23 13:58:07 -07004049 }
4050
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004051 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004052 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004053 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004054 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4055 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004056 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004057
Sunny Goyal651077b2014-06-30 14:15:31 -07004058 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004059 item.minSpanX = appWidgetInfo.minSpanX;
4060 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07004061 } else {
4062 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004063 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4064 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004065 view.updateIcon(mIconCache);
4066 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004067 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004068 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004069 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004070
Joe Onorato9c1289c2009-08-17 11:03:03 -04004071 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004072 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004073
Adam Cohendcd297f2013-06-18 13:13:40 -07004074 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004075 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08004076 if (!item.isCustomWidget()) {
4077 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4078 }
Adam Cohended9f8d2010-11-03 13:25:16 -07004079
Joe Onorato9c1289c2009-08-17 11:03:03 -04004080 workspace.requestLayout();
4081
Daniel Sandler843e8602010-06-07 14:59:01 -04004082 if (DEBUG_WIDGETS) {
4083 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4084 + (SystemClock.uptimeMillis()-start) + "ms");
4085 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004086 }
4087
Sunny Goyalff572272014-07-23 13:58:07 -07004088 /**
4089 * Restores a pending widget.
4090 *
4091 * @param appWidgetId The app widget id
4092 * @param cellInfo The position on screen where to create the widget.
4093 */
4094 private void completeRestoreAppWidget(final int appWidgetId) {
4095 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4096 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4097 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4098 return;
4099 }
4100
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004101 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004102 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4103
4104 mWorkspace.reinflateWidgetsIfNecessary();
4105 LauncherModel.updateItemInDatabase(this, info);
4106 }
4107
Adam Cohen1462de32012-07-24 22:34:36 -07004108 public void onPageBoundSynchronously(int page) {
4109 mSynchronouslyBoundPages.add(page);
4110 }
4111
Joe Onorato9c1289c2009-08-17 11:03:03 -04004112 /**
4113 * Callback saying that there aren't any more items to bind.
4114 *
4115 * Implementation of the method from LauncherModel.Callbacks.
4116 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004117 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004118 Runnable r = new Runnable() {
4119 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004120 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004121 }
4122 };
4123 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004124 return;
4125 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004126 if (mSavedState != null) {
4127 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004128 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004129 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004130 mSavedState = null;
4131 }
4132
Adam Cohen1462de32012-07-24 22:34:36 -07004133 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004134
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004135 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004136 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004137
4138 // If we received the result of any pending adds while the loader was running (e.g. the
4139 // widget configuration forced an orientation change), process them now.
4140 if (sPendingAddItem != null) {
4141 final long screenId = completeAdd(sPendingAddItem);
4142
4143 // TODO: this moves the user to the page where the pending item was added. Ideally,
4144 // the screen would be guaranteed to exist after bind, and the page would be set through
4145 // the workspace restore process.
4146 mWorkspace.post(new Runnable() {
4147 @Override
4148 public void run() {
4149 mWorkspace.snapToScreenId(screenId);
4150 }
4151 });
4152 sPendingAddItem = null;
4153 }
4154
Sunny Goyal756adbc2015-04-16 15:20:51 -07004155 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004156
4157 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004158 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004159 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004160 }
4161
Adam Cohen3ed316a2014-07-23 18:21:20 -07004162 private void sendLoadingCompleteBroadcastIfNecessary() {
4163 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4164 String permission =
4165 getResources().getString(R.string.receive_first_load_broadcast_permission);
4166 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4167 sendBroadcast(intent, permission);
4168 SharedPreferences.Editor editor = mSharedPrefs.edit();
4169 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4170 editor.apply();
4171 }
4172 }
4173
Winson Chunga0b7e862013-09-05 16:03:15 -07004174 public boolean isAllAppsButtonRank(int rank) {
4175 if (mHotseat != null) {
4176 return mHotseat.isAllAppsButtonRank(rank);
4177 }
4178 return false;
4179 }
4180
Winson Chunga2413752012-04-03 14:22:34 -07004181 private boolean canRunNewAppsAnimation() {
4182 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004183 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4184 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004185 }
4186
Winson Chungc9168342013-06-26 14:54:55 -07004187 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4188 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4189 PropertyValuesHolder.ofFloat("alpha", 1f),
4190 PropertyValuesHolder.ofFloat("scaleX", 1f),
4191 PropertyValuesHolder.ofFloat("scaleY", 1f));
4192 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4193 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004194 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004195 return bounceAnim;
4196 }
4197
Adam Cohen27772732013-11-11 14:00:56 +00004198 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004199 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004200 }
4201
Tony Wickham3a3517f2015-10-06 11:27:04 -07004202 /** Returns the search bar bounds in pixels. */
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004203 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004204 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004205 }
4206
Winson Chung88fa7412015-08-03 14:25:28 -07004207 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004208 if (mSearchDropTargetBar == null) {
4209 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004210 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004211 if (mQsb != null) {
4212 mSearchDropTargetBar.removeView(mQsb);
4213 mQsb = null;
4214 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004215 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004216 }
4217
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004218 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004219 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4220 * multiple calls to bind the same list.)
4221 */
4222 @Thunk ArrayList<AppInfo> mTmpAppsList;
4223 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4224 public void run() {
4225 bindAllApplications(mTmpAppsList);
4226 mTmpAppsList = null;
4227 }
4228 };
4229
4230 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004231 * Add the icons for all apps.
4232 *
4233 * Implementation of the method from LauncherModel.Callbacks.
4234 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004235 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004236 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4237 mTmpAppsList = apps;
4238 return;
4239 }
4240
Winson Chungb745afb2015-03-02 11:51:23 -08004241 if (mAppsView != null) {
4242 mAppsView.setApps(apps);
4243 }
Adam Cohen9211d422014-10-07 18:14:53 -07004244 if (mLauncherCallbacks != null) {
4245 mLauncherCallbacks.bindAllApplications(apps);
4246 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004247 }
4248
4249 /**
4250 * A package was updated.
4251 *
4252 * Implementation of the method from LauncherModel.Callbacks.
4253 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004254 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004255 Runnable r = new Runnable() {
4256 public void run() {
4257 bindAppsUpdated(apps);
4258 }
4259 };
4260 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004261 return;
4262 }
4263
Winson Chungb745afb2015-03-02 11:51:23 -08004264 if (mAppsView != null) {
4265 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004266 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004267 }
4268
Sunny Goyal4390ace2014-10-13 11:33:11 -07004269 @Override
4270 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4271 Runnable r = new Runnable() {
4272 public void run() {
4273 bindWidgetsRestored(widgets);
4274 }
4275 };
4276 if (waitUntilResume(r)) {
4277 return;
4278 }
4279 mWorkspace.widgetsRestored(widgets);
4280 }
4281
Joe Onorato9c1289c2009-08-17 11:03:03 -04004282 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004283 * Some shortcuts were updated in the background.
4284 *
4285 * Implementation of the method from LauncherModel.Callbacks.
4286 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004287 @Override
4288 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4289 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004290 Runnable r = new Runnable() {
4291 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004292 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004293 }
4294 };
4295 if (waitUntilResume(r)) {
4296 return;
4297 }
4298
Sunny Goyal4390ace2014-10-13 11:33:11 -07004299 if (!updated.isEmpty()) {
4300 mWorkspace.updateShortcuts(updated);
4301 }
4302
4303 if (!removed.isEmpty()) {
4304 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4305 for (ShortcutInfo si : removed) {
4306 removedComponents.add(si.getTargetComponent());
4307 }
4308 mWorkspace.removeItemsByComponentName(removedComponents, user);
4309 // Notify the drag controller
4310 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004311 }
4312 }
4313
4314 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004315 * Update the state of a package, typically related to install state.
4316 *
4317 * Implementation of the method from LauncherModel.Callbacks.
4318 */
Sunny Goyale755d462014-07-22 13:48:29 -07004319 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004320 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4321 Runnable r = new Runnable() {
4322 public void run() {
4323 bindRestoreItemsChange(updates);
4324 }
4325 };
4326 if (waitUntilResume(r)) {
4327 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004328 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004329
Sunny Goyal756adbc2015-04-16 15:20:51 -07004330 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004331 }
4332
4333 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004334 * A package was uninstalled. We take both the super set of packageNames
4335 * in addition to specific applications to remove, the reason being that
4336 * this can be called when a package is updated as well. In that scenario,
4337 * we only remove specific components from the workspace, where as
4338 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004339 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004340 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004341 * Implementation of the method from LauncherModel.Callbacks.
4342 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004343 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004344 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004345 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004346 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004347 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004348 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004349 }
Winson Chungd64d1762013-08-20 14:37:16 -07004350 };
4351 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004352 return;
4353 }
4354
Sunny Goyal1a745e82014-10-02 15:58:31 -07004355 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004356 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4357 for (AppInfo info : appInfos) {
4358 removedComponents.add(info.componentName);
4359 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004360 if (!packageNames.isEmpty()) {
4361 mWorkspace.removeItemsByPackageName(packageNames, user);
4362 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004363 if (!removedComponents.isEmpty()) {
4364 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004365 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004366 // Notify the drag controller
4367 mDragController.onAppsRemoved(packageNames, removedComponents);
4368
Sunny Goyal1a745e82014-10-02 15:58:31 -07004369 } else {
4370 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004371 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004372
Winson Chungdf95eb12013-10-16 14:57:07 -07004373 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004374 if (mAppsView != null) {
4375 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004376 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004377 }
Joe Onoratobe386092009-11-17 17:32:16 -08004378
Michael Jurkac402cd92013-05-20 15:49:32 +02004379 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004380 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004381 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004382 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004383 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004384
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004385 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004386 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004387 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004388 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004389 return;
4390 }
4391
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004392 if (mWidgetsView != null && model != null) {
4393 mWidgetsView.addWidgets(model);
4394 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004395 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004396 }
4397
Winson Chung400438b2011-01-16 17:53:48 -08004398 private int mapConfigurationOriActivityInfoOri(int configOri) {
4399 final Display d = getWindowManager().getDefaultDisplay();
4400 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4401 switch (d.getRotation()) {
4402 case Surface.ROTATION_0:
4403 case Surface.ROTATION_180:
4404 // We are currently in the same basic orientation as the natural orientation
4405 naturalOri = configOri;
4406 break;
4407 case Surface.ROTATION_90:
4408 case Surface.ROTATION_270:
4409 // We are currently in the other basic orientation to the natural orientation
4410 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4411 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4412 break;
4413 }
4414
4415 int[] oriMap = {
4416 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4417 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4418 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4419 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4420 };
4421 // Since the map starts at portrait, we need to offset if this device's natural orientation
4422 // is landscape.
4423 int indexOffset = 0;
4424 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4425 indexOffset = 1;
4426 }
4427 return oriMap[(d.getRotation() + indexOffset) % 4];
4428 }
Adam Cohen446e9402011-09-15 18:21:21 -07004429
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004430 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004431 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004432 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004433 if (Utilities.ATLEAST_JB_MR2) {
4434 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4435 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004436 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4437 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004438 }
Winson Chung4b919f82012-05-01 10:44:08 -07004439 }
4440 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004441
Winson Chung4b919f82012-05-01 10:44:08 -07004442 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004443 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004444 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004445 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004446 } else {
4447 mHandler.postDelayed(new Runnable() {
4448 public void run() {
4449 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4450 }
4451 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004452 }
Winson Chung4b919f82012-05-01 10:44:08 -07004453 }
Winson Chung400438b2011-01-16 17:53:48 -08004454 }
4455
Winson Chunge43a1e72014-01-15 10:33:02 -08004456 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004457 if (mLauncherCallbacks != null) {
4458 return mLauncherCallbacks.isLauncherPreinstalled();
4459 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004460 PackageManager pm = getPackageManager();
4461 try {
4462 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4463 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4464 return true;
4465 } else {
4466 return false;
4467 }
4468 } catch (NameNotFoundException e) {
4469 e.printStackTrace();
4470 return false;
4471 }
4472 }
4473
Adam Cohenea90f832014-05-21 15:03:34 -07004474 /**
4475 * This method indicates whether or not we should suggest default wallpaper dimensions
4476 * when our wallpaper cropper was not yet used to set a wallpaper.
4477 */
4478 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004479 if (mLauncherCallbacks != null) {
4480 return mLauncherCallbacks.overrideWallpaperDimensions();
4481 }
Adam Cohenea90f832014-05-21 15:03:34 -07004482 return true;
4483 }
4484
Adam Cohen432609a2014-03-13 17:03:22 -07004485 /**
4486 * To be overridden by subclasses to indicate that there is an activity to launch
4487 * before showing the standard launcher experience.
4488 */
4489 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004490 if (mLauncherCallbacks != null) {
4491 return mLauncherCallbacks.hasFirstRunActivity();
4492 }
Adam Cohen432609a2014-03-13 17:03:22 -07004493 return false;
4494 }
4495
4496 /**
4497 * To be overridden by subclasses to launch any first run activity
4498 */
4499 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004500 if (mLauncherCallbacks != null) {
4501 return mLauncherCallbacks.getFirstRunActivity();
4502 }
Adam Cohen432609a2014-03-13 17:03:22 -07004503 return null;
4504 }
4505
Winson Chunga6945242014-01-08 14:04:34 -08004506 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004507 return !ActivityManager.isRunningInTestHarness() &&
4508 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004509 }
4510
Adam Cohen4a9423d2014-03-28 14:22:31 -07004511 protected boolean hasRunFirstRunActivity() {
4512 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4513 }
4514
Adam Cohen432609a2014-03-13 17:03:22 -07004515 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004516 if (shouldRunFirstRunActivity() &&
4517 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004518 Intent firstRunIntent = getFirstRunActivity();
4519 if (firstRunIntent != null) {
4520 startActivity(firstRunIntent);
4521 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004522 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004523 }
4524 }
Adam Cohen432609a2014-03-13 17:03:22 -07004525 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004526 }
4527
4528 private void markFirstRunActivityShown() {
4529 SharedPreferences.Editor editor = mSharedPrefs.edit();
4530 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4531 editor.apply();
4532 }
4533
Adam Cohen432609a2014-03-13 17:03:22 -07004534 /**
4535 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4536 * screen that must be displayed and dismissed.
4537 */
4538 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004539 if (mLauncherCallbacks != null) {
4540 return mLauncherCallbacks.hasDismissableIntroScreen();
4541 }
Adam Cohen432609a2014-03-13 17:03:22 -07004542 return false;
4543 }
4544
4545 /**
4546 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4547 */
4548 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004549 if (mLauncherCallbacks != null) {
4550 return mLauncherCallbacks.getIntroScreen();
4551 }
Adam Cohen432609a2014-03-13 17:03:22 -07004552 return null;
4553 }
4554
4555 /**
4556 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4557 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4558 */
4559 private boolean shouldShowIntroScreen() {
4560 return hasDismissableIntroScreen() &&
4561 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4562 }
4563
4564 protected void showIntroScreen() {
4565 View introScreen = getIntroScreen();
4566 changeWallpaperVisiblity(false);
4567 if (introScreen != null) {
4568 mDragLayer.showOverlayView(introScreen);
4569 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004570 if (mLauncherOverlayContainer != null) {
4571 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4572 }
Adam Cohen432609a2014-03-13 17:03:22 -07004573 }
4574
4575 public void dismissIntroScreen() {
4576 markIntroScreenDismissed();
4577 if (showFirstRunActivity()) {
4578 // We delay hiding the intro view until the first run activity is showing. This
4579 // avoids a blip.
4580 mWorkspace.postDelayed(new Runnable() {
4581 @Override
4582 public void run() {
4583 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004584 if (mLauncherOverlayContainer != null) {
4585 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4586 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004587 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004588 }
4589 }, ACTIVITY_START_DELAY);
4590 } else {
4591 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004592 if (mLauncherOverlayContainer != null) {
4593 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4594 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004595 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004596 }
4597 changeWallpaperVisiblity(true);
4598 }
4599
4600 private void markIntroScreenDismissed() {
4601 SharedPreferences.Editor editor = mSharedPrefs.edit();
4602 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4603 editor.apply();
4604 }
4605
Adam Cohen091440a2015-03-18 14:16:05 -07004606 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004607 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4608 // on the device, then we always show the first run cling experience (or if there is no
4609 // launcher2). Otherwise, we prompt the user upon started for migration
4610 LauncherClings launcherClings = new LauncherClings(this);
4611 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004612 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004613 if (mModel.canMigrateFromOldLauncherDb(this)) {
4614 launcherClings.showMigrationCling();
4615 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004616 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004617 }
4618 }
4619 }
4620
Winson Chunga6945242014-01-08 14:04:34 -08004621 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004622 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4623 if (mHotseat != null) mHotseat.setAlpha(1f);
4624 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004625 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4626 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004627 }
4628
4629 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004630 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4631 if (mHotseat != null) mHotseat.setAlpha(0f);
4632 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004633 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4634 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004635 }
4636
Winson Chung5ffd51d2015-06-25 11:36:50 -07004637 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004638 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004639 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004640 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004641 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004642 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004643 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4644 if (userHandle != null) {
4645 user = UserHandleCompat.fromUser(userHandle);
4646 }
4647 }
4648 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004649 }
4650
4651 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004652 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004653 if (user == null) {
4654 user = UserHandleCompat.myUserHandle();
4655 }
4656
4657 // Called from search suggestion, add the profile extra to the intent to ensure that we
4658 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004659 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004660 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004661 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004662 return null;
4663 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004664 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004665 }
4666
Winson Chung5ffd51d2015-06-25 11:36:50 -07004667 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004668 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4669 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004670 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004671 UserHandleCompat.myUserHandle());
4672 }
4673
Winson Chung5ffd51d2015-06-25 11:36:50 -07004674 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004675 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4676 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004677 mWorkspace.onExternalDragStartedWithItem(dragView);
4678 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004679 }
4680
Winson Chung5ffd51d2015-06-25 11:36:50 -07004681 protected void moveWorkspaceToDefaultScreen() {
4682 mWorkspace.moveToDefaultScreen(false);
4683 }
4684
Anjali Koppalf5d29132014-02-28 13:33:27 -08004685 @Override
4686 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004687 if (mLauncherCallbacks != null) {
4688 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4689 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004690 }
4691
Winson Chung80baf5a2010-08-09 16:03:15 -07004692 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004693 * Returns a FastBitmapDrawable with the icon, accurately sized.
4694 */
4695 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4696 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4697 d.setFilterBitmap(true);
4698 resizeIconDrawable(d);
4699 return d;
4700 }
4701
4702 /**
4703 * Resizes an icon drawable to the correct icon size.
4704 */
Winson5fbe0742015-09-30 15:33:00 -07004705 public Drawable resizeIconDrawable(Drawable icon) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004706 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
Winson5fbe0742015-09-30 15:33:00 -07004707 return icon;
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004708 }
4709
4710 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004711 * Prints out out state for debugging.
4712 */
4713 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004714 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004715 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004716 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4717 Log.d(TAG, "mRestoring=" + mRestoring);
4718 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4719 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004720 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004721 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004722 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004723
Daniel Sandler325dc232013-06-05 22:57:57 -04004724 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004725 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004726
4727 @Override
4728 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4729 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004730 synchronized (sDumpLogs) {
4731 writer.println(" ");
4732 writer.println("Debug logs: ");
4733 for (int i = 0; i < sDumpLogs.size(); i++) {
4734 writer.println(" " + sDumpLogs.get(i));
4735 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004736 }
Adam Cohen9211d422014-10-07 18:14:53 -07004737 if (mLauncherCallbacks != null) {
4738 mLauncherCallbacks.dump(prefix, fd, writer, args);
4739 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004740 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004741
4742 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004743 if (DEBUG_DUMP_LOG) {
4744 synchronized (sDumpLogs) {
4745 Log.d(TAG, "");
4746 Log.d(TAG, "*********************");
4747 Log.d(TAG, "Launcher debug logs: ");
4748 for (int i = 0; i < sDumpLogs.size(); i++) {
4749 Log.d(TAG, " " + sDumpLogs.get(i));
4750 }
4751 Log.d(TAG, "*********************");
4752 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004753 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004754 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004755 }
4756
4757 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004758 addDumpLog(tag, log, null, debugLog);
4759 }
4760
4761 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004762 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004763 if (e != null) {
4764 Log.d(tag, log, e);
4765 } else {
4766 Log.d(tag, log);
4767 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004768 }
Winson Chungede41292013-09-19 16:27:36 -07004769 if (DEBUG_DUMP_LOG) {
4770 sDateStamp.setTime(System.currentTimeMillis());
4771 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004772 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4773 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004774 }
Winson Chungede41292013-09-19 16:27:36 -07004775 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004776 }
4777
Adam Cohen59400422014-03-05 18:07:04 -08004778 public static CustomAppWidget getCustomAppWidget(String name) {
4779 return sCustomAppWidgets.get(name);
4780 }
4781
4782 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4783 return sCustomAppWidgets;
4784 }
4785
Winson Chungede41292013-09-19 16:27:36 -07004786 public void dumpLogsToLocalData() {
4787 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004788 new AsyncTask<Void, Void, Void>() {
4789 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004790 boolean success = false;
4791 sDateStamp.setTime(sRunStart);
4792 String FILENAME = sDateStamp.getMonth() + "-"
4793 + sDateStamp.getDay() + "_"
4794 + sDateStamp.getHours() + "-"
4795 + sDateStamp.getMinutes() + "_"
4796 + sDateStamp.getSeconds() + ".txt";
4797
4798 FileOutputStream fos = null;
4799 File outFile = null;
4800 try {
4801 outFile = new File(getFilesDir(), FILENAME);
4802 outFile.createNewFile();
4803 fos = new FileOutputStream(outFile);
4804 } catch (Exception e) {
4805 e.printStackTrace();
4806 }
4807 if (fos != null) {
4808 PrintWriter writer = new PrintWriter(fos);
4809
4810 writer.println(" ");
4811 writer.println("Debug logs: ");
4812 synchronized (sDumpLogs) {
4813 for (int i = 0; i < sDumpLogs.size(); i++) {
4814 writer.println(" " + sDumpLogs.get(i));
4815 }
4816 }
4817 writer.close();
4818 }
4819 try {
4820 if (fos != null) {
4821 fos.close();
4822 success = true;
4823 }
4824 } catch (IOException e) {
4825 e.printStackTrace();
4826 }
Michael Jurka43467462013-11-14 12:03:58 +01004827 return null;
Winson Chungede41292013-09-19 16:27:36 -07004828 }
Sunny Goyal8ac727b2015-09-23 15:38:09 -07004829 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Adam Cohen4caf2982013-08-20 18:54:31 -07004830 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004831 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004832}
Michael Jurka2763be32011-02-24 11:19:57 -08004833
Dan Sandlerd5024042014-01-09 15:01:33 -05004834interface DebugIntents {
4835 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4836 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004837}