blob: 9d04770af6849a8c94001230241dab9fd4b6f751 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Gilles Debunnedd6c9922010-10-25 11:23:41 -070019import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080020import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070021import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070022import android.animation.ObjectAnimator;
23import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070025import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000026import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070029import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040030import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080032import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070033import android.appwidget.AppWidgetManager;
34import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080036import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080037import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040038import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040040import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070042import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070043import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080046import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070048import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070050import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070051import android.graphics.Bitmap;
52import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070053import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070054import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070056import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040058import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070059import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020060import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020062import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080063import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070064import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070065import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040066import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070067import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.text.Selection;
69import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070070import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070072import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070073import android.view.Display;
74import android.view.Gravity;
75import android.view.HapticFeedbackConstants;
76import android.view.KeyEvent;
77import android.view.LayoutInflater;
78import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070079import android.view.MotionEvent;
80import android.view.Surface;
81import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070082import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080083import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070084import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070085import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070086import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070087import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070088import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080089import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070090import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070092import android.widget.Advanceable;
93import android.widget.FrameLayout;
94import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080095import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070096import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070097
Sunny Goyal651077b2014-06-30 14:15:31 -070098import com.android.launcher3.DropTarget.DragObject;
99import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700100import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700101import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100102import com.android.launcher3.compat.LauncherActivityInfoCompat;
103import com.android.launcher3.compat.LauncherAppsCompat;
104import com.android.launcher3.compat.UserHandleCompat;
105import com.android.launcher3.compat.UserManagerCompat;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700106import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700107import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700108import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700109import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700110import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700111import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700112import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700113
Adam Cohen4caf2982013-08-20 18:54:31 -0700114import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700115import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700116import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700117import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.PrintWriter;
Chet Haasea8f996d2015-02-17 12:56:04 -0800119import java.lang.reflect.InvocationTargetException;
120import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700121import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700122import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700123import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700124import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700125import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700126import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700127import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000128import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700129
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800130/**
131 * Default launcher application.
132 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100133public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700134 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chung006ee262015-08-03 14:40:11 -0700135 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700136 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700137 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800138
Daniel Sandlerf061f822013-06-27 13:59:36 -0400139 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700140 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700141 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400142 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700143 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700144
Dan Sandlerd5024042014-01-09 15:01:33 -0500145 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
146
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800147 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700148 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700149 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700150 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151
Michael Jurka8b805b12012-04-18 14:23:14 -0700152 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700153 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700154
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700155 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
156 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
157 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
158
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700159 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
160
Mathew Inwood876a8462013-06-14 14:12:41 +0100161 /**
162 * IntentStarter uses request codes starting with this. This must be greater than all activity
163 * request codes used internally.
164 */
165 protected static final int REQUEST_LAST = 100;
166
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800167 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800168
Michael Jurka0a457bf2012-11-19 14:05:05 -0800169 // To turn on these properties, type
170 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800171 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800172
Winson Chung2672ff92012-05-04 16:22:30 -0700173 // The Intent extra that defines whether to ignore the launch animation
174 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400175 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700176
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177 // Type: int
178 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700179 // Type: int
180 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700182 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
183 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
185 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800187 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700188 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700189 // Type: int
190 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
191 // Type: int
192 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
193 // Type: parcelable
194 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000195 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800196 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000197 // Type: int[]
198 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800199
Adam Cohen432609a2014-03-13 17:03:22 -0700200 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800201 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
202
Adam Cohen3ed316a2014-07-23 18:21:20 -0700203 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
204 static final String ACTION_FIRST_LOAD_COMPLETE =
205 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
206
Adam Cohen39a06042013-07-19 14:30:12 -0700207 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700208 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700209
Sunny Goyal594d76d2014-11-06 10:12:54 -0800210 private static final String QSB_WIDGET_ID = "qsb_widget_id";
211 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
212
Winson Chunga6945242014-01-08 14:04:34 -0800213 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
214
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700215 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700216 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
217
Adam Cohen091440a2015-03-18 14:16:05 -0700218 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700219 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700220
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700221 private boolean mIsSafeModeEnabled;
222
Adam Cohenc2d6e892014-10-16 09:49:24 -0700223 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
224 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700225 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700226
Joe Onorato9c1289c2009-08-17 11:03:03 -0400227 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700228 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
229 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700230 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800231
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000232 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
233 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
234
Winson Chunga2413752012-04-03 14:22:34 -0700235 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700236 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
237 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700238 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700239
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800240 private final BroadcastReceiver mCloseSystemDialogsReceiver
241 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800242
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800243 private LayoutInflater mInflater;
244
Adam Cohen091440a2015-03-18 14:16:05 -0700245 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700246 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800247 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700248 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800249 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700250 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700251
Sunny Goyalffe83f12014-08-14 17:39:34 -0700252 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700253 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700254
Adam Cohen091440a2015-03-18 14:16:05 -0700255 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800256 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800257 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700258
Michael Jurka0280c3b2010-09-17 15:00:07 -0700259 private int[] mTmpAddItemCellCoordinates = new int[2];
260
Sunny Goyal316490e2015-06-02 09:38:28 -0700261 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800262 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700263
Michael Jurka838a4ca2011-02-07 13:33:06 -0800264 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700265 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700266
Winson Chungc51db6a2011-10-05 11:44:49 -0700267 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700268
269 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700270 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700271
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700272 // Main container view and the model for the widget tray screen.
273 @Thunk WidgetsContainerView mWidgetsView;
274 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700275
Winson Chungf0ea4d32011-06-06 14:27:16 -0700276 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800277 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800278
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800279 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700280 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
281 // scroll issues (because the workspace may not have been measured yet) and extra work.
282 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
283 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800284
285 private SpannableStringBuilder mDefaultKeySsb = null;
286
Adam Cohen091440a2015-03-18 14:16:05 -0700287 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400288
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800289 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800290 private boolean mRestoring;
291 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700292 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800293
Michael Jurka1e2f4652013-07-08 18:03:46 -0700294 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700295 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
296
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800297 private Bundle mSavedInstanceState;
298
Joe Onorato9c1289c2009-08-17 11:03:03 -0400299 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800300 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700301 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800302 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700303 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800304 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400305
Sunny Goyale2df0622015-04-24 11:27:00 -0700306 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700307
Adam Cohen61f560d2013-09-30 15:58:20 -0700308 private View.OnTouchListener mHapticFeedbackTouchListener;
309
Adam Cohended9f8d2010-11-03 13:25:16 -0700310 // Related to the auto-advancing of widgets
311 private final int ADVANCE_MSG = 1;
312 private final int mAdvanceInterval = 20000;
313 private final int mAdvanceStagger = 250;
314 private long mAutoAdvanceSentTime;
315 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700316 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700317 new HashMap<View, AppWidgetProviderInfo>();
318
Winson Chung400438b2011-01-16 17:53:48 -0800319 // Determines how long to wait after a rotation before restoring the screen orientation to
320 // match the sensor state.
321 private final int mRestoreScreenOrientationDelay = 500;
322
Adam Cohen091440a2015-03-18 14:16:05 -0700323 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700324
Adam Cohen1462de32012-07-24 22:34:36 -0700325 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700326 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700327
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700328 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700329 static Date sDateStamp = new Date();
330 static DateFormat sDateFormat =
331 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
332 static long sRunStart = System.currentTimeMillis();
333 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700334
Winson Chung46353de2012-02-16 14:05:10 -0800335 // We only want to get the SharedPreferences once since it does an FS stat each time we get
336 // it from the context.
337 private SharedPreferences mSharedPrefs;
338
Winson Chungf0c6ae02012-03-21 16:10:31 -0700339 // Holds the page that we need to animate to, and the icon views that we need to animate up
340 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700341 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700342 private Bitmap mFolderIconBitmap;
343 private Canvas mFolderIconCanvas;
344 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700345
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700346 private DeviceProfile mDeviceProfile;
347
Winson Chung13eb5272015-05-11 16:30:13 -0700348 // This is set to the view that launched the activity that navigated the user away from
349 // launcher. Since there is no callback for when the activity has finished launching, enable
350 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800351 private BubbleTextView mWaitingForResume;
352
Adam Cohen59400422014-03-05 18:07:04 -0800353 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
354 new HashMap<String, CustomAppWidget>();
355
356 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
357 static {
358 if (ENABLE_CUSTOM_WIDGET_TEST) {
359 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
360 }
361 }
362
Chet Haasea8f996d2015-02-17 12:56:04 -0800363 // TODO: remove this field and call method directly when Launcher3 can depend on M APIs
364 private static Method sClipRevealMethod = null;
365 static {
366 Class<?> activityOptionsClass = ActivityOptions.class;
367 try {
368 sClipRevealMethod = activityOptionsClass.getDeclaredMethod("makeClipRevealAnimation",
369 View.class, int.class, int.class, int.class, int.class);
370 } catch (Exception e) {
371 // Earlier version
372 }
373 }
374
Adam Cohen091440a2015-03-18 14:16:05 -0700375 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700376 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700377 if (mWorkspace != null) {
378 mWorkspace.buildPageHardwareLayers();
379 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700380 }
381 };
382
Adam Cohendb364c32014-05-20 14:23:40 -0700383 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800384
Adam Cohen091440a2015-03-18 14:16:05 -0700385 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800386 int requestCode;
387 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700388 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700389 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800390 int cellX;
391 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700392 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800393 }
394
Daniel Sandlerff02d492013-08-05 02:12:05 -0400395 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700396 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700397 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400398
399 @Thunk void setOrientation() {
400 if (mRotationEnabled) {
401 unlockScreenOrientation(true);
402 } else {
403 setRequestedOrientation(
404 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700405 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400406 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700407
Sunny Goyal7779d622015-06-11 16:18:39 -0700408 private Runnable mUpdateOrientationRunnable = new Runnable() {
409 public void run() {
410 setOrientation();
411 }
412 };
413
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800414 @Override
415 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700416 if (DEBUG_STRICT_MODE) {
417 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
418 .detectDiskReads()
419 .detectDiskWrites()
420 .detectNetwork() // or .detectAll() for all detectable problems
421 .penaltyLog()
422 .build());
423 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
424 .detectLeakedSqlLiteObjects()
425 .detectLeakedClosableObjects()
426 .penaltyLog()
427 .penaltyDeath()
428 .build());
429 }
430
Adam Cohen9211d422014-10-07 18:14:53 -0700431 if (mLauncherCallbacks != null) {
432 mLauncherCallbacks.preOnCreate();
433 }
434
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800435 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400436
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400437 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400438 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700439
Adam Cohen2e6da152015-05-06 11:42:25 -0700440 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700441 mDeviceProfile = getResources().getConfiguration().orientation
442 == Configuration.ORIENTATION_LANDSCAPE ?
443 app.getInvariantDeviceProfile().landscapeProfile
444 : app.getInvariantDeviceProfile().portraitProfile;
445
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400446 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700447 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700448 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800449 mModel = app.setLauncher(this);
450 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700451
Joe Onorato41a12d22009-10-31 18:30:00 -0400452 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800453 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700454 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700455
Daniel Sandlerff02d492013-08-05 02:12:05 -0400456 mStats = new Stats(this);
457
Sunny Goyalffe83f12014-08-14 17:39:34 -0700458 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700459
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700460 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
461 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700462
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700463 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
464 // this also ensures that any synchronous binding below doesn't re-trigger another
465 // LauncherModel load.
466 mPaused = false;
467
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800468 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200469 android.os.Debug.startMethodTracing(
470 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800471 }
472
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800473 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700474
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800475 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700476 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800477
Joe Onorato7c312c12009-08-13 21:36:53 -0700478 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700479
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800480 mSavedState = savedInstanceState;
481 restoreState(mSavedState);
482
483 if (PROFILE_STARTUP) {
484 android.os.Debug.stopMethodTracing();
485 }
486
487 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700488 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700489 // If the user leaves launcher, then we should just load items asynchronously when
490 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700491 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700492 } else {
493 // We only load the page synchronously if the user rotates (or triggers a
494 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700495 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700496 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800497 }
498
499 // For handling default keys
500 mDefaultKeySsb = new SpannableStringBuilder();
501 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800502
503 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
504 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800505
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700506 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
507 // In case we are on a device with locked rotation, we should look at preferences to check
508 // if the user has specifically allowed rotation.
509 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400510 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700511 }
512
513 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
514 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400515 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700516
Adam Cohen9211d422014-10-07 18:14:53 -0700517 if (mLauncherCallbacks != null) {
518 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700519 if (mLauncherCallbacks.hasLauncherOverlay()) {
520 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700521 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
522 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
523 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700524 mWorkspace.setLauncherOverlay(mLauncherOverlay);
525 }
Adam Cohen9211d422014-10-07 18:14:53 -0700526 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700527
528 if (shouldShowIntroScreen()) {
529 showIntroScreen();
530 } else {
531 showFirstRunActivity();
532 showFirstRunClings();
533 }
Adam Cohen9211d422014-10-07 18:14:53 -0700534 }
535
Sunny Goyal7779d622015-06-11 16:18:39 -0700536 @Override
537 public void onSettingsChanged(String settings, boolean value) {
538 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
539 mRotationEnabled = value;
540 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
541 mUpdateOrientationRunnable.run();
542 }
543 }
544 }
545
Adam Cohen9211d422014-10-07 18:14:53 -0700546 private LauncherCallbacks mLauncherCallbacks;
547
548 public void onPostCreate(Bundle savedInstanceState) {
549 super.onPostCreate(savedInstanceState);
550 if (mLauncherCallbacks != null) {
551 mLauncherCallbacks.onPostCreate(savedInstanceState);
552 }
553 }
554
555 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
556 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700557 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700558 private boolean mWorkspaceImportanceStored = false;
559 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700560 private int mWorkspaceImportanceForAccessibility =
561 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
562 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
563
564 @Override
565 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700566 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700567 return;
568 }
569 // The underlying workspace and hotseat are temporarily suppressed by the search
570 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700571 if (mWorkspace != null) {
572 mWorkspaceImportanceForAccessibility =
573 mWorkspace.getImportantForAccessibility();
574 mWorkspace.setImportantForAccessibility(
575 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
576 mWorkspaceImportanceStored = true;
577 }
578 if (mHotseat != null) {
579 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
580 mHotseat.setImportantForAccessibility(
581 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
582 mHotseatImportanceStored = true;
583 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700584 }
585
586 @Override
587 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700588 if (mWorkspaceImportanceStored && mWorkspace != null) {
589 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
590 }
591 if (mHotseatImportanceStored && mHotseat != null) {
592 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
593 }
594 mWorkspaceImportanceStored = false;
595 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700596 }
597 });
Adam Cohen9211d422014-10-07 18:14:53 -0700598 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700599 }
600
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700601 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700602 public void onLauncherProviderChange() {
603 if (mLauncherCallbacks != null) {
604 mLauncherCallbacks.onLauncherProviderChange();
605 }
606 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700607
Winson Chungef7f8742015-06-04 17:18:17 -0700608 /**
609 * Updates the bounds of all the overlays to match the new fixed bounds.
610 */
611 public void updateOverlayBounds(Rect newBounds) {
612 mAppsView.setSearchBarBounds(newBounds);
613 mWidgetsView.setSearchBarBounds(newBounds);
614 }
615
Adam Cohen9211d422014-10-07 18:14:53 -0700616 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700617 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700618 if (mLauncherCallbacks != null) {
619 return mLauncherCallbacks.hasCustomContentToLeft();
620 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700621 return false;
622 }
623
Dave Hawkeya8881582013-09-17 15:55:33 -0600624 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500625 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600626 * {@link #addToCustomContentPage}. This will only be invoked if
627 * {@link #hasCustomContentToLeft()} is {@code true}.
628 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500629 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700630 if (mLauncherCallbacks != null) {
631 mLauncherCallbacks.populateCustomContentContainer();
632 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600633 }
634
635 /**
636 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
637 * ensure the custom content page is added or removed if necessary.
638 */
639 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600640 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600641 // Not bound yet, wait for bindScreens to be called.
642 return;
643 }
644
645 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
646 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500647 mWorkspace.createCustomContentContainer();
648 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600649 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
650 mWorkspace.removeCustomContentPage();
651 }
652 }
653
Anton Hanssona2f665f2013-09-26 12:18:32 +0100654 public Stats getStats() {
655 return mStats;
656 }
657
Bjorn Bringertc459e522013-06-07 19:36:01 +0100658 public LayoutInflater getInflater() {
659 return mInflater;
660 }
661
Hyunyoung Song3f471442015-04-08 19:01:34 -0700662 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700663 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
664 // that is subsequently removed from the workspace in startBinding().
665 return !mModel.isLoadingWorkspace();
666 }
667
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800668 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000669 public static int generateViewId() {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100670 if (Build.VERSION.SDK_INT >= 17) {
671 return View.generateViewId();
672 } else {
673 // View.generateViewId() is not available. The following fallback logic is a copy
674 // of its implementation.
675 for (;;) {
676 final int result = sNextGeneratedId.get();
677 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
678 int newValue = result + 1;
679 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
680 if (sNextGeneratedId.compareAndSet(result, newValue)) {
681 return result;
682 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000683 }
684 }
685 }
686
687 public int getViewIdForItem(ItemInfo info) {
688 // This cast is safe given the > 2B range for int.
689 int itemId = (int) info.id;
690 if (mItemIdToViewId.containsKey(itemId)) {
691 return mItemIdToViewId.get(itemId);
692 }
693 int viewId = generateViewId();
694 mItemIdToViewId.put(itemId, viewId);
695 return viewId;
696 }
697
698 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700699 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
700 * a configuration step, this allows the proper animations to run after other transitions.
701 */
Adam Cohendb364c32014-05-20 14:23:40 -0700702 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700703 long screenId = args.screenId;
704 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
705 // When the screen id represents an actual screen (as opposed to a rank) we make sure
706 // that the drop page actually exists.
707 screenId = ensurePendingDropLayoutExists(args.screenId);
708 }
Adam Cohendb364c32014-05-20 14:23:40 -0700709
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800710 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800711 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700712 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700713 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700714 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800715 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700716 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700717 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700718 case REQUEST_RECONFIGURE_APPWIDGET:
719 completeRestoreAppWidget(args.appWidgetId);
720 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800721 }
Michael Jurka27614d22012-04-02 06:40:22 -0700722 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
723 // if you turned the screen off and then back while in All Apps, Launcher would not
724 // return to the workspace. Clearing mAddInfo.container here fixes this issue
725 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700726 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800727 }
728
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800729 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700730 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700731 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700732 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700733 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800734 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700735
Adam Cohenad4e15c2013-10-17 16:21:35 -0700736 Runnable exitSpringLoaded = new Runnable() {
737 @Override
738 public void run() {
739 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
740 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
741 }
742 };
743
Michael Jurka8b805b12012-04-18 14:23:14 -0700744 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700745 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700746 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
747 if (resultCode == RESULT_CANCELED) {
748 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700749 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700750 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700751 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800752 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700753 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700754 }
755 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200756 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
757 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700758 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200759 }
760 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700761 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200762
Adam Cohened66b2b2012-01-23 17:28:51 -0800763 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700764 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700765
Adam Cohendb364c32014-05-20 14:23:40 -0700766 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800767 // We have special handling for widgets
768 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800769 final int appWidgetId;
770 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
771 : -1;
772 if (widgetId < 0) {
773 appWidgetId = pendingAddWidgetId;
774 } else {
775 appWidgetId = widgetId;
776 }
777
Adam Cohenad4e15c2013-10-17 16:21:35 -0700778 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800779 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700780 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
781 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700782 result = RESULT_CANCELED;
783 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700784 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700785 @Override
786 public void run() {
787 exitSpringLoadedDragModeDelayed(false, 0, null);
788 }
789 };
Adam Cohendb364c32014-05-20 14:23:40 -0700790 if (workspaceLocked) {
791 // No need to remove the empty screen if we're mid-binding, as the
792 // the bind will not add the empty screen.
793 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
794 } else {
795 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
796 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
797 }
Winson Chung5aaab772012-04-27 15:24:02 -0700798 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700799 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700800 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
801 // When the screen id represents an actual screen (as opposed to a rank)
802 // we make sure that the drop page actually exists.
803 mPendingAddInfo.screenId =
804 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
805 }
Adam Cohendb364c32014-05-20 14:23:40 -0700806 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
807
808 dropLayout.setDropPending(true);
809 final Runnable onComplete = new Runnable() {
810 @Override
811 public void run() {
812 completeTwoStageWidgetDrop(resultCode, appWidgetId);
813 dropLayout.setDropPending(false);
814 }
815 };
816 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
817 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
818 } else {
819 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
820 mPendingAddInfo);
821 sPendingAddItem = args;
822 }
Winson Chung5aaab772012-04-27 15:24:02 -0700823 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800824 return;
825 }
826
Sunny Goyalff572272014-07-23 13:58:07 -0700827 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
828 if (resultCode == RESULT_OK) {
829 // Update the widget view.
830 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
831 pendingAddWidgetId, mPendingAddInfo);
832 if (workspaceLocked) {
833 sPendingAddItem = args;
834 } else {
835 completeAdd(args);
836 }
837 }
838 // Leave the widget in the pending state if the user canceled the configure.
839 return;
840 }
841
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800842 // The pattern used here is that a user PICKs a specific application,
843 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700844
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800845 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
846 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700847 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700848 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
849 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800850 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700851 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800852 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700853 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700854 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
855 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800856 }
Adam Cohen00074722013-10-11 17:46:09 -0700857 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700858 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700859 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800860 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800861 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800862
863 }
864
865 @Override
866 protected void onActivityResult(
867 final int requestCode, final int resultCode, final Intent data) {
868 handleActivityResult(requestCode, resultCode, data);
869 if (mLauncherCallbacks != null) {
870 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
871 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800872 }
873
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600874 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700875 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600876 int[] grantResults) {
877 if (mLauncherCallbacks != null) {
878 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
879 grantResults);
880 }
881 }
882
Adam Cohendb364c32014-05-20 14:23:40 -0700883 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
884 appWidgetId, ItemInfo info) {
885 PendingAddArguments args = new PendingAddArguments();
886 args.requestCode = requestCode;
887 args.intent = data;
888 args.container = info.container;
889 args.screenId = info.screenId;
890 args.cellX = info.cellX;
891 args.cellY = info.cellY;
892 args.appWidgetId = appWidgetId;
893 return args;
894 }
895
896 /**
897 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
898 *
899 * @param screenId the screen id to check
900 * @return the new screen, or screenId if it exists
901 */
902 private long ensurePendingDropLayoutExists(long screenId) {
903 CellLayout dropLayout =
904 (CellLayout) mWorkspace.getScreenWithId(screenId);
905 if (dropLayout == null) {
906 // it's possible that the add screen was removed because it was
907 // empty and a re-bind occurred
908 mWorkspace.addExtraEmptyScreen();
909 return mWorkspace.commitExtraEmptyScreen();
910 } else {
911 return screenId;
912 }
913 }
914
Adam Cohen091440a2015-03-18 14:16:05 -0700915 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700916 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700917 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800918 Runnable onCompleteRunnable = null;
919 int animationType = 0;
920
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700921 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800922 if (resultCode == RESULT_OK) {
923 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
924 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700925 mPendingAddWidgetInfo);
926 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800927 onCompleteRunnable = new Runnable() {
928 @Override
929 public void run() {
930 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700931 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700932 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
933 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800934 }
935 };
936 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800937 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800938 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800939 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700940 if (mDragLayer.getAnimatedView() != null) {
941 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
942 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
943 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700944 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700945 // The animated view may be null in the case of a rotation during widget configuration
946 onCompleteRunnable.run();
947 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800948 }
949
950 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700951 protected void onStop() {
952 super.onStop();
953 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700954
955 if (mLauncherCallbacks != null) {
956 mLauncherCallbacks.onStop();
957 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700958 }
959
960 @Override
961 protected void onStart() {
962 super.onStart();
963 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700964
965 if (mLauncherCallbacks != null) {
966 mLauncherCallbacks.onStart();
967 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700968 }
969
970 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800971 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200972 long startTime = 0;
973 if (DEBUG_RESUME_TIME) {
974 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400975 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200976 }
Adam Cohen9211d422014-10-07 18:14:53 -0700977
978 if (mLauncherCallbacks != null) {
979 mLauncherCallbacks.preOnResume();
980 }
981
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800982 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700983
Winson Chung4a2afa32012-07-19 14:53:05 -0700984 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700985 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700986 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800987 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700988 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700989 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700990 // view after launching an app, as they may be depending on the UI to be static to
991 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700992 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700993 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800994 } else if (mOnResumeState == State.WIDGETS) {
995 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700996 }
997 mOnResumeState = State.NONE;
998
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700999 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -07001000 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
1001 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -07001002
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001003 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001004 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001005 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001006 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001007 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001008 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001009 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001010 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001011 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1012 // execute them here
1013 long startTimeCallbacks = 0;
1014 if (DEBUG_RESUME_TIME) {
1015 startTimeCallbacks = System.currentTimeMillis();
1016 }
1017
Michael Jurka1e2f4652013-07-08 18:03:46 -07001018 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1019 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001020 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001021 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001022 if (DEBUG_RESUME_TIME) {
1023 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1024 (System.currentTimeMillis() - startTimeCallbacks));
1025 }
Michael Jurka447bf842013-05-15 14:52:15 +02001026 }
Michael Jurka54554252013-08-01 12:52:23 +02001027 if (mOnResumeCallbacks.size() > 0) {
1028 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1029 mOnResumeCallbacks.get(i).run();
1030 }
1031 mOnResumeCallbacks.clear();
1032 }
Winson Chunge4e50662012-01-23 14:45:13 -08001033
1034 // Reset the pressed state of icons that were locked in the press state while activities
1035 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001036 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001037 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001038 mWaitingForResume.setStayPressed(false);
1039 }
Winson Chung82963d52013-10-09 11:20:57 -07001040
Adam Cohen06dff352012-06-01 17:17:08 -07001041 // It is possible that widgets can receive updates while launcher is not in the foreground.
1042 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1043 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1044 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001045 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001046 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001047
Michael Jurka447bf842013-05-15 14:52:15 +02001048 if (DEBUG_RESUME_TIME) {
1049 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1050 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001051
1052 if (mWorkspace.getCustomContentCallbacks() != null) {
1053 // If we are resuming and the custom content is the current page, we call onShow().
1054 // It is also poassible that onShow will instead be called slightly after first layout
1055 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1056 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001057 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001058 }
1059 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001060 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001061 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001062
Sunny Goyal756adbc2015-04-16 15:20:51 -07001063 if (!isWorkspaceLoading()) {
1064 // Process any items that were added while Launcher was away.
1065 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1066 }
Adam Cohen9211d422014-10-07 18:14:53 -07001067
1068 if (mLauncherCallbacks != null) {
1069 mLauncherCallbacks.onResume();
1070 }
Adam Cohen06dff352012-06-01 17:17:08 -07001071 }
1072
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001073 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001074 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001075 // Ensure that items added to Launcher are queued until Launcher returns
1076 InstallShortcutReceiver.enableInstallQueue();
1077
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001078 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001079 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001080 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001081 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001082
1083 // We call onHide() aggressively. The custom content callbacks should be able to
1084 // debounce excess onHide calls.
1085 if (mWorkspace.getCustomContentCallbacks() != null) {
1086 mWorkspace.getCustomContentCallbacks().onHide();
1087 }
Romain Guycbb89e42009-06-08 15:52:54 -07001088
Adam Cohen9211d422014-10-07 18:14:53 -07001089 if (mLauncherCallbacks != null) {
1090 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001091 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001092 }
1093
1094 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001095 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1096 // by a onResume or by scrolling otherwise.
1097 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001098
1099 // Custom content is completely hidden
1100 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001101
1102 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1103 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001104
1105 // Indicates whether the user is allowed to scroll away from the custom content.
1106 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001107 }
1108
Adam Cohenc2d6e892014-10-16 09:49:24 -07001109 public interface LauncherOverlay {
1110
1111 /**
1112 * Touch interaction leading to overscroll has begun
1113 */
1114 public void onScrollInteractionBegin();
1115
1116 /**
1117 * Touch interaction related to overscroll has ended
1118 */
1119 public void onScrollInteractionEnd();
1120
1121 /**
1122 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1123 * screen (or in the case of RTL, the rightmost screen).
1124 */
1125 public void onScrollChange(int progress, boolean rtl);
1126
1127 /**
1128 * Screen has stopped scrolling
1129 */
1130 public void onScrollSettled();
1131
1132 /**
1133 * This method can be called by the Launcher in order to force the LauncherOverlay
1134 * to exit fully immersive mode.
1135 */
1136 public void forceExitFullImmersion();
1137 }
1138
Jun Mukai8af0cd82015-05-12 12:32:12 -07001139 public interface LauncherSearchCallbacks {
1140 /**
1141 * Called when the search overlay is shown.
1142 */
1143 public void onSearchOverlayOpened();
1144
1145 /**
1146 * Called when the search overlay is dismissed.
1147 */
1148 public void onSearchOverlayClosed();
1149 }
1150
Adam Cohenc2d6e892014-10-16 09:49:24 -07001151 public interface LauncherOverlayCallbacks {
1152 /**
1153 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1154 * however it doesn't modify any state within the launcher.
1155 */
1156 public boolean canEnterFullImmersion();
1157
1158 /**
1159 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1160 * eg. by occupying the full screen and handling all touch events.
1161 *
1162 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1163 * case, Launcher will modify any necessary state and assumes the overlay is
1164 * handling all interaction. If false, the LauncherOverlay should cancel any
1165 *
1166 */
1167 public boolean enterFullImmersion();
1168
1169 /**
1170 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1171 * full control over UI and state.
1172 */
1173 public void exitFullImmersion();
1174 }
1175
1176 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1177
1178 @Override
1179 public boolean canEnterFullImmersion() {
1180 return mState == State.WORKSPACE;
1181 }
1182
1183 @Override
1184 public boolean enterFullImmersion() {
1185 if (mState == State.WORKSPACE) {
1186 // When fully immersed, disregard any touches which fall through.
1187 mDragLayer.setBlockTouch(true);
1188 return true;
1189 }
1190 return false;
1191 }
1192
1193 @Override
1194 public void exitFullImmersion() {
1195 mDragLayer.setBlockTouch(false);
1196 }
1197 }
1198
Jorim Jaggid017f882014-01-14 17:08:48 -08001199 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001200 if (mLauncherCallbacks != null) {
1201 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001202 } else {
1203 // On devices with a locked orientation, we will at least have the allow rotation
1204 // setting.
1205 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001206 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001207 }
1208
Adam Cohen9211d422014-10-07 18:14:53 -07001209 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001210 CustomContentCallbacks callbacks, String description) {
1211 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001212 }
1213
Adam Cohenedb40762013-07-18 16:45:45 -07001214 // The custom content needs to offset its content to account for the QSB
1215 public int getTopOffsetForCustomContent() {
1216 return mWorkspace.getPaddingTop();
1217 }
1218
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001219 @Override
1220 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001221 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001222 if (mModel.isCurrentCallbacks(this)) {
1223 mModel.stopLoader();
1224 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001225 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1226
Romain Guy13c2e7b2010-03-10 19:45:00 -08001227 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001228 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001229
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001230 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001231 @Override
1232 public void onWindowFocusChanged(boolean hasFocus) {
1233 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001234 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001235
1236 if (mLauncherCallbacks != null) {
1237 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1238 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001239 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001240
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001241 private boolean acceptFilter() {
1242 final InputMethodManager inputManager = (InputMethodManager)
1243 getSystemService(Context.INPUT_METHOD_SERVICE);
1244 return !inputManager.isFullscreenMode();
1245 }
1246
1247 @Override
1248 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001249 final int uniChar = event.getUnicodeChar();
1250 final boolean handled = super.onKeyDown(keyCode, event);
1251 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1252 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001253 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1254 keyCode, event);
1255 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001256 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001257 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001258 // showSearchDialog()
1259 // If there are multiple keystrokes before the search dialog takes focus,
1260 // onSearchRequested() will be called for every keystroke,
1261 // but it is idempotent, so it's fine.
1262 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001263 }
1264 }
1265
Joe Onorato8a9625e2010-01-28 15:55:35 -08001266 // Eat the long press event so the keyboard doesn't come up.
1267 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1268 return true;
1269 }
1270
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001271 return handled;
1272 }
1273
Karl Rosaen138a0412009-04-23 19:00:21 -07001274 private String getTypedText() {
1275 return mDefaultKeySsb.toString();
1276 }
1277
1278 private void clearTypedText() {
1279 mDefaultKeySsb.clear();
1280 mDefaultKeySsb.clearSpans();
1281 Selection.setSelection(mDefaultKeySsb, 0);
1282 }
1283
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001284 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001285 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1286 * State
1287 */
1288 private static State intToState(int stateOrdinal) {
1289 State state = State.WORKSPACE;
1290 final State[] stateValues = State.values();
1291 for (int i = 0; i < stateValues.length; i++) {
1292 if (stateValues[i].ordinal() == stateOrdinal) {
1293 state = stateValues[i];
1294 break;
1295 }
1296 }
1297 return state;
1298 }
1299
1300 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001301 * Restores the previous state, if it exists.
1302 *
1303 * @param savedState The previous state.
1304 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001305 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001306 private void restoreState(Bundle savedState) {
1307 if (savedState == null) {
1308 return;
1309 }
1310
Michael Jurka883f55b2010-10-21 15:47:14 -07001311 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001312 if (state == State.APPS || state == State.WIDGETS) {
1313 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001314 }
1315
Adam Cohen21cd0022013-10-09 18:57:02 -07001316 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1317 PagedView.INVALID_RESTORE_PAGE);
1318 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001319 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001320 }
1321
Winson Chung3d503fb2011-07-13 17:25:49 -07001322 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001323 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001324
Winson Chung3d503fb2011-07-13 17:25:49 -07001325 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1326 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001327 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001328 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1329 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001330 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1331 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001332 AppWidgetProviderInfo info = savedState.getParcelable(
1333 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001334 mPendingAddWidgetInfo = info == null ?
1335 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1336
Adam Cohen4637b5a2013-11-04 18:21:24 -08001337 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001338 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001339 mRestoring = true;
1340 }
1341
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001342 mItemIdToViewId = (HashMap<Integer, Integer>)
1343 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001344 }
1345
1346 /**
1347 * Finds all the views we need and configure them properly.
1348 */
1349 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001350 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001351
Craig Mautner360310b2012-10-26 15:13:08 -07001352 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001353 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001354 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1355 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001356 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001357 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001358
John Spurlock77e1f472013-09-11 10:09:51 -04001359 mLauncherView.setSystemUiVisibility(
1360 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001361 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001362
Winson Chung4c98d922011-05-31 16:50:48 -07001363 // Setup the drag layer
1364 mDragLayer.setup(this, dragController);
1365
Winson Chung3d503fb2011-07-13 17:25:49 -07001366 // Setup the hotseat
1367 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1368 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001369 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001370 }
1371
Jorim Jaggid017f882014-01-14 17:08:48 -08001372 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001373 mWidgetsButton = findViewById(R.id.widget_button);
1374 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001375 @Override
1376 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001377 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001378 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001379 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001380 }
1381 });
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001382 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001383
1384 View wallpaperButton = findViewById(R.id.wallpaper_button);
1385 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001386 @Override
1387 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001388 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001389 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001390 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001391 }
1392 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001393 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1394
1395 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001396 if (hasSettings()) {
1397 settingsButton.setOnClickListener(new OnClickListener() {
1398 @Override
1399 public void onClick(View arg0) {
1400 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001401 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001402 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001403 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001404 });
1405 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1406 } else {
1407 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001408 }
1409
Adam Cohendbdff6b2013-09-18 19:09:15 -07001410 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001411
Winson Chung4c98d922011-05-31 16:50:48 -07001412 // Setup the workspace
1413 mWorkspace.setHapticFeedbackEnabled(false);
1414 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001415 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001416 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001417
Winson Chungf0ea4d32011-06-06 14:27:16 -07001418 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001419 mSearchDropTargetBar = (SearchDropTargetBar)
1420 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001421
Winson Chungef7f8742015-06-04 17:18:17 -07001422 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001423 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001424 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001425 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1426 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1427 } else {
1428 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1429 }
Craig Mautner360310b2012-10-26 15:13:08 -07001430
Winson Chung3d503fb2011-07-13 17:25:49 -07001431 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001432 dragController.setDragScoller(mWorkspace);
1433 dragController.setScrollView(mDragLayer);
1434 dragController.setMoveTarget(mWorkspace);
1435 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001436 if (mSearchDropTargetBar != null) {
1437 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001438 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001439 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001440
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001441 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001442 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001443 mWeightWatcher = new WeightWatcher(this);
1444 mWeightWatcher.setAlpha(0.5f);
1445 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001446 new FrameLayout.LayoutParams(
1447 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001448 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001449 Gravity.BOTTOM)
1450 );
Adam Cohen39a06042013-07-19 14:30:12 -07001451
1452 boolean show = shouldShowWeightWatcher();
1453 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001454 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001455 }
1456
1457 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001458 * Sets the all apps button. This method is called from {@link Hotseat}.
1459 */
1460 public void setAllAppsButton(View allAppsButton) {
1461 mAllAppsButton = allAppsButton;
1462 }
1463
1464 public View getAllAppsButton() {
1465 return mAllAppsButton;
1466 }
1467
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001468 public View getWidgetsButton() {
1469 return mWidgetsButton;
1470 }
1471
Anjali Koppal5ad44842014-03-10 20:34:39 -07001472 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001473 * Creates a view representing a shortcut.
1474 *
1475 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001476 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001477 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001478 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001479 }
1480
1481 /**
1482 * Creates a view representing a shortcut inflated from the specified resource.
1483 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001484 * @param parent The group the shortcut belongs to.
1485 * @param info The data structure describing the shortcut.
1486 *
1487 * @return A View inflated from layoutResId.
1488 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001489 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001490 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001491 parent, false);
1492 favorite.applyFromShortcutInfo(info, mIconCache);
1493 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001494 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001495 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001496 return favorite;
1497 }
1498
1499 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001500 * Add a shortcut to the workspace.
1501 *
1502 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001503 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001504 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001505 int cellY) {
1506 int[] cellXY = mTmpAddItemCellCoordinates;
1507 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001508 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001509
Sunny Goyal5c97f512015-05-19 16:03:28 -07001510 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001511 if (info == null) {
1512 return;
1513 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001514 final View view = createShortcut(info);
1515
Sunny Goyal5c97f512015-05-19 16:03:28 -07001516 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001517 // First we check if we already know the exact location where we want to add this item.
1518 if (cellX >= 0 && cellY >= 0) {
1519 cellXY[0] = cellX;
1520 cellXY[1] = cellY;
1521 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001522
1523 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001524 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001525 true, null,null)) {
1526 return;
1527 }
1528 DragObject dragObject = new DragObject();
1529 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001530 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1531 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001532 return;
1533 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001534 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001535 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001536 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001537 foundCellSpan = (result != null);
1538 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001539 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001540 }
1541
1542 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001543 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001544 return;
1545 }
1546
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001547 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001548
1549 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001550 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001551 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001552 }
1553 }
1554
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001555 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001556 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001557 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001558 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001559 */
Adam Cohen091440a2015-03-18 14:16:05 -07001560 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001561 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1562
1563 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001564 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001565 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1566 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001567 }
Romain Guycbb89e42009-06-08 15:52:54 -07001568
Adam Cohen59400422014-03-05 18:07:04 -08001569 if (appWidgetInfo.isCustomWidget) {
1570 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001571 }
1572
Adam Cohen59400422014-03-05 18:07:04 -08001573 LauncherAppWidgetInfo launcherInfo;
1574 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1575 launcherInfo.spanX = info.spanX;
1576 launcherInfo.spanY = info.spanY;
1577 launcherInfo.minSpanX = info.minSpanX;
1578 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001579 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001580
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001581 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001582 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001583
1584 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001585 if (hostView == null) {
1586 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001587 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1588 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001589 } else {
1590 // The AppWidgetHostView has already been inflated and instantiated
1591 launcherInfo.hostView = hostView;
1592 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001593 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001594 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001595 launcherInfo.notifyWidgetSizeChanged(this);
1596
Adam Cohen59400422014-03-05 18:07:04 -08001597 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1598 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001599
1600 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001601 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001602 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001603 }
Romain Guycbb89e42009-06-08 15:52:54 -07001604
Adam Cohended9f8d2010-11-03 13:25:16 -07001605 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1606 @Override
1607 public void onReceive(Context context, Intent intent) {
1608 final String action = intent.getAction();
1609 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1610 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001611 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001612 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001613
Winson Chungc100e8e2011-08-09 16:02:43 -07001614 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001615 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001616 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001617 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001618 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001619 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001620 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1621 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001622 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001623 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1624 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001625 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001626 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1627 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1628 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001629 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001630 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1631 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001632 }
1633 }
1634 };
1635
1636 @Override
1637 public void onAttachedToWindow() {
1638 super.onAttachedToWindow();
1639
1640 // Listen for broadcasts related to user-presence
1641 final IntentFilter filter = new IntentFilter();
1642 filter.addAction(Intent.ACTION_SCREEN_OFF);
1643 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001644 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001645 if (ENABLE_DEBUG_INTENTS) {
1646 filter.addAction(DebugIntents.DELETE_DATABASE);
1647 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1648 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001649 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001650 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001651 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001652 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001653 mVisible = true;
1654 }
1655
Adam Cohen0b395352014-06-09 22:54:36 +00001656 /**
1657 * Sets up transparent navigation and status bars in LMP.
1658 * This method is a no-op for other platform versions.
1659 */
Sunny Goyald0091012015-01-20 15:55:34 -08001660 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Adam Cohen0b395352014-06-09 22:54:36 +00001661 private void setupTransparentSystemBarsForLmp() {
Kenny Guyd794a3f2014-09-16 15:17:58 +01001662 if (Utilities.isLmpOrAbove()) {
Sunny Goyald0091012015-01-20 15:55:34 -08001663 Window window = getWindow();
1664 window.getAttributes().systemUiVisibility |=
1665 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1666 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1667 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1668 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1669 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1670 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1671 window.setStatusBarColor(Color.TRANSPARENT);
1672 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001673 }
1674 }
1675
Adam Cohended9f8d2010-11-03 13:25:16 -07001676 @Override
1677 public void onDetachedFromWindow() {
1678 super.onDetachedFromWindow();
1679 mVisible = false;
1680
Adam Cohend113e0c2010-11-11 10:48:05 -08001681 if (mAttached) {
1682 unregisterReceiver(mReceiver);
1683 mAttached = false;
1684 }
Winson Chungb745afb2015-03-02 11:51:23 -08001685 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001686 }
1687
1688 public void onWindowVisibilityChanged(int visibility) {
1689 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001690 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001691 // The following code used to be in onResume, but it turns out onResume is called when
1692 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1693 // is a more appropriate event to handle
1694 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001695 if (!mWorkspaceLoading) {
1696 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001697 // We want to let Launcher draw itself at least once before we force it to build
1698 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001699 // apps is nice and speedy.
1700 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001701 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001702 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001703 if (mStarted) return;
1704 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001705 // We delay the layer building a bit in order to give
1706 // other message processing a time to run. In particular
1707 // this avoids a delay in hiding the IME if it was
1708 // currently shown, because doing that may involve
1709 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001710 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001711 final ViewTreeObserver.OnDrawListener listener = this;
1712 mWorkspace.post(new Runnable() {
1713 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001714 if (mWorkspace != null &&
1715 mWorkspace.getViewTreeObserver() != null) {
1716 mWorkspace.getViewTreeObserver().
1717 removeOnDrawListener(listener);
1718 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001719 }
1720 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001721 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001722 }
1723 });
1724 }
1725 clearTypedText();
1726 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001727 }
1728
Adam Cohen091440a2015-03-18 14:16:05 -07001729 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001730 mHandler.removeMessages(ADVANCE_MSG);
1731 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1732 mHandler.sendMessageDelayed(msg, delay);
1733 mAutoAdvanceSentTime = System.currentTimeMillis();
1734 }
1735
Adam Cohen091440a2015-03-18 14:16:05 -07001736 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001737 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1738 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1739 mAutoAdvanceRunning = autoAdvanceRunning;
1740 if (autoAdvanceRunning) {
1741 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1742 sendAdvanceMessage(delay);
1743 } else {
1744 if (!mWidgetsToAdvance.isEmpty()) {
1745 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1746 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1747 }
1748 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001749 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001750 }
1751 }
1752 }
1753
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001754 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1755
Adam Cohended9f8d2010-11-03 13:25:16 -07001756 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001757 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001758 if (msg.what == ADVANCE_MSG) {
1759 int i = 0;
1760 for (View key: mWidgetsToAdvance.keySet()) {
1761 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1762 final int delay = mAdvanceStagger * i;
1763 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001764 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001765 public void run() {
1766 ((Advanceable) v).advance();
1767 }
1768 }, delay);
1769 }
1770 i++;
1771 }
1772 sendAdvanceMessage(mAdvanceInterval);
1773 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001774 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001775 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001776 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001777
1778 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001779 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001780 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1781 if (v instanceof Advanceable) {
1782 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001783 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001784 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001785 }
1786 }
1787
1788 void removeWidgetToAutoAdvance(View hostView) {
1789 if (mWidgetsToAdvance.containsKey(hostView)) {
1790 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001791 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001792 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001793 }
1794
Joe Onorato9c1289c2009-08-17 11:03:03 -04001795 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001796 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001797 launcherInfo.hostView = null;
1798 }
1799
Hyunyoung Song3f471442015-04-08 19:01:34 -07001800 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001801 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1802 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001803 }
1804
Winson Chunga6945242014-01-08 14:04:34 -08001805 public DragLayer getDragLayer() {
1806 return mDragLayer;
1807 }
1808
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001809 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001810 return mAppsView;
1811 }
1812
Hyunyoung Song3f471442015-04-08 19:01:34 -07001813 public WidgetsContainerView getWidgetsView() {
1814 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001815 }
1816
Winson Chunga6945242014-01-08 14:04:34 -08001817 public Workspace getWorkspace() {
1818 return mWorkspace;
1819 }
1820
1821 public Hotseat getHotseat() {
1822 return mHotseat;
1823 }
1824
Jorim Jaggid017f882014-01-14 17:08:48 -08001825 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001826 return mOverviewPanel;
1827 }
1828
Winson Chung006ee262015-08-03 14:40:11 -07001829 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001830 return mSearchDropTargetBar;
1831 }
1832
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001833 public LauncherAppWidgetHost getAppWidgetHost() {
1834 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001835 }
Romain Guycbb89e42009-06-08 15:52:54 -07001836
Winson Chunga9abd0e2010-10-27 17:18:37 -07001837 public LauncherModel getModel() {
1838 return mModel;
1839 }
1840
Winson Chunga6945242014-01-08 14:04:34 -08001841 protected SharedPreferences getSharedPrefs() {
1842 return mSharedPrefs;
1843 }
1844
Adam Cohen2e6da152015-05-06 11:42:25 -07001845 public DeviceProfile getDeviceProfile() {
1846 return mDeviceProfile;
1847 }
1848
Bjorn Bringertc459e522013-06-07 19:36:01 +01001849 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001850 getWindow().closeAllPanels();
1851
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001852 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001853 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001854 }
1855
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001856 @Override
1857 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001858 long startTime = 0;
1859 if (DEBUG_RESUME_TIME) {
1860 startTime = System.currentTimeMillis();
1861 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001862 super.onNewIntent(intent);
1863
1864 // Close the menu
1865 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001866 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001867 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001868
Adam Cohened307df2013-10-02 09:37:31 -07001869 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1870 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1871 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001872
Adam Cohen6fecd412013-10-02 17:41:50 -07001873 if (mWorkspace == null) {
1874 // Can be cases where mWorkspace is null, this prevents a NPE
1875 return;
1876 }
1877 Folder openFolder = mWorkspace.getOpenFolder();
1878 // In all these cases, only animate if we're already on home
1879 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001880
1881 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1882 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Adam Cohen6fecd412013-10-02 17:41:50 -07001883 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Cohen9211d422014-10-07 18:14:53 -07001884 openFolder == null && moveToDefaultScreen) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001885 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001886 }
Romain Guy1dd3a072009-07-16 13:21:01 -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
Michael Jurka447bf842013-05-15 14:52:15 +02001921 if (DEBUG_RESUME_TIME) {
1922 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1923 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001924
Adam Cohen9211d422014-10-07 18:14:53 -07001925 if (mLauncherCallbacks != null) {
1926 mLauncherCallbacks.onNewIntent(intent);
1927 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001928 }
1929
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001930 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001931 public void onRestoreInstanceState(Bundle state) {
1932 super.onRestoreInstanceState(state);
1933 for (int page: mSynchronouslyBoundPages) {
1934 mWorkspace.restoreInstanceStateForChild(page);
1935 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001936 }
1937
1938 @Override
1939 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001940 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001941 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1942 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001943 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001944 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001945
Michael Jurka883f55b2010-10-21 15:47:14 -07001946 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001947 // We close any open folder since it will not be re-opened, and we need to make sure
1948 // this state is reflected.
1949 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001950
Adam Cohendcd297f2013-06-18 13:13:40 -07001951 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001952 mWaitingForResult) {
1953 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001954 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001955 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1956 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001957 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1958 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1959 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001960 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001961 }
1962
Hyunyoung Song3f471442015-04-08 19:01:34 -07001963 // Save the current widgets tray?
1964 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001965 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001966
1967 if (mLauncherCallbacks != null) {
1968 mLauncherCallbacks.onSaveInstanceState(outState);
1969 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001970 }
1971
1972 @Override
1973 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001974 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001975
Winson Chunge7a03942011-08-05 15:05:12 -07001976 // Remove all pending runnables
1977 mHandler.removeMessages(ADVANCE_MSG);
1978 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001979 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001980
Winson Chungcd2b0142011-06-08 16:02:26 -07001981 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001982 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001983
1984 // It's possible to receive onDestroy after a new Launcher activity has
1985 // been created. In this case, don't interfere with the new Launcher.
1986 if (mModel.isCurrentCallbacks(this)) {
1987 mModel.stopLoader();
1988 app.setLauncher(null);
1989 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001990
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001991 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001992 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001993 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001994 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001995 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001996 mAppWidgetHost = null;
1997
1998 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001999
2000 TextKeyListener.getInstance().release();
2001
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002002 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002003
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002004 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002005 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002006 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002007 mWorkspace = null;
2008 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002009
Michael Jurka2ecf9952012-06-18 12:52:28 -07002010 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002011
2012 if (mLauncherCallbacks != null) {
2013 mLauncherCallbacks.onDestroy();
2014 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002015 }
2016
Adam Cohena9cf38f2011-05-02 15:36:58 -07002017 public DragController getDragController() {
2018 return mDragController;
2019 }
2020
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002021 @Override
2022 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002023 onStartForResult(requestCode);
2024 super.startActivityForResult(intent, requestCode);
2025 }
2026
2027 @Override
2028 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2029 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2030 onStartForResult(requestCode);
2031 try {
2032 super.startIntentSenderForResult(intent, requestCode,
2033 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2034 } catch (IntentSender.SendIntentException e) {
2035 throw new ActivityNotFoundException();
2036 }
2037 }
2038
2039 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002040 if (requestCode >= 0) {
2041 setWaitingForResult(true);
2042 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002043 }
2044
Winson Chung70d72102011-08-12 11:24:35 -07002045 /**
2046 * Indicates that we want global search for this activity by setting the globalSearch
2047 * argument for {@link #startSearch} to true.
2048 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002049 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002050 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002051 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002052
Karl Rosaen138a0412009-04-23 19:00:21 -07002053 if (initialQuery == null) {
2054 // Use any text typed in the launcher as the initial query
2055 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002056 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002057 if (appSearchData == null) {
2058 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002059 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002060 }
Winson Chungadf0c182012-08-23 14:59:07 -07002061 Rect sourceBounds = new Rect();
2062 if (mSearchDropTargetBar != null) {
2063 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2064 }
Romain Guycbb89e42009-06-08 15:52:54 -07002065
Ian Parkinson047036e2014-09-01 15:40:53 +01002066 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002067 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002068 if (clearTextImmediately) {
2069 clearTypedText();
2070 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002071
2072 // We need to show the workspace after starting the search
2073 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002074 }
2075
Ian Parkinson047036e2014-09-01 15:40:53 +01002076 /**
2077 * Start a text search.
2078 *
2079 * @return {@code true} if the search will start immediately, so any further keypresses
2080 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2081 * to buffer keypresses.
2082 */
2083 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002084 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002085 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2086 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2087 sourceBounds);
2088 }
2089
Michael Jurkaa33411c2012-06-14 16:18:21 -07002090 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002091 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002092 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002093 }
2094
2095 /**
2096 * Starts the global search activity. This code is a copied from SearchManager
2097 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002098 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002099 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002100 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002101 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2102 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2103 if (globalSearchActivity == null) {
2104 Log.w(TAG, "No global search activity found.");
2105 return;
2106 }
2107 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2108 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2109 intent.setComponent(globalSearchActivity);
2110 // Make sure that we have a Bundle to put source in
2111 if (appSearchData == null) {
2112 appSearchData = new Bundle();
2113 } else {
2114 appSearchData = new Bundle(appSearchData);
2115 }
Adam Cohen9211d422014-10-07 18:14:53 -07002116 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002117 if (!appSearchData.containsKey("source")) {
2118 appSearchData.putString("source", getPackageName());
2119 }
2120 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2121 if (!TextUtils.isEmpty(initialQuery)) {
2122 intent.putExtra(SearchManager.QUERY, initialQuery);
2123 }
2124 if (selectInitialQuery) {
2125 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2126 }
2127 intent.setSourceBounds(sourceBounds);
2128 try {
2129 startActivity(intent);
2130 } catch (ActivityNotFoundException ex) {
2131 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2132 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002133 }
2134
Yura4f93ec62014-02-04 14:15:21 +00002135 public boolean isOnCustomContent() {
2136 return mWorkspace.isOnOrMovingToCustomContent();
2137 }
2138
Winson Chung70d72102011-08-12 11:24:35 -07002139 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002140 public boolean onPrepareOptionsMenu(Menu menu) {
2141 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002142 if (!isOnCustomContent()) {
2143 // Close any open folders
2144 closeFolder();
2145 // Stop resizing any widgets
2146 mWorkspace.exitWidgetResizeMode();
2147 if (!mWorkspace.isInOverviewMode()) {
2148 // Show the overview mode
2149 showOverviewMode(true);
2150 } else {
2151 showWorkspace(true);
2152 }
Winson Chunge0298742014-01-17 12:03:00 -08002153 }
Adam Cohen9211d422014-10-07 18:14:53 -07002154 if (mLauncherCallbacks != null) {
2155 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2156 }
2157
Michael Jurkab94f3f82013-09-11 18:08:54 +02002158 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002159 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002160
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002161 @Override
2162 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002163 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002164 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002165 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002166 }
2167
Joe Onorato9c1289c2009-08-17 11:03:03 -04002168 public boolean isWorkspaceLocked() {
2169 return mWorkspaceLoading || mWaitingForResult;
2170 }
2171
Adam Cohen517a7f52014-03-01 12:12:59 -08002172 public boolean isWorkspaceLoading() {
2173 return mWorkspaceLoading;
2174 }
2175
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002176 private void setWorkspaceLoading(boolean value) {
2177 boolean isLocked = isWorkspaceLocked();
2178 mWorkspaceLoading = value;
2179 if (isLocked != isWorkspaceLocked()) {
2180 onWorkspaceLockedChanged();
2181 }
2182 }
2183
2184 private void setWaitingForResult(boolean value) {
2185 boolean isLocked = isWorkspaceLocked();
2186 mWaitingForResult = value;
2187 if (isLocked != isWorkspaceLocked()) {
2188 onWorkspaceLockedChanged();
2189 }
2190 }
2191
Adam Cohen9211d422014-10-07 18:14:53 -07002192 protected void onWorkspaceLockedChanged() {
2193 if (mLauncherCallbacks != null) {
2194 mLauncherCallbacks.onWorkspaceLockedChanged();
2195 }
2196 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002197
Michael Jurka0280c3b2010-09-17 15:00:07 -07002198 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002199 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002200 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002201 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2202 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002203 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002204 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002205 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002206
Sunny Goyale6b63a32015-01-16 16:14:29 -08002207 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002208 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002209 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2210 }
2211
Sunny Goyale6b63a32015-01-16 16:14:29 -08002212 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002213 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2214 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002215 if (appWidgetInfo.configure != null) {
2216 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002217 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002218
Bjorn Bringert7984c942009-12-09 15:38:25 +00002219 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002220 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2221 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2222
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002223 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002224 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002225 Runnable onComplete = new Runnable() {
2226 @Override
2227 public void run() {
2228 // Exit spring loaded mode if necessary after adding the widget
2229 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2230 null);
2231 }
2232 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002233 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002234 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002235 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002236 }
2237 }
Romain Guycbb89e42009-06-08 15:52:54 -07002238
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002239 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002240 // Close any folders that may be open.
2241 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002242 mWorkspace.moveToCustomContentScreen(animate);
2243 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002244
2245 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2246 int[] cell, int spanX, int spanY) {
2247 switch (info.itemType) {
2248 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2249 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2250 int span[] = new int[2];
2251 span[0] = spanX;
2252 span[1] = spanY;
2253 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2254 container, screenId, cell, span);
2255 break;
2256 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2257 processShortcutFromDrop(info.componentName, container, screenId, cell);
2258 break;
2259 default:
2260 throw new IllegalStateException("Unknown item type: " + info.itemType);
2261 }
2262 }
2263
Adam Cohenfbba09b2011-07-18 21:43:05 -07002264 /**
2265 * Process a shortcut drop.
2266 *
2267 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002268 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002269 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002270 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002271 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2272 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002273 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002274 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002275 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002276 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002277
2278 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002279 mPendingAddInfo.cellX = cell[0];
2280 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002281 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002282
2283 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2284 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002285 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002286 }
2287
Adam Cohenfbba09b2011-07-18 21:43:05 -07002288 /**
2289 * Process a widget drop.
2290 *
2291 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002292 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002293 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002294 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002295 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2296 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002297 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002298 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002299 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002300 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002301 mPendingAddInfo.minSpanX = info.minSpanX;
2302 mPendingAddInfo.minSpanY = info.minSpanY;
2303
Adam Cohenfbba09b2011-07-18 21:43:05 -07002304 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 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002308 if (span != null) {
2309 mPendingAddInfo.spanX = span[0];
2310 mPendingAddInfo.spanY = span[1];
2311 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002312
Adam Cohened66b2b2012-01-23 17:28:51 -08002313 AppWidgetHostView hostView = info.boundWidget;
2314 int appWidgetId;
2315 if (hostView != null) {
2316 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002317 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002318
2319 // Clear the boundWidget so that it doesn't get destroyed.
2320 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002321 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002322 // In this case, we either need to start an activity to get permission to bind
2323 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002324 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002325 Bundle options = info.bindOptions;
2326
Sunny Goyalffe83f12014-08-14 17:39:34 -07002327 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2328 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002329 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002330 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002331 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002332 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002333 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2334 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2335 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002336 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2337 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002338 // TODO: we need to make sure that this accounts for the options bundle.
2339 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002340 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2341 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002342 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002343 }
2344
Adam Cohendcd297f2013-06-18 13:13:40 -07002345 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002346 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002347 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002348 folderInfo.title = getText(R.string.folder_name);
2349
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002350 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002351 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2352 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002353 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002354
2355 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002356 FolderIcon newFolder =
2357 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002358 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002359 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002360 // Force measure the new folder icon
2361 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2362 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002363 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002364 }
Romain Guycbb89e42009-06-08 15:52:54 -07002365
Joe Onorato9c1289c2009-08-17 11:03:03 -04002366 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002367 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002368 }
2369
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002370 @Override
2371 public boolean dispatchKeyEvent(KeyEvent event) {
2372 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2373 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002374 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002375 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002376 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002377 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002378 dumpState();
2379 return true;
2380 }
2381 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002382 }
2383 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2384 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002385 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002386 return true;
2387 }
2388 }
2389
2390 return super.dispatchKeyEvent(event);
2391 }
2392
Joe Onorato88ec0992009-11-19 13:16:06 -08002393 @Override
2394 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002395 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2396 return;
2397 }
2398
Sunny Goyal45478022015-06-08 16:52:41 -07002399 if (mDragController.isDragging()) {
2400 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002401 return;
2402 }
2403
Winson Chungb745afb2015-03-02 11:51:23 -08002404 if (isAppsViewVisible()) {
2405 showWorkspace(true);
2406 } else if (isWidgetsViewVisible()) {
2407 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002408 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002409 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002410 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002411 Folder openFolder = mWorkspace.getOpenFolder();
2412 if (openFolder.isEditingName()) {
2413 openFolder.dismissEditingName();
2414 } else {
2415 closeFolder();
2416 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002417 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002418 mWorkspace.exitWidgetResizeMode();
2419
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002420 // Back button is a no-op here, but give at least some feedback for the button press
2421 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002422 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002423 }
2424
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002425 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002426 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002427 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002428 @Override
2429 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002430 if (mAppWidgetHost != null) {
2431 mAppWidgetHost.startListening();
2432 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002433 }
2434
2435 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002436 * Launches the intent referred by the clicked shortcut.
2437 *
2438 * @param v The view representing the clicked shortcut.
2439 */
2440 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002441 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2442 // view has detached (it's possible for this to happen if the view is removed mid touch).
2443 if (v.getWindowToken() == null) {
2444 return;
2445 }
2446
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002447 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002448 return;
2449 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002450
Adam Cohen1697b792013-09-17 19:08:21 -07002451 if (v instanceof Workspace) {
2452 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002453 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002454 }
2455 return;
2456 }
2457
2458 if (v instanceof CellLayout) {
2459 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002460 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002461 }
2462 }
2463
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002464 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002465 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002466 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002467 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002468 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002469 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002470 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002471 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002472 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002473 } else if (tag instanceof AppInfo) {
2474 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002475 } else if (tag instanceof LauncherAppWidgetInfo) {
2476 if (v instanceof PendingAppWidgetHostView) {
2477 onClickPendingWidget((PendingAppWidgetHostView) v);
2478 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002479 }
2480 }
2481
Sunny Goyal70660032015-05-14 00:07:08 -07002482 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002483 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002484 return false;
2485 }
2486
Michael Jurkaaf442092010-06-10 17:01:57 -07002487 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002488 * Event handler for the app widget view which has not fully restored.
2489 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002490 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002491 if (mIsSafeModeEnabled) {
2492 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2493 return;
2494 }
2495
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002496 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002497 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002498 int widgetId = info.appWidgetId;
2499 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2500 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002501 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2502 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002503 mPendingAddInfo.copyFrom(info);
2504 mPendingAddWidgetId = widgetId;
2505
Sunny Goyalffe83f12014-08-14 17:39:34 -07002506 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2507 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002508 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002509 } else if (info.installProgress < 0) {
2510 // The install has not been queued
2511 final String packageName = info.providerName.getPackageName();
2512 showBrokenAppInstallDialog(packageName,
2513 new DialogInterface.OnClickListener() {
2514 public void onClick(DialogInterface dialog, int id) {
2515 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2516 }
2517 });
2518 } else {
2519 // Download has started.
2520 final String packageName = info.providerName.getPackageName();
2521 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002522 }
2523 }
2524
2525 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002526 * Event handler for the "grid" button that appears on the home screen, which
2527 * enters all apps mode.
2528 *
2529 * @param v The view that was clicked.
2530 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002531 protected void onClickAllAppsButton(View v) {
2532 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002533 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002534 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002535 true /* updatePredictedApps */, false /* focusSearchBar */);
2536 }
2537 }
2538
2539 protected void onLongClickAllAppsButton(View v) {
2540 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2541 if (!isAppsViewVisible()) {
2542 showAppsView(true /* animated */, false /* resetListToTop */,
2543 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002544 }
2545 }
2546
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002547 private void showBrokenAppInstallDialog(final String packageName,
2548 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002549 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002550 .setTitle(R.string.abandoned_promises_title)
2551 .setMessage(R.string.abandoned_promise_explanation)
2552 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2553 .setNeutralButton(R.string.abandoned_clean_this,
2554 new DialogInterface.OnClickListener() {
2555 public void onClick(DialogInterface dialog, int id) {
2556 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2557 mWorkspace.removeAbandonedPromise(packageName, user);
2558 }
2559 })
2560 .create().show();
2561 return;
2562 }
2563
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002564 /**
2565 * Event handler for an app shortcut click.
2566 *
2567 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2568 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002569 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002570 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2571 Object tag = v.getTag();
2572 if (!(tag instanceof ShortcutInfo)) {
2573 throw new IllegalArgumentException("Input must be a Shortcut");
2574 }
2575
2576 // Open shortcut
2577 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002578
2579 if (shortcut.isDisabled != 0) {
2580 int error = R.string.activity_not_available;
2581 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2582 error = R.string.safemode_shortcut_error;
2583 }
2584 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2585 return;
2586 }
2587
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002588 final Intent intent = shortcut.intent;
2589
2590 // Check for special shortcuts
2591 if (intent.getComponent() != null) {
2592 final String shortcutClass = intent.getComponent().getClassName();
2593
2594 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2595 MemoryDumpActivity.startDump(this);
2596 return;
2597 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2598 toggleShowWeightWatcher();
2599 return;
2600 }
2601 }
2602
Chris Wren40c5ed32014-06-24 18:24:23 -04002603 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002604 if ((v instanceof BubbleTextView)
2605 && shortcut.isPromise()
2606 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002607 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002608 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002609 new DialogInterface.OnClickListener() {
2610 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002611 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002612 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002613 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002614 return;
2615 }
2616
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002617 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002618 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002619
2620 if (mLauncherCallbacks != null) {
2621 mLauncherCallbacks.onClickAppShortcut(v);
2622 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002623 }
2624
Adam Cohen091440a2015-03-18 14:16:05 -07002625 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002626 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002627 final ShortcutInfo shortcut;
2628 final Intent intent;
2629 if (tag instanceof ShortcutInfo) {
2630 shortcut = (ShortcutInfo) tag;
2631 intent = shortcut.intent;
2632 int[] pos = new int[2];
2633 v.getLocationOnScreen(pos);
2634 intent.setSourceBounds(new Rect(pos[0], pos[1],
2635 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002636
Sunny Goyal508da152014-08-14 10:53:27 -07002637 } else if (tag instanceof AppInfo) {
2638 shortcut = null;
2639 intent = ((AppInfo) tag).intent;
2640 } else {
2641 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2642 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002643
2644 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002645 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002646
2647 if (success && v instanceof BubbleTextView) {
2648 mWaitingForResume = (BubbleTextView) v;
2649 mWaitingForResume.setStayPressed(true);
2650 }
2651 }
2652
2653 /**
2654 * Event handler for a folder icon click.
2655 *
2656 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2657 */
2658 protected void onClickFolderIcon(View v) {
2659 if (LOGD) Log.d(TAG, "onClickFolder");
2660 if (!(v instanceof FolderIcon)){
2661 throw new IllegalArgumentException("Input must be a FolderIcon");
2662 }
2663
Sunny Goyal317698b2015-07-29 11:45:41 -07002664 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002665 FolderIcon folderIcon = (FolderIcon) v;
2666 final FolderInfo info = folderIcon.getFolderInfo();
2667 Folder openFolder = mWorkspace.getFolderForTag(info);
2668
2669 // If the folder info reports that the associated folder is open, then verify that
2670 // it is actually opened. There have been a few instances where this gets out of sync.
2671 if (info.opened && openFolder == null) {
2672 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2673 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2674 info.opened = false;
2675 }
2676
2677 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2678 // Close any open folder
2679 closeFolder();
2680 // Open the requested folder
2681 openFolder(folderIcon);
2682 } else {
2683 // Find the open folder...
2684 int folderScreen;
2685 if (openFolder != null) {
2686 folderScreen = mWorkspace.getPageForView(openFolder);
2687 // .. and close it
2688 closeFolder(openFolder);
2689 if (folderScreen != mWorkspace.getCurrentPage()) {
2690 // Close any folder open on the current screen
2691 closeFolder();
2692 // Pull the folder onto this screen
2693 openFolder(folderIcon);
2694 }
2695 }
2696 }
Adam Cohen9211d422014-10-07 18:14:53 -07002697
2698 if (mLauncherCallbacks != null) {
2699 mLauncherCallbacks.onClickFolderIcon(v);
2700 }
Michael Jurka5130e402011-10-13 04:55:35 -07002701 }
2702
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002703 /**
2704 * Event handler for the (Add) Widgets button that appears after a long press
2705 * on the home screen.
2706 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002707 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002708 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002709 if (mIsSafeModeEnabled) {
2710 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2711 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002712 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002713 if (mLauncherCallbacks != null) {
2714 mLauncherCallbacks.onClickAddWidgetButton(view);
2715 }
Adam Cohen9211d422014-10-07 18:14:53 -07002716 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002717 }
2718
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002719 /**
2720 * Event handler for the wallpaper picker button that appears after a long press
2721 * on the home screen.
2722 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002723 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002724 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002725 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2726 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002727
2728 if (mLauncherCallbacks != null) {
2729 mLauncherCallbacks.onClickWallpaperPicker(v);
2730 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002731 }
2732
2733 /**
2734 * Event handler for a click on the settings button that appears after a long press
2735 * on the home screen.
2736 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002737 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002738 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002739 if (mLauncherCallbacks != null) {
2740 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002741 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002742 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002743 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002744 }
2745
Adam Cohen61f560d2013-09-30 15:58:20 -07002746 public View.OnTouchListener getHapticFeedbackTouchListener() {
2747 if (mHapticFeedbackTouchListener == null) {
2748 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002749 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002750 @Override
2751 public boolean onTouch(View v, MotionEvent event) {
2752 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2753 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2754 }
2755 return false;
2756 }
2757 };
2758 }
2759 return mHapticFeedbackTouchListener;
2760 }
2761
Adam Cohen9211d422014-10-07 18:14:53 -07002762 public void onDragStarted(View view) {
2763 if (isOnCustomContent()) {
2764 // Custom content screen doesn't participate in drag and drop. If on custom
2765 // content screen, move to default.
2766 moveWorkspaceToDefaultScreen();
2767 }
2768
2769 if (mLauncherCallbacks != null) {
2770 mLauncherCallbacks.onDragStarted(view);
2771 }
2772 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002773
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002774 /**
2775 * Called when the user stops interacting with the launcher.
2776 * This implies that the user is now on the homescreen and is not doing housekeeping.
2777 */
Adam Cohen9211d422014-10-07 18:14:53 -07002778 protected void onInteractionEnd() {
2779 if (mLauncherCallbacks != null) {
2780 mLauncherCallbacks.onInteractionEnd();
2781 }
2782 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002783
2784 /**
2785 * Called when the user starts interacting with the launcher.
2786 * The possible interactions are:
2787 * - open all apps
2788 * - reorder an app shortcut, or a widget
2789 * - open the overview mode.
2790 * This is a good time to stop doing things that only make sense
2791 * when the user is on the homescreen and not doing housekeeping.
2792 */
Adam Cohen9211d422014-10-07 18:14:53 -07002793 protected void onInteractionBegin() {
2794 if (mLauncherCallbacks != null) {
2795 mLauncherCallbacks.onInteractionBegin();
2796 }
2797 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002798
Winson Chungcd99cd32015-04-29 11:03:24 -07002799 /** Updates the interaction state. */
2800 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002801 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002802 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002803 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2804 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002805 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002806 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002807 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002808 onInteractionEnd();
2809 }
2810 }
2811
Kenny Guyf07af7b2014-07-31 11:39:16 +01002812 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002813 try {
2814 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002815 launcherApps.showAppDetailsForProfile(componentName, user);
2816 } catch (SecurityException e) {
2817 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2818 Log.e(TAG, "Launcher does not have permission to launch settings");
2819 } catch (ActivityNotFoundException e) {
2820 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2821 Log.e(TAG, "Unable to launch settings");
2822 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002823 }
2824
Michael Jurka1e2f4652013-07-08 18:03:46 -07002825 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002826 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2827 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002828 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002829 // System applications cannot be installed. For now, show a toast explaining that.
2830 // We may give them the option of disabling apps this way.
2831 int messageId = R.string.uninstall_system_app_text;
2832 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002833 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002834 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002835 String packageName = componentName.getPackageName();
2836 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002837 Intent intent = new Intent(
2838 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002839 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2840 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002841 if (user != null) {
2842 user.addToIntent(intent, Intent.EXTRA_USER);
2843 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002844 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002845 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002846 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002847 }
2848
Winson Chung8f1eff72015-05-28 17:33:40 -07002849 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002850 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002851 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002852 // Only launch using the new animation if the shortcut has not opted out (this is a
2853 // private contract between launcher and may be ignored in the future).
2854 boolean useLaunchAnimation = (v != null) &&
2855 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002856 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2857 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002858
Kenny Guy1317e2d2014-05-08 18:52:50 +01002859 UserHandleCompat user = null;
2860 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2861 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2862 user = userManager.getUserForSerialNumber(serialNumber);
2863 }
2864
2865 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002866 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002867 ActivityOptions opts = null;
2868 if (sClipRevealMethod != null) {
2869 // TODO: call method directly when Launcher3 can depend on M APIs
2870 int left = 0, top = 0;
2871 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2872 if (v instanceof TextView) {
2873 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002874 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2875 if (icon != null) {
2876 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002877 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002878 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002879 width = bounds.width();
2880 height = bounds.height();
2881 }
2882 }
2883 try {
2884 opts = (ActivityOptions) sClipRevealMethod.invoke(null, v,
2885 left, top, width, height);
2886 } catch (IllegalAccessException e) {
2887 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2888 sClipRevealMethod = null;
2889 } catch (InvocationTargetException e) {
2890 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2891 sClipRevealMethod = null;
2892 }
2893 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002894 if (opts == null && !Utilities.isLmpOrAbove()) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002895 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002896 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002897 v.getMeasuredWidth(), v.getMeasuredHeight());
Adam Cohen947e02b2015-05-22 19:23:34 -07002898 } else if (opts == null && Utilities.isLmpMR1()) {
2899 // On L devices, we use the device default slide-up transition.
2900 // On L MR1 devices, we a custom version of the slide-up transition which
2901 // doesn't have the delay present in the device default.
2902 opts = ActivityOptions.makeCustomAnimation(this,
2903 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002904 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002905 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002906 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002907
2908 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2909 // Could be launching some bookkeeping activity
2910 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002911 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002912 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002913 launcherApps.startActivityForProfile(intent.getComponent(), user,
2914 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002915 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002916 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002917 } catch (SecurityException e) {
2918 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002919 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002920 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002921 "or use the exported attribute for this activity. "
2922 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002923 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002924 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002925 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002926
Sunny Goyal383c5072015-06-12 21:18:53 -07002927 @Thunk boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002928 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002929 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2930 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2931 return false;
2932 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002933 try {
2934 success = startActivity(v, intent, tag);
2935 } catch (ActivityNotFoundException e) {
2936 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2937 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2938 }
2939 return success;
2940 }
2941
Adam Cohen268c4752012-06-06 17:47:33 -07002942 /**
2943 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2944 * in the DragLayer in the exact absolute location of the original FolderIcon.
2945 */
2946 private void copyFolderIconToImage(FolderIcon fi) {
2947 final int width = fi.getMeasuredWidth();
2948 final int height = fi.getMeasuredHeight();
2949
2950 // Lazy load ImageView, Bitmap and Canvas
2951 if (mFolderIconImageView == null) {
2952 mFolderIconImageView = new ImageView(this);
2953 }
2954 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2955 mFolderIconBitmap.getHeight() != height) {
2956 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2957 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2958 }
2959
2960 DragLayer.LayoutParams lp;
2961 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2962 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2963 } else {
2964 lp = new DragLayer.LayoutParams(width, height);
2965 }
2966
Adam Cohen307fe232012-08-16 17:55:58 -07002967 // The layout from which the folder is being opened may be scaled, adjust the starting
2968 // view size by this scale factor.
2969 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002970 lp.customPosition = true;
2971 lp.x = mRectForFolderAnimation.left;
2972 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002973 lp.width = (int) (scale * width);
2974 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002975
2976 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2977 fi.draw(mFolderIconCanvas);
2978 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002979 if (fi.getFolder() != null) {
2980 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2981 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002982 }
Adam Cohen268c4752012-06-06 17:47:33 -07002983 // Just in case this image view is still in the drag layer from a previous animation,
2984 // we remove it and re-add it.
2985 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2986 mDragLayer.removeView(mFolderIconImageView);
2987 }
2988 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002989 if (fi.getFolder() != null) {
2990 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002991 }
Adam Cohen268c4752012-06-06 17:47:33 -07002992 }
2993
Adam Cohen2801caf2011-05-13 20:57:39 -07002994 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002995 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002996 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2997 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2998 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2999
Adam Cohenc51934b2011-07-26 21:07:43 -07003000 FolderInfo info = (FolderInfo) fi.getTag();
3001 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3002 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003003 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3004 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003005 }
3006
Adam Cohen268c4752012-06-06 17:47:33 -07003007 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3008 copyFolderIconToImage(fi);
3009 fi.setVisibility(View.INVISIBLE);
3010
Michael Jurka2ecf9952012-06-18 12:52:28 -07003011 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003012 scaleX, scaleY);
Kenny Guyd794a3f2014-09-16 15:17:58 +01003013 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003014 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3015 }
3016 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003017 oa.start();
3018 }
3019
Adam Cohen268c4752012-06-06 17:47:33 -07003020 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003021 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003022 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3023 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3024 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3025
Adam Cohen268c4752012-06-06 17:47:33 -07003026 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003027
Adam Cohen268c4752012-06-06 17:47:33 -07003028 // We remove and re-draw the FolderIcon in-case it has changed
3029 mDragLayer.removeView(mFolderIconImageView);
3030 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003031 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003032 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003033 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003034 oa.addListener(new AnimatorListenerAdapter() {
3035 @Override
3036 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003037 if (cl != null) {
3038 cl.clearFolderLeaveBehind();
3039 // Remove the ImageView copy of the FolderIcon and make the original visible.
3040 mDragLayer.removeView(mFolderIconImageView);
3041 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003042 }
3043 }
3044 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003045 oa.start();
3046 }
3047
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003048 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003049 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003050 * is animated relative to the specified View. If the View is null, no animation
3051 * is played.
3052 *
3053 * @param folderInfo The FolderInfo describing the folder to open.
3054 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003055 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003056 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003057 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3058 if (openFolder != null && openFolder != folder) {
3059 // Close any open folder before opening a folder.
3060 closeFolder();
3061 }
3062
Adam Cohena9cf38f2011-05-02 15:36:58 -07003063 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003064
Adam Cohena9cf38f2011-05-02 15:36:58 -07003065 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003066
Sunny Goyalf4066152015-04-15 09:42:19 -07003067 // While the folder is open, the position of the icon cannot change.
3068 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3069
Adam Cohen4554ee12011-08-03 16:13:21 -07003070 // Just verify that the folder hasn't already been added to the DragLayer.
3071 // There was a one-off crash where the folder had a parent already.
3072 if (folder.getParent() == null) {
3073 mDragLayer.addView(folder);
3074 mDragController.addDropTarget((DropTarget) folder);
3075 } else {
3076 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3077 folder.getParent() + ").");
3078 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003079 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003080 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003081
3082 // Notify the accessibility manager that this folder "window" has appeared and occluded
3083 // the workspace items
3084 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3085 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003086 }
3087
3088 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003089 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003090 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003091 if (folder.isEditingName()) {
3092 folder.dismissEditingName();
3093 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003094 closeFolder(folder);
3095 }
3096 }
3097
Sunny Goyal83a8f042015-05-19 12:52:12 -07003098 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003099 folder.getInfo().opened = false;
3100
3101 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3102 if (parent != null) {
3103 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3104 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003105 if (fi != null) {
3106 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3107 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003108 }
3109 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003110
3111 // Notify the accessibility manager that this folder "window" has disappeard and no
3112 // longer occludeds the workspace items
3113 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003114 }
3115
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003116 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003117 if (!isDraggingEnabled()) return false;
3118 if (isWorkspaceLocked()) return false;
3119 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003120
Winson Chung76648c52015-07-10 14:33:23 -07003121 if (v == mAllAppsButton) {
3122 onLongClickAllAppsButton(v);
3123 return true;
3124 }
3125
Adam Cohen1697b792013-09-17 19:08:21 -07003126 if (v instanceof Workspace) {
3127 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003128 if (!mWorkspace.isTouchActive()) {
3129 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003130 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3131 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3132 return true;
3133 } else {
3134 return false;
3135 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003136 } else {
3137 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003138 }
Adam Cohen1697b792013-09-17 19:08:21 -07003139 }
3140
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003141 CellLayout.CellInfo longClickCellInfo = null;
3142 View itemUnderLongClick = null;
3143 if (v.getTag() instanceof ItemInfo) {
3144 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003145 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003146 itemUnderLongClick = longClickCellInfo.cell;
3147 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003148 }
3149
Winson Chung3d503fb2011-07-13 17:25:49 -07003150 // The hotseat touch handling does not go through Workspace, and we always allow long press
3151 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003152 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003153 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003154 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003155 // User long pressed on empty space
3156 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3157 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003158 if (mWorkspace.isInOverviewMode()) {
3159 mWorkspace.startReordering(v);
3160 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003161 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003162 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003163 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003164 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3165 mHotseat.getOrderInHotseat(
3166 longClickCellInfo.cellX,
3167 longClickCellInfo.cellY));
3168 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003169 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003170 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003171 }
3172 }
3173 }
3174 return true;
3175 }
3176
Winson Chung3d503fb2011-07-13 17:25:49 -07003177 boolean isHotseatLayout(View layout) {
3178 return mHotseat != null && layout != null &&
3179 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3180 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003181
Winson Chung3d503fb2011-07-13 17:25:49 -07003182 /**
3183 * Returns the CellLayout of the specified container at the specified screen.
3184 */
Sunny Goyal92820592015-03-02 11:31:35 -08003185 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003186 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3187 if (mHotseat != null) {
3188 return mHotseat.getLayout();
3189 } else {
3190 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003191 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003192 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003193 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003194 }
3195 }
3196
Winson Chungb745afb2015-03-02 11:51:23 -08003197 /**
3198 * For overridden classes.
3199 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003200 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003201 return isAppsViewVisible();
3202 }
3203
3204 public boolean isAppsViewVisible() {
3205 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3206 }
3207
3208 public boolean isWidgetsViewVisible() {
3209 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003210 }
3211
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003212 private void setWorkspaceBackground(int background) {
3213 switch (background) {
3214 case WORKSPACE_BACKGROUND_TRANSPARENT:
3215 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3216 break;
3217 case WORKSPACE_BACKGROUND_BLACK:
3218 getWindow().setBackgroundDrawable(null);
3219 break;
3220 default:
3221 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3222 }
Craig Mautner360310b2012-10-26 15:13:08 -07003223 }
3224
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003225 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003226 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3227 int curflags = getWindow().getAttributes().flags
3228 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3229 if (wpflags != curflags) {
3230 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3231 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003232 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003233 }
3234
Michael Jurkae326f182011-11-21 14:05:46 -08003235 @Override
3236 public void onTrimMemory(int level) {
3237 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003238 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3239 // The widget preview db can result in holding onto over
3240 // 3MB of memory for caching which isn't necessary.
3241 SQLiteDatabase.releaseMemory();
3242
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003243 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003244 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003245 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003246 if (mLauncherCallbacks != null) {
3247 mLauncherCallbacks.onTrimMemory(level);
3248 }
Michael Jurkae326f182011-11-21 14:05:46 -08003249 }
3250
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003251 public void showWorkspace(boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003252 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003253 }
3254
Sunny Goyal83a8f042015-05-19 12:52:12 -07003255 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003256 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003257 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003258 }
3259
3260 protected void showWorkspace(int snapToPage, boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003261 showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003262 }
3263
Winson Chungef7f8742015-06-04 17:18:17 -07003264 void showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003265 boolean changed = mState != State.WORKSPACE ||
3266 mWorkspace.getState() != Workspace.State.NORMAL;
3267 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003268 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003269 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3270 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003271
Michael Jurkab3e22d92011-10-31 15:58:33 -07003272 // Set focus to the AppsCustomize button
3273 if (mAllAppsButton != null) {
3274 mAllAppsButton.requestFocus();
3275 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003276 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003277
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003278 // Change the state *after* we've called all the transition code
3279 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003280
Winson Chung5fb63472011-02-02 17:03:37 -08003281 // Resume the auto-advance of widgets
3282 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003283 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003284
Winson Chung0f785722015-04-08 10:27:49 -07003285 if (changed) {
3286 // Send an accessibility event to announce the context change
3287 getWindow().getDecorView()
3288 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003289 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003290 }
3291
Adam Cohened307df2013-10-02 09:37:31 -07003292 void showOverviewMode(boolean animated) {
3293 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003294 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3295 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003296 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3297 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003298 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003299 }
3300
Winson Chungb745afb2015-03-02 11:51:23 -08003301 /**
3302 * Shows the apps view.
3303 */
Winson Chung76648c52015-07-10 14:33:23 -07003304 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3305 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003306 if (resetListToTop) {
3307 mAppsView.scrollToTop();
3308 }
Winson Chung4ac30062015-05-08 17:34:17 -07003309 if (updatePredictedApps) {
3310 tryAndUpdatePredictedApps();
3311 }
Winson Chung76648c52015-07-10 14:33:23 -07003312 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003313 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003314
Winson Chungb745afb2015-03-02 11:51:23 -08003315 /**
3316 * Shows the widgets view.
3317 */
3318 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003319 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003320 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003321 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003322 }
Winson Chung76648c52015-07-10 14:33:23 -07003323 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003324
3325 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003326 @Override
3327 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003328 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003329 }
3330 });
Winson Chungb745afb2015-03-02 11:51:23 -08003331 }
3332
3333 /**
3334 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003335 *
3336 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003337 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003338 // TODO: calling method should use the return value so that when {@code false} is returned
3339 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003340 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003341 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3342 mState != State.WIDGETS_SPRING_LOADED) {
3343 return false;
3344 }
3345 if (toState != State.APPS && toState != State.WIDGETS) {
3346 return false;
3347 }
Winson Chungb745afb2015-03-02 11:51:23 -08003348
3349 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003350 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3351 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003352 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003353 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003354 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003355
Michael Jurkab3e22d92011-10-31 15:58:33 -07003356 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003357 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003358
3359 // Pause the auto-advance of widgets until we are out of AllApps
3360 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003361 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003362 closeFolder();
3363
3364 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003365 getWindow().getDecorView()
3366 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003367 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003368 }
3369
Winson Chungcd99cd32015-04-29 11:03:24 -07003370 /**
3371 * Updates the workspace and interaction state on state change, and return the animation to this
3372 * new state.
3373 */
3374 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003375 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003376 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003377 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003378 updateInteraction(fromState, toState);
3379 return anim;
3380 }
3381
Hyunyoung Song3f471442015-04-08 19:01:34 -07003382 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003383 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003384 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3385 mState == State.WIDGETS_SPRING_LOADED) {
3386 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003387 }
Winson Chungb745afb2015-03-02 11:51:23 -08003388
Winson Chung006ee262015-08-03 14:40:11 -07003389 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3390 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003391 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3392 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003393 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003394 }
Adam Cohen7777d962011-08-18 18:58:38 -07003395
Hyunyoung Song3f471442015-04-08 19:01:34 -07003396 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003397 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003398 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003399
Winson Chunge7a03942011-08-05 15:05:12 -07003400 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003401 @Override
3402 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003403 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003404 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3405 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003406 // Before we show workspace, hide all apps again because
3407 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3408 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003409 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003410 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003411 } else {
3412 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003413 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003414 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003415 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003416 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003417
Michael Jurkad3ef3062010-11-23 16:23:58 -08003418 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003419 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003420 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003421 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003422 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003423 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003424 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003425 }
3426
Winson Chung4ac30062015-05-08 17:34:17 -07003427 /**
3428 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3429 * resumed.
3430 */
3431 private void tryAndUpdatePredictedApps() {
3432 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003433 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003434 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003435 mAppsView.setPredictedApps(apps);
3436 }
3437 }
3438 }
3439
Michael Jurkab3e22d92011-10-31 15:58:33 -07003440 void lockAllApps() {
3441 // TODO
3442 }
3443
3444 void unlockAllApps() {
3445 // TODO
3446 }
3447
Sunny Goyal594d76d2014-11-06 10:12:54 -08003448 protected void disableVoiceButtonProxy(boolean disable) {
3449 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003450 }
3451
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003452 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003453 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3454 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003455 }
3456
Adam Cohen24ce0b32014-01-14 16:18:14 -08003457 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003458 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3459 if (searchProvider == null) {
3460 return null;
3461 }
3462
3463 Bundle opts = new Bundle();
3464 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003465 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003466
3467 SharedPreferences sp = getSharedPreferences(
3468 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3469 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003470 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003471 if (!searchProvider.provider.flattenToString().equals(
3472 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003473 || (widgetInfo == null)
3474 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003475 // A valid widget is not already bound.
3476 if (widgetId > -1) {
3477 mAppWidgetHost.deleteAppWidgetId(widgetId);
3478 widgetId = -1;
3479 }
3480
3481 // Try to bind a new widget
3482 widgetId = mAppWidgetHost.allocateAppWidgetId();
3483
3484 if (!AppWidgetManagerCompat.getInstance(this)
3485 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3486 mAppWidgetHost.deleteAppWidgetId(widgetId);
3487 widgetId = -1;
3488 }
3489
3490 sp.edit()
3491 .putInt(QSB_WIDGET_ID, widgetId)
3492 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3493 .commit();
3494 }
3495
Sunny Goyal8d595092015-07-06 12:22:14 -07003496 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003497 if (widgetId != -1) {
3498 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3499 mQsb.updateAppWidgetOptions(opts);
3500 mQsb.setPadding(0, 0, 0, 0);
3501 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003502 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003503 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003504 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003505 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003506 }
3507
Sunny Goyal22235bc2015-04-03 09:23:43 -07003508 private void reinflateQSBIfNecessary() {
3509 if (mQsb instanceof LauncherAppWidgetHostView &&
3510 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3511 mSearchDropTargetBar.removeView(mQsb);
3512 mQsb = null;
3513 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3514 }
3515 }
3516
Michael Jurkad7c28052012-04-27 15:43:36 -07003517 @Override
3518 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003519 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003520 final List<CharSequence> text = event.getText();
3521 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003522 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003523 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003524 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003525 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003526 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003527 } else if (mWorkspace != null) {
3528 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003529 } else {
3530 text.add(getString(R.string.all_apps_home_button_label));
3531 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003532 return result;
3533 }
3534
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003535 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003536 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003537 */
Adam Cohen091440a2015-03-18 14:16:05 -07003538 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003539 @Override
3540 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003541 closeSystemDialogs();
3542 }
3543 }
3544
3545 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003546 * If the activity is currently paused, signal that we need to run the passed Runnable
3547 * in onResume.
3548 *
3549 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003550 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3551 * wrong when we're not running, and if the activity comes back to what the configuration was
3552 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003553 *
3554 * Implementation of the method from LauncherModel.Callbacks.
3555 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003556 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003557 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003558 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003559 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003560 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003561 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003562 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003563 }
3564 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003565 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003566 return true;
3567 } else {
3568 return false;
3569 }
3570 }
3571
Michael Jurkac402cd92013-05-20 15:49:32 +02003572 private boolean waitUntilResume(Runnable run) {
3573 return waitUntilResume(run, false);
3574 }
3575
Michael Jurka1e2f4652013-07-08 18:03:46 -07003576 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003577 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003578 }
3579
Michael Jurka7607c2f2013-04-03 14:33:19 -07003580 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003581 * If the activity is currently paused, signal that we need to re-run the loader
3582 * in onResume.
3583 *
3584 * This needs to be called from incoming places where resources might have been loaded
3585 * while we are paused. That is becaues the Configuration might be wrong
3586 * when we're not running, and if it comes back to what it was when we
3587 * were paused, we are not restarted.
3588 *
3589 * Implementation of the method from LauncherModel.Callbacks.
3590 *
3591 * @return true if we are currently paused. The caller might be able to
3592 * skip some work in that case since we will come back again.
3593 */
3594 public boolean setLoadOnResume() {
3595 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003596 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003597 mOnResumeNeedsLoad = true;
3598 return true;
3599 } else {
3600 return false;
3601 }
3602 }
3603
3604 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003605 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003606 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003607 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003608 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003609 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003610 } else {
3611 return SCREEN_COUNT / 2;
3612 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003613 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003614
Joe Onorato9c1289c2009-08-17 11:03:03 -04003615 /**
3616 * Refreshes the shortcuts shown on the workspace.
3617 *
3618 * Implementation of the method from LauncherModel.Callbacks.
3619 */
3620 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003621 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003622
Michael Jurka7607c2f2013-04-03 14:33:19 -07003623 // If we're starting binding all over again, clear any bind calls we'd postponed in
3624 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3625 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003626 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003627
Winson Chungd64d1762013-08-20 14:37:16 -07003628 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003629 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003630 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003631
Michael Jurka05bf644e2011-11-30 20:28:53 -08003632 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003633 if (mHotseat != null) {
3634 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003635 }
3636 }
3637
Adam Cohendcd297f2013-06-18 13:13:40 -07003638 @Override
3639 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003640 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003641
Adam Cohen5084cba2013-09-03 12:01:16 -07003642 // If there are no screens, we need to have an empty screen
3643 if (orderedScreenIds.size() == 0) {
3644 mWorkspace.addExtraEmptyScreen();
3645 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003646
3647 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003648 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003649 if (hasCustomContentToLeft()) {
3650 mWorkspace.createCustomContentContainer();
3651 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003652 }
Winson Chung64359a52013-07-08 17:17:08 -07003653 }
3654
3655 @Override
3656 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003657 int count = orderedScreenIds.size();
3658 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003659 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003660 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003661 }
3662
Adam Cohen39a06042013-07-19 14:30:12 -07003663 private boolean shouldShowWeightWatcher() {
3664 String spKey = LauncherAppState.getSharedPreferencesKey();
3665 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003666 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003667
3668 return show;
3669 }
3670
3671 private void toggleShowWeightWatcher() {
3672 String spKey = LauncherAppState.getSharedPreferencesKey();
3673 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3674 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3675
3676 show = !show;
3677
3678 SharedPreferences.Editor editor = sp.edit();
3679 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3680 editor.commit();
3681
3682 if (mWeightWatcher != null) {
3683 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3684 }
3685 }
3686
Winson Chungd64d1762013-08-20 14:37:16 -07003687 public void bindAppsAdded(final ArrayList<Long> newScreens,
3688 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003689 final ArrayList<ItemInfo> addAnimated,
3690 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003691 Runnable r = new Runnable() {
3692 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003693 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003694 }
3695 };
3696 if (waitUntilResume(r)) {
3697 return;
3698 }
3699
Winson Chungd64d1762013-08-20 14:37:16 -07003700 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003701 if (newScreens != null) {
3702 bindAddScreens(newScreens);
3703 }
Winson Chungd64d1762013-08-20 14:37:16 -07003704
3705 // We add the items without animation on non-visible pages, and with
3706 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003707 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003708 bindItems(addNotAnimated, 0,
3709 addNotAnimated.size(), false);
3710 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003711 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003712 bindItems(addAnimated, 0,
3713 addAnimated.size(), true);
3714 }
Winson Chungc58497e2013-09-03 17:48:37 -07003715
Winson Chung87412982013-10-03 18:34:14 -07003716 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003717 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003718
Winson Chungb745afb2015-03-02 11:51:23 -08003719 if (addedApps != null && mAppsView != null) {
3720 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003721 }
Winson Chungd64d1762013-08-20 14:37:16 -07003722 }
3723
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003724 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003725 * Bind the items start-end from the list.
3726 *
3727 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003728 */
Winson Chung64359a52013-07-08 17:17:08 -07003729 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3730 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003731 Runnable r = new Runnable() {
3732 public void run() {
3733 bindItems(shortcuts, start, end, forceAnimateIcons);
3734 }
3735 };
3736 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003737 return;
3738 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003739
Winson Chungf0c6ae02012-03-21 16:10:31 -07003740 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003741 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3742 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003743 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003744 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003745 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003746 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003747 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003748
3749 // Short circuit if we are loading dock items for a configuration which has no dock
3750 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3751 mHotseat == null) {
3752 continue;
3753 }
3754
Joe Onorato9c1289c2009-08-17 11:03:03 -04003755 switch (item.itemType) {
3756 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3757 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003758 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003759 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003760
Winson Chung64359a52013-07-08 17:17:08 -07003761 /*
3762 * TODO: FIX collision case
3763 */
Winson Chungce376632013-07-11 16:12:41 -07003764 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3765 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3766 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003767 View v = cl.getChildAt(item.cellX, item.cellY);
3768 Object tag = v.getTag();
3769 String desc = "Collision while binding workspace item: " + item
3770 + ". Collides with " + tag;
3771 if (LauncherAppState.isDogfoodBuild()) {
3772 throw (new RuntimeException(desc));
3773 } else {
3774 Log.d(TAG, desc);
3775 }
Winson Chungce376632013-07-11 16:12:41 -07003776 }
Winson Chung64359a52013-07-08 17:17:08 -07003777 }
3778
Adam Cohendcd297f2013-06-18 13:13:40 -07003779 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3780 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003781 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003782 // Animate all the applications up now
3783 shortcut.setAlpha(0f);
3784 shortcut.setScaleX(0f);
3785 shortcut.setScaleY(0f);
3786 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003787 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003788 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003789 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003790 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003791 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003792 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003793 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003794 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3795 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003796 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003797 default:
3798 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003799 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003800 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003801
Winson Chung997a9232013-07-24 15:33:46 -07003802 if (animateIcons) {
3803 // Animate to the correct page
3804 if (newShortcutsScreenId > -1) {
3805 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003806 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003807 final Runnable startBounceAnimRunnable = new Runnable() {
3808 public void run() {
3809 anim.playTogether(bounceAnims);
3810 anim.start();
3811 }
3812 };
Winson Chung997a9232013-07-24 15:33:46 -07003813 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003814 // We post the animation slightly delayed to prevent slowdowns
3815 // when we are loading right after we return to launcher.
3816 mWorkspace.postDelayed(new Runnable() {
3817 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003818 if (mWorkspace != null) {
3819 mWorkspace.snapToPage(newScreenIndex);
3820 mWorkspace.postDelayed(startBounceAnimRunnable,
3821 NEW_APPS_ANIMATION_DELAY);
3822 }
Winson Chung94d67682013-09-25 16:29:40 -07003823 }
3824 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003825 } else {
3826 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003827 }
3828 }
Winson Chung64359a52013-07-08 17:17:08 -07003829 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003830 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003831 }
3832
Joe Onorato9c1289c2009-08-17 11:03:03 -04003833 /**
3834 * Implementation of the method from LauncherModel.Callbacks.
3835 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003836 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003837 Runnable r = new Runnable() {
3838 public void run() {
3839 bindFolders(folders);
3840 }
3841 };
3842 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003843 return;
3844 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003845 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003846 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003847
3848 /**
3849 * Add the views for a widget to the workspace.
3850 *
3851 * Implementation of the method from LauncherModel.Callbacks.
3852 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003853 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003854 Runnable r = new Runnable() {
3855 public void run() {
3856 bindAppWidget(item);
3857 }
3858 };
3859 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003860 return;
3861 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003862
Daniel Sandler843e8602010-06-07 14:59:01 -04003863 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3864 if (DEBUG_WIDGETS) {
3865 Log.d(TAG, "bindAppWidget: " + item);
3866 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003867 final Workspace workspace = mWorkspace;
3868
Adam Cohen59400422014-03-05 18:07:04 -08003869 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003870 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003871
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003872 if (!mIsSafeModeEnabled
3873 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
3874 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
Sunny Goyalff572272014-07-23 13:58:07 -07003875 if (appWidgetInfo == null) {
3876 if (DEBUG_WIDGETS) {
3877 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3878 + " belongs to component " + item.providerName
3879 + ", as the povider is null");
3880 }
3881 LauncherModel.deleteItemFromDatabase(this, item);
3882 return;
3883 }
3884 // Note: This assumes that the id remap broadcast is received before this step.
3885 // If that is not the case, the id remap will be ignored and user may see the
3886 // click to setup view.
Adam Cohen2e6da152015-05-06 11:42:25 -07003887 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
Sunny Goyalff572272014-07-23 13:58:07 -07003888 pendingInfo.spanX = item.spanX;
3889 pendingInfo.spanY = item.spanY;
3890 pendingInfo.minSpanX = item.minSpanX;
3891 pendingInfo.minSpanY = item.minSpanY;
Hyunyoung Song3f471442015-04-08 19:01:34 -07003892 Bundle options = null;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -07003893 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003894
Sunny Goyalff572272014-07-23 13:58:07 -07003895 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07003896 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3897 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07003898
3899 // TODO consider showing a permission dialog when the widget is clicked.
3900 if (!success) {
3901 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3902 if (DEBUG_WIDGETS) {
3903 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3904 + " belongs to component " + item.providerName
3905 + ", as the launcher is unable to bing a new widget id");
3906 }
3907 LauncherModel.deleteItemFromDatabase(this, item);
3908 return;
3909 }
3910
3911 item.appWidgetId = newWidgetId;
3912
3913 // If the widget has a configure activity, it is still needs to set it up, otherwise
3914 // the widget is ready to go.
3915 item.restoreStatus = (appWidgetInfo.configure == null)
3916 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3917 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3918
3919 LauncherModel.updateItemInDatabase(this, item);
3920 }
3921
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003922 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003923 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003924 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003925 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3926 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003927 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003928
Sunny Goyal651077b2014-06-30 14:15:31 -07003929 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07003930 item.minSpanX = appWidgetInfo.minSpanX;
3931 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07003932 } else {
3933 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003934 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3935 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003936 view.updateIcon(mIconCache);
3937 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003938 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003939 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003940 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003941
Joe Onorato9c1289c2009-08-17 11:03:03 -04003942 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003943 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003944
Adam Cohendcd297f2013-06-18 13:13:40 -07003945 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003946 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003947 if (!item.isCustomWidget()) {
3948 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3949 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003950
Joe Onorato9c1289c2009-08-17 11:03:03 -04003951 workspace.requestLayout();
3952
Daniel Sandler843e8602010-06-07 14:59:01 -04003953 if (DEBUG_WIDGETS) {
3954 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3955 + (SystemClock.uptimeMillis()-start) + "ms");
3956 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003957 }
3958
Sunny Goyalff572272014-07-23 13:58:07 -07003959 /**
3960 * Restores a pending widget.
3961 *
3962 * @param appWidgetId The app widget id
3963 * @param cellInfo The position on screen where to create the widget.
3964 */
3965 private void completeRestoreAppWidget(final int appWidgetId) {
3966 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3967 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3968 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3969 return;
3970 }
3971
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003972 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003973 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3974
3975 mWorkspace.reinflateWidgetsIfNecessary();
3976 LauncherModel.updateItemInDatabase(this, info);
3977 }
3978
Adam Cohen1462de32012-07-24 22:34:36 -07003979 public void onPageBoundSynchronously(int page) {
3980 mSynchronouslyBoundPages.add(page);
3981 }
3982
Joe Onorato9c1289c2009-08-17 11:03:03 -04003983 /**
3984 * Callback saying that there aren't any more items to bind.
3985 *
3986 * Implementation of the method from LauncherModel.Callbacks.
3987 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003988 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07003989 Runnable r = new Runnable() {
3990 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003991 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07003992 }
3993 };
3994 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003995 return;
3996 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003997 if (mSavedState != null) {
3998 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003999 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004000 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004001 mSavedState = null;
4002 }
4003
Adam Cohen1462de32012-07-24 22:34:36 -07004004 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004005
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004006 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004007 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004008
4009 // If we received the result of any pending adds while the loader was running (e.g. the
4010 // widget configuration forced an orientation change), process them now.
4011 if (sPendingAddItem != null) {
4012 final long screenId = completeAdd(sPendingAddItem);
4013
4014 // TODO: this moves the user to the page where the pending item was added. Ideally,
4015 // the screen would be guaranteed to exist after bind, and the page would be set through
4016 // the workspace restore process.
4017 mWorkspace.post(new Runnable() {
4018 @Override
4019 public void run() {
4020 mWorkspace.snapToScreenId(screenId);
4021 }
4022 });
4023 sPendingAddItem = null;
4024 }
4025
Sunny Goyal756adbc2015-04-16 15:20:51 -07004026 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004027
4028 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004029 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004030 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004031 }
4032
Adam Cohen3ed316a2014-07-23 18:21:20 -07004033 private void sendLoadingCompleteBroadcastIfNecessary() {
4034 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4035 String permission =
4036 getResources().getString(R.string.receive_first_load_broadcast_permission);
4037 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4038 sendBroadcast(intent, permission);
4039 SharedPreferences.Editor editor = mSharedPrefs.edit();
4040 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4041 editor.apply();
4042 }
4043 }
4044
Winson Chunga0b7e862013-09-05 16:03:15 -07004045 public boolean isAllAppsButtonRank(int rank) {
4046 if (mHotseat != null) {
4047 return mHotseat.isAllAppsButtonRank(rank);
4048 }
4049 return false;
4050 }
4051
Winson Chunga2413752012-04-03 14:22:34 -07004052 private boolean canRunNewAppsAnimation() {
4053 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4054 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4055 }
4056
Winson Chungc9168342013-06-26 14:54:55 -07004057 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4058 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4059 PropertyValuesHolder.ofFloat("alpha", 1f),
4060 PropertyValuesHolder.ofFloat("scaleX", 1f),
4061 PropertyValuesHolder.ofFloat("scaleY", 1f));
4062 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4063 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004064 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004065 return bounceAnim;
4066 }
4067
Adam Cohen27772732013-11-11 14:00:56 +00004068 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004069 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004070 }
4071
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004072 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004073 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004074 }
4075
Winson Chung88fa7412015-08-03 14:25:28 -07004076 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004077 if (mSearchDropTargetBar == null) {
4078 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004079 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004080 if (mQsb != null) {
4081 mSearchDropTargetBar.removeView(mQsb);
4082 mQsb = null;
4083 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004084 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004085 }
4086
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004087 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004088 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4089 * multiple calls to bind the same list.)
4090 */
4091 @Thunk ArrayList<AppInfo> mTmpAppsList;
4092 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4093 public void run() {
4094 bindAllApplications(mTmpAppsList);
4095 mTmpAppsList = null;
4096 }
4097 };
4098
4099 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004100 * Add the icons for all apps.
4101 *
4102 * Implementation of the method from LauncherModel.Callbacks.
4103 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004104 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004105 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4106 mTmpAppsList = apps;
4107 return;
4108 }
4109
Winson Chungb745afb2015-03-02 11:51:23 -08004110 if (mAppsView != null) {
4111 mAppsView.setApps(apps);
4112 }
Adam Cohen9211d422014-10-07 18:14:53 -07004113 if (mLauncherCallbacks != null) {
4114 mLauncherCallbacks.bindAllApplications(apps);
4115 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004116 }
4117
4118 /**
4119 * A package was updated.
4120 *
4121 * Implementation of the method from LauncherModel.Callbacks.
4122 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004123 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004124 Runnable r = new Runnable() {
4125 public void run() {
4126 bindAppsUpdated(apps);
4127 }
4128 };
4129 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004130 return;
4131 }
4132
Winson Chungb745afb2015-03-02 11:51:23 -08004133 if (mAppsView != null) {
4134 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004135 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004136 }
4137
Sunny Goyal4390ace2014-10-13 11:33:11 -07004138 @Override
4139 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4140 Runnable r = new Runnable() {
4141 public void run() {
4142 bindWidgetsRestored(widgets);
4143 }
4144 };
4145 if (waitUntilResume(r)) {
4146 return;
4147 }
4148 mWorkspace.widgetsRestored(widgets);
4149 }
4150
Joe Onorato9c1289c2009-08-17 11:03:03 -04004151 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004152 * Some shortcuts were updated in the background.
4153 *
4154 * Implementation of the method from LauncherModel.Callbacks.
4155 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004156 @Override
4157 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4158 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004159 Runnable r = new Runnable() {
4160 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004161 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004162 }
4163 };
4164 if (waitUntilResume(r)) {
4165 return;
4166 }
4167
Sunny Goyal4390ace2014-10-13 11:33:11 -07004168 if (!updated.isEmpty()) {
4169 mWorkspace.updateShortcuts(updated);
4170 }
4171
4172 if (!removed.isEmpty()) {
4173 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4174 for (ShortcutInfo si : removed) {
4175 removedComponents.add(si.getTargetComponent());
4176 }
4177 mWorkspace.removeItemsByComponentName(removedComponents, user);
4178 // Notify the drag controller
4179 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004180 }
4181 }
4182
4183 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004184 * Update the state of a package, typically related to install state.
4185 *
4186 * Implementation of the method from LauncherModel.Callbacks.
4187 */
Sunny Goyale755d462014-07-22 13:48:29 -07004188 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004189 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4190 Runnable r = new Runnable() {
4191 public void run() {
4192 bindRestoreItemsChange(updates);
4193 }
4194 };
4195 if (waitUntilResume(r)) {
4196 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004197 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004198
Sunny Goyal756adbc2015-04-16 15:20:51 -07004199 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004200 }
4201
4202 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004203 * A package was uninstalled. We take both the super set of packageNames
4204 * in addition to specific applications to remove, the reason being that
4205 * this can be called when a package is updated as well. In that scenario,
4206 * we only remove specific components from the workspace, where as
4207 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004208 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004209 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004210 * Implementation of the method from LauncherModel.Callbacks.
4211 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004212 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004213 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004214 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004215 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004216 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004217 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004218 }
Winson Chungd64d1762013-08-20 14:37:16 -07004219 };
4220 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004221 return;
4222 }
4223
Sunny Goyal1a745e82014-10-02 15:58:31 -07004224 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004225 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4226 for (AppInfo info : appInfos) {
4227 removedComponents.add(info.componentName);
4228 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004229 if (!packageNames.isEmpty()) {
4230 mWorkspace.removeItemsByPackageName(packageNames, user);
4231 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004232 if (!removedComponents.isEmpty()) {
4233 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004234 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004235 // Notify the drag controller
4236 mDragController.onAppsRemoved(packageNames, removedComponents);
4237
Sunny Goyal1a745e82014-10-02 15:58:31 -07004238 } else {
4239 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004240 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004241
Winson Chungdf95eb12013-10-16 14:57:07 -07004242 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004243 if (mAppsView != null) {
4244 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004245 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004246 }
Joe Onoratobe386092009-11-17 17:32:16 -08004247
Michael Jurkac402cd92013-05-20 15:49:32 +02004248 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004249 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004250 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004251 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004252 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004253
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004254 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004255 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004256 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004257 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004258 return;
4259 }
4260
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004261 if (mWidgetsView != null && model != null) {
4262 mWidgetsView.addWidgets(model);
4263 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004264 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004265 }
4266
Winson Chung400438b2011-01-16 17:53:48 -08004267 private int mapConfigurationOriActivityInfoOri(int configOri) {
4268 final Display d = getWindowManager().getDefaultDisplay();
4269 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4270 switch (d.getRotation()) {
4271 case Surface.ROTATION_0:
4272 case Surface.ROTATION_180:
4273 // We are currently in the same basic orientation as the natural orientation
4274 naturalOri = configOri;
4275 break;
4276 case Surface.ROTATION_90:
4277 case Surface.ROTATION_270:
4278 // We are currently in the other basic orientation to the natural orientation
4279 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4280 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4281 break;
4282 }
4283
4284 int[] oriMap = {
4285 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4286 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4287 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4288 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4289 };
4290 // Since the map starts at portrait, we need to offset if this device's natural orientation
4291 // is landscape.
4292 int indexOffset = 0;
4293 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4294 indexOffset = 1;
4295 }
4296 return oriMap[(d.getRotation() + indexOffset) % 4];
4297 }
Adam Cohen446e9402011-09-15 18:21:21 -07004298
Winson Chung4b919f82012-05-01 10:44:08 -07004299 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004300 if (mRotationEnabled) {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004301 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
4302 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4303 .getConfiguration().orientation));
4304 } else {
4305 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4306 }
Winson Chung4b919f82012-05-01 10:44:08 -07004307 }
4308 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004309
Winson Chung4b919f82012-05-01 10:44:08 -07004310 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004311 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004312 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004313 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004314 } else {
4315 mHandler.postDelayed(new Runnable() {
4316 public void run() {
4317 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4318 }
4319 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004320 }
Winson Chung4b919f82012-05-01 10:44:08 -07004321 }
Winson Chung400438b2011-01-16 17:53:48 -08004322 }
4323
Winson Chunge43a1e72014-01-15 10:33:02 -08004324 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004325 if (mLauncherCallbacks != null) {
4326 return mLauncherCallbacks.isLauncherPreinstalled();
4327 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004328 PackageManager pm = getPackageManager();
4329 try {
4330 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4331 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4332 return true;
4333 } else {
4334 return false;
4335 }
4336 } catch (NameNotFoundException e) {
4337 e.printStackTrace();
4338 return false;
4339 }
4340 }
4341
Adam Cohenea90f832014-05-21 15:03:34 -07004342 /**
4343 * This method indicates whether or not we should suggest default wallpaper dimensions
4344 * when our wallpaper cropper was not yet used to set a wallpaper.
4345 */
4346 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004347 if (mLauncherCallbacks != null) {
4348 return mLauncherCallbacks.overrideWallpaperDimensions();
4349 }
Adam Cohenea90f832014-05-21 15:03:34 -07004350 return true;
4351 }
4352
Adam Cohen432609a2014-03-13 17:03:22 -07004353 /**
4354 * To be overridden by subclasses to indicate that there is an activity to launch
4355 * before showing the standard launcher experience.
4356 */
4357 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004358 if (mLauncherCallbacks != null) {
4359 return mLauncherCallbacks.hasFirstRunActivity();
4360 }
Adam Cohen432609a2014-03-13 17:03:22 -07004361 return false;
4362 }
4363
4364 /**
4365 * To be overridden by subclasses to launch any first run activity
4366 */
4367 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004368 if (mLauncherCallbacks != null) {
4369 return mLauncherCallbacks.getFirstRunActivity();
4370 }
Adam Cohen432609a2014-03-13 17:03:22 -07004371 return null;
4372 }
4373
Winson Chunga6945242014-01-08 14:04:34 -08004374 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004375 return !ActivityManager.isRunningInTestHarness() &&
4376 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004377 }
4378
Adam Cohen4a9423d2014-03-28 14:22:31 -07004379 protected boolean hasRunFirstRunActivity() {
4380 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4381 }
4382
Adam Cohen432609a2014-03-13 17:03:22 -07004383 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004384 if (shouldRunFirstRunActivity() &&
4385 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004386 Intent firstRunIntent = getFirstRunActivity();
4387 if (firstRunIntent != null) {
4388 startActivity(firstRunIntent);
4389 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004390 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004391 }
4392 }
Adam Cohen432609a2014-03-13 17:03:22 -07004393 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004394 }
4395
4396 private void markFirstRunActivityShown() {
4397 SharedPreferences.Editor editor = mSharedPrefs.edit();
4398 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4399 editor.apply();
4400 }
4401
Adam Cohen432609a2014-03-13 17:03:22 -07004402 /**
4403 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4404 * screen that must be displayed and dismissed.
4405 */
4406 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004407 if (mLauncherCallbacks != null) {
4408 return mLauncherCallbacks.hasDismissableIntroScreen();
4409 }
Adam Cohen432609a2014-03-13 17:03:22 -07004410 return false;
4411 }
4412
4413 /**
4414 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4415 */
4416 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004417 if (mLauncherCallbacks != null) {
4418 return mLauncherCallbacks.getIntroScreen();
4419 }
Adam Cohen432609a2014-03-13 17:03:22 -07004420 return null;
4421 }
4422
4423 /**
4424 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4425 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4426 */
4427 private boolean shouldShowIntroScreen() {
4428 return hasDismissableIntroScreen() &&
4429 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4430 }
4431
4432 protected void showIntroScreen() {
4433 View introScreen = getIntroScreen();
4434 changeWallpaperVisiblity(false);
4435 if (introScreen != null) {
4436 mDragLayer.showOverlayView(introScreen);
4437 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004438 if (mLauncherOverlayContainer != null) {
4439 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4440 }
Adam Cohen432609a2014-03-13 17:03:22 -07004441 }
4442
4443 public void dismissIntroScreen() {
4444 markIntroScreenDismissed();
4445 if (showFirstRunActivity()) {
4446 // We delay hiding the intro view until the first run activity is showing. This
4447 // avoids a blip.
4448 mWorkspace.postDelayed(new Runnable() {
4449 @Override
4450 public void run() {
4451 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004452 if (mLauncherOverlayContainer != null) {
4453 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4454 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004455 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004456 }
4457 }, ACTIVITY_START_DELAY);
4458 } else {
4459 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004460 if (mLauncherOverlayContainer != null) {
4461 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4462 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004463 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004464 }
4465 changeWallpaperVisiblity(true);
4466 }
4467
4468 private void markIntroScreenDismissed() {
4469 SharedPreferences.Editor editor = mSharedPrefs.edit();
4470 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4471 editor.apply();
4472 }
4473
Adam Cohen091440a2015-03-18 14:16:05 -07004474 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004475 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4476 // on the device, then we always show the first run cling experience (or if there is no
4477 // launcher2). Otherwise, we prompt the user upon started for migration
4478 LauncherClings launcherClings = new LauncherClings(this);
4479 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4480 if (mModel.canMigrateFromOldLauncherDb(this)) {
4481 launcherClings.showMigrationCling();
4482 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004483 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004484 }
4485 }
4486 }
4487
Winson Chunga6945242014-01-08 14:04:34 -08004488 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004489 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4490 if (mHotseat != null) mHotseat.setAlpha(1f);
4491 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004492 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4493 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004494 }
4495
4496 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004497 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4498 if (mHotseat != null) mHotseat.setAlpha(0f);
4499 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004500 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4501 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004502 }
4503
Winson Chung5ffd51d2015-06-25 11:36:50 -07004504 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004505 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004506 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004507 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004508 UserHandleCompat user = null;
4509 if (Utilities.isLmpOrAbove()) {
4510 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4511 if (userHandle != null) {
4512 user = UserHandleCompat.fromUser(userHandle);
4513 }
4514 }
4515 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004516 }
4517
4518 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004519 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004520 if (user == null) {
4521 user = UserHandleCompat.myUserHandle();
4522 }
4523
4524 // Called from search suggestion, add the profile extra to the intent to ensure that we
4525 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004526 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004527 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004528 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004529 return null;
4530 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004531 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004532 }
4533
Winson Chung5ffd51d2015-06-25 11:36:50 -07004534 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004535 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4536 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004537 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004538 UserHandleCompat.myUserHandle());
4539 }
4540
Winson Chung5ffd51d2015-06-25 11:36:50 -07004541 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004542 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4543 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004544 mWorkspace.onExternalDragStartedWithItem(dragView);
4545 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004546 }
4547
Winson Chung5ffd51d2015-06-25 11:36:50 -07004548 protected void moveWorkspaceToDefaultScreen() {
4549 mWorkspace.moveToDefaultScreen(false);
4550 }
4551
Anjali Koppalf5d29132014-02-28 13:33:27 -08004552 @Override
4553 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004554 if (mLauncherCallbacks != null) {
4555 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4556 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004557 }
4558
Winson Chung80baf5a2010-08-09 16:03:15 -07004559 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004560 * Returns a FastBitmapDrawable with the icon, accurately sized.
4561 */
4562 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4563 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4564 d.setFilterBitmap(true);
4565 resizeIconDrawable(d);
4566 return d;
4567 }
4568
4569 /**
4570 * Resizes an icon drawable to the correct icon size.
4571 */
4572 public void resizeIconDrawable(Drawable icon) {
4573 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4574 }
4575
4576 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004577 * Prints out out state for debugging.
4578 */
4579 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004580 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004581 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004582 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4583 Log.d(TAG, "mRestoring=" + mRestoring);
4584 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4585 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004586 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004587 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004588 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004589
Daniel Sandler325dc232013-06-05 22:57:57 -04004590 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004591 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004592
4593 @Override
4594 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4595 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004596 synchronized (sDumpLogs) {
4597 writer.println(" ");
4598 writer.println("Debug logs: ");
4599 for (int i = 0; i < sDumpLogs.size(); i++) {
4600 writer.println(" " + sDumpLogs.get(i));
4601 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004602 }
Adam Cohen9211d422014-10-07 18:14:53 -07004603 if (mLauncherCallbacks != null) {
4604 mLauncherCallbacks.dump(prefix, fd, writer, args);
4605 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004606 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004607
4608 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004609 if (DEBUG_DUMP_LOG) {
4610 synchronized (sDumpLogs) {
4611 Log.d(TAG, "");
4612 Log.d(TAG, "*********************");
4613 Log.d(TAG, "Launcher debug logs: ");
4614 for (int i = 0; i < sDumpLogs.size(); i++) {
4615 Log.d(TAG, " " + sDumpLogs.get(i));
4616 }
4617 Log.d(TAG, "*********************");
4618 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004619 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004620 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004621 }
4622
4623 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004624 addDumpLog(tag, log, null, debugLog);
4625 }
4626
4627 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004628 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004629 if (e != null) {
4630 Log.d(tag, log, e);
4631 } else {
4632 Log.d(tag, log);
4633 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004634 }
Winson Chungede41292013-09-19 16:27:36 -07004635 if (DEBUG_DUMP_LOG) {
4636 sDateStamp.setTime(System.currentTimeMillis());
4637 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004638 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4639 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004640 }
Winson Chungede41292013-09-19 16:27:36 -07004641 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004642 }
4643
Adam Cohen59400422014-03-05 18:07:04 -08004644 public static CustomAppWidget getCustomAppWidget(String name) {
4645 return sCustomAppWidgets.get(name);
4646 }
4647
4648 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4649 return sCustomAppWidgets;
4650 }
4651
Winson Chungede41292013-09-19 16:27:36 -07004652 public void dumpLogsToLocalData() {
4653 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004654 new AsyncTask<Void, Void, Void>() {
4655 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004656 boolean success = false;
4657 sDateStamp.setTime(sRunStart);
4658 String FILENAME = sDateStamp.getMonth() + "-"
4659 + sDateStamp.getDay() + "_"
4660 + sDateStamp.getHours() + "-"
4661 + sDateStamp.getMinutes() + "_"
4662 + sDateStamp.getSeconds() + ".txt";
4663
4664 FileOutputStream fos = null;
4665 File outFile = null;
4666 try {
4667 outFile = new File(getFilesDir(), FILENAME);
4668 outFile.createNewFile();
4669 fos = new FileOutputStream(outFile);
4670 } catch (Exception e) {
4671 e.printStackTrace();
4672 }
4673 if (fos != null) {
4674 PrintWriter writer = new PrintWriter(fos);
4675
4676 writer.println(" ");
4677 writer.println("Debug logs: ");
4678 synchronized (sDumpLogs) {
4679 for (int i = 0; i < sDumpLogs.size(); i++) {
4680 writer.println(" " + sDumpLogs.get(i));
4681 }
4682 }
4683 writer.close();
4684 }
4685 try {
4686 if (fos != null) {
4687 fos.close();
4688 success = true;
4689 }
4690 } catch (IOException e) {
4691 e.printStackTrace();
4692 }
Michael Jurka43467462013-11-14 12:03:58 +01004693 return null;
Winson Chungede41292013-09-19 16:27:36 -07004694 }
Michael Jurka43467462013-11-14 12:03:58 +01004695 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004696 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004697 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004698}
Michael Jurka2763be32011-02-24 11:19:57 -08004699
Dan Sandlerd5024042014-01-09 15:01:33 -05004700interface DebugIntents {
4701 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4702 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004703}