blob: 65aa68ab52b5a94677d67aa6ecf89184532825dd [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Gilles Debunnedd6c9922010-10-25 11:23:41 -070019import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080020import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070021import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070022import android.animation.ObjectAnimator;
23import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070025import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000026import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070029import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040030import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080032import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070033import android.appwidget.AppWidgetManager;
34import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080036import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080037import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040038import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040040import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070042import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070043import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080046import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070048import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070050import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070051import android.graphics.Bitmap;
52import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070053import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070054import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070056import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040058import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070059import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020060import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020062import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080063import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070064import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070065import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040066import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070067import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.text.Selection;
69import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070070import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070072import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070073import android.view.Display;
74import android.view.Gravity;
75import android.view.HapticFeedbackConstants;
76import android.view.KeyEvent;
77import android.view.LayoutInflater;
78import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070079import android.view.MotionEvent;
80import android.view.Surface;
81import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070082import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080083import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070084import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070085import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070086import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070087import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070088import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080089import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070090import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070092import android.widget.Advanceable;
93import android.widget.FrameLayout;
94import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080095import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070096import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070097
Sunny Goyal651077b2014-06-30 14:15:31 -070098import com.android.launcher3.DropTarget.DragObject;
99import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700100import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700101import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100102import com.android.launcher3.compat.LauncherActivityInfoCompat;
103import com.android.launcher3.compat.LauncherAppsCompat;
104import com.android.launcher3.compat.UserHandleCompat;
105import com.android.launcher3.compat.UserManagerCompat;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700106import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700107import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700108import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700109import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700110import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700111import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700112import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700113
Adam Cohen4caf2982013-08-20 18:54:31 -0700114import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700115import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700116import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700117import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.PrintWriter;
Adam Cohen4caf2982013-08-20 18:54:31 -0700119import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700120import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700121import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700122import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700123import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700124import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700125import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000126import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700127
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800128/**
129 * Default launcher application.
130 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100131public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700132 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chung006ee262015-08-03 14:40:11 -0700133 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700134 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700135 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136
Daniel Sandlerf061f822013-06-27 13:59:36 -0400137 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700138 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700139 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400140 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700141 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700142
Dan Sandlerd5024042014-01-09 15:01:33 -0500143 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
144
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800145 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700146 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700147 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700148 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800149
Michael Jurka8b805b12012-04-18 14:23:14 -0700150 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700151 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700152
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700153 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
154 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
155 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
156
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700157 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
158
Mathew Inwood876a8462013-06-14 14:12:41 +0100159 /**
160 * IntentStarter uses request codes starting with this. This must be greater than all activity
161 * request codes used internally.
162 */
163 protected static final int REQUEST_LAST = 100;
164
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800165 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800166
Michael Jurka0a457bf2012-11-19 14:05:05 -0800167 // To turn on these properties, type
168 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800169 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800170
Winson Chung2672ff92012-05-04 16:22:30 -0700171 // The Intent extra that defines whether to ignore the launch animation
172 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400173 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700174
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800175 // Type: int
176 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700177 // Type: int
178 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700180 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
181 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
183 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700184 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700187 // Type: int
188 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
189 // Type: int
190 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
191 // Type: parcelable
192 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000193 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800194 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000195 // Type: int[]
196 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800197
Adam Cohen432609a2014-03-13 17:03:22 -0700198 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800199 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
200
Adam Cohen3ed316a2014-07-23 18:21:20 -0700201 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
202 static final String ACTION_FIRST_LOAD_COMPLETE =
203 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
204
Adam Cohen39a06042013-07-19 14:30:12 -0700205 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b802013-08-15 15:44:26 -0700206 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700207
Sunny Goyal594d76d2014-11-06 10:12:54 -0800208 private static final String QSB_WIDGET_ID = "qsb_widget_id";
209 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
210
Winson Chunga6945242014-01-08 14:04:34 -0800211 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
212
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700213 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700214 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
215
Adam Cohen091440a2015-03-18 14:16:05 -0700216 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700217 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700218
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700219 private boolean mIsSafeModeEnabled;
220
Adam Cohenc2d6e892014-10-16 09:49:24 -0700221 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
222 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700223 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700224
Joe Onorato9c1289c2009-08-17 11:03:03 -0400225 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700226 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
227 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700228 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800229
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000230 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
231 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
232
Winson Chunga2413752012-04-03 14:22:34 -0700233 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700234 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
235 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700236 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700237
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800238 private final BroadcastReceiver mCloseSystemDialogsReceiver
239 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800240
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800241 private LayoutInflater mInflater;
242
Adam Cohen091440a2015-03-18 14:16:05 -0700243 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700244 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800245 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700246 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800247 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700248 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700249
Sunny Goyalffe83f12014-08-14 17:39:34 -0700250 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700251 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700252
Adam Cohen091440a2015-03-18 14:16:05 -0700253 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800254 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800255 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700256
Michael Jurka0280c3b2010-09-17 15:00:07 -0700257 private int[] mTmpAddItemCellCoordinates = new int[2];
258
Sunny Goyal316490e2015-06-02 09:38:28 -0700259 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800260 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700261
Michael Jurka838a4ca2011-02-07 13:33:06 -0800262 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700263 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700264
Winson Chungc51db6a2011-10-05 11:44:49 -0700265 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700266
267 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700268 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700269
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700270 // Main container view and the model for the widget tray screen.
271 @Thunk WidgetsContainerView mWidgetsView;
272 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700273
Winson Chungf0ea4d32011-06-06 14:27:16 -0700274 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800275 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800276
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800277 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700278 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
279 // scroll issues (because the workspace may not have been measured yet) and extra work.
280 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
281 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800282
283 private SpannableStringBuilder mDefaultKeySsb = null;
284
Adam Cohen091440a2015-03-18 14:16:05 -0700285 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400286
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800287 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800288 private boolean mRestoring;
289 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700290 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291
Michael Jurka1e2f4652013-07-08 18:03:46 -0700292 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700293 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
294
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800295 private Bundle mSavedInstanceState;
296
Joe Onorato9c1289c2009-08-17 11:03:03 -0400297 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800298 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700299 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800300 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700301 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800302 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400303
Sunny Goyal639e9062015-08-19 19:17:06 -0700304 private LauncherClings mClings;
305
Sunny Goyale2df0622015-04-24 11:27:00 -0700306 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700307
Adam Cohen61f560d2013-09-30 15:58:20 -0700308 private View.OnTouchListener mHapticFeedbackTouchListener;
309
Adam Cohended9f8d2010-11-03 13:25:16 -0700310 // Related to the auto-advancing of widgets
311 private final int ADVANCE_MSG = 1;
312 private final int mAdvanceInterval = 20000;
313 private final int mAdvanceStagger = 250;
314 private long mAutoAdvanceSentTime;
315 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700316 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700317 new HashMap<View, AppWidgetProviderInfo>();
318
Winson Chung400438b2011-01-16 17:53:48 -0800319 // Determines how long to wait after a rotation before restoring the screen orientation to
320 // match the sensor state.
321 private final int mRestoreScreenOrientationDelay = 500;
322
Adam Cohen091440a2015-03-18 14:16:05 -0700323 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700324
Adam Cohen1462de32012-07-24 22:34:36 -0700325 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700326 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700327
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700328 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700329 static Date sDateStamp = new Date();
330 static DateFormat sDateFormat =
331 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
332 static long sRunStart = System.currentTimeMillis();
333 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700334
Winson Chung46353de2012-02-16 14:05:10 -0800335 // We only want to get the SharedPreferences once since it does an FS stat each time we get
336 // it from the context.
337 private SharedPreferences mSharedPrefs;
338
Winson Chungf0c6ae02012-03-21 16:10:31 -0700339 // Holds the page that we need to animate to, and the icon views that we need to animate up
340 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700341 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700342 private Bitmap mFolderIconBitmap;
343 private Canvas mFolderIconCanvas;
344 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700345
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700346 private DeviceProfile mDeviceProfile;
347
Winson Chung13eb5272015-05-11 16:30:13 -0700348 // This is set to the view that launched the activity that navigated the user away from
349 // launcher. Since there is no callback for when the activity has finished launching, enable
350 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800351 private BubbleTextView mWaitingForResume;
352
Adam Cohen59400422014-03-05 18:07:04 -0800353 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
354 new HashMap<String, CustomAppWidget>();
355
356 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
357 static {
358 if (ENABLE_CUSTOM_WIDGET_TEST) {
359 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
360 }
361 }
362
Adam Cohen091440a2015-03-18 14:16:05 -0700363 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700364 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700365 if (mWorkspace != null) {
366 mWorkspace.buildPageHardwareLayers();
367 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700368 }
369 };
370
Adam Cohendb364c32014-05-20 14:23:40 -0700371 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800372
Adam Cohen091440a2015-03-18 14:16:05 -0700373 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800374 int requestCode;
375 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700376 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700377 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800378 int cellX;
379 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700380 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800381 }
382
Daniel Sandlerff02d492013-08-05 02:12:05 -0400383 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700384 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700385 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400386
387 @Thunk void setOrientation() {
388 if (mRotationEnabled) {
389 unlockScreenOrientation(true);
390 } else {
391 setRequestedOrientation(
392 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700393 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400394 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700395
Sunny Goyal7779d622015-06-11 16:18:39 -0700396 private Runnable mUpdateOrientationRunnable = new Runnable() {
397 public void run() {
398 setOrientation();
399 }
400 };
401
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800402 @Override
403 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700404 if (DEBUG_STRICT_MODE) {
405 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
406 .detectDiskReads()
407 .detectDiskWrites()
408 .detectNetwork() // or .detectAll() for all detectable problems
409 .penaltyLog()
410 .build());
411 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
412 .detectLeakedSqlLiteObjects()
413 .detectLeakedClosableObjects()
414 .penaltyLog()
415 .penaltyDeath()
416 .build());
417 }
418
Adam Cohen9211d422014-10-07 18:14:53 -0700419 if (mLauncherCallbacks != null) {
420 mLauncherCallbacks.preOnCreate();
421 }
422
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800423 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400424
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400425 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400426 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700427
Adam Cohen2e6da152015-05-06 11:42:25 -0700428 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700429 mDeviceProfile = getResources().getConfiguration().orientation
430 == Configuration.ORIENTATION_LANDSCAPE ?
431 app.getInvariantDeviceProfile().landscapeProfile
432 : app.getInvariantDeviceProfile().portraitProfile;
433
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400434 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700435 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700436 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800437 mModel = app.setLauncher(this);
438 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700439
Joe Onorato41a12d22009-10-31 18:30:00 -0400440 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800441 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700442 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700443
Daniel Sandlerff02d492013-08-05 02:12:05 -0400444 mStats = new Stats(this);
445
Sunny Goyalffe83f12014-08-14 17:39:34 -0700446 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700447
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700448 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
449 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700450
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700451 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
452 // this also ensures that any synchronous binding below doesn't re-trigger another
453 // LauncherModel load.
454 mPaused = false;
455
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800456 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200457 android.os.Debug.startMethodTracing(
458 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800459 }
460
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800461 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700462
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800463 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700464 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465
Joe Onorato7c312c12009-08-13 21:36:53 -0700466 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700467
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800468 mSavedState = savedInstanceState;
469 restoreState(mSavedState);
470
471 if (PROFILE_STARTUP) {
472 android.os.Debug.stopMethodTracing();
473 }
474
475 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700476 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700477 // If the user leaves launcher, then we should just load items asynchronously when
478 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700479 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700480 } else {
481 // We only load the page synchronously if the user rotates (or triggers a
482 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700483 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700484 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800485 }
486
487 // For handling default keys
488 mDefaultKeySsb = new SpannableStringBuilder();
489 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800490
491 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
492 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800493
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700494 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
495 // In case we are on a device with locked rotation, we should look at preferences to check
496 // if the user has specifically allowed rotation.
497 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400498 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700499 }
500
501 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
502 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400503 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700504
Adam Cohen9211d422014-10-07 18:14:53 -0700505 if (mLauncherCallbacks != null) {
506 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700507 if (mLauncherCallbacks.hasLauncherOverlay()) {
508 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700509 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
510 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
511 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700512 mWorkspace.setLauncherOverlay(mLauncherOverlay);
513 }
Adam Cohen9211d422014-10-07 18:14:53 -0700514 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700515
516 if (shouldShowIntroScreen()) {
517 showIntroScreen();
518 } else {
519 showFirstRunActivity();
520 showFirstRunClings();
521 }
Adam Cohen9211d422014-10-07 18:14:53 -0700522 }
523
Sunny Goyal7779d622015-06-11 16:18:39 -0700524 @Override
525 public void onSettingsChanged(String settings, boolean value) {
526 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
527 mRotationEnabled = value;
528 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
529 mUpdateOrientationRunnable.run();
530 }
531 }
532 }
533
Adam Cohen9211d422014-10-07 18:14:53 -0700534 private LauncherCallbacks mLauncherCallbacks;
535
536 public void onPostCreate(Bundle savedInstanceState) {
537 super.onPostCreate(savedInstanceState);
538 if (mLauncherCallbacks != null) {
539 mLauncherCallbacks.onPostCreate(savedInstanceState);
540 }
541 }
542
543 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
544 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700545 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700546 private boolean mWorkspaceImportanceStored = false;
547 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700548 private int mWorkspaceImportanceForAccessibility =
549 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
550 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
551
552 @Override
553 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700554 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700555 return;
556 }
557 // The underlying workspace and hotseat are temporarily suppressed by the search
558 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700559 if (mWorkspace != null) {
560 mWorkspaceImportanceForAccessibility =
561 mWorkspace.getImportantForAccessibility();
562 mWorkspace.setImportantForAccessibility(
563 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
564 mWorkspaceImportanceStored = true;
565 }
566 if (mHotseat != null) {
567 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
568 mHotseat.setImportantForAccessibility(
569 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
570 mHotseatImportanceStored = true;
571 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700572 }
573
574 @Override
575 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700576 if (mWorkspaceImportanceStored && mWorkspace != null) {
577 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
578 }
579 if (mHotseatImportanceStored && mHotseat != null) {
580 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
581 }
582 mWorkspaceImportanceStored = false;
583 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700584 }
585 });
Adam Cohen9211d422014-10-07 18:14:53 -0700586 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700587 }
588
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700589 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700590 public void onLauncherProviderChange() {
591 if (mLauncherCallbacks != null) {
592 mLauncherCallbacks.onLauncherProviderChange();
593 }
594 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700595
Winson Chungef7f8742015-06-04 17:18:17 -0700596 /**
597 * Updates the bounds of all the overlays to match the new fixed bounds.
598 */
599 public void updateOverlayBounds(Rect newBounds) {
600 mAppsView.setSearchBarBounds(newBounds);
601 mWidgetsView.setSearchBarBounds(newBounds);
602 }
603
Adam Cohen9211d422014-10-07 18:14:53 -0700604 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700605 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700606 if (mLauncherCallbacks != null) {
607 return mLauncherCallbacks.hasCustomContentToLeft();
608 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700609 return false;
610 }
611
Dave Hawkeya8881582013-09-17 15:55:33 -0600612 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500613 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600614 * {@link #addToCustomContentPage}. This will only be invoked if
615 * {@link #hasCustomContentToLeft()} is {@code true}.
616 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500617 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700618 if (mLauncherCallbacks != null) {
619 mLauncherCallbacks.populateCustomContentContainer();
620 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600621 }
622
623 /**
624 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
625 * ensure the custom content page is added or removed if necessary.
626 */
627 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600628 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600629 // Not bound yet, wait for bindScreens to be called.
630 return;
631 }
632
633 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
634 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500635 mWorkspace.createCustomContentContainer();
636 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600637 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
638 mWorkspace.removeCustomContentPage();
639 }
640 }
641
Anton Hanssona2f665f2013-09-26 12:18:32 +0100642 public Stats getStats() {
643 return mStats;
644 }
645
Bjorn Bringertc459e522013-06-07 19:36:01 +0100646 public LayoutInflater getInflater() {
647 return mInflater;
648 }
649
Hyunyoung Song3f471442015-04-08 19:01:34 -0700650 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700651 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
652 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700653 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700654 }
655
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800656 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000657 public static int generateViewId() {
Sunny Goyal9fc953b2015-08-17 12:24:25 -0700658 if (Utilities.ATLEAST_JB_MR1) {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100659 return View.generateViewId();
660 } else {
661 // View.generateViewId() is not available. The following fallback logic is a copy
662 // of its implementation.
663 for (;;) {
664 final int result = sNextGeneratedId.get();
665 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
666 int newValue = result + 1;
667 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
668 if (sNextGeneratedId.compareAndSet(result, newValue)) {
669 return result;
670 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000671 }
672 }
673 }
674
675 public int getViewIdForItem(ItemInfo info) {
676 // This cast is safe given the > 2B range for int.
Sunny Goyalebfae6e2015-08-27 15:30:25 -0700677 int itemId = (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000678 if (mItemIdToViewId.containsKey(itemId)) {
679 return mItemIdToViewId.get(itemId);
680 }
681 int viewId = generateViewId();
682 mItemIdToViewId.put(itemId, viewId);
683 return viewId;
684 }
685
686 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700687 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
688 * a configuration step, this allows the proper animations to run after other transitions.
689 */
Adam Cohendb364c32014-05-20 14:23:40 -0700690 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700691 long screenId = args.screenId;
692 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
693 // When the screen id represents an actual screen (as opposed to a rank) we make sure
694 // that the drop page actually exists.
695 screenId = ensurePendingDropLayoutExists(args.screenId);
696 }
Adam Cohendb364c32014-05-20 14:23:40 -0700697
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800698 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800699 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700700 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700701 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700702 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800703 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700704 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700705 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700706 case REQUEST_RECONFIGURE_APPWIDGET:
707 completeRestoreAppWidget(args.appWidgetId);
708 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800709 }
Michael Jurka27614d22012-04-02 06:40:22 -0700710 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
711 // if you turned the screen off and then back while in All Apps, Launcher would not
712 // return to the workspace. Clearing mAddInfo.container here fixes this issue
713 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700714 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800715 }
716
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800717 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700718 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700719 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700720 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700721 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800722 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700723
Adam Cohenad4e15c2013-10-17 16:21:35 -0700724 Runnable exitSpringLoaded = new Runnable() {
725 @Override
726 public void run() {
727 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
728 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
729 }
730 };
731
Michael Jurka8b805b12012-04-18 14:23:14 -0700732 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700733 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700734 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700735 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
736 if (resultCode == RESULT_CANCELED) {
737 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700738 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700739 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700740 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800741 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700742 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700743
744 // When the user has granted permission to bind widgets, we should check to see if
745 // we can inflate the default search bar widget.
746 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700747 }
748 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200749 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
750 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700751 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200752 }
753 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700754 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200755
Adam Cohened66b2b2012-01-23 17:28:51 -0800756 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700757 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700758
Adam Cohendb364c32014-05-20 14:23:40 -0700759 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800760 // We have special handling for widgets
761 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800762 final int appWidgetId;
763 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
764 : -1;
765 if (widgetId < 0) {
766 appWidgetId = pendingAddWidgetId;
767 } else {
768 appWidgetId = widgetId;
769 }
770
Adam Cohenad4e15c2013-10-17 16:21:35 -0700771 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800772 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700773 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
774 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700775 result = RESULT_CANCELED;
776 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700777 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700778 @Override
779 public void run() {
780 exitSpringLoadedDragModeDelayed(false, 0, null);
781 }
782 };
Adam Cohendb364c32014-05-20 14:23:40 -0700783 if (workspaceLocked) {
784 // No need to remove the empty screen if we're mid-binding, as the
785 // the bind will not add the empty screen.
786 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
787 } else {
788 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
789 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
790 }
Winson Chung5aaab772012-04-27 15:24:02 -0700791 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700792 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700793 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
794 // When the screen id represents an actual screen (as opposed to a rank)
795 // we make sure that the drop page actually exists.
796 mPendingAddInfo.screenId =
797 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
798 }
Adam Cohendb364c32014-05-20 14:23:40 -0700799 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
800
801 dropLayout.setDropPending(true);
802 final Runnable onComplete = new Runnable() {
803 @Override
804 public void run() {
805 completeTwoStageWidgetDrop(resultCode, appWidgetId);
806 dropLayout.setDropPending(false);
807 }
808 };
809 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
810 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
811 } else {
812 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
813 mPendingAddInfo);
814 sPendingAddItem = args;
815 }
Winson Chung5aaab772012-04-27 15:24:02 -0700816 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800817 return;
818 }
819
Sunny Goyalff572272014-07-23 13:58:07 -0700820 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
821 if (resultCode == RESULT_OK) {
822 // Update the widget view.
823 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
824 pendingAddWidgetId, mPendingAddInfo);
825 if (workspaceLocked) {
826 sPendingAddItem = args;
827 } else {
828 completeAdd(args);
829 }
830 }
831 // Leave the widget in the pending state if the user canceled the configure.
832 return;
833 }
834
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800835 // The pattern used here is that a user PICKs a specific application,
836 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700837
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800838 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
839 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700840 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700841 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
842 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800843 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700844 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800845 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700846 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700847 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
848 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800849 }
Adam Cohen00074722013-10-11 17:46:09 -0700850 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700851 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700852 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800853 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800854 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800855
856 }
857
858 @Override
859 protected void onActivityResult(
860 final int requestCode, final int resultCode, final Intent data) {
861 handleActivityResult(requestCode, resultCode, data);
862 if (mLauncherCallbacks != null) {
863 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
864 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800865 }
866
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600867 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700868 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600869 int[] grantResults) {
870 if (mLauncherCallbacks != null) {
871 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
872 grantResults);
873 }
874 }
875
Adam Cohendb364c32014-05-20 14:23:40 -0700876 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
877 appWidgetId, ItemInfo info) {
878 PendingAddArguments args = new PendingAddArguments();
879 args.requestCode = requestCode;
880 args.intent = data;
881 args.container = info.container;
882 args.screenId = info.screenId;
883 args.cellX = info.cellX;
884 args.cellY = info.cellY;
885 args.appWidgetId = appWidgetId;
886 return args;
887 }
888
889 /**
890 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
891 *
892 * @param screenId the screen id to check
893 * @return the new screen, or screenId if it exists
894 */
895 private long ensurePendingDropLayoutExists(long screenId) {
896 CellLayout dropLayout =
897 (CellLayout) mWorkspace.getScreenWithId(screenId);
898 if (dropLayout == null) {
899 // it's possible that the add screen was removed because it was
900 // empty and a re-bind occurred
901 mWorkspace.addExtraEmptyScreen();
902 return mWorkspace.commitExtraEmptyScreen();
903 } else {
904 return screenId;
905 }
906 }
907
Adam Cohen091440a2015-03-18 14:16:05 -0700908 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700909 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700910 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800911 Runnable onCompleteRunnable = null;
912 int animationType = 0;
913
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700914 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800915 if (resultCode == RESULT_OK) {
916 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
917 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700918 mPendingAddWidgetInfo);
919 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800920 onCompleteRunnable = new Runnable() {
921 @Override
922 public void run() {
923 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700924 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700925 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
926 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800927 }
928 };
929 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800930 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800931 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800932 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700933 if (mDragLayer.getAnimatedView() != null) {
934 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
935 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
936 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700937 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700938 // The animated view may be null in the case of a rotation during widget configuration
939 onCompleteRunnable.run();
940 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800941 }
942
943 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700944 protected void onStop() {
945 super.onStop();
946 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700947
948 if (mLauncherCallbacks != null) {
949 mLauncherCallbacks.onStop();
950 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700951 }
952
953 @Override
954 protected void onStart() {
955 super.onStart();
956 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700957
958 if (mLauncherCallbacks != null) {
959 mLauncherCallbacks.onStart();
960 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700961 }
962
963 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800964 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200965 long startTime = 0;
966 if (DEBUG_RESUME_TIME) {
967 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400968 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200969 }
Adam Cohen9211d422014-10-07 18:14:53 -0700970
971 if (mLauncherCallbacks != null) {
972 mLauncherCallbacks.preOnResume();
973 }
974
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800975 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700976
Winson Chung4a2afa32012-07-19 14:53:05 -0700977 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700978 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700979 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800980 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700981 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700982 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700983 // view after launching an app, as they may be depending on the UI to be static to
984 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700985 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700986 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800987 } else if (mOnResumeState == State.WIDGETS) {
988 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700989 }
990 mOnResumeState = State.NONE;
991
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700992 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700993 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
994 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700995
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800996 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700997 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700998 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -0700999
1000 // If we're starting binding all over again, clear any bind calls we'd postponed in
1001 // the past (see waitUntilResume) -- we don't need them since we're starting binding
1002 // from scratch again
1003 mBindOnResumeCallbacks.clear();
1004
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001005 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001006 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001007 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001008 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001009 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001010 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1011 // execute them here
1012 long startTimeCallbacks = 0;
1013 if (DEBUG_RESUME_TIME) {
1014 startTimeCallbacks = System.currentTimeMillis();
1015 }
1016
Michael Jurka1e2f4652013-07-08 18:03:46 -07001017 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1018 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001019 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001020 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001021 if (DEBUG_RESUME_TIME) {
1022 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1023 (System.currentTimeMillis() - startTimeCallbacks));
1024 }
Michael Jurka447bf842013-05-15 14:52:15 +02001025 }
Michael Jurka54554252013-08-01 12:52:23 +02001026 if (mOnResumeCallbacks.size() > 0) {
1027 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1028 mOnResumeCallbacks.get(i).run();
1029 }
1030 mOnResumeCallbacks.clear();
1031 }
Winson Chunge4e50662012-01-23 14:45:13 -08001032
1033 // Reset the pressed state of icons that were locked in the press state while activities
1034 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001035 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001036 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001037 mWaitingForResume.setStayPressed(false);
1038 }
Winson Chung82963d52013-10-09 11:20:57 -07001039
Adam Cohen06dff352012-06-01 17:17:08 -07001040 // It is possible that widgets can receive updates while launcher is not in the foreground.
1041 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1042 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1043 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001044 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001045 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001046
Michael Jurka447bf842013-05-15 14:52:15 +02001047 if (DEBUG_RESUME_TIME) {
1048 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1049 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001050
1051 if (mWorkspace.getCustomContentCallbacks() != null) {
1052 // If we are resuming and the custom content is the current page, we call onShow().
1053 // It is also poassible that onShow will instead be called slightly after first layout
1054 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1055 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001056 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001057 }
1058 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001059 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001060 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001061
Sunny Goyal756adbc2015-04-16 15:20:51 -07001062 if (!isWorkspaceLoading()) {
1063 // Process any items that were added while Launcher was away.
1064 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1065 }
Adam Cohen9211d422014-10-07 18:14:53 -07001066
1067 if (mLauncherCallbacks != null) {
1068 mLauncherCallbacks.onResume();
1069 }
Adam Cohen06dff352012-06-01 17:17:08 -07001070 }
1071
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001072 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001073 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001074 // Ensure that items added to Launcher are queued until Launcher returns
1075 InstallShortcutReceiver.enableInstallQueue();
1076
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001077 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001078 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001079 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001080 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001081
1082 // We call onHide() aggressively. The custom content callbacks should be able to
1083 // debounce excess onHide calls.
1084 if (mWorkspace.getCustomContentCallbacks() != null) {
1085 mWorkspace.getCustomContentCallbacks().onHide();
1086 }
Romain Guycbb89e42009-06-08 15:52:54 -07001087
Adam Cohen9211d422014-10-07 18:14:53 -07001088 if (mLauncherCallbacks != null) {
1089 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001090 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001091 }
1092
1093 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001094 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1095 // by a onResume or by scrolling otherwise.
1096 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001097
1098 // Custom content is completely hidden
1099 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001100
1101 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1102 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001103
1104 // Indicates whether the user is allowed to scroll away from the custom content.
1105 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001106 }
1107
Adam Cohenc2d6e892014-10-16 09:49:24 -07001108 public interface LauncherOverlay {
1109
1110 /**
1111 * Touch interaction leading to overscroll has begun
1112 */
1113 public void onScrollInteractionBegin();
1114
1115 /**
1116 * Touch interaction related to overscroll has ended
1117 */
1118 public void onScrollInteractionEnd();
1119
1120 /**
1121 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1122 * screen (or in the case of RTL, the rightmost screen).
1123 */
1124 public void onScrollChange(int progress, boolean rtl);
1125
1126 /**
1127 * Screen has stopped scrolling
1128 */
1129 public void onScrollSettled();
1130
1131 /**
1132 * This method can be called by the Launcher in order to force the LauncherOverlay
1133 * to exit fully immersive mode.
1134 */
1135 public void forceExitFullImmersion();
1136 }
1137
Jun Mukai8af0cd82015-05-12 12:32:12 -07001138 public interface LauncherSearchCallbacks {
1139 /**
1140 * Called when the search overlay is shown.
1141 */
1142 public void onSearchOverlayOpened();
1143
1144 /**
1145 * Called when the search overlay is dismissed.
1146 */
1147 public void onSearchOverlayClosed();
1148 }
1149
Adam Cohenc2d6e892014-10-16 09:49:24 -07001150 public interface LauncherOverlayCallbacks {
1151 /**
1152 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1153 * however it doesn't modify any state within the launcher.
1154 */
1155 public boolean canEnterFullImmersion();
1156
1157 /**
1158 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1159 * eg. by occupying the full screen and handling all touch events.
1160 *
1161 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1162 * case, Launcher will modify any necessary state and assumes the overlay is
1163 * handling all interaction. If false, the LauncherOverlay should cancel any
1164 *
1165 */
1166 public boolean enterFullImmersion();
1167
1168 /**
1169 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1170 * full control over UI and state.
1171 */
1172 public void exitFullImmersion();
1173 }
1174
1175 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1176
1177 @Override
1178 public boolean canEnterFullImmersion() {
1179 return mState == State.WORKSPACE;
1180 }
1181
1182 @Override
1183 public boolean enterFullImmersion() {
1184 if (mState == State.WORKSPACE) {
1185 // When fully immersed, disregard any touches which fall through.
1186 mDragLayer.setBlockTouch(true);
1187 return true;
1188 }
1189 return false;
1190 }
1191
1192 @Override
1193 public void exitFullImmersion() {
1194 mDragLayer.setBlockTouch(false);
1195 }
1196 }
1197
Jorim Jaggid017f882014-01-14 17:08:48 -08001198 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001199 if (mLauncherCallbacks != null) {
1200 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001201 } else {
1202 // On devices with a locked orientation, we will at least have the allow rotation
1203 // setting.
1204 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001205 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001206 }
1207
Adam Cohen9211d422014-10-07 18:14:53 -07001208 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001209 CustomContentCallbacks callbacks, String description) {
1210 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001211 }
1212
Adam Cohenedb40762013-07-18 16:45:45 -07001213 // The custom content needs to offset its content to account for the QSB
1214 public int getTopOffsetForCustomContent() {
1215 return mWorkspace.getPaddingTop();
1216 }
1217
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001218 @Override
1219 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001220 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001221 if (mModel.isCurrentCallbacks(this)) {
1222 mModel.stopLoader();
1223 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001224 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1225
Romain Guy13c2e7b2010-03-10 19:45:00 -08001226 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001227 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001228
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001229 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001230 @Override
1231 public void onWindowFocusChanged(boolean hasFocus) {
1232 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001233 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001234
1235 if (mLauncherCallbacks != null) {
1236 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1237 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001238 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001239
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001240 private boolean acceptFilter() {
1241 final InputMethodManager inputManager = (InputMethodManager)
1242 getSystemService(Context.INPUT_METHOD_SERVICE);
1243 return !inputManager.isFullscreenMode();
1244 }
1245
1246 @Override
1247 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001248 final int uniChar = event.getUnicodeChar();
1249 final boolean handled = super.onKeyDown(keyCode, event);
1250 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1251 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001252 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1253 keyCode, event);
1254 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001255 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001256 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001257 // showSearchDialog()
1258 // If there are multiple keystrokes before the search dialog takes focus,
1259 // onSearchRequested() will be called for every keystroke,
1260 // but it is idempotent, so it's fine.
1261 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001262 }
1263 }
1264
Joe Onorato8a9625e2010-01-28 15:55:35 -08001265 // Eat the long press event so the keyboard doesn't come up.
1266 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1267 return true;
1268 }
1269
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001270 return handled;
1271 }
1272
Karl Rosaen138a0412009-04-23 19:00:21 -07001273 private String getTypedText() {
1274 return mDefaultKeySsb.toString();
1275 }
1276
1277 private void clearTypedText() {
1278 mDefaultKeySsb.clear();
1279 mDefaultKeySsb.clearSpans();
1280 Selection.setSelection(mDefaultKeySsb, 0);
1281 }
1282
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001283 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001284 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1285 * State
1286 */
1287 private static State intToState(int stateOrdinal) {
1288 State state = State.WORKSPACE;
1289 final State[] stateValues = State.values();
1290 for (int i = 0; i < stateValues.length; i++) {
1291 if (stateValues[i].ordinal() == stateOrdinal) {
1292 state = stateValues[i];
1293 break;
1294 }
1295 }
1296 return state;
1297 }
1298
1299 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001300 * Restores the previous state, if it exists.
1301 *
1302 * @param savedState The previous state.
1303 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001304 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001305 private void restoreState(Bundle savedState) {
1306 if (savedState == null) {
1307 return;
1308 }
1309
Michael Jurka883f55b2010-10-21 15:47:14 -07001310 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001311 if (state == State.APPS || state == State.WIDGETS) {
1312 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001313 }
1314
Adam Cohen21cd0022013-10-09 18:57:02 -07001315 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1316 PagedView.INVALID_RESTORE_PAGE);
1317 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001318 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001319 }
1320
Winson Chung3d503fb2011-07-13 17:25:49 -07001321 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001322 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001323
Winson Chung3d503fb2011-07-13 17:25:49 -07001324 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1325 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001326 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001327 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1328 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001329 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1330 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001331 AppWidgetProviderInfo info = savedState.getParcelable(
1332 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001333 mPendingAddWidgetInfo = info == null ?
1334 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1335
Adam Cohen4637b5a2013-11-04 18:21:24 -08001336 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001337 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001338 mRestoring = true;
1339 }
1340
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001341 mItemIdToViewId = (HashMap<Integer, Integer>)
1342 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001343 }
1344
1345 /**
1346 * Finds all the views we need and configure them properly.
1347 */
1348 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001349 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001350
Craig Mautner360310b2012-10-26 15:13:08 -07001351 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001352 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001353 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1354 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001355 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001356 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001357
John Spurlock77e1f472013-09-11 10:09:51 -04001358 mLauncherView.setSystemUiVisibility(
1359 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001360 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001361
Winson Chung4c98d922011-05-31 16:50:48 -07001362 // Setup the drag layer
1363 mDragLayer.setup(this, dragController);
1364
Winson Chung3d503fb2011-07-13 17:25:49 -07001365 // Setup the hotseat
1366 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1367 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001368 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001369 }
1370
Jorim Jaggid017f882014-01-14 17:08:48 -08001371 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Tony Wickham6b7653d2015-09-02 16:11:09 -07001372 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1373 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1374 @Override
1375 public boolean onLongClick(View v) {
1376 return v.performClick();
1377 }
1378 };
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001379 mWidgetsButton = findViewById(R.id.widget_button);
1380 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001381 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001382 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001383 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001384 onClickAddWidgetButton(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001385 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001386 }
1387 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001388 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001389 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001390
1391 View wallpaperButton = findViewById(R.id.wallpaper_button);
1392 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001393 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001394 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001395 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001396 onClickWallpaperPicker(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001397 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001398 }
1399 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001400 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
Adam Cohen61f560d2013-09-30 15:58:20 -07001401 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1402
1403 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001404 if (hasSettings()) {
1405 settingsButton.setOnClickListener(new OnClickListener() {
1406 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001407 public void onClick(View view) {
Jorim Jaggid017f882014-01-14 17:08:48 -08001408 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001409 onClickSettingsButton(view);
Jorim Jaggid017f882014-01-14 17:08:48 -08001410 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001411 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001412 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001413 settingsButton.setOnLongClickListener(performClickOnLongClick);
Jorim Jaggid017f882014-01-14 17:08:48 -08001414 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1415 } else {
1416 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001417 }
1418
Adam Cohendbdff6b2013-09-18 19:09:15 -07001419 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001420
Winson Chung4c98d922011-05-31 16:50:48 -07001421 // Setup the workspace
1422 mWorkspace.setHapticFeedbackEnabled(false);
1423 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001424 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001425 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001426
Winson Chungf0ea4d32011-06-06 14:27:16 -07001427 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001428 mSearchDropTargetBar = (SearchDropTargetBar)
1429 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001430
Winson Chungef7f8742015-06-04 17:18:17 -07001431 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001432 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001433 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001434 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1435 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1436 } else {
1437 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1438 }
Craig Mautner360310b2012-10-26 15:13:08 -07001439
Winson Chung3d503fb2011-07-13 17:25:49 -07001440 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001441 dragController.setDragScoller(mWorkspace);
1442 dragController.setScrollView(mDragLayer);
1443 dragController.setMoveTarget(mWorkspace);
1444 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001445 if (mSearchDropTargetBar != null) {
1446 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001447 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001448 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001449
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001450 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001451 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001452 mWeightWatcher = new WeightWatcher(this);
1453 mWeightWatcher.setAlpha(0.5f);
1454 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001455 new FrameLayout.LayoutParams(
1456 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001457 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001458 Gravity.BOTTOM)
1459 );
Adam Cohen39a06042013-07-19 14:30:12 -07001460
1461 boolean show = shouldShowWeightWatcher();
1462 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001463 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001464 }
1465
1466 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001467 * Sets the all apps button. This method is called from {@link Hotseat}.
1468 */
1469 public void setAllAppsButton(View allAppsButton) {
1470 mAllAppsButton = allAppsButton;
1471 }
1472
1473 public View getAllAppsButton() {
1474 return mAllAppsButton;
1475 }
1476
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001477 public View getWidgetsButton() {
1478 return mWidgetsButton;
1479 }
1480
Anjali Koppal5ad44842014-03-10 20:34:39 -07001481 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001482 * Creates a view representing a shortcut.
1483 *
1484 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001485 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001486 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001487 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488 }
1489
1490 /**
1491 * Creates a view representing a shortcut inflated from the specified resource.
1492 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001493 * @param parent The group the shortcut belongs to.
1494 * @param info The data structure describing the shortcut.
1495 *
1496 * @return A View inflated from layoutResId.
1497 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001498 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001499 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001500 parent, false);
1501 favorite.applyFromShortcutInfo(info, mIconCache);
1502 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001503 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001504 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001505 return favorite;
1506 }
1507
1508 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001509 * Add a shortcut to the workspace.
1510 *
1511 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001512 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001513 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001514 int cellY) {
1515 int[] cellXY = mTmpAddItemCellCoordinates;
1516 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001517 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001518
Sunny Goyal5c97f512015-05-19 16:03:28 -07001519 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001520 if (info == null) {
1521 return;
1522 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001523 final View view = createShortcut(info);
1524
Sunny Goyal5c97f512015-05-19 16:03:28 -07001525 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001526 // First we check if we already know the exact location where we want to add this item.
1527 if (cellX >= 0 && cellY >= 0) {
1528 cellXY[0] = cellX;
1529 cellXY[1] = cellY;
1530 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001531
1532 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001533 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001534 true, null,null)) {
1535 return;
1536 }
1537 DragObject dragObject = new DragObject();
1538 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001539 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1540 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001541 return;
1542 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001543 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001544 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001545 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001546 foundCellSpan = (result != null);
1547 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001548 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001549 }
1550
1551 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001552 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001553 return;
1554 }
1555
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001556 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001557
1558 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001559 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001560 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001561 }
1562 }
1563
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001564 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001565 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001566 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001567 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001568 */
Adam Cohen091440a2015-03-18 14:16:05 -07001569 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001570 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1571
1572 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001573 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001574 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1575 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001576 }
Romain Guycbb89e42009-06-08 15:52:54 -07001577
Adam Cohen59400422014-03-05 18:07:04 -08001578 if (appWidgetInfo.isCustomWidget) {
1579 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001580 }
1581
Adam Cohen59400422014-03-05 18:07:04 -08001582 LauncherAppWidgetInfo launcherInfo;
1583 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1584 launcherInfo.spanX = info.spanX;
1585 launcherInfo.spanY = info.spanY;
1586 launcherInfo.minSpanX = info.minSpanX;
1587 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001588 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001589
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001590 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001591 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001592
1593 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001594 if (hostView == null) {
1595 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001596 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1597 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001598 } else {
1599 // The AppWidgetHostView has already been inflated and instantiated
1600 launcherInfo.hostView = hostView;
1601 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001602 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001603 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001604 launcherInfo.notifyWidgetSizeChanged(this);
1605
Adam Cohen59400422014-03-05 18:07:04 -08001606 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1607 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001608
1609 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001610 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001611 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001612 }
Romain Guycbb89e42009-06-08 15:52:54 -07001613
Adam Cohended9f8d2010-11-03 13:25:16 -07001614 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1615 @Override
1616 public void onReceive(Context context, Intent intent) {
1617 final String action = intent.getAction();
1618 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1619 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001620 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001621 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001622
Winson Chungc100e8e2011-08-09 16:02:43 -07001623 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001624 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001625 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001626 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001627 if (!showWorkspace(false)) {
1628 // If we are already on the workspace, then manually reset all apps
1629 mAppsView.reset();
1630 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001631 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001632 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1633 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001634 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001635 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1636 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001637 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001638 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1639 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1640 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001641 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001642 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1643 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001644 }
1645 }
1646 };
1647
1648 @Override
1649 public void onAttachedToWindow() {
1650 super.onAttachedToWindow();
1651
1652 // Listen for broadcasts related to user-presence
1653 final IntentFilter filter = new IntentFilter();
1654 filter.addAction(Intent.ACTION_SCREEN_OFF);
1655 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001656 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001657 if (ENABLE_DEBUG_INTENTS) {
1658 filter.addAction(DebugIntents.DELETE_DATABASE);
1659 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1660 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001661 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001662 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001663 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001664 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001665 mVisible = true;
1666 }
1667
Adam Cohen0b395352014-06-09 22:54:36 +00001668 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001669 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001670 * This method is a no-op for other platform versions.
1671 */
Sunny Goyald0091012015-01-20 15:55:34 -08001672 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001673 private void setupTransparentSystemBarsForLollipop() {
1674 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001675 Window window = getWindow();
1676 window.getAttributes().systemUiVisibility |=
1677 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1678 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1679 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1680 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1681 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1682 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1683 window.setStatusBarColor(Color.TRANSPARENT);
1684 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001685 }
1686 }
1687
Adam Cohended9f8d2010-11-03 13:25:16 -07001688 @Override
1689 public void onDetachedFromWindow() {
1690 super.onDetachedFromWindow();
1691 mVisible = false;
1692
Adam Cohend113e0c2010-11-11 10:48:05 -08001693 if (mAttached) {
1694 unregisterReceiver(mReceiver);
1695 mAttached = false;
1696 }
Winson Chungb745afb2015-03-02 11:51:23 -08001697 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001698 }
1699
1700 public void onWindowVisibilityChanged(int visibility) {
1701 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001702 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001703 // The following code used to be in onResume, but it turns out onResume is called when
1704 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1705 // is a more appropriate event to handle
1706 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001707 if (!mWorkspaceLoading) {
1708 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001709 // We want to let Launcher draw itself at least once before we force it to build
1710 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001711 // apps is nice and speedy.
1712 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001713 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001714 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001715 if (mStarted) return;
1716 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001717 // We delay the layer building a bit in order to give
1718 // other message processing a time to run. In particular
1719 // this avoids a delay in hiding the IME if it was
1720 // currently shown, because doing that may involve
1721 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001722 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001723 final ViewTreeObserver.OnDrawListener listener = this;
1724 mWorkspace.post(new Runnable() {
1725 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001726 if (mWorkspace != null &&
1727 mWorkspace.getViewTreeObserver() != null) {
1728 mWorkspace.getViewTreeObserver().
1729 removeOnDrawListener(listener);
1730 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001731 }
1732 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001733 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001734 }
1735 });
1736 }
1737 clearTypedText();
1738 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001739 }
1740
Adam Cohen091440a2015-03-18 14:16:05 -07001741 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001742 mHandler.removeMessages(ADVANCE_MSG);
1743 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1744 mHandler.sendMessageDelayed(msg, delay);
1745 mAutoAdvanceSentTime = System.currentTimeMillis();
1746 }
1747
Adam Cohen091440a2015-03-18 14:16:05 -07001748 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001749 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1750 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1751 mAutoAdvanceRunning = autoAdvanceRunning;
1752 if (autoAdvanceRunning) {
1753 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1754 sendAdvanceMessage(delay);
1755 } else {
1756 if (!mWidgetsToAdvance.isEmpty()) {
1757 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1758 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1759 }
1760 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001761 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001762 }
1763 }
1764 }
1765
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001766 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1767
Adam Cohended9f8d2010-11-03 13:25:16 -07001768 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001769 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001770 if (msg.what == ADVANCE_MSG) {
1771 int i = 0;
1772 for (View key: mWidgetsToAdvance.keySet()) {
1773 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1774 final int delay = mAdvanceStagger * i;
1775 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001776 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001777 public void run() {
1778 ((Advanceable) v).advance();
1779 }
1780 }, delay);
1781 }
1782 i++;
1783 }
1784 sendAdvanceMessage(mAdvanceInterval);
1785 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001786 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001787 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001788 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001789
Winsonc0b52fe2015-09-09 16:38:15 -07001790 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001791 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001792 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1793 if (v instanceof Advanceable) {
1794 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001795 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001796 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001797 }
1798 }
1799
Winsonc0b52fe2015-09-09 16:38:15 -07001800 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001801 if (mWidgetsToAdvance.containsKey(hostView)) {
1802 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001803 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001804 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001805 }
1806
Hyunyoung Song3f471442015-04-08 19:01:34 -07001807 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001808 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1809 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001810 }
1811
Winson Chunga6945242014-01-08 14:04:34 -08001812 public DragLayer getDragLayer() {
1813 return mDragLayer;
1814 }
1815
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001816 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001817 return mAppsView;
1818 }
1819
Hyunyoung Song3f471442015-04-08 19:01:34 -07001820 public WidgetsContainerView getWidgetsView() {
1821 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001822 }
1823
Winson Chunga6945242014-01-08 14:04:34 -08001824 public Workspace getWorkspace() {
1825 return mWorkspace;
1826 }
1827
1828 public Hotseat getHotseat() {
1829 return mHotseat;
1830 }
1831
Jorim Jaggid017f882014-01-14 17:08:48 -08001832 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001833 return mOverviewPanel;
1834 }
1835
Winson Chung006ee262015-08-03 14:40:11 -07001836 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001837 return mSearchDropTargetBar;
1838 }
1839
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001840 public LauncherAppWidgetHost getAppWidgetHost() {
1841 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001842 }
Romain Guycbb89e42009-06-08 15:52:54 -07001843
Winson Chunga9abd0e2010-10-27 17:18:37 -07001844 public LauncherModel getModel() {
1845 return mModel;
1846 }
1847
Winson Chunga6945242014-01-08 14:04:34 -08001848 protected SharedPreferences getSharedPrefs() {
1849 return mSharedPrefs;
1850 }
1851
Adam Cohen2e6da152015-05-06 11:42:25 -07001852 public DeviceProfile getDeviceProfile() {
1853 return mDeviceProfile;
1854 }
1855
Bjorn Bringertc459e522013-06-07 19:36:01 +01001856 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001857 getWindow().closeAllPanels();
1858
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001859 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001860 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001861 }
1862
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001863 @Override
1864 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001865 long startTime = 0;
1866 if (DEBUG_RESUME_TIME) {
1867 startTime = System.currentTimeMillis();
1868 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001869 super.onNewIntent(intent);
1870
1871 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001872 Folder openFolder = mWorkspace.getOpenFolder();
1873 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1874 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1875 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1876 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1877 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001878 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001879 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001880
Adam Cohen6fecd412013-10-02 17:41:50 -07001881 if (mWorkspace == null) {
1882 // Can be cases where mWorkspace is null, this prevents a NPE
1883 return;
1884 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001885 // In all these cases, only animate if we're already on home
1886 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001887
Adam Cohen6fecd412013-10-02 17:41:50 -07001888 closeFolder();
1889 exitSpringLoadedDragMode();
1890
1891 // If we are already on home, then just animate back to the workspace,
1892 // otherwise, just wait until onResume to set the state back to Workspace
1893 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001894 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001895 } else {
1896 mOnResumeState = State.WORKSPACE;
1897 }
1898
1899 final View v = getWindow().peekDecorView();
1900 if (v != null && v.getWindowToken() != null) {
1901 InputMethodManager imm = (InputMethodManager)getSystemService(
1902 INPUT_METHOD_SERVICE);
1903 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1904 }
1905
Winson Chungb745afb2015-03-02 11:51:23 -08001906 // Reset the apps view
1907 if (!alreadyOnHome && mAppsView != null) {
1908 mAppsView.scrollToTop();
1909 }
1910
Hyunyoung Song3f471442015-04-08 19:01:34 -07001911 // Reset the widgets view
1912 if (!alreadyOnHome && mWidgetsView != null) {
1913 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001914 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001915
Adam Cohen9211d422014-10-07 18:14:53 -07001916 if (mLauncherCallbacks != null) {
1917 mLauncherCallbacks.onHomeIntent();
1918 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001919 }
Adam Cohened307df2013-10-02 09:37:31 -07001920
Adam Cohen9211d422014-10-07 18:14:53 -07001921 if (mLauncherCallbacks != null) {
1922 mLauncherCallbacks.onNewIntent(intent);
1923 }
Winson15f8b172015-08-19 11:02:39 -07001924
1925 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1926 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1927 // animation.
1928 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001929 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1930 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001931 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1932 openFolder == null && moveToDefaultScreen) {
1933 mWorkspace.post(new Runnable() {
1934 @Override
1935 public void run() {
1936 mWorkspace.moveToDefaultScreen(true);
1937 }
1938 });
1939 }
1940 }
1941
1942 if (DEBUG_RESUME_TIME) {
1943 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1944 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001945 }
1946
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001947 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001948 public void onRestoreInstanceState(Bundle state) {
1949 super.onRestoreInstanceState(state);
1950 for (int page: mSynchronouslyBoundPages) {
1951 mWorkspace.restoreInstanceStateForChild(page);
1952 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001953 }
1954
1955 @Override
1956 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001957 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001958 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1959 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001960 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001961 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001962
Michael Jurka883f55b2010-10-21 15:47:14 -07001963 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001964 // We close any open folder since it will not be re-opened, and we need to make sure
1965 // this state is reflected.
1966 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001967
Adam Cohendcd297f2013-06-18 13:13:40 -07001968 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001969 mWaitingForResult) {
1970 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001971 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001972 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1973 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001974 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1975 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1976 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001977 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001978 }
1979
Hyunyoung Song3f471442015-04-08 19:01:34 -07001980 // Save the current widgets tray?
1981 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001982 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001983
1984 if (mLauncherCallbacks != null) {
1985 mLauncherCallbacks.onSaveInstanceState(outState);
1986 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001987 }
1988
1989 @Override
1990 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001991 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001992
Winson Chunge7a03942011-08-05 15:05:12 -07001993 // Remove all pending runnables
1994 mHandler.removeMessages(ADVANCE_MSG);
1995 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001996 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001997
Winson Chungcd2b0142011-06-08 16:02:26 -07001998 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001999 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002000
2001 // It's possible to receive onDestroy after a new Launcher activity has
2002 // been created. In this case, don't interfere with the new Launcher.
2003 if (mModel.isCurrentCallbacks(this)) {
2004 mModel.stopLoader();
2005 app.setLauncher(null);
2006 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002007
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002008 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002009 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002010 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002011 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002012 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002013 mAppWidgetHost = null;
2014
2015 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002016
2017 TextKeyListener.getInstance().release();
2018
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002019 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002020
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002021 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002022 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002023 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002024 mWorkspace = null;
2025 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002026
Michael Jurka2ecf9952012-06-18 12:52:28 -07002027 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002028
2029 if (mLauncherCallbacks != null) {
2030 mLauncherCallbacks.onDestroy();
2031 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002032 }
2033
Adam Cohena9cf38f2011-05-02 15:36:58 -07002034 public DragController getDragController() {
2035 return mDragController;
2036 }
2037
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002038 @Override
2039 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002040 onStartForResult(requestCode);
2041 super.startActivityForResult(intent, requestCode);
2042 }
2043
2044 @Override
2045 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2046 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2047 onStartForResult(requestCode);
2048 try {
2049 super.startIntentSenderForResult(intent, requestCode,
2050 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2051 } catch (IntentSender.SendIntentException e) {
2052 throw new ActivityNotFoundException();
2053 }
2054 }
2055
2056 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002057 if (requestCode >= 0) {
2058 setWaitingForResult(true);
2059 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002060 }
2061
Winson Chung70d72102011-08-12 11:24:35 -07002062 /**
2063 * Indicates that we want global search for this activity by setting the globalSearch
2064 * argument for {@link #startSearch} to true.
2065 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002066 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002067 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002068 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002069
Karl Rosaen138a0412009-04-23 19:00:21 -07002070 if (initialQuery == null) {
2071 // Use any text typed in the launcher as the initial query
2072 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002073 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002074 if (appSearchData == null) {
2075 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002076 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002077 }
Winson Chungadf0c182012-08-23 14:59:07 -07002078 Rect sourceBounds = new Rect();
2079 if (mSearchDropTargetBar != null) {
2080 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2081 }
Romain Guycbb89e42009-06-08 15:52:54 -07002082
Ian Parkinson047036e2014-09-01 15:40:53 +01002083 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002084 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002085 if (clearTextImmediately) {
2086 clearTypedText();
2087 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002088
2089 // We need to show the workspace after starting the search
2090 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002091 }
2092
Ian Parkinson047036e2014-09-01 15:40:53 +01002093 /**
2094 * Start a text search.
2095 *
2096 * @return {@code true} if the search will start immediately, so any further keypresses
2097 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2098 * to buffer keypresses.
2099 */
2100 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002101 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002102 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2103 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2104 sourceBounds);
2105 }
2106
Michael Jurkaa33411c2012-06-14 16:18:21 -07002107 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002108 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002109 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002110 }
2111
2112 /**
2113 * Starts the global search activity. This code is a copied from SearchManager
2114 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002115 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002116 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002117 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002118 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2119 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2120 if (globalSearchActivity == null) {
2121 Log.w(TAG, "No global search activity found.");
2122 return;
2123 }
2124 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2125 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2126 intent.setComponent(globalSearchActivity);
2127 // Make sure that we have a Bundle to put source in
2128 if (appSearchData == null) {
2129 appSearchData = new Bundle();
2130 } else {
2131 appSearchData = new Bundle(appSearchData);
2132 }
Adam Cohen9211d422014-10-07 18:14:53 -07002133 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002134 if (!appSearchData.containsKey("source")) {
2135 appSearchData.putString("source", getPackageName());
2136 }
2137 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2138 if (!TextUtils.isEmpty(initialQuery)) {
2139 intent.putExtra(SearchManager.QUERY, initialQuery);
2140 }
2141 if (selectInitialQuery) {
2142 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2143 }
2144 intent.setSourceBounds(sourceBounds);
2145 try {
2146 startActivity(intent);
2147 } catch (ActivityNotFoundException ex) {
2148 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2149 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002150 }
2151
Winson Chungbedf9232015-07-10 12:38:30 -07002152 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2153 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2154 return;
2155 }
2156
2157 // If not handled, then just start the provided search intent
2158 startActivitySafely(v, searchIntent, null);
2159 }
2160
Yura4f93ec62014-02-04 14:15:21 +00002161 public boolean isOnCustomContent() {
2162 return mWorkspace.isOnOrMovingToCustomContent();
2163 }
2164
Winson Chung70d72102011-08-12 11:24:35 -07002165 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002166 public boolean onPrepareOptionsMenu(Menu menu) {
2167 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002168 if (!isOnCustomContent()) {
2169 // Close any open folders
2170 closeFolder();
2171 // Stop resizing any widgets
2172 mWorkspace.exitWidgetResizeMode();
2173 if (!mWorkspace.isInOverviewMode()) {
2174 // Show the overview mode
2175 showOverviewMode(true);
2176 } else {
2177 showWorkspace(true);
2178 }
Winson Chunge0298742014-01-17 12:03:00 -08002179 }
Adam Cohen9211d422014-10-07 18:14:53 -07002180 if (mLauncherCallbacks != null) {
2181 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2182 }
2183
Michael Jurkab94f3f82013-09-11 18:08:54 +02002184 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002185 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002186
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002187 @Override
2188 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002189 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002190 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002191 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002192 }
2193
Joe Onorato9c1289c2009-08-17 11:03:03 -04002194 public boolean isWorkspaceLocked() {
2195 return mWorkspaceLoading || mWaitingForResult;
2196 }
2197
Adam Cohen517a7f52014-03-01 12:12:59 -08002198 public boolean isWorkspaceLoading() {
2199 return mWorkspaceLoading;
2200 }
2201
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002202 private void setWorkspaceLoading(boolean value) {
2203 boolean isLocked = isWorkspaceLocked();
2204 mWorkspaceLoading = value;
2205 if (isLocked != isWorkspaceLocked()) {
2206 onWorkspaceLockedChanged();
2207 }
2208 }
2209
2210 private void setWaitingForResult(boolean value) {
2211 boolean isLocked = isWorkspaceLocked();
2212 mWaitingForResult = value;
2213 if (isLocked != isWorkspaceLocked()) {
2214 onWorkspaceLockedChanged();
2215 }
2216 }
2217
Adam Cohen9211d422014-10-07 18:14:53 -07002218 protected void onWorkspaceLockedChanged() {
2219 if (mLauncherCallbacks != null) {
2220 mLauncherCallbacks.onWorkspaceLockedChanged();
2221 }
2222 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002223
Michael Jurka0280c3b2010-09-17 15:00:07 -07002224 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002225 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002226 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002227 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2228 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002229 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002230 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002231 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002232
Sunny Goyale6b63a32015-01-16 16:14:29 -08002233 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002234 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002235 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2236 }
2237
Sunny Goyale6b63a32015-01-16 16:14:29 -08002238 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002239 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2240 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002241 if (appWidgetInfo.configure != null) {
2242 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002243 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002244
Bjorn Bringert7984c942009-12-09 15:38:25 +00002245 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002246 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2247 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2248
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002249 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002250 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002251 Runnable onComplete = new Runnable() {
2252 @Override
2253 public void run() {
2254 // Exit spring loaded mode if necessary after adding the widget
2255 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2256 null);
2257 }
2258 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002259 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002260 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002261 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002262 }
2263 }
Romain Guycbb89e42009-06-08 15:52:54 -07002264
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002265 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002266 // Close any folders that may be open.
2267 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002268 mWorkspace.moveToCustomContentScreen(animate);
2269 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002270
2271 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2272 int[] cell, int spanX, int spanY) {
2273 switch (info.itemType) {
2274 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2275 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2276 int span[] = new int[2];
2277 span[0] = spanX;
2278 span[1] = spanY;
2279 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2280 container, screenId, cell, span);
2281 break;
2282 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2283 processShortcutFromDrop(info.componentName, container, screenId, cell);
2284 break;
2285 default:
2286 throw new IllegalStateException("Unknown item type: " + info.itemType);
2287 }
2288 }
2289
Adam Cohenfbba09b2011-07-18 21:43:05 -07002290 /**
2291 * Process a shortcut drop.
2292 *
2293 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002294 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002295 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002296 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002297 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2298 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002299 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002300 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002301 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002302 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002303
2304 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002305 mPendingAddInfo.cellX = cell[0];
2306 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002307 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002308
2309 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2310 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002311 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002312 }
2313
Adam Cohenfbba09b2011-07-18 21:43:05 -07002314 /**
2315 * Process a widget drop.
2316 *
2317 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002318 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002319 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002320 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002321 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2322 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002323 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002324 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002325 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002326 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002327 mPendingAddInfo.minSpanX = info.minSpanX;
2328 mPendingAddInfo.minSpanY = info.minSpanY;
2329
Adam Cohenfbba09b2011-07-18 21:43:05 -07002330 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002331 mPendingAddInfo.cellX = cell[0];
2332 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002333 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002334 if (span != null) {
2335 mPendingAddInfo.spanX = span[0];
2336 mPendingAddInfo.spanY = span[1];
2337 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002338
Adam Cohened66b2b2012-01-23 17:28:51 -08002339 AppWidgetHostView hostView = info.boundWidget;
2340 int appWidgetId;
2341 if (hostView != null) {
2342 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002343 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002344
2345 // Clear the boundWidget so that it doesn't get destroyed.
2346 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002347 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002348 // In this case, we either need to start an activity to get permission to bind
2349 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002350 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002351 Bundle options = info.bindOptions;
2352
Sunny Goyalffe83f12014-08-14 17:39:34 -07002353 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2354 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002355 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002356 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002357 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002358 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002359 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2360 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2361 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002362 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2363 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002364 // TODO: we need to make sure that this accounts for the options bundle.
2365 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002366 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2367 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002368 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002369 }
2370
Adam Cohendcd297f2013-06-18 13:13:40 -07002371 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002372 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002373 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002374 folderInfo.title = getText(R.string.folder_name);
2375
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002376 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002377 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2378 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002379 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002380
2381 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002382 FolderIcon newFolder =
2383 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002384 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002385 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002386 // Force measure the new folder icon
2387 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2388 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002389 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002390 }
Romain Guycbb89e42009-06-08 15:52:54 -07002391
Winsonc0b52fe2015-09-09 16:38:15 -07002392 /**
2393 * Unbinds the view for the specified item, and removes the item and all its children items
2394 * from the database. For folders, this incl udes the folder contents. AppWidgets will also
2395 * have their widget ids deleted.
2396 */
2397 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
2398 if (itemInfo instanceof ShortcutInfo) {
2399 mWorkspace.removeWorkspaceItem(v);
2400 if (deleteFromDb) {
2401 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2402 }
2403 } else if (itemInfo instanceof FolderInfo) {
2404 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2405 unbindFolder(folderInfo);
2406 mWorkspace.removeWorkspaceItem(v);
2407 if (deleteFromDb) {
2408 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2409 }
2410 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2411 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
2412 unbindAppWidget(widgetInfo, deleteFromDb);
2413 if (deleteFromDb) {
2414 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
2415 }
2416 } else {
2417 return false;
2418 }
2419 return true;
2420 }
2421
2422 /**
2423 * Unbinds any launcher references to the folder.
2424 */
2425 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002426 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002427 }
2428
Winsonc0b52fe2015-09-09 16:38:15 -07002429 /**
2430 * Unbinds any launcher references to the widget and deletes the app widget id.
2431 */
2432 private void unbindAppWidget(final LauncherAppWidgetInfo widgetInfo, boolean deleteAppWidgetId) {
2433 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
2434 if (deleteAppWidgetId && appWidgetHost != null &&
2435 !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
2436 // Deleting an app widget ID is a void call but writes to disk before returning
2437 // to the caller...
2438 new AsyncTask<Void, Void, Void>() {
2439 public Void doInBackground(Void ... args) {
2440 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2441 return null;
2442 }
2443 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2444 }
2445 removeWidgetToAutoAdvance(widgetInfo.hostView);
2446 widgetInfo.hostView = null;
2447 }
2448
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002449 @Override
2450 public boolean dispatchKeyEvent(KeyEvent event) {
2451 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2452 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002453 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002454 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002455 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002456 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002457 dumpState();
2458 return true;
2459 }
2460 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002461 }
2462 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2463 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002464 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002465 return true;
2466 }
2467 }
2468
2469 return super.dispatchKeyEvent(event);
2470 }
2471
Joe Onorato88ec0992009-11-19 13:16:06 -08002472 @Override
2473 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002474 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2475 return;
2476 }
2477
Sunny Goyal45478022015-06-08 16:52:41 -07002478 if (mDragController.isDragging()) {
2479 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002480 return;
2481 }
2482
Winson Chungb745afb2015-03-02 11:51:23 -08002483 if (isAppsViewVisible()) {
2484 showWorkspace(true);
2485 } else if (isWidgetsViewVisible()) {
2486 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002487 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002488 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002489 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002490 Folder openFolder = mWorkspace.getOpenFolder();
2491 if (openFolder.isEditingName()) {
2492 openFolder.dismissEditingName();
2493 } else {
2494 closeFolder();
2495 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002496 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002497 mWorkspace.exitWidgetResizeMode();
2498
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002499 // Back button is a no-op here, but give at least some feedback for the button press
2500 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002501 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002502 }
2503
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002504 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002505 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002506 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002507 @Override
2508 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002509 if (mAppWidgetHost != null) {
2510 mAppWidgetHost.startListening();
2511 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002512 }
2513
2514 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002515 * Launches the intent referred by the clicked shortcut.
2516 *
2517 * @param v The view representing the clicked shortcut.
2518 */
2519 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002520 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2521 // view has detached (it's possible for this to happen if the view is removed mid touch).
2522 if (v.getWindowToken() == null) {
2523 return;
2524 }
2525
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002526 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002527 return;
2528 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002529
Adam Cohen1697b792013-09-17 19:08:21 -07002530 if (v instanceof Workspace) {
2531 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002532 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002533 }
2534 return;
2535 }
2536
2537 if (v instanceof CellLayout) {
2538 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002539 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002540 }
2541 }
2542
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002543 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002544 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002545 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002546 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002547 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002548 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002549 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002550 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002551 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002552 } else if (tag instanceof AppInfo) {
2553 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002554 } else if (tag instanceof LauncherAppWidgetInfo) {
2555 if (v instanceof PendingAppWidgetHostView) {
2556 onClickPendingWidget((PendingAppWidgetHostView) v);
2557 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002558 }
2559 }
2560
Sunny Goyal70660032015-05-14 00:07:08 -07002561 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002562 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002563 return false;
2564 }
2565
Michael Jurkaaf442092010-06-10 17:01:57 -07002566 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002567 * Event handler for the app widget view which has not fully restored.
2568 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002569 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002570 if (mIsSafeModeEnabled) {
2571 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2572 return;
2573 }
2574
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002575 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002576 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002577 int widgetId = info.appWidgetId;
2578 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2579 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002580 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2581 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002582 mPendingAddInfo.copyFrom(info);
2583 mPendingAddWidgetId = widgetId;
2584
Sunny Goyalffe83f12014-08-14 17:39:34 -07002585 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2586 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002587 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002588 } else if (info.installProgress < 0) {
2589 // The install has not been queued
2590 final String packageName = info.providerName.getPackageName();
2591 showBrokenAppInstallDialog(packageName,
2592 new DialogInterface.OnClickListener() {
2593 public void onClick(DialogInterface dialog, int id) {
2594 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2595 }
2596 });
2597 } else {
2598 // Download has started.
2599 final String packageName = info.providerName.getPackageName();
2600 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002601 }
2602 }
2603
2604 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002605 * Event handler for the "grid" button that appears on the home screen, which
2606 * enters all apps mode.
2607 *
2608 * @param v The view that was clicked.
2609 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002610 protected void onClickAllAppsButton(View v) {
2611 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002612 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002613 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002614 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002615
2616 if (mLauncherCallbacks != null) {
2617 mLauncherCallbacks.onClickAllAppsButton(v);
2618 }
Winson Chung76648c52015-07-10 14:33:23 -07002619 }
2620 }
2621
2622 protected void onLongClickAllAppsButton(View v) {
2623 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2624 if (!isAppsViewVisible()) {
2625 showAppsView(true /* animated */, false /* resetListToTop */,
2626 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002627 }
2628 }
2629
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002630 private void showBrokenAppInstallDialog(final String packageName,
2631 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002632 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002633 .setTitle(R.string.abandoned_promises_title)
2634 .setMessage(R.string.abandoned_promise_explanation)
2635 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2636 .setNeutralButton(R.string.abandoned_clean_this,
2637 new DialogInterface.OnClickListener() {
2638 public void onClick(DialogInterface dialog, int id) {
2639 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2640 mWorkspace.removeAbandonedPromise(packageName, user);
2641 }
2642 })
2643 .create().show();
2644 return;
2645 }
2646
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002647 /**
2648 * Event handler for an app shortcut click.
2649 *
2650 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2651 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002652 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002653 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2654 Object tag = v.getTag();
2655 if (!(tag instanceof ShortcutInfo)) {
2656 throw new IllegalArgumentException("Input must be a Shortcut");
2657 }
2658
2659 // Open shortcut
2660 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002661
2662 if (shortcut.isDisabled != 0) {
2663 int error = R.string.activity_not_available;
2664 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2665 error = R.string.safemode_shortcut_error;
2666 }
2667 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2668 return;
2669 }
2670
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002671 final Intent intent = shortcut.intent;
2672
2673 // Check for special shortcuts
2674 if (intent.getComponent() != null) {
2675 final String shortcutClass = intent.getComponent().getClassName();
2676
2677 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2678 MemoryDumpActivity.startDump(this);
2679 return;
2680 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2681 toggleShowWeightWatcher();
2682 return;
2683 }
2684 }
2685
Chris Wren40c5ed32014-06-24 18:24:23 -04002686 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002687 if ((v instanceof BubbleTextView)
2688 && shortcut.isPromise()
2689 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002690 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002691 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002692 new DialogInterface.OnClickListener() {
2693 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002694 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002695 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002696 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002697 return;
2698 }
2699
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002700 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002701 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002702
2703 if (mLauncherCallbacks != null) {
2704 mLauncherCallbacks.onClickAppShortcut(v);
2705 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002706 }
2707
Adam Cohen091440a2015-03-18 14:16:05 -07002708 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002709 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002710 final ShortcutInfo shortcut;
2711 final Intent intent;
2712 if (tag instanceof ShortcutInfo) {
2713 shortcut = (ShortcutInfo) tag;
2714 intent = shortcut.intent;
2715 int[] pos = new int[2];
2716 v.getLocationOnScreen(pos);
2717 intent.setSourceBounds(new Rect(pos[0], pos[1],
2718 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002719
Sunny Goyal508da152014-08-14 10:53:27 -07002720 } else if (tag instanceof AppInfo) {
2721 shortcut = null;
2722 intent = ((AppInfo) tag).intent;
2723 } else {
2724 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2725 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002726
2727 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002728 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002729
2730 if (success && v instanceof BubbleTextView) {
2731 mWaitingForResume = (BubbleTextView) v;
2732 mWaitingForResume.setStayPressed(true);
2733 }
2734 }
2735
2736 /**
2737 * Event handler for a folder icon click.
2738 *
2739 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2740 */
2741 protected void onClickFolderIcon(View v) {
2742 if (LOGD) Log.d(TAG, "onClickFolder");
2743 if (!(v instanceof FolderIcon)){
2744 throw new IllegalArgumentException("Input must be a FolderIcon");
2745 }
2746
Sunny Goyal317698b2015-07-29 11:45:41 -07002747 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002748 FolderIcon folderIcon = (FolderIcon) v;
2749 final FolderInfo info = folderIcon.getFolderInfo();
2750 Folder openFolder = mWorkspace.getFolderForTag(info);
2751
2752 // If the folder info reports that the associated folder is open, then verify that
2753 // it is actually opened. There have been a few instances where this gets out of sync.
2754 if (info.opened && openFolder == null) {
2755 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2756 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2757 info.opened = false;
2758 }
2759
2760 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2761 // Close any open folder
2762 closeFolder();
2763 // Open the requested folder
2764 openFolder(folderIcon);
2765 } else {
2766 // Find the open folder...
2767 int folderScreen;
2768 if (openFolder != null) {
2769 folderScreen = mWorkspace.getPageForView(openFolder);
2770 // .. and close it
2771 closeFolder(openFolder);
2772 if (folderScreen != mWorkspace.getCurrentPage()) {
2773 // Close any folder open on the current screen
2774 closeFolder();
2775 // Pull the folder onto this screen
2776 openFolder(folderIcon);
2777 }
2778 }
2779 }
Adam Cohen9211d422014-10-07 18:14:53 -07002780
2781 if (mLauncherCallbacks != null) {
2782 mLauncherCallbacks.onClickFolderIcon(v);
2783 }
Michael Jurka5130e402011-10-13 04:55:35 -07002784 }
2785
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002786 /**
2787 * Event handler for the (Add) Widgets button that appears after a long press
2788 * on the home screen.
2789 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002790 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002791 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002792 if (mIsSafeModeEnabled) {
2793 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2794 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002795 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002796 if (mLauncherCallbacks != null) {
2797 mLauncherCallbacks.onClickAddWidgetButton(view);
2798 }
Adam Cohen9211d422014-10-07 18:14:53 -07002799 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002800 }
2801
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002802 /**
2803 * Event handler for the wallpaper picker button that appears after a long press
2804 * on the home screen.
2805 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002806 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002807 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002808 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2809 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002810
2811 if (mLauncherCallbacks != null) {
2812 mLauncherCallbacks.onClickWallpaperPicker(v);
2813 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002814 }
2815
2816 /**
2817 * Event handler for a click on the settings button that appears after a long press
2818 * on the home screen.
2819 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002820 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002821 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002822 if (mLauncherCallbacks != null) {
2823 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002824 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002825 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002826 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002827 }
2828
Adam Cohen61f560d2013-09-30 15:58:20 -07002829 public View.OnTouchListener getHapticFeedbackTouchListener() {
2830 if (mHapticFeedbackTouchListener == null) {
2831 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002832 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002833 @Override
2834 public boolean onTouch(View v, MotionEvent event) {
2835 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2836 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2837 }
2838 return false;
2839 }
2840 };
2841 }
2842 return mHapticFeedbackTouchListener;
2843 }
2844
Adam Cohen9211d422014-10-07 18:14:53 -07002845 public void onDragStarted(View view) {
2846 if (isOnCustomContent()) {
2847 // Custom content screen doesn't participate in drag and drop. If on custom
2848 // content screen, move to default.
2849 moveWorkspaceToDefaultScreen();
2850 }
2851
2852 if (mLauncherCallbacks != null) {
2853 mLauncherCallbacks.onDragStarted(view);
2854 }
2855 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002856
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002857 /**
2858 * Called when the user stops interacting with the launcher.
2859 * This implies that the user is now on the homescreen and is not doing housekeeping.
2860 */
Adam Cohen9211d422014-10-07 18:14:53 -07002861 protected void onInteractionEnd() {
2862 if (mLauncherCallbacks != null) {
2863 mLauncherCallbacks.onInteractionEnd();
2864 }
2865 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002866
2867 /**
2868 * Called when the user starts interacting with the launcher.
2869 * The possible interactions are:
2870 * - open all apps
2871 * - reorder an app shortcut, or a widget
2872 * - open the overview mode.
2873 * This is a good time to stop doing things that only make sense
2874 * when the user is on the homescreen and not doing housekeeping.
2875 */
Adam Cohen9211d422014-10-07 18:14:53 -07002876 protected void onInteractionBegin() {
2877 if (mLauncherCallbacks != null) {
2878 mLauncherCallbacks.onInteractionBegin();
2879 }
2880 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002881
Winson Chungcd99cd32015-04-29 11:03:24 -07002882 /** Updates the interaction state. */
2883 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002884 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002885 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002886 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2887 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002888 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002889 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002890 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002891 onInteractionEnd();
2892 }
2893 }
2894
Kenny Guyf07af7b2014-07-31 11:39:16 +01002895 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002896 try {
2897 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002898 launcherApps.showAppDetailsForProfile(componentName, user);
2899 } catch (SecurityException e) {
2900 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2901 Log.e(TAG, "Launcher does not have permission to launch settings");
2902 } catch (ActivityNotFoundException e) {
2903 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2904 Log.e(TAG, "Unable to launch settings");
2905 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002906 }
2907
Michael Jurka1e2f4652013-07-08 18:03:46 -07002908 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002909 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2910 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002911 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002912 // System applications cannot be installed. For now, show a toast explaining that.
2913 // We may give them the option of disabling apps this way.
2914 int messageId = R.string.uninstall_system_app_text;
2915 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002916 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002917 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002918 String packageName = componentName.getPackageName();
2919 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002920 Intent intent = new Intent(
2921 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002922 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2923 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002924 if (user != null) {
2925 user.addToIntent(intent, Intent.EXTRA_USER);
2926 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002927 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002928 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002929 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002930 }
2931
Winson Chung8f1eff72015-05-28 17:33:40 -07002932 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002933 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002934 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002935 // Only launch using the new animation if the shortcut has not opted out (this is a
2936 // private contract between launcher and may be ignored in the future).
2937 boolean useLaunchAnimation = (v != null) &&
2938 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002939 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2940 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002941
Kenny Guy1317e2d2014-05-08 18:52:50 +01002942 UserHandleCompat user = null;
2943 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2944 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2945 user = userManager.getUserForSerialNumber(serialNumber);
2946 }
2947
2948 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002949 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002950 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002951 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002952 int left = 0, top = 0;
2953 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2954 if (v instanceof TextView) {
2955 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002956 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2957 if (icon != null) {
2958 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002959 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002960 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002961 width = bounds.width();
2962 height = bounds.height();
2963 }
2964 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002965 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2966 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002967 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002968 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002969 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002970 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002971 // On L devices, we use the device default slide-up transition.
2972 // On L MR1 devices, we a custom version of the slide-up transition which
2973 // doesn't have the delay present in the device default.
2974 opts = ActivityOptions.makeCustomAnimation(this,
2975 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002976 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002977 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002978 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002979
2980 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2981 // Could be launching some bookkeeping activity
2982 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002983 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002984 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002985 launcherApps.startActivityForProfile(intent.getComponent(), user,
2986 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002987 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002988 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002989 } catch (SecurityException e) {
2990 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002991 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002992 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002993 "or use the exported attribute for this activity. "
2994 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002995 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002996 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002997 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002998
Winson Chungbedf9232015-07-10 12:38:30 -07002999 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07003000 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003001 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
3002 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
3003 return false;
3004 }
Michael Jurka86a720e2012-05-09 11:23:23 -07003005 try {
3006 success = startActivity(v, intent, tag);
3007 } catch (ActivityNotFoundException e) {
3008 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
3009 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
3010 }
3011 return success;
3012 }
3013
Adam Cohen268c4752012-06-06 17:47:33 -07003014 /**
3015 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
3016 * in the DragLayer in the exact absolute location of the original FolderIcon.
3017 */
3018 private void copyFolderIconToImage(FolderIcon fi) {
3019 final int width = fi.getMeasuredWidth();
3020 final int height = fi.getMeasuredHeight();
3021
3022 // Lazy load ImageView, Bitmap and Canvas
3023 if (mFolderIconImageView == null) {
3024 mFolderIconImageView = new ImageView(this);
3025 }
3026 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3027 mFolderIconBitmap.getHeight() != height) {
3028 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3029 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3030 }
3031
3032 DragLayer.LayoutParams lp;
3033 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3034 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3035 } else {
3036 lp = new DragLayer.LayoutParams(width, height);
3037 }
3038
Adam Cohen307fe232012-08-16 17:55:58 -07003039 // The layout from which the folder is being opened may be scaled, adjust the starting
3040 // view size by this scale factor.
3041 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003042 lp.customPosition = true;
3043 lp.x = mRectForFolderAnimation.left;
3044 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003045 lp.width = (int) (scale * width);
3046 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003047
3048 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3049 fi.draw(mFolderIconCanvas);
3050 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003051 if (fi.getFolder() != null) {
3052 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3053 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003054 }
Adam Cohen268c4752012-06-06 17:47:33 -07003055 // Just in case this image view is still in the drag layer from a previous animation,
3056 // we remove it and re-add it.
3057 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3058 mDragLayer.removeView(mFolderIconImageView);
3059 }
3060 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003061 if (fi.getFolder() != null) {
3062 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003063 }
Adam Cohen268c4752012-06-06 17:47:33 -07003064 }
3065
Adam Cohen2801caf2011-05-13 20:57:39 -07003066 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003067 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003068 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3069 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3070 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3071
Adam Cohenc51934b2011-07-26 21:07:43 -07003072 FolderInfo info = (FolderInfo) fi.getTag();
3073 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3074 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003075 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3076 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003077 }
3078
Adam Cohen268c4752012-06-06 17:47:33 -07003079 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3080 copyFolderIconToImage(fi);
3081 fi.setVisibility(View.INVISIBLE);
3082
Michael Jurka2ecf9952012-06-18 12:52:28 -07003083 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003084 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003085 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003086 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3087 }
3088 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003089 oa.start();
3090 }
3091
Adam Cohen268c4752012-06-06 17:47:33 -07003092 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003093 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003094 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3095 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3096 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3097
Adam Cohen268c4752012-06-06 17:47:33 -07003098 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003099
Adam Cohen268c4752012-06-06 17:47:33 -07003100 // We remove and re-draw the FolderIcon in-case it has changed
3101 mDragLayer.removeView(mFolderIconImageView);
3102 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003103 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003104 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003105 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003106 oa.addListener(new AnimatorListenerAdapter() {
3107 @Override
3108 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003109 if (cl != null) {
3110 cl.clearFolderLeaveBehind();
3111 // Remove the ImageView copy of the FolderIcon and make the original visible.
3112 mDragLayer.removeView(mFolderIconImageView);
3113 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003114 }
3115 }
3116 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003117 oa.start();
3118 }
3119
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003120 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003121 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003122 * is animated relative to the specified View. If the View is null, no animation
3123 * is played.
3124 *
3125 * @param folderInfo The FolderInfo describing the folder to open.
3126 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003127 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003128 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003129 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3130 if (openFolder != null && openFolder != folder) {
3131 // Close any open folder before opening a folder.
3132 closeFolder();
3133 }
3134
Adam Cohena9cf38f2011-05-02 15:36:58 -07003135 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003136
Adam Cohena9cf38f2011-05-02 15:36:58 -07003137 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003138
Sunny Goyalf4066152015-04-15 09:42:19 -07003139 // While the folder is open, the position of the icon cannot change.
3140 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3141
Adam Cohen4554ee12011-08-03 16:13:21 -07003142 // Just verify that the folder hasn't already been added to the DragLayer.
3143 // There was a one-off crash where the folder had a parent already.
3144 if (folder.getParent() == null) {
3145 mDragLayer.addView(folder);
3146 mDragController.addDropTarget((DropTarget) folder);
3147 } else {
3148 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3149 folder.getParent() + ").");
3150 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003151 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003152 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003153
3154 // Notify the accessibility manager that this folder "window" has appeared and occluded
3155 // the workspace items
3156 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3157 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003158 }
3159
3160 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003161 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003162 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003163 if (folder.isEditingName()) {
3164 folder.dismissEditingName();
3165 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003166 closeFolder(folder);
3167 }
3168 }
3169
Sunny Goyal83a8f042015-05-19 12:52:12 -07003170 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003171 folder.getInfo().opened = false;
3172
3173 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3174 if (parent != null) {
3175 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3176 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003177 if (fi != null) {
3178 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3179 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003180 }
3181 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003182
3183 // Notify the accessibility manager that this folder "window" has disappeard and no
3184 // longer occludeds the workspace items
3185 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003186 }
3187
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003188 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003189 if (!isDraggingEnabled()) return false;
3190 if (isWorkspaceLocked()) return false;
3191 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003192
Winson Chung76648c52015-07-10 14:33:23 -07003193 if (v == mAllAppsButton) {
3194 onLongClickAllAppsButton(v);
3195 return true;
3196 }
3197
Adam Cohen1697b792013-09-17 19:08:21 -07003198 if (v instanceof Workspace) {
3199 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003200 if (!mWorkspace.isTouchActive()) {
3201 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003202 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3203 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3204 return true;
3205 } else {
3206 return false;
3207 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003208 } else {
3209 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003210 }
Adam Cohen1697b792013-09-17 19:08:21 -07003211 }
3212
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003213 CellLayout.CellInfo longClickCellInfo = null;
3214 View itemUnderLongClick = null;
3215 if (v.getTag() instanceof ItemInfo) {
3216 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003217 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003218 itemUnderLongClick = longClickCellInfo.cell;
3219 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003220 }
3221
Winson Chung3d503fb2011-07-13 17:25:49 -07003222 // The hotseat touch handling does not go through Workspace, and we always allow long press
3223 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003224 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003225 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003226 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003227 // User long pressed on empty space
3228 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3229 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003230 if (mWorkspace.isInOverviewMode()) {
3231 mWorkspace.startReordering(v);
3232 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003233 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003234 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003235 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003236 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3237 mHotseat.getOrderInHotseat(
3238 longClickCellInfo.cellX,
3239 longClickCellInfo.cellY));
3240 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003241 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003242 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003243 }
3244 }
3245 }
3246 return true;
3247 }
3248
Winson Chung3d503fb2011-07-13 17:25:49 -07003249 boolean isHotseatLayout(View layout) {
3250 return mHotseat != null && layout != null &&
3251 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3252 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003253
Winson Chung3d503fb2011-07-13 17:25:49 -07003254 /**
3255 * Returns the CellLayout of the specified container at the specified screen.
3256 */
Sunny Goyal92820592015-03-02 11:31:35 -08003257 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003258 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3259 if (mHotseat != null) {
3260 return mHotseat.getLayout();
3261 } else {
3262 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003263 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003264 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003265 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003266 }
3267 }
3268
Winson Chungb745afb2015-03-02 11:51:23 -08003269 /**
3270 * For overridden classes.
3271 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003272 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003273 return isAppsViewVisible();
3274 }
3275
3276 public boolean isAppsViewVisible() {
3277 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3278 }
3279
3280 public boolean isWidgetsViewVisible() {
3281 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003282 }
3283
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003284 private void setWorkspaceBackground(int background) {
3285 switch (background) {
3286 case WORKSPACE_BACKGROUND_TRANSPARENT:
3287 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3288 break;
3289 case WORKSPACE_BACKGROUND_BLACK:
3290 getWindow().setBackgroundDrawable(null);
3291 break;
3292 default:
3293 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3294 }
Craig Mautner360310b2012-10-26 15:13:08 -07003295 }
3296
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003297 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003298 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3299 int curflags = getWindow().getAttributes().flags
3300 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3301 if (wpflags != curflags) {
3302 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3303 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003304 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003305 }
3306
Michael Jurkae326f182011-11-21 14:05:46 -08003307 @Override
3308 public void onTrimMemory(int level) {
3309 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003310 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3311 // The widget preview db can result in holding onto over
3312 // 3MB of memory for caching which isn't necessary.
3313 SQLiteDatabase.releaseMemory();
3314
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003315 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003316 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003317 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003318 if (mLauncherCallbacks != null) {
3319 mLauncherCallbacks.onTrimMemory(level);
3320 }
Michael Jurkae326f182011-11-21 14:05:46 -08003321 }
3322
Winson5c6bdbb2015-09-03 11:36:19 -07003323 /**
3324 * @return whether or not the Launcher state changed.
3325 */
3326 public boolean showWorkspace(boolean animated) {
3327 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003328 }
3329
Winson5c6bdbb2015-09-03 11:36:19 -07003330 /**
3331 * @return whether or not the Launcher state changed.
3332 */
3333 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
3334 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003335 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003336 }
3337
Winson5c6bdbb2015-09-03 11:36:19 -07003338 /**
3339 * @return whether or not the Launcher state changed.
3340 */
3341 protected boolean showWorkspace(int snapToPage, boolean animated) {
3342 return showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003343 }
3344
Winson5c6bdbb2015-09-03 11:36:19 -07003345 /**
3346 * @return whether or not the Launcher state changed.
3347 */
3348 boolean showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003349 boolean changed = mState != State.WORKSPACE ||
3350 mWorkspace.getState() != Workspace.State.NORMAL;
3351 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003352 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003353 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3354 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003355
Michael Jurkab3e22d92011-10-31 15:58:33 -07003356 // Set focus to the AppsCustomize button
3357 if (mAllAppsButton != null) {
3358 mAllAppsButton.requestFocus();
3359 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003360 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003361
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003362 // Change the state *after* we've called all the transition code
3363 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003364
Winson Chung5fb63472011-02-02 17:03:37 -08003365 // Resume the auto-advance of widgets
3366 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003367 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003368
Winson Chung0f785722015-04-08 10:27:49 -07003369 if (changed) {
3370 // Send an accessibility event to announce the context change
3371 getWindow().getDecorView()
3372 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003373 }
Winson5c6bdbb2015-09-03 11:36:19 -07003374 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003375 }
3376
Adam Cohened307df2013-10-02 09:37:31 -07003377 void showOverviewMode(boolean animated) {
3378 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003379 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3380 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003381 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3382 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003383 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003384 }
3385
Winson Chungb745afb2015-03-02 11:51:23 -08003386 /**
3387 * Shows the apps view.
3388 */
Winson Chung76648c52015-07-10 14:33:23 -07003389 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3390 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003391 if (resetListToTop) {
3392 mAppsView.scrollToTop();
3393 }
Winson Chung4ac30062015-05-08 17:34:17 -07003394 if (updatePredictedApps) {
3395 tryAndUpdatePredictedApps();
3396 }
Winson Chung76648c52015-07-10 14:33:23 -07003397 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003398 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003399
Winson Chungb745afb2015-03-02 11:51:23 -08003400 /**
3401 * Shows the widgets view.
3402 */
3403 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003404 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003405 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003406 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003407 }
Winson Chung76648c52015-07-10 14:33:23 -07003408 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003409
3410 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003411 @Override
3412 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003413 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003414 }
3415 });
Winson Chungb745afb2015-03-02 11:51:23 -08003416 }
3417
3418 /**
3419 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003420 *
3421 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003422 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003423 // TODO: calling method should use the return value so that when {@code false} is returned
3424 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003425 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003426 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3427 mState != State.WIDGETS_SPRING_LOADED) {
3428 return false;
3429 }
3430 if (toState != State.APPS && toState != State.WIDGETS) {
3431 return false;
3432 }
Winson Chungb745afb2015-03-02 11:51:23 -08003433
3434 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003435 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3436 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003437 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003438 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003439 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003440
Michael Jurkab3e22d92011-10-31 15:58:33 -07003441 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003442 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003443
3444 // Pause the auto-advance of widgets until we are out of AllApps
3445 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003446 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003447 closeFolder();
3448
3449 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003450 getWindow().getDecorView()
3451 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003452 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003453 }
3454
Winson Chungcd99cd32015-04-29 11:03:24 -07003455 /**
3456 * Updates the workspace and interaction state on state change, and return the animation to this
3457 * new state.
3458 */
3459 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003460 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003461 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003462 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003463 updateInteraction(fromState, toState);
3464 return anim;
3465 }
3466
Hyunyoung Song3f471442015-04-08 19:01:34 -07003467 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003468 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003469 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3470 mState == State.WIDGETS_SPRING_LOADED) {
3471 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003472 }
Winson Chungb745afb2015-03-02 11:51:23 -08003473
Winson Chung006ee262015-08-03 14:40:11 -07003474 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3475 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003476 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3477 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003478 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003479 }
Adam Cohen7777d962011-08-18 18:58:38 -07003480
Hyunyoung Song3f471442015-04-08 19:01:34 -07003481 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003482 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003483 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003484
Winson Chunge7a03942011-08-05 15:05:12 -07003485 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003486 @Override
3487 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003488 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003489 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3490 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003491 // Before we show workspace, hide all apps again because
3492 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3493 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003494 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003495 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003496 } else {
3497 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003498 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003499 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003500 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003501 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003502
Michael Jurkad3ef3062010-11-23 16:23:58 -08003503 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003504 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003505 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003506 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003507 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003508 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003509 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003510 }
3511
Winson Chung4ac30062015-05-08 17:34:17 -07003512 /**
3513 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3514 * resumed.
3515 */
3516 private void tryAndUpdatePredictedApps() {
3517 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003518 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003519 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003520 mAppsView.setPredictedApps(apps);
3521 }
3522 }
3523 }
3524
Michael Jurkab3e22d92011-10-31 15:58:33 -07003525 void lockAllApps() {
3526 // TODO
3527 }
3528
3529 void unlockAllApps() {
3530 // TODO
3531 }
3532
Sunny Goyal594d76d2014-11-06 10:12:54 -08003533 protected void disableVoiceButtonProxy(boolean disable) {
3534 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003535 }
3536
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003537 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003538 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3539 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003540 }
3541
Adam Cohen24ce0b32014-01-14 16:18:14 -08003542 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003543 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3544 if (searchProvider == null) {
3545 return null;
3546 }
3547
3548 Bundle opts = new Bundle();
3549 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003550 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003551
3552 SharedPreferences sp = getSharedPreferences(
3553 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3554 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003555 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003556 if (!searchProvider.provider.flattenToString().equals(
3557 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003558 || (widgetInfo == null)
3559 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003560 // A valid widget is not already bound.
3561 if (widgetId > -1) {
3562 mAppWidgetHost.deleteAppWidgetId(widgetId);
3563 widgetId = -1;
3564 }
3565
3566 // Try to bind a new widget
3567 widgetId = mAppWidgetHost.allocateAppWidgetId();
3568
3569 if (!AppWidgetManagerCompat.getInstance(this)
3570 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3571 mAppWidgetHost.deleteAppWidgetId(widgetId);
3572 widgetId = -1;
3573 }
3574
3575 sp.edit()
3576 .putInt(QSB_WIDGET_ID, widgetId)
3577 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3578 .commit();
3579 }
3580
Sunny Goyal8d595092015-07-06 12:22:14 -07003581 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003582 if (widgetId != -1) {
3583 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003584 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003585 mQsb.updateAppWidgetOptions(opts);
3586 mQsb.setPadding(0, 0, 0, 0);
3587 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003588 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003589 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003590 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003591 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003592 }
3593
Sunny Goyal22235bc2015-04-03 09:23:43 -07003594 private void reinflateQSBIfNecessary() {
3595 if (mQsb instanceof LauncherAppWidgetHostView &&
3596 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3597 mSearchDropTargetBar.removeView(mQsb);
3598 mQsb = null;
3599 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3600 }
3601 }
3602
Michael Jurkad7c28052012-04-27 15:43:36 -07003603 @Override
3604 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003605 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003606 final List<CharSequence> text = event.getText();
3607 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003608 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003609 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003610 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003611 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003612 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003613 } else if (mWorkspace != null) {
3614 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003615 } else {
3616 text.add(getString(R.string.all_apps_home_button_label));
3617 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003618 return result;
3619 }
3620
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003621 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003622 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003623 */
Adam Cohen091440a2015-03-18 14:16:05 -07003624 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003625 @Override
3626 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003627 closeSystemDialogs();
3628 }
3629 }
3630
3631 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003632 * If the activity is currently paused, signal that we need to run the passed Runnable
3633 * in onResume.
3634 *
3635 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003636 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3637 * wrong when we're not running, and if the activity comes back to what the configuration was
3638 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003639 *
3640 * Implementation of the method from LauncherModel.Callbacks.
3641 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003642 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003643 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003644 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003645 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003646 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003647 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003648 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003649 }
3650 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003651 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003652 return true;
3653 } else {
3654 return false;
3655 }
3656 }
3657
Michael Jurkac402cd92013-05-20 15:49:32 +02003658 private boolean waitUntilResume(Runnable run) {
3659 return waitUntilResume(run, false);
3660 }
3661
Michael Jurka1e2f4652013-07-08 18:03:46 -07003662 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003663 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003664 }
3665
Michael Jurka7607c2f2013-04-03 14:33:19 -07003666 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003667 * If the activity is currently paused, signal that we need to re-run the loader
3668 * in onResume.
3669 *
3670 * This needs to be called from incoming places where resources might have been loaded
3671 * while we are paused. That is becaues the Configuration might be wrong
3672 * when we're not running, and if it comes back to what it was when we
3673 * were paused, we are not restarted.
3674 *
3675 * Implementation of the method from LauncherModel.Callbacks.
3676 *
3677 * @return true if we are currently paused. The caller might be able to
3678 * skip some work in that case since we will come back again.
3679 */
3680 public boolean setLoadOnResume() {
3681 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003682 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003683 mOnResumeNeedsLoad = true;
3684 return true;
3685 } else {
3686 return false;
3687 }
3688 }
3689
3690 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003691 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003692 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003693 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003694 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003695 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003696 } else {
3697 return SCREEN_COUNT / 2;
3698 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003699 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003700
Joe Onorato9c1289c2009-08-17 11:03:03 -04003701 /**
3702 * Refreshes the shortcuts shown on the workspace.
3703 *
3704 * Implementation of the method from LauncherModel.Callbacks.
3705 */
3706 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003707 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003708
Michael Jurka7607c2f2013-04-03 14:33:19 -07003709 // If we're starting binding all over again, clear any bind calls we'd postponed in
3710 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3711 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003712 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003713
Winson Chungd64d1762013-08-20 14:37:16 -07003714 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003715 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003716 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003717
Michael Jurka05bf644e2011-11-30 20:28:53 -08003718 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003719 if (mHotseat != null) {
3720 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003721 }
3722 }
3723
Adam Cohendcd297f2013-06-18 13:13:40 -07003724 @Override
3725 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003726 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003727
Adam Cohen5084cba2013-09-03 12:01:16 -07003728 // If there are no screens, we need to have an empty screen
3729 if (orderedScreenIds.size() == 0) {
3730 mWorkspace.addExtraEmptyScreen();
3731 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003732
3733 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003734 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003735 if (hasCustomContentToLeft()) {
3736 mWorkspace.createCustomContentContainer();
3737 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003738 }
Winson Chung64359a52013-07-08 17:17:08 -07003739 }
3740
3741 @Override
3742 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003743 int count = orderedScreenIds.size();
3744 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003745 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003746 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003747 }
3748
Adam Cohen39a06042013-07-19 14:30:12 -07003749 private boolean shouldShowWeightWatcher() {
3750 String spKey = LauncherAppState.getSharedPreferencesKey();
3751 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b802013-08-15 15:44:26 -07003752 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003753
3754 return show;
3755 }
3756
3757 private void toggleShowWeightWatcher() {
3758 String spKey = LauncherAppState.getSharedPreferencesKey();
3759 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3760 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3761
3762 show = !show;
3763
3764 SharedPreferences.Editor editor = sp.edit();
3765 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3766 editor.commit();
3767
3768 if (mWeightWatcher != null) {
3769 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3770 }
3771 }
3772
Winson Chungd64d1762013-08-20 14:37:16 -07003773 public void bindAppsAdded(final ArrayList<Long> newScreens,
3774 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003775 final ArrayList<ItemInfo> addAnimated,
3776 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003777 Runnable r = new Runnable() {
3778 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003779 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003780 }
3781 };
3782 if (waitUntilResume(r)) {
3783 return;
3784 }
3785
Winson Chungd64d1762013-08-20 14:37:16 -07003786 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003787 if (newScreens != null) {
3788 bindAddScreens(newScreens);
3789 }
Winson Chungd64d1762013-08-20 14:37:16 -07003790
3791 // We add the items without animation on non-visible pages, and with
3792 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003793 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003794 bindItems(addNotAnimated, 0,
3795 addNotAnimated.size(), false);
3796 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003797 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003798 bindItems(addAnimated, 0,
3799 addAnimated.size(), true);
3800 }
Winson Chungc58497e2013-09-03 17:48:37 -07003801
Winson Chung87412982013-10-03 18:34:14 -07003802 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003803 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003804
Winson Chungb745afb2015-03-02 11:51:23 -08003805 if (addedApps != null && mAppsView != null) {
3806 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003807 }
Winson Chungd64d1762013-08-20 14:37:16 -07003808 }
3809
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003810 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003811 * Bind the items start-end from the list.
3812 *
3813 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003814 */
Winson Chung64359a52013-07-08 17:17:08 -07003815 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3816 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003817 Runnable r = new Runnable() {
3818 public void run() {
3819 bindItems(shortcuts, start, end, forceAnimateIcons);
3820 }
3821 };
3822 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003823 return;
3824 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003825
Winson Chungf0c6ae02012-03-21 16:10:31 -07003826 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003827 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3828 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003829 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003830 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003831 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003832 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003833 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003834
3835 // Short circuit if we are loading dock items for a configuration which has no dock
3836 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3837 mHotseat == null) {
3838 continue;
3839 }
3840
Sunny Goyal639e9062015-08-19 19:17:06 -07003841 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003842 switch (item.itemType) {
3843 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3844 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003845 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003846 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003847
Winson Chung64359a52013-07-08 17:17:08 -07003848 /*
3849 * TODO: FIX collision case
3850 */
Winson Chungce376632013-07-11 16:12:41 -07003851 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3852 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3853 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003854 View v = cl.getChildAt(item.cellX, item.cellY);
3855 Object tag = v.getTag();
3856 String desc = "Collision while binding workspace item: " + item
3857 + ". Collides with " + tag;
3858 if (LauncherAppState.isDogfoodBuild()) {
3859 throw (new RuntimeException(desc));
3860 } else {
3861 Log.d(TAG, desc);
3862 }
Winson Chungce376632013-07-11 16:12:41 -07003863 }
Winson Chung64359a52013-07-08 17:17:08 -07003864 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003865 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003866 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003867 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003868 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003869 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003870 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003871 default:
3872 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003873 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003874
3875 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3876 item.cellY, 1, 1);
3877 if (animateIcons) {
3878 // Animate all the applications up now
3879 view.setAlpha(0f);
3880 view.setScaleX(0f);
3881 view.setScaleY(0f);
3882 bounceAnims.add(createNewAppBounceAnimation(view, i));
3883 newShortcutsScreenId = item.screenId;
3884 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003885 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003886
Winson Chung997a9232013-07-24 15:33:46 -07003887 if (animateIcons) {
3888 // Animate to the correct page
3889 if (newShortcutsScreenId > -1) {
3890 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003891 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003892 final Runnable startBounceAnimRunnable = new Runnable() {
3893 public void run() {
3894 anim.playTogether(bounceAnims);
3895 anim.start();
3896 }
3897 };
Winson Chung997a9232013-07-24 15:33:46 -07003898 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003899 // We post the animation slightly delayed to prevent slowdowns
3900 // when we are loading right after we return to launcher.
3901 mWorkspace.postDelayed(new Runnable() {
3902 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003903 if (mWorkspace != null) {
3904 mWorkspace.snapToPage(newScreenIndex);
3905 mWorkspace.postDelayed(startBounceAnimRunnable,
3906 NEW_APPS_ANIMATION_DELAY);
3907 }
Winson Chung94d67682013-09-25 16:29:40 -07003908 }
3909 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003910 } else {
3911 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003912 }
3913 }
Winson Chung64359a52013-07-08 17:17:08 -07003914 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003915 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003916 }
3917
Joe Onorato9c1289c2009-08-17 11:03:03 -04003918 /**
3919 * Implementation of the method from LauncherModel.Callbacks.
3920 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003921 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003922 Runnable r = new Runnable() {
3923 public void run() {
3924 bindFolders(folders);
3925 }
3926 };
3927 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003928 return;
3929 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003930 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003931 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003932
3933 /**
3934 * Add the views for a widget to the workspace.
3935 *
3936 * Implementation of the method from LauncherModel.Callbacks.
3937 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003938 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003939 Runnable r = new Runnable() {
3940 public void run() {
3941 bindAppWidget(item);
3942 }
3943 };
3944 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003945 return;
3946 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003947
Daniel Sandler843e8602010-06-07 14:59:01 -04003948 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3949 if (DEBUG_WIDGETS) {
3950 Log.d(TAG, "bindAppWidget: " + item);
3951 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003952 final Workspace workspace = mWorkspace;
3953
Adam Cohen59400422014-03-05 18:07:04 -08003954 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003955 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003956
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003957 if (!mIsSafeModeEnabled
3958 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003959 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
3960
Sunny Goyalff572272014-07-23 13:58:07 -07003961 if (appWidgetInfo == null) {
3962 if (DEBUG_WIDGETS) {
3963 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3964 + " belongs to component " + item.providerName
3965 + ", as the povider is null");
3966 }
3967 LauncherModel.deleteItemFromDatabase(this, item);
3968 return;
3969 }
Sunny Goyalff572272014-07-23 13:58:07 -07003970
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003971 // If we do not have a valid id, try to bind an id.
3972 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
3973 // Note: This assumes that the id remap broadcast is received before this step.
3974 // If that is not the case, the id remap will be ignored and user may see the
3975 // click to setup view.
3976 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
3977 pendingInfo.spanX = item.spanX;
3978 pendingInfo.spanY = item.spanY;
3979 pendingInfo.minSpanX = item.minSpanX;
3980 pendingInfo.minSpanY = item.minSpanY;
3981 Bundle options = null;
3982 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003983
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003984 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
3985 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3986 newWidgetId, appWidgetInfo, options);
3987
3988 // TODO consider showing a permission dialog when the widget is clicked.
3989 if (!success) {
3990 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3991 if (DEBUG_WIDGETS) {
3992 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3993 + " belongs to component " + item.providerName
3994 + ", as the launcher is unable to bing a new widget id");
3995 }
3996 LauncherModel.deleteItemFromDatabase(this, item);
3997 return;
Sunny Goyalff572272014-07-23 13:58:07 -07003998 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003999
4000 item.appWidgetId = newWidgetId;
4001
4002 // If the widget has a configure activity, it is still needs to set it up, otherwise
4003 // the widget is ready to go.
4004 item.restoreStatus = (appWidgetInfo.configure == null)
4005 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4006 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4007
4008 LauncherModel.updateItemInDatabase(this, item);
4009 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
4010 && (appWidgetInfo.configure == null)) {
4011 // If the ID is already valid, verify if we need to configure or not.
4012 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4013 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07004014 }
Sunny Goyalff572272014-07-23 13:58:07 -07004015 }
4016
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004017 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004018 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004019 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004020 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4021 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004022 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004023
Sunny Goyal651077b2014-06-30 14:15:31 -07004024 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004025 item.minSpanX = appWidgetInfo.minSpanX;
4026 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07004027 } else {
4028 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004029 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4030 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004031 view.updateIcon(mIconCache);
4032 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004033 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004034 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004035 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004036
Joe Onorato9c1289c2009-08-17 11:03:03 -04004037 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004038 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004039
Adam Cohendcd297f2013-06-18 13:13:40 -07004040 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004041 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08004042 if (!item.isCustomWidget()) {
4043 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4044 }
Adam Cohended9f8d2010-11-03 13:25:16 -07004045
Joe Onorato9c1289c2009-08-17 11:03:03 -04004046 workspace.requestLayout();
4047
Daniel Sandler843e8602010-06-07 14:59:01 -04004048 if (DEBUG_WIDGETS) {
4049 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4050 + (SystemClock.uptimeMillis()-start) + "ms");
4051 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004052 }
4053
Sunny Goyalff572272014-07-23 13:58:07 -07004054 /**
4055 * Restores a pending widget.
4056 *
4057 * @param appWidgetId The app widget id
4058 * @param cellInfo The position on screen where to create the widget.
4059 */
4060 private void completeRestoreAppWidget(final int appWidgetId) {
4061 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4062 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4063 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4064 return;
4065 }
4066
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004067 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004068 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4069
4070 mWorkspace.reinflateWidgetsIfNecessary();
4071 LauncherModel.updateItemInDatabase(this, info);
4072 }
4073
Adam Cohen1462de32012-07-24 22:34:36 -07004074 public void onPageBoundSynchronously(int page) {
4075 mSynchronouslyBoundPages.add(page);
4076 }
4077
Joe Onorato9c1289c2009-08-17 11:03:03 -04004078 /**
4079 * Callback saying that there aren't any more items to bind.
4080 *
4081 * Implementation of the method from LauncherModel.Callbacks.
4082 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004083 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004084 Runnable r = new Runnable() {
4085 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004086 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004087 }
4088 };
4089 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004090 return;
4091 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004092 if (mSavedState != null) {
4093 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004094 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004095 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004096 mSavedState = null;
4097 }
4098
Adam Cohen1462de32012-07-24 22:34:36 -07004099 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004100
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004101 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004102 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004103
4104 // If we received the result of any pending adds while the loader was running (e.g. the
4105 // widget configuration forced an orientation change), process them now.
4106 if (sPendingAddItem != null) {
4107 final long screenId = completeAdd(sPendingAddItem);
4108
4109 // TODO: this moves the user to the page where the pending item was added. Ideally,
4110 // the screen would be guaranteed to exist after bind, and the page would be set through
4111 // the workspace restore process.
4112 mWorkspace.post(new Runnable() {
4113 @Override
4114 public void run() {
4115 mWorkspace.snapToScreenId(screenId);
4116 }
4117 });
4118 sPendingAddItem = null;
4119 }
4120
Sunny Goyal756adbc2015-04-16 15:20:51 -07004121 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004122
4123 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004124 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004125 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004126 }
4127
Adam Cohen3ed316a2014-07-23 18:21:20 -07004128 private void sendLoadingCompleteBroadcastIfNecessary() {
4129 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4130 String permission =
4131 getResources().getString(R.string.receive_first_load_broadcast_permission);
4132 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4133 sendBroadcast(intent, permission);
4134 SharedPreferences.Editor editor = mSharedPrefs.edit();
4135 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4136 editor.apply();
4137 }
4138 }
4139
Winson Chunga0b7e862013-09-05 16:03:15 -07004140 public boolean isAllAppsButtonRank(int rank) {
4141 if (mHotseat != null) {
4142 return mHotseat.isAllAppsButtonRank(rank);
4143 }
4144 return false;
4145 }
4146
Winson Chunga2413752012-04-03 14:22:34 -07004147 private boolean canRunNewAppsAnimation() {
4148 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004149 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4150 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004151 }
4152
Winson Chungc9168342013-06-26 14:54:55 -07004153 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4154 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4155 PropertyValuesHolder.ofFloat("alpha", 1f),
4156 PropertyValuesHolder.ofFloat("scaleX", 1f),
4157 PropertyValuesHolder.ofFloat("scaleY", 1f));
4158 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4159 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004160 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004161 return bounceAnim;
4162 }
4163
Adam Cohen27772732013-11-11 14:00:56 +00004164 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004165 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004166 }
4167
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004168 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004169 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004170 }
4171
Winson Chung88fa7412015-08-03 14:25:28 -07004172 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004173 if (mSearchDropTargetBar == null) {
4174 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004175 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004176 if (mQsb != null) {
4177 mSearchDropTargetBar.removeView(mQsb);
4178 mQsb = null;
4179 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004180 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004181 }
4182
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004183 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004184 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4185 * multiple calls to bind the same list.)
4186 */
4187 @Thunk ArrayList<AppInfo> mTmpAppsList;
4188 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4189 public void run() {
4190 bindAllApplications(mTmpAppsList);
4191 mTmpAppsList = null;
4192 }
4193 };
4194
4195 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004196 * Add the icons for all apps.
4197 *
4198 * Implementation of the method from LauncherModel.Callbacks.
4199 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004200 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004201 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4202 mTmpAppsList = apps;
4203 return;
4204 }
4205
Winson Chungb745afb2015-03-02 11:51:23 -08004206 if (mAppsView != null) {
4207 mAppsView.setApps(apps);
4208 }
Adam Cohen9211d422014-10-07 18:14:53 -07004209 if (mLauncherCallbacks != null) {
4210 mLauncherCallbacks.bindAllApplications(apps);
4211 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004212 }
4213
4214 /**
4215 * A package was updated.
4216 *
4217 * Implementation of the method from LauncherModel.Callbacks.
4218 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004219 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004220 Runnable r = new Runnable() {
4221 public void run() {
4222 bindAppsUpdated(apps);
4223 }
4224 };
4225 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004226 return;
4227 }
4228
Winson Chungb745afb2015-03-02 11:51:23 -08004229 if (mAppsView != null) {
4230 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004231 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004232 }
4233
Sunny Goyal4390ace2014-10-13 11:33:11 -07004234 @Override
4235 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4236 Runnable r = new Runnable() {
4237 public void run() {
4238 bindWidgetsRestored(widgets);
4239 }
4240 };
4241 if (waitUntilResume(r)) {
4242 return;
4243 }
4244 mWorkspace.widgetsRestored(widgets);
4245 }
4246
Joe Onorato9c1289c2009-08-17 11:03:03 -04004247 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004248 * Some shortcuts were updated in the background.
4249 *
4250 * Implementation of the method from LauncherModel.Callbacks.
4251 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004252 @Override
4253 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4254 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004255 Runnable r = new Runnable() {
4256 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004257 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004258 }
4259 };
4260 if (waitUntilResume(r)) {
4261 return;
4262 }
4263
Sunny Goyal4390ace2014-10-13 11:33:11 -07004264 if (!updated.isEmpty()) {
4265 mWorkspace.updateShortcuts(updated);
4266 }
4267
4268 if (!removed.isEmpty()) {
4269 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4270 for (ShortcutInfo si : removed) {
4271 removedComponents.add(si.getTargetComponent());
4272 }
4273 mWorkspace.removeItemsByComponentName(removedComponents, user);
4274 // Notify the drag controller
4275 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004276 }
4277 }
4278
4279 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004280 * Update the state of a package, typically related to install state.
4281 *
4282 * Implementation of the method from LauncherModel.Callbacks.
4283 */
Sunny Goyale755d462014-07-22 13:48:29 -07004284 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004285 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4286 Runnable r = new Runnable() {
4287 public void run() {
4288 bindRestoreItemsChange(updates);
4289 }
4290 };
4291 if (waitUntilResume(r)) {
4292 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004293 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004294
Sunny Goyal756adbc2015-04-16 15:20:51 -07004295 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004296 }
4297
4298 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004299 * A package was uninstalled. We take both the super set of packageNames
4300 * in addition to specific applications to remove, the reason being that
4301 * this can be called when a package is updated as well. In that scenario,
4302 * we only remove specific components from the workspace, where as
4303 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004304 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004305 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004306 * Implementation of the method from LauncherModel.Callbacks.
4307 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004308 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004309 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004310 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004311 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004312 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004313 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004314 }
Winson Chungd64d1762013-08-20 14:37:16 -07004315 };
4316 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004317 return;
4318 }
4319
Sunny Goyal1a745e82014-10-02 15:58:31 -07004320 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004321 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4322 for (AppInfo info : appInfos) {
4323 removedComponents.add(info.componentName);
4324 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004325 if (!packageNames.isEmpty()) {
4326 mWorkspace.removeItemsByPackageName(packageNames, user);
4327 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004328 if (!removedComponents.isEmpty()) {
4329 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004330 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004331 // Notify the drag controller
4332 mDragController.onAppsRemoved(packageNames, removedComponents);
4333
Sunny Goyal1a745e82014-10-02 15:58:31 -07004334 } else {
4335 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004336 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004337
Winson Chungdf95eb12013-10-16 14:57:07 -07004338 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004339 if (mAppsView != null) {
4340 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004341 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004342 }
Joe Onoratobe386092009-11-17 17:32:16 -08004343
Michael Jurkac402cd92013-05-20 15:49:32 +02004344 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004345 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004346 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004347 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004348 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004349
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004350 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004351 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004352 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004353 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004354 return;
4355 }
4356
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004357 if (mWidgetsView != null && model != null) {
4358 mWidgetsView.addWidgets(model);
4359 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004360 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004361 }
4362
Winson Chung400438b2011-01-16 17:53:48 -08004363 private int mapConfigurationOriActivityInfoOri(int configOri) {
4364 final Display d = getWindowManager().getDefaultDisplay();
4365 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4366 switch (d.getRotation()) {
4367 case Surface.ROTATION_0:
4368 case Surface.ROTATION_180:
4369 // We are currently in the same basic orientation as the natural orientation
4370 naturalOri = configOri;
4371 break;
4372 case Surface.ROTATION_90:
4373 case Surface.ROTATION_270:
4374 // We are currently in the other basic orientation to the natural orientation
4375 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4376 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4377 break;
4378 }
4379
4380 int[] oriMap = {
4381 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4382 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4383 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4384 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4385 };
4386 // Since the map starts at portrait, we need to offset if this device's natural orientation
4387 // is landscape.
4388 int indexOffset = 0;
4389 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4390 indexOffset = 1;
4391 }
4392 return oriMap[(d.getRotation() + indexOffset) % 4];
4393 }
Adam Cohen446e9402011-09-15 18:21:21 -07004394
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004395 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004396 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004397 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004398 if (Utilities.ATLEAST_JB_MR2) {
4399 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4400 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004401 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4402 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004403 }
Winson Chung4b919f82012-05-01 10:44:08 -07004404 }
4405 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004406
Winson Chung4b919f82012-05-01 10:44:08 -07004407 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004408 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004409 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004410 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004411 } else {
4412 mHandler.postDelayed(new Runnable() {
4413 public void run() {
4414 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4415 }
4416 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004417 }
Winson Chung4b919f82012-05-01 10:44:08 -07004418 }
Winson Chung400438b2011-01-16 17:53:48 -08004419 }
4420
Winson Chunge43a1e72014-01-15 10:33:02 -08004421 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004422 if (mLauncherCallbacks != null) {
4423 return mLauncherCallbacks.isLauncherPreinstalled();
4424 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004425 PackageManager pm = getPackageManager();
4426 try {
4427 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4428 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4429 return true;
4430 } else {
4431 return false;
4432 }
4433 } catch (NameNotFoundException e) {
4434 e.printStackTrace();
4435 return false;
4436 }
4437 }
4438
Adam Cohenea90f832014-05-21 15:03:34 -07004439 /**
4440 * This method indicates whether or not we should suggest default wallpaper dimensions
4441 * when our wallpaper cropper was not yet used to set a wallpaper.
4442 */
4443 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004444 if (mLauncherCallbacks != null) {
4445 return mLauncherCallbacks.overrideWallpaperDimensions();
4446 }
Adam Cohenea90f832014-05-21 15:03:34 -07004447 return true;
4448 }
4449
Adam Cohen432609a2014-03-13 17:03:22 -07004450 /**
4451 * To be overridden by subclasses to indicate that there is an activity to launch
4452 * before showing the standard launcher experience.
4453 */
4454 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004455 if (mLauncherCallbacks != null) {
4456 return mLauncherCallbacks.hasFirstRunActivity();
4457 }
Adam Cohen432609a2014-03-13 17:03:22 -07004458 return false;
4459 }
4460
4461 /**
4462 * To be overridden by subclasses to launch any first run activity
4463 */
4464 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004465 if (mLauncherCallbacks != null) {
4466 return mLauncherCallbacks.getFirstRunActivity();
4467 }
Adam Cohen432609a2014-03-13 17:03:22 -07004468 return null;
4469 }
4470
Winson Chunga6945242014-01-08 14:04:34 -08004471 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004472 return !ActivityManager.isRunningInTestHarness() &&
4473 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004474 }
4475
Adam Cohen4a9423d2014-03-28 14:22:31 -07004476 protected boolean hasRunFirstRunActivity() {
4477 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4478 }
4479
Adam Cohen432609a2014-03-13 17:03:22 -07004480 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004481 if (shouldRunFirstRunActivity() &&
4482 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004483 Intent firstRunIntent = getFirstRunActivity();
4484 if (firstRunIntent != null) {
4485 startActivity(firstRunIntent);
4486 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004487 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004488 }
4489 }
Adam Cohen432609a2014-03-13 17:03:22 -07004490 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004491 }
4492
4493 private void markFirstRunActivityShown() {
4494 SharedPreferences.Editor editor = mSharedPrefs.edit();
4495 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4496 editor.apply();
4497 }
4498
Adam Cohen432609a2014-03-13 17:03:22 -07004499 /**
4500 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4501 * screen that must be displayed and dismissed.
4502 */
4503 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004504 if (mLauncherCallbacks != null) {
4505 return mLauncherCallbacks.hasDismissableIntroScreen();
4506 }
Adam Cohen432609a2014-03-13 17:03:22 -07004507 return false;
4508 }
4509
4510 /**
4511 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4512 */
4513 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004514 if (mLauncherCallbacks != null) {
4515 return mLauncherCallbacks.getIntroScreen();
4516 }
Adam Cohen432609a2014-03-13 17:03:22 -07004517 return null;
4518 }
4519
4520 /**
4521 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4522 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4523 */
4524 private boolean shouldShowIntroScreen() {
4525 return hasDismissableIntroScreen() &&
4526 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4527 }
4528
4529 protected void showIntroScreen() {
4530 View introScreen = getIntroScreen();
4531 changeWallpaperVisiblity(false);
4532 if (introScreen != null) {
4533 mDragLayer.showOverlayView(introScreen);
4534 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004535 if (mLauncherOverlayContainer != null) {
4536 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4537 }
Adam Cohen432609a2014-03-13 17:03:22 -07004538 }
4539
4540 public void dismissIntroScreen() {
4541 markIntroScreenDismissed();
4542 if (showFirstRunActivity()) {
4543 // We delay hiding the intro view until the first run activity is showing. This
4544 // avoids a blip.
4545 mWorkspace.postDelayed(new Runnable() {
4546 @Override
4547 public void run() {
4548 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004549 if (mLauncherOverlayContainer != null) {
4550 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4551 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004552 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004553 }
4554 }, ACTIVITY_START_DELAY);
4555 } else {
4556 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004557 if (mLauncherOverlayContainer != null) {
4558 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4559 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004560 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004561 }
4562 changeWallpaperVisiblity(true);
4563 }
4564
4565 private void markIntroScreenDismissed() {
4566 SharedPreferences.Editor editor = mSharedPrefs.edit();
4567 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4568 editor.apply();
4569 }
4570
Adam Cohen091440a2015-03-18 14:16:05 -07004571 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004572 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4573 // on the device, then we always show the first run cling experience (or if there is no
4574 // launcher2). Otherwise, we prompt the user upon started for migration
4575 LauncherClings launcherClings = new LauncherClings(this);
4576 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004577 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004578 if (mModel.canMigrateFromOldLauncherDb(this)) {
4579 launcherClings.showMigrationCling();
4580 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004581 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004582 }
4583 }
4584 }
4585
Winson Chunga6945242014-01-08 14:04:34 -08004586 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004587 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4588 if (mHotseat != null) mHotseat.setAlpha(1f);
4589 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004590 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4591 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004592 }
4593
4594 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004595 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4596 if (mHotseat != null) mHotseat.setAlpha(0f);
4597 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004598 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4599 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004600 }
4601
Winson Chung5ffd51d2015-06-25 11:36:50 -07004602 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004603 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004604 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004605 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004606 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004607 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004608 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4609 if (userHandle != null) {
4610 user = UserHandleCompat.fromUser(userHandle);
4611 }
4612 }
4613 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004614 }
4615
4616 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004617 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004618 if (user == null) {
4619 user = UserHandleCompat.myUserHandle();
4620 }
4621
4622 // Called from search suggestion, add the profile extra to the intent to ensure that we
4623 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004624 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004625 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004626 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004627 return null;
4628 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004629 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004630 }
4631
Winson Chung5ffd51d2015-06-25 11:36:50 -07004632 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004633 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4634 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004635 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004636 UserHandleCompat.myUserHandle());
4637 }
4638
Winson Chung5ffd51d2015-06-25 11:36:50 -07004639 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004640 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4641 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004642 mWorkspace.onExternalDragStartedWithItem(dragView);
4643 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004644 }
4645
Winson Chung5ffd51d2015-06-25 11:36:50 -07004646 protected void moveWorkspaceToDefaultScreen() {
4647 mWorkspace.moveToDefaultScreen(false);
4648 }
4649
Anjali Koppalf5d29132014-02-28 13:33:27 -08004650 @Override
4651 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004652 if (mLauncherCallbacks != null) {
4653 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4654 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004655 }
4656
Winson Chung80baf5a2010-08-09 16:03:15 -07004657 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004658 * Returns a FastBitmapDrawable with the icon, accurately sized.
4659 */
4660 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4661 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4662 d.setFilterBitmap(true);
4663 resizeIconDrawable(d);
4664 return d;
4665 }
4666
4667 /**
4668 * Resizes an icon drawable to the correct icon size.
4669 */
4670 public void resizeIconDrawable(Drawable icon) {
4671 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4672 }
4673
4674 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004675 * Prints out out state for debugging.
4676 */
4677 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004678 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004679 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004680 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4681 Log.d(TAG, "mRestoring=" + mRestoring);
4682 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4683 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004684 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004685 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004686 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004687
Daniel Sandler325dc232013-06-05 22:57:57 -04004688 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004689 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004690
4691 @Override
4692 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4693 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004694 synchronized (sDumpLogs) {
4695 writer.println(" ");
4696 writer.println("Debug logs: ");
4697 for (int i = 0; i < sDumpLogs.size(); i++) {
4698 writer.println(" " + sDumpLogs.get(i));
4699 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004700 }
Adam Cohen9211d422014-10-07 18:14:53 -07004701 if (mLauncherCallbacks != null) {
4702 mLauncherCallbacks.dump(prefix, fd, writer, args);
4703 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004704 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004705
4706 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004707 if (DEBUG_DUMP_LOG) {
4708 synchronized (sDumpLogs) {
4709 Log.d(TAG, "");
4710 Log.d(TAG, "*********************");
4711 Log.d(TAG, "Launcher debug logs: ");
4712 for (int i = 0; i < sDumpLogs.size(); i++) {
4713 Log.d(TAG, " " + sDumpLogs.get(i));
4714 }
4715 Log.d(TAG, "*********************");
4716 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004717 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004718 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004719 }
4720
4721 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004722 addDumpLog(tag, log, null, debugLog);
4723 }
4724
4725 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004726 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004727 if (e != null) {
4728 Log.d(tag, log, e);
4729 } else {
4730 Log.d(tag, log);
4731 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004732 }
Winson Chungede41292013-09-19 16:27:36 -07004733 if (DEBUG_DUMP_LOG) {
4734 sDateStamp.setTime(System.currentTimeMillis());
4735 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004736 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4737 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004738 }
Winson Chungede41292013-09-19 16:27:36 -07004739 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004740 }
4741
Adam Cohen59400422014-03-05 18:07:04 -08004742 public static CustomAppWidget getCustomAppWidget(String name) {
4743 return sCustomAppWidgets.get(name);
4744 }
4745
4746 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4747 return sCustomAppWidgets;
4748 }
4749
Winson Chungede41292013-09-19 16:27:36 -07004750 public void dumpLogsToLocalData() {
4751 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004752 new AsyncTask<Void, Void, Void>() {
4753 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004754 boolean success = false;
4755 sDateStamp.setTime(sRunStart);
4756 String FILENAME = sDateStamp.getMonth() + "-"
4757 + sDateStamp.getDay() + "_"
4758 + sDateStamp.getHours() + "-"
4759 + sDateStamp.getMinutes() + "_"
4760 + sDateStamp.getSeconds() + ".txt";
4761
4762 FileOutputStream fos = null;
4763 File outFile = null;
4764 try {
4765 outFile = new File(getFilesDir(), FILENAME);
4766 outFile.createNewFile();
4767 fos = new FileOutputStream(outFile);
4768 } catch (Exception e) {
4769 e.printStackTrace();
4770 }
4771 if (fos != null) {
4772 PrintWriter writer = new PrintWriter(fos);
4773
4774 writer.println(" ");
4775 writer.println("Debug logs: ");
4776 synchronized (sDumpLogs) {
4777 for (int i = 0; i < sDumpLogs.size(); i++) {
4778 writer.println(" " + sDumpLogs.get(i));
4779 }
4780 }
4781 writer.close();
4782 }
4783 try {
4784 if (fos != null) {
4785 fos.close();
4786 success = true;
4787 }
4788 } catch (IOException e) {
4789 e.printStackTrace();
4790 }
Michael Jurka43467462013-11-14 12:03:58 +01004791 return null;
Winson Chungede41292013-09-19 16:27:36 -07004792 }
Michael Jurka43467462013-11-14 12:03:58 +01004793 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004794 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004795 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004796}
Michael Jurka2763be32011-02-24 11:19:57 -08004797
Dan Sandlerd5024042014-01-09 15:01:33 -05004798interface DebugIntents {
4799 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4800 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004801}