blob: ab6ebd3b6017118899a427acbd6ba5d9bd6f66a0 [file] [log] [blame]
Michael Jurka01f0ed42010-08-20 00:41:17 -07001
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002/*
3 * Copyright (C) 2008 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
Daniel Sandler325dc232013-06-05 22:57:57 -040018package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019
Gilles Debunnedd6c9922010-10-25 11:23:41 -070020import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080021import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070022import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070023import android.animation.ObjectAnimator;
24import android.animation.PropertyValuesHolder;
Adam Cohen2854d252014-08-27 16:04:07 -070025import android.animation.TimeInterpolator;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070026import android.animation.ValueAnimator;
Adam Cohen0b395352014-06-09 22:54:36 +000027import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070028import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070029import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070030import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040031import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080033import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070034import android.appwidget.AppWidgetManager;
35import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080037import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080038import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040039import android.content.ComponentName;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080040import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040042import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070044import android.content.IntentFilter;
Winson Chung82f55532011-08-09 14:14:23 -070045import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070046import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080047import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070049import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070051import android.content.res.Resources;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080052import android.database.ContentObserver;
Adam Cohen3f9c9712014-10-31 11:48:25 -070053import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070054import android.graphics.Bitmap;
55import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070056import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070057import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070058import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070059import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040060import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070061import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020062import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080063import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020064import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080065import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070066import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070067import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040068import android.os.SystemClock;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069import android.text.Selection;
70import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070071import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070073import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070074import android.view.Display;
75import android.view.Gravity;
76import android.view.HapticFeedbackConstants;
77import android.view.KeyEvent;
78import android.view.LayoutInflater;
79import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070080import android.view.MotionEvent;
81import android.view.Surface;
82import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070083import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080084import android.view.View.OnLongClickListener;
Adam Cohen2854d252014-08-27 16:04:07 -070085import android.view.ViewAnimationUtils;
Adam Cohen96d30a12013-07-16 18:13:21 -070086import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070087import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070088import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070089import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070090import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080091import android.view.accessibility.AccessibilityEvent;
Adam Cohen9bfdb762014-07-21 17:44:06 -070092import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080093import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080094import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070095import android.widget.Advanceable;
96import android.widget.FrameLayout;
97import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080098import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070099import android.widget.Toast;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700100
Sunny Goyal651077b2014-06-30 14:15:31 -0700101import com.android.launcher3.DropTarget.DragObject;
102import com.android.launcher3.PagedView.PageSwitchListener;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700103import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100104import com.android.launcher3.compat.LauncherActivityInfoCompat;
105import com.android.launcher3.compat.LauncherAppsCompat;
Sunny Goyale755d462014-07-22 13:48:29 -0700106import com.android.launcher3.compat.PackageInstallerCompat;
107import com.android.launcher3.compat.PackageInstallerCompat.PackageInstallInfo;
Kenny Guyed131872014-04-30 03:02:21 +0100108import com.android.launcher3.compat.UserHandleCompat;
109import com.android.launcher3.compat.UserManagerCompat;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700110
Adam Cohenc0dcf592011-06-01 15:30:43 -0700111import java.io.DataInputStream;
112import java.io.DataOutputStream;
Adam Cohen4caf2982013-08-20 18:54:31 -0700113import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700114import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700115import java.io.FileNotFoundException;
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.Field;
120import java.lang.reflect.InvocationTargetException;
121import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700122import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700123import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700124import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700125import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700126import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700127import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700128import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000129import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700130
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800131/**
132 * Default launcher application.
133 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100134public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700135 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700136 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800137 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700138 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800139
Daniel Sandlerf061f822013-06-27 13:59:36 -0400140 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400141 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700142 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400143 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700144 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700145
Dan Sandlerd5024042014-01-09 15:01:33 -0500146 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
147
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800148 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700149 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800150 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700151 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700152 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800153
Michael Jurka8b805b12012-04-18 14:23:14 -0700154 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700155 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700156
Mathew Inwood876a8462013-06-14 14:12:41 +0100157 /**
158 * IntentStarter uses request codes starting with this. This must be greater than all activity
159 * request codes used internally.
160 */
161 protected static final int REQUEST_LAST = 100;
162
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800163 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
164
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800165 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800166
Michael Jurka0a457bf2012-11-19 14:05:05 -0800167 // To turn on these properties, type
168 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800169 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800170
Winson Chung2672ff92012-05-04 16:22:30 -0700171 // The Intent extra that defines whether to ignore the launch animation
172 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400173 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700174
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800175 // Type: int
176 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700177 // Type: int
178 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700180 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
181 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
183 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700184 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800187 // Type: boolean
188 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
189 // Type: long
190 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700191 // Type: int
192 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
193 // Type: int
194 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
195 // Type: parcelable
196 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000197 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800198 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000199 // Type: int[]
200 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800201
Adam Cohen432609a2014-03-13 17:03:22 -0700202 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800203 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
204
Adam Cohen3ed316a2014-07-23 18:21:20 -0700205 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
206 static final String ACTION_FIRST_LOAD_COMPLETE =
207 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
208
Adam Cohen39a06042013-07-19 14:30:12 -0700209 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700210 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700211
Sunny Goyal594d76d2014-11-06 10:12:54 -0800212 private static final String QSB_WIDGET_ID = "qsb_widget_id";
213 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
214
Winson Chunga6945242014-01-08 14:04:34 -0800215 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
216
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700217 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700218 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700219 private State mState = State.WORKSPACE;
220 private AnimatorSet mStateAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700221
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700222 private boolean mIsSafeModeEnabled;
223
Adam Cohenc2d6e892014-10-16 09:49:24 -0700224 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
225 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700226 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700227
Joe Onorato9c1289c2009-08-17 11:03:03 -0400228 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700229 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
230 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700231 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800232
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000233 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
234 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
235
Winson Chunga2413752012-04-03 14:22:34 -0700236 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700237 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
238 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Winson Chung64359a52013-07-08 17:17:08 -0700239 private static int NEW_APPS_ANIMATION_DELAY = 500;
Adam Cohen63f1ec02014-08-12 09:23:13 -0700240 private static final int SINGLE_FRAME_DELAY = 16;
Winson Chunga2413752012-04-03 14:22:34 -0700241
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800242 private final BroadcastReceiver mCloseSystemDialogsReceiver
243 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800244 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
245
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800246 private LayoutInflater mInflater;
247
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800248 private Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700249 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800250 private View mPageIndicators;
Michael Jurkab737ee62011-11-15 15:57:22 -0800251 private DragLayer mDragLayer;
252 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700253 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700254
Sunny Goyalffe83f12014-08-14 17:39:34 -0700255 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700256 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700257
Michael Jurkac9d95c52011-08-29 14:03:34 -0700258 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800259 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800260 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700261
Michael Jurka0280c3b2010-09-17 15:00:07 -0700262 private int[] mTmpAddItemCellCoordinates = new int[2];
263
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800264 private FolderInfo mFolderInfo;
265
Winson Chung3d503fb2011-07-13 17:25:49 -0700266 private Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800267 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700268
Michael Jurka838a4ca2011-02-07 13:33:06 -0800269 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700270
Winson Chungc51db6a2011-10-05 11:44:49 -0700271 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700272 private AppsCustomizeTabHost mAppsCustomizeTabHost;
273 private AppsCustomizePagedView mAppsCustomizeContent;
274 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800275 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800276
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800277 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700278 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
279 // scroll issues (because the workspace may not have been measured yet) and extra work.
280 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
281 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800282
283 private SpannableStringBuilder mDefaultKeySsb = null;
284
Joe Onorato9c1289c2009-08-17 11:03:03 -0400285 private boolean mWorkspaceLoading = true;
286
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800287 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800288 private boolean mRestoring;
289 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700290 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291
Michael Jurka1e2f4652013-07-08 18:03:46 -0700292 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700293 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
294
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800295 private Bundle mSavedInstanceState;
296
Joe Onorato9c1289c2009-08-17 11:03:03 -0400297 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800298 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800299 private boolean mUserPresent = true;
300 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700301 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800302 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400303
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700304 private static LocaleConfiguration sLocaleConfiguration = null;
305
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700306 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700307
Adam Cohen61f560d2013-09-30 15:58:20 -0700308 private View.OnTouchListener mHapticFeedbackTouchListener;
309
Adam Cohen80e6beb2015-02-13 16:14:33 -0800310 public static final int BUILD_LAYER = 0;
311 public static final int BUILD_AND_SET_LAYER = 1;
312
Adam Cohended9f8d2010-11-03 13:25:16 -0700313 // Related to the auto-advancing of widgets
314 private final int ADVANCE_MSG = 1;
315 private final int mAdvanceInterval = 20000;
316 private final int mAdvanceStagger = 250;
317 private long mAutoAdvanceSentTime;
318 private long mAutoAdvanceTimeLeft = -1;
319 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
320 new HashMap<View, AppWidgetProviderInfo>();
321
Winson Chung400438b2011-01-16 17:53:48 -0800322 // Determines how long to wait after a rotation before restoring the screen orientation to
323 // match the sensor state.
324 private final int mRestoreScreenOrientationDelay = 500;
325
Craig Mautner360310b2012-10-26 15:13:08 -0700326 private Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700327
Adam Cohen1462de32012-07-24 22:34:36 -0700328 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700329 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700330
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700331 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700332 static Date sDateStamp = new Date();
333 static DateFormat sDateFormat =
334 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
335 static long sRunStart = System.currentTimeMillis();
336 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700337
Winson Chung46353de2012-02-16 14:05:10 -0800338 // We only want to get the SharedPreferences once since it does an FS stat each time we get
339 // it from the context.
340 private SharedPreferences mSharedPrefs;
341
Winson Chungf0c6ae02012-03-21 16:10:31 -0700342 // Holds the page that we need to animate to, and the icon views that we need to animate up
343 // when we scroll to that page on resume.
Adam Cohen268c4752012-06-06 17:47:33 -0700344 private ImageView mFolderIconImageView;
345 private Bitmap mFolderIconBitmap;
346 private Canvas mFolderIconCanvas;
347 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700348
Michael Jurkaddd62e92011-02-16 17:49:14 -0800349 private BubbleTextView mWaitingForResume;
350
Adam Cohen59400422014-03-05 18:07:04 -0800351 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
352 new HashMap<String, CustomAppWidget>();
353
354 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
355 static {
356 if (ENABLE_CUSTOM_WIDGET_TEST) {
357 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
358 }
359 }
360
Chet Haasea8f996d2015-02-17 12:56:04 -0800361 // TODO: remove this field and call method directly when Launcher3 can depend on M APIs
362 private static Method sClipRevealMethod = null;
363 static {
364 Class<?> activityOptionsClass = ActivityOptions.class;
365 try {
366 sClipRevealMethod = activityOptionsClass.getDeclaredMethod("makeClipRevealAnimation",
367 View.class, int.class, int.class, int.class, int.class);
368 } catch (Exception e) {
369 // Earlier version
370 }
371 }
372
Michael Jurkac1f5d262011-09-30 19:32:27 -0700373 private Runnable mBuildLayersRunnable = new Runnable() {
374 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700375 if (mWorkspace != null) {
376 mWorkspace.buildPageHardwareLayers();
377 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700378 }
379 };
380
Adam Cohendb364c32014-05-20 14:23:40 -0700381 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800382
383 private static class PendingAddArguments {
384 int requestCode;
385 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700386 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700387 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800388 int cellX;
389 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700390 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800391 }
392
Daniel Sandlerff02d492013-08-05 02:12:05 -0400393 private Stats mStats;
394
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700395 FocusIndicatorView mFocusHandler;
396
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800397 @Override
398 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700399 if (DEBUG_STRICT_MODE) {
400 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
401 .detectDiskReads()
402 .detectDiskWrites()
403 .detectNetwork() // or .detectAll() for all detectable problems
404 .penaltyLog()
405 .build());
406 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
407 .detectLeakedSqlLiteObjects()
408 .detectLeakedClosableObjects()
409 .penaltyLog()
410 .penaltyDeath()
411 .build());
412 }
413
Adam Cohen9211d422014-10-07 18:14:53 -0700414 if (mLauncherCallbacks != null) {
415 mLauncherCallbacks.preOnCreate();
416 }
417
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800418 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400419
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400420 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400421 LauncherAppState app = LauncherAppState.getInstance();
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700422 LauncherAppState.getLauncherProvider().setLauncherProviderChangeListener(this);
Winson Chung6e1c0d32013-10-25 15:24:24 -0700423
Winson Chung5f8afe62013-08-12 16:19:28 -0700424 // Lazy-initialize the dynamic grid
Sunny Goyal33d44382014-10-16 09:24:19 -0700425 DeviceProfile grid = app.initDynamicGrid(this);
Winson Chung5f8afe62013-08-12 16:19:28 -0700426
427 // the LauncherApplication should call this, but in case of Instrumentation it might not be present yet
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400428 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700429 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700430 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800431 mModel = app.setLauncher(this);
432 mIconCache = app.getIconCache();
Winson Chunge5467dc2013-10-14 17:03:04 -0700433 mIconCache.flushInvalidIcons(grid);
Joe Onorato41a12d22009-10-31 18:30:00 -0400434 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800435 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700436
Daniel Sandlerff02d492013-08-05 02:12:05 -0400437 mStats = new Stats(this);
438
Sunny Goyalffe83f12014-08-14 17:39:34 -0700439 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700440
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700441 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
442 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700443
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700444 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
445 // this also ensures that any synchronous binding below doesn't re-trigger another
446 // LauncherModel load.
447 mPaused = false;
448
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800449 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200450 android.os.Debug.startMethodTracing(
451 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800452 }
453
454 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800455 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700456
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800457 setupViews();
Cristina Stancu476493b2013-08-07 17:20:14 +0100458 grid.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800459
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800460 registerContentObservers();
461
Joe Onorato7c312c12009-08-13 21:36:53 -0700462 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700463
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800464 mSavedState = savedInstanceState;
465 restoreState(mSavedState);
466
467 if (PROFILE_STARTUP) {
468 android.os.Debug.stopMethodTracing();
469 }
470
471 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700472 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700473 // If the user leaves launcher, then we should just load items asynchronously when
474 // they return.
Derek Prothro7aff3992013-12-10 14:00:37 -0500475 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700476 } else {
477 // We only load the page synchronously if the user rotates (or triggers a
478 // configuration change) while launcher is in the foreground
Winson Chung9b9fb962013-11-15 15:39:34 -0800479 mModel.startLoader(true, mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700480 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800481 }
482
483 // For handling default keys
484 mDefaultKeySsb = new SpannableStringBuilder();
485 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800486
487 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
488 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800489
Adam Cohenf9426d52012-06-04 17:26:21 -0700490 // On large interfaces, we want the screen to auto-rotate based on the current orientation
491 unlockScreenOrientation(true);
Winson Chungaf40f202013-09-18 18:26:31 -0700492
Adam Cohen9211d422014-10-07 18:14:53 -0700493 if (mLauncherCallbacks != null) {
494 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700495 if (mLauncherCallbacks.hasLauncherOverlay()) {
496 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700497 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
498 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
499 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700500 mWorkspace.setLauncherOverlay(mLauncherOverlay);
501 }
Adam Cohen9211d422014-10-07 18:14:53 -0700502 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700503
504 if (shouldShowIntroScreen()) {
505 showIntroScreen();
506 } else {
507 showFirstRunActivity();
508 showFirstRunClings();
509 }
Adam Cohen9211d422014-10-07 18:14:53 -0700510 }
511
512 private LauncherCallbacks mLauncherCallbacks;
513
514 public void onPostCreate(Bundle savedInstanceState) {
515 super.onPostCreate(savedInstanceState);
516 if (mLauncherCallbacks != null) {
517 mLauncherCallbacks.onPostCreate(savedInstanceState);
518 }
519 }
520
521 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
522 mLauncherCallbacks = callbacks;
523 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700524 }
525
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700526 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700527 public void onLauncherProviderChange() {
528 if (mLauncherCallbacks != null) {
529 mLauncherCallbacks.onLauncherProviderChange();
530 }
531 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700532
Adam Cohen9211d422014-10-07 18:14:53 -0700533 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700534 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700535 if (mLauncherCallbacks != null) {
536 return mLauncherCallbacks.hasCustomContentToLeft();
537 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700538 return false;
539 }
540
Dave Hawkeya8881582013-09-17 15:55:33 -0600541 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500542 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600543 * {@link #addToCustomContentPage}. This will only be invoked if
544 * {@link #hasCustomContentToLeft()} is {@code true}.
545 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500546 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700547 if (mLauncherCallbacks != null) {
548 mLauncherCallbacks.populateCustomContentContainer();
549 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600550 }
551
552 /**
553 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
554 * ensure the custom content page is added or removed if necessary.
555 */
556 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600557 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600558 // Not bound yet, wait for bindScreens to be called.
559 return;
560 }
561
562 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
563 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500564 mWorkspace.createCustomContentContainer();
565 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600566 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
567 mWorkspace.removeCustomContentPage();
568 }
569 }
570
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800571 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700572 if (sLocaleConfiguration == null) {
573 new AsyncTask<Void, Void, LocaleConfiguration>() {
574 @Override
575 protected LocaleConfiguration doInBackground(Void... unused) {
576 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
577 readConfiguration(Launcher.this, localeConfiguration);
578 return localeConfiguration;
579 }
580
581 @Override
582 protected void onPostExecute(LocaleConfiguration result) {
583 sLocaleConfiguration = result;
584 checkForLocaleChange(); // recursive, but now with a locale configuration
585 }
586 }.execute();
587 return;
588 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700589
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800590 final Configuration configuration = getResources().getConfiguration();
591
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700592 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800593 final String locale = configuration.locale.toString();
594
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700595 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800596 final int mcc = configuration.mcc;
597
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700598 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800599 final int mnc = configuration.mnc;
600
Romain Guy84f296c2009-11-04 15:00:44 -0800601 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800602
Romain Guy84f296c2009-11-04 15:00:44 -0800603 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700604 sLocaleConfiguration.locale = locale;
605 sLocaleConfiguration.mcc = mcc;
606 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700607
Joe Onorato0589f0f2010-02-08 13:44:00 -0800608 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700609
610 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
Michael Jurka43467462013-11-14 12:03:58 +0100611 new AsyncTask<Void, Void, Void>() {
612 public Void doInBackground(Void ... args) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700613 writeConfiguration(Launcher.this, localeConfiguration);
Michael Jurka43467462013-11-14 12:03:58 +0100614 return null;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700615 }
Michael Jurka43467462013-11-14 12:03:58 +0100616 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Romain Guy98d01652009-06-30 16:21:04 -0700617 }
618 }
619
620 private static class LocaleConfiguration {
621 public String locale;
622 public int mcc = -1;
623 public int mnc = -1;
624 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700625
Romain Guy98d01652009-06-30 16:21:04 -0700626 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
627 DataInputStream in = null;
628 try {
Helena Josol28db2802014-10-09 17:04:09 +0100629 in = new DataInputStream(context.openFileInput(LauncherFiles.LAUNCHER_PREFERENCES));
Romain Guy98d01652009-06-30 16:21:04 -0700630 configuration.locale = in.readUTF();
631 configuration.mcc = in.readInt();
632 configuration.mnc = in.readInt();
633 } catch (FileNotFoundException e) {
634 // Ignore
635 } catch (IOException e) {
636 // Ignore
637 } finally {
638 if (in != null) {
639 try {
640 in.close();
641 } catch (IOException e) {
642 // Ignore
643 }
644 }
645 }
646 }
647
648 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
649 DataOutputStream out = null;
650 try {
Helena Josol4fbbb3e2014-10-06 16:06:46 +0100651 out = new DataOutputStream(context.openFileOutput(
Helena Josol28db2802014-10-09 17:04:09 +0100652 LauncherFiles.LAUNCHER_PREFERENCES, MODE_PRIVATE));
Romain Guy98d01652009-06-30 16:21:04 -0700653 out.writeUTF(configuration.locale);
654 out.writeInt(configuration.mcc);
655 out.writeInt(configuration.mnc);
656 out.flush();
657 } catch (FileNotFoundException e) {
658 // Ignore
659 } catch (IOException e) {
660 //noinspection ResultOfMethodCallIgnored
Helena Josol28db2802014-10-09 17:04:09 +0100661 context.getFileStreamPath(LauncherFiles.LAUNCHER_PREFERENCES).delete();
Romain Guy98d01652009-06-30 16:21:04 -0700662 } finally {
663 if (out != null) {
664 try {
665 out.close();
666 } catch (IOException e) {
667 // Ignore
668 }
669 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800670 }
671 }
672
Anton Hanssona2f665f2013-09-26 12:18:32 +0100673 public Stats getStats() {
674 return mStats;
675 }
676
Bjorn Bringertc459e522013-06-07 19:36:01 +0100677 public LayoutInflater getInflater() {
678 return mInflater;
679 }
680
Winson Chung36a62fe2012-05-06 18:04:42 -0700681 boolean isDraggingEnabled() {
682 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
683 // that is subsequently removed from the workspace in startBinding().
684 return !mModel.isLoadingWorkspace();
685 }
686
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800687 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000688 public static int generateViewId() {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100689 if (Build.VERSION.SDK_INT >= 17) {
690 return View.generateViewId();
691 } else {
692 // View.generateViewId() is not available. The following fallback logic is a copy
693 // of its implementation.
694 for (;;) {
695 final int result = sNextGeneratedId.get();
696 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
697 int newValue = result + 1;
698 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
699 if (sNextGeneratedId.compareAndSet(result, newValue)) {
700 return result;
701 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000702 }
703 }
704 }
705
706 public int getViewIdForItem(ItemInfo info) {
707 // This cast is safe given the > 2B range for int.
708 int itemId = (int) info.id;
709 if (mItemIdToViewId.containsKey(itemId)) {
710 return mItemIdToViewId.get(itemId);
711 }
712 int viewId = generateViewId();
713 mItemIdToViewId.put(itemId, viewId);
714 return viewId;
715 }
716
717 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700718 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
719 * a configuration step, this allows the proper animations to run after other transitions.
720 */
Adam Cohendb364c32014-05-20 14:23:40 -0700721 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700722 long screenId = args.screenId;
723 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
724 // When the screen id represents an actual screen (as opposed to a rank) we make sure
725 // that the drop page actually exists.
726 screenId = ensurePendingDropLayoutExists(args.screenId);
727 }
Adam Cohendb364c32014-05-20 14:23:40 -0700728
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800729 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800730 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700731 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700732 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700733 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800734 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700735 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700736 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700737 case REQUEST_RECONFIGURE_APPWIDGET:
738 completeRestoreAppWidget(args.appWidgetId);
739 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800740 }
Michael Jurka27614d22012-04-02 06:40:22 -0700741 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
742 // if you turned the screen off and then back while in All Apps, Launcher would not
743 // return to the workspace. Clearing mAddInfo.container here fixes this issue
744 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700745 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800746 }
747
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800748 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700749 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700750 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700751 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700752 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800753 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700754
Adam Cohenad4e15c2013-10-17 16:21:35 -0700755 Runnable exitSpringLoaded = new Runnable() {
756 @Override
757 public void run() {
758 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
759 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
760 }
761 };
762
Michael Jurka8b805b12012-04-18 14:23:14 -0700763 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700764 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700765 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
766 if (resultCode == RESULT_CANCELED) {
767 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700768 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700769 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700770 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800771 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700772 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700773 }
774 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200775 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
776 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
777 mWorkspace.exitOverviewMode(false);
778 }
779 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700780 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200781
Adam Cohened66b2b2012-01-23 17:28:51 -0800782 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
783 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700784
Adam Cohendb364c32014-05-20 14:23:40 -0700785 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800786 // We have special handling for widgets
787 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800788 final int appWidgetId;
789 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
790 : -1;
791 if (widgetId < 0) {
792 appWidgetId = pendingAddWidgetId;
793 } else {
794 appWidgetId = widgetId;
795 }
796
Adam Cohenad4e15c2013-10-17 16:21:35 -0700797 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800798 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700799 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
800 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700801 result = RESULT_CANCELED;
802 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700803 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700804 @Override
805 public void run() {
806 exitSpringLoadedDragModeDelayed(false, 0, null);
807 }
808 };
Adam Cohendb364c32014-05-20 14:23:40 -0700809 if (workspaceLocked) {
810 // No need to remove the empty screen if we're mid-binding, as the
811 // the bind will not add the empty screen.
812 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
813 } else {
814 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
815 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
816 }
Winson Chung5aaab772012-04-27 15:24:02 -0700817 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700818 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700819 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
820 // When the screen id represents an actual screen (as opposed to a rank)
821 // we make sure that the drop page actually exists.
822 mPendingAddInfo.screenId =
823 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
824 }
Adam Cohendb364c32014-05-20 14:23:40 -0700825 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
826
827 dropLayout.setDropPending(true);
828 final Runnable onComplete = new Runnable() {
829 @Override
830 public void run() {
831 completeTwoStageWidgetDrop(resultCode, appWidgetId);
832 dropLayout.setDropPending(false);
833 }
834 };
835 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
836 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
837 } else {
838 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
839 mPendingAddInfo);
840 sPendingAddItem = args;
841 }
Winson Chung5aaab772012-04-27 15:24:02 -0700842 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800843 return;
844 }
845
Sunny Goyalff572272014-07-23 13:58:07 -0700846 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
847 if (resultCode == RESULT_OK) {
848 // Update the widget view.
849 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
850 pendingAddWidgetId, mPendingAddInfo);
851 if (workspaceLocked) {
852 sPendingAddItem = args;
853 } else {
854 completeAdd(args);
855 }
856 }
857 // Leave the widget in the pending state if the user canceled the configure.
858 return;
859 }
860
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800861 // The pattern used here is that a user PICKs a specific application,
862 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700863
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800864 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
865 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700866 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700867 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
868 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800869 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700870 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800871 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700872 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700873 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
874 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800875 }
Adam Cohen00074722013-10-11 17:46:09 -0700876 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700877 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700878 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800879 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800880 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800881
882 }
883
884 @Override
885 protected void onActivityResult(
886 final int requestCode, final int resultCode, final Intent data) {
887 handleActivityResult(requestCode, resultCode, data);
888 if (mLauncherCallbacks != null) {
889 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
890 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800891 }
892
Adam Cohendb364c32014-05-20 14:23:40 -0700893 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
894 appWidgetId, ItemInfo info) {
895 PendingAddArguments args = new PendingAddArguments();
896 args.requestCode = requestCode;
897 args.intent = data;
898 args.container = info.container;
899 args.screenId = info.screenId;
900 args.cellX = info.cellX;
901 args.cellY = info.cellY;
902 args.appWidgetId = appWidgetId;
903 return args;
904 }
905
906 /**
907 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
908 *
909 * @param screenId the screen id to check
910 * @return the new screen, or screenId if it exists
911 */
912 private long ensurePendingDropLayoutExists(long screenId) {
913 CellLayout dropLayout =
914 (CellLayout) mWorkspace.getScreenWithId(screenId);
915 if (dropLayout == null) {
916 // it's possible that the add screen was removed because it was
917 // empty and a re-bind occurred
918 mWorkspace.addExtraEmptyScreen();
919 return mWorkspace.commitExtraEmptyScreen();
920 } else {
921 return screenId;
922 }
923 }
924
Adam Cohened66b2b2012-01-23 17:28:51 -0800925 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700926 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700927 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800928 Runnable onCompleteRunnable = null;
929 int animationType = 0;
930
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700931 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800932 if (resultCode == RESULT_OK) {
933 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
934 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700935 mPendingAddWidgetInfo);
936 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800937 onCompleteRunnable = new Runnable() {
938 @Override
939 public void run() {
940 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700941 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700942 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
943 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800944 }
945 };
946 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800947 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800948 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800949 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700950 if (mDragLayer.getAnimatedView() != null) {
951 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
952 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
953 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700954 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700955 // The animated view may be null in the case of a rotation during widget configuration
956 onCompleteRunnable.run();
957 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800958 }
959
960 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700961 protected void onStop() {
962 super.onStop();
963 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700964
965 if (mLauncherCallbacks != null) {
966 mLauncherCallbacks.onStop();
967 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700968 }
969
970 @Override
971 protected void onStart() {
972 super.onStart();
973 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700974
975 if (mLauncherCallbacks != null) {
976 mLauncherCallbacks.onStart();
977 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700978 }
979
980 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800981 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200982 long startTime = 0;
983 if (DEBUG_RESUME_TIME) {
984 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400985 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200986 }
Adam Cohen9211d422014-10-07 18:14:53 -0700987
988 if (mLauncherCallbacks != null) {
989 mLauncherCallbacks.preOnResume();
990 }
991
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800992 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700993
Winson Chung4a2afa32012-07-19 14:53:05 -0700994 // Restore the previous launcher state
995 if (mOnResumeState == State.WORKSPACE) {
996 showWorkspace(false);
997 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
Winson Chung07e045c62013-11-06 15:49:51 -0800998 showAllApps(false, mAppsCustomizeContent.getContentType(), false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700999 }
1000 mOnResumeState = State.NONE;
1001
Craig Mautner360310b2012-10-26 15:13:08 -07001002 // Background was set to gradient in onPause(), restore to black if in all apps.
1003 setWorkspaceBackground(mState == State.WORKSPACE);
1004
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001005 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001006 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001007 setWorkspaceLoading(true);
Derek Prothro7aff3992013-12-10 14:00:37 -05001008 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001009 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001010 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001011 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001012 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001013 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1014 // execute them here
1015 long startTimeCallbacks = 0;
1016 if (DEBUG_RESUME_TIME) {
1017 startTimeCallbacks = System.currentTimeMillis();
1018 }
1019
1020 if (mAppsCustomizeContent != null) {
1021 mAppsCustomizeContent.setBulkBind(true);
1022 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001023 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1024 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001025 }
1026 if (mAppsCustomizeContent != null) {
1027 mAppsCustomizeContent.setBulkBind(false);
1028 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001029 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001030 if (DEBUG_RESUME_TIME) {
1031 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1032 (System.currentTimeMillis() - startTimeCallbacks));
1033 }
Michael Jurka447bf842013-05-15 14:52:15 +02001034 }
Michael Jurka54554252013-08-01 12:52:23 +02001035 if (mOnResumeCallbacks.size() > 0) {
1036 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1037 mOnResumeCallbacks.get(i).run();
1038 }
1039 mOnResumeCallbacks.clear();
1040 }
Winson Chunge4e50662012-01-23 14:45:13 -08001041
1042 // Reset the pressed state of icons that were locked in the press state while activities
1043 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001044 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001045 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001046 mWaitingForResume.setStayPressed(false);
1047 }
Winson Chung82963d52013-10-09 11:20:57 -07001048
Adam Cohen06dff352012-06-01 17:17:08 -07001049 // It is possible that widgets can receive updates while launcher is not in the foreground.
1050 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1051 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1052 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001053 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001054
Winson Chung780fe592013-09-26 14:48:44 -07001055 // Process any items that were added while Launcher was away.
1056 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1057
Michael Jurka447bf842013-05-15 14:52:15 +02001058 if (DEBUG_RESUME_TIME) {
1059 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1060 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001061
1062 if (mWorkspace.getCustomContentCallbacks() != null) {
1063 // If we are resuming and the custom content is the current page, we call onShow().
1064 // It is also poassible that onShow will instead be called slightly after first layout
1065 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1066 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001067 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001068 }
1069 }
Adam Cohenedaaa302013-10-01 17:33:27 -07001070 mWorkspace.updateInteractionForState();
Adam Cohen53805212013-10-01 10:39:23 -07001071 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001072
1073 PackageInstallerCompat.getInstance(this).onResume();
Adam Cohen9211d422014-10-07 18:14:53 -07001074
1075 if (mLauncherCallbacks != null) {
1076 mLauncherCallbacks.onResume();
1077 }
Adam Cohen06dff352012-06-01 17:17:08 -07001078 }
1079
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001080 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001081 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001082 // Ensure that items added to Launcher are queued until Launcher returns
1083 InstallShortcutReceiver.enableInstallQueue();
Sunny Goyale755d462014-07-22 13:48:29 -07001084 PackageInstallerCompat.getInstance(this).onPause();
Winson Chung997a9232013-07-24 15:33:46 -07001085
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001086 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001087 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001088 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001089 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001090
1091 // We call onHide() aggressively. The custom content callbacks should be able to
1092 // debounce excess onHide calls.
1093 if (mWorkspace.getCustomContentCallbacks() != null) {
1094 mWorkspace.getCustomContentCallbacks().onHide();
1095 }
Romain Guycbb89e42009-06-08 15:52:54 -07001096
Adam Cohen9211d422014-10-07 18:14:53 -07001097 if (mLauncherCallbacks != null) {
1098 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001099 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001100 }
1101
1102 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001103 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1104 // by a onResume or by scrolling otherwise.
1105 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001106
1107 // Custom content is completely hidden
1108 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001109
1110 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1111 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001112
1113 // Indicates whether the user is allowed to scroll away from the custom content.
1114 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001115 }
1116
Adam Cohenc2d6e892014-10-16 09:49:24 -07001117 public interface LauncherOverlay {
1118
1119 /**
1120 * Touch interaction leading to overscroll has begun
1121 */
1122 public void onScrollInteractionBegin();
1123
1124 /**
1125 * Touch interaction related to overscroll has ended
1126 */
1127 public void onScrollInteractionEnd();
1128
1129 /**
1130 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1131 * screen (or in the case of RTL, the rightmost screen).
1132 */
1133 public void onScrollChange(int progress, boolean rtl);
1134
1135 /**
1136 * Screen has stopped scrolling
1137 */
1138 public void onScrollSettled();
1139
1140 /**
1141 * This method can be called by the Launcher in order to force the LauncherOverlay
1142 * to exit fully immersive mode.
1143 */
1144 public void forceExitFullImmersion();
1145 }
1146
1147 public interface LauncherOverlayCallbacks {
1148 /**
1149 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1150 * however it doesn't modify any state within the launcher.
1151 */
1152 public boolean canEnterFullImmersion();
1153
1154 /**
1155 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1156 * eg. by occupying the full screen and handling all touch events.
1157 *
1158 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1159 * case, Launcher will modify any necessary state and assumes the overlay is
1160 * handling all interaction. If false, the LauncherOverlay should cancel any
1161 *
1162 */
1163 public boolean enterFullImmersion();
1164
1165 /**
1166 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1167 * full control over UI and state.
1168 */
1169 public void exitFullImmersion();
1170 }
1171
1172 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1173
1174 @Override
1175 public boolean canEnterFullImmersion() {
1176 return mState == State.WORKSPACE;
1177 }
1178
1179 @Override
1180 public boolean enterFullImmersion() {
1181 if (mState == State.WORKSPACE) {
1182 // When fully immersed, disregard any touches which fall through.
1183 mDragLayer.setBlockTouch(true);
1184 return true;
1185 }
1186 return false;
1187 }
1188
1189 @Override
1190 public void exitFullImmersion() {
1191 mDragLayer.setBlockTouch(false);
1192 }
1193 }
1194
Jorim Jaggid017f882014-01-14 17:08:48 -08001195 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001196 if (mLauncherCallbacks != null) {
1197 return mLauncherCallbacks.hasSettings();
1198 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001199 return false;
1200 }
1201
Adam Cohenbffe7452013-07-22 18:21:45 -07001202
Adam Cohen9211d422014-10-07 18:14:53 -07001203 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001204 CustomContentCallbacks callbacks, String description) {
1205 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001206 }
1207
Adam Cohenedb40762013-07-18 16:45:45 -07001208 // The custom content needs to offset its content to account for the QSB
1209 public int getTopOffsetForCustomContent() {
1210 return mWorkspace.getPaddingTop();
1211 }
1212
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001213 @Override
1214 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001215 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001216 if (mModel.isCurrentCallbacks(this)) {
1217 mModel.stopLoader();
1218 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001219 if (mAppsCustomizeContent != null) {
1220 mAppsCustomizeContent.surrender();
1221 }
Romain Guy13c2e7b2010-03-10 19:45:00 -08001222 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001223 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001224
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001225 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001226 @Override
1227 public void onWindowFocusChanged(boolean hasFocus) {
1228 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001229 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001230
1231 if (mLauncherCallbacks != null) {
1232 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1233 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001234 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001235
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001236 private boolean acceptFilter() {
1237 final InputMethodManager inputManager = (InputMethodManager)
1238 getSystemService(Context.INPUT_METHOD_SERVICE);
1239 return !inputManager.isFullscreenMode();
1240 }
1241
1242 @Override
1243 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001244 final int uniChar = event.getUnicodeChar();
1245 final boolean handled = super.onKeyDown(keyCode, event);
1246 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1247 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001248 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1249 keyCode, event);
1250 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001251 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001252 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001253 // showSearchDialog()
1254 // If there are multiple keystrokes before the search dialog takes focus,
1255 // onSearchRequested() will be called for every keystroke,
1256 // but it is idempotent, so it's fine.
1257 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001258 }
1259 }
1260
Joe Onorato8a9625e2010-01-28 15:55:35 -08001261 // Eat the long press event so the keyboard doesn't come up.
1262 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1263 return true;
1264 }
1265
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001266 return handled;
1267 }
1268
Karl Rosaen138a0412009-04-23 19:00:21 -07001269 private String getTypedText() {
1270 return mDefaultKeySsb.toString();
1271 }
1272
1273 private void clearTypedText() {
1274 mDefaultKeySsb.clear();
1275 mDefaultKeySsb.clearSpans();
1276 Selection.setSelection(mDefaultKeySsb, 0);
1277 }
1278
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001279 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001280 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1281 * State
1282 */
1283 private static State intToState(int stateOrdinal) {
1284 State state = State.WORKSPACE;
1285 final State[] stateValues = State.values();
1286 for (int i = 0; i < stateValues.length; i++) {
1287 if (stateValues[i].ordinal() == stateOrdinal) {
1288 state = stateValues[i];
1289 break;
1290 }
1291 }
1292 return state;
1293 }
1294
1295 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001296 * Restores the previous state, if it exists.
1297 *
1298 * @param savedState The previous state.
1299 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001300 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001301 private void restoreState(Bundle savedState) {
1302 if (savedState == null) {
1303 return;
1304 }
1305
Michael Jurka883f55b2010-10-21 15:47:14 -07001306 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -07001307 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -07001308 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001309 }
1310
Adam Cohen21cd0022013-10-09 18:57:02 -07001311 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1312 PagedView.INVALID_RESTORE_PAGE);
1313 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001314 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001315 }
1316
Winson Chung3d503fb2011-07-13 17:25:49 -07001317 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001318 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001319
Winson Chung3d503fb2011-07-13 17:25:49 -07001320 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1321 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001322 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001323 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1324 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001325 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1326 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
1327 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001328 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001329 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001330 mRestoring = true;
1331 }
1332
1333 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
1334 if (renameFolder) {
1335 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001336 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001337 mRestoring = true;
1338 }
Winson Chunga12a2502010-12-20 14:41:35 -08001339
Winson Chung785d2eb2011-04-14 16:08:02 -07001340 // Restore the AppsCustomize tab
1341 if (mAppsCustomizeTabHost != null) {
1342 String curTab = savedState.getString("apps_customize_currentTab");
1343 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001344 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -07001345 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -07001346 mAppsCustomizeContent.loadAssociatedPages(
1347 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -07001348 }
1349
Winson Chung5afbf7b2011-07-25 11:53:08 -07001350 int currentIndex = savedState.getInt("apps_customize_currentIndex");
1351 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001352 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001353 mItemIdToViewId = (HashMap<Integer, Integer>)
1354 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001355 }
1356
1357 /**
1358 * Finds all the views we need and configure them properly.
1359 */
1360 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001361 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001362
Craig Mautner360310b2012-10-26 15:13:08 -07001363 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001364 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001365 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1366 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001367 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001368 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001369
John Spurlock77e1f472013-09-11 10:09:51 -04001370 mLauncherView.setSystemUiVisibility(
1371 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001372 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001373
Winson Chung4c98d922011-05-31 16:50:48 -07001374 // Setup the drag layer
1375 mDragLayer.setup(this, dragController);
1376
Winson Chung3d503fb2011-07-13 17:25:49 -07001377 // Setup the hotseat
1378 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1379 if (mHotseat != null) {
1380 mHotseat.setup(this);
Winson Chung11a1a532013-09-13 11:14:45 -07001381 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001382 }
1383
Jorim Jaggid017f882014-01-14 17:08:48 -08001384 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Adam Cohen61f560d2013-09-30 15:58:20 -07001385 View widgetButton = findViewById(R.id.widget_button);
1386 widgetButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001387 @Override
1388 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001389 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001390 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001391 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001392 }
1393 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001394 widgetButton.setOnTouchListener(getHapticFeedbackTouchListener());
1395
1396 View wallpaperButton = findViewById(R.id.wallpaper_button);
1397 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001398 @Override
1399 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001400 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001401 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001402 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001403 }
1404 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001405 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1406
1407 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001408 if (hasSettings()) {
1409 settingsButton.setOnClickListener(new OnClickListener() {
1410 @Override
1411 public void onClick(View arg0) {
1412 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001413 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001414 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001415 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001416 });
1417 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1418 } else {
1419 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001420 }
1421
Adam Cohendbdff6b2013-09-18 19:09:15 -07001422 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001423
Winson Chung4c98d922011-05-31 16:50:48 -07001424 // Setup the workspace
1425 mWorkspace.setHapticFeedbackEnabled(false);
1426 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001427 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001428 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001429
Winson Chungf0ea4d32011-06-06 14:27:16 -07001430 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001431 mSearchDropTargetBar = (SearchDropTargetBar)
1432 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001433
Winson Chungf0ea4d32011-06-06 14:27:16 -07001434 // Setup AppsCustomize
Craig Mautner360310b2012-10-26 15:13:08 -07001435 mAppsCustomizeTabHost = (AppsCustomizeTabHost) findViewById(R.id.apps_customize_pane);
Winson Chungf0ea4d32011-06-06 14:27:16 -07001436 mAppsCustomizeContent = (AppsCustomizePagedView)
1437 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
1438 mAppsCustomizeContent.setup(this, dragController);
Craig Mautner360310b2012-10-26 15:13:08 -07001439
Winson Chung3d503fb2011-07-13 17:25:49 -07001440 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001441 dragController.setDragScoller(mWorkspace);
1442 dragController.setScrollView(mDragLayer);
1443 dragController.setMoveTarget(mWorkspace);
1444 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001445 if (mSearchDropTargetBar != null) {
1446 mSearchDropTargetBar.setup(this, dragController);
Sunny Goyal594d76d2014-11-06 10:12:54 -08001447 mSearchDropTargetBar.setQsbSearchBar(getQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001448 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001449
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001450 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001451 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001452 mWeightWatcher = new WeightWatcher(this);
1453 mWeightWatcher.setAlpha(0.5f);
1454 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001455 new FrameLayout.LayoutParams(
1456 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001457 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001458 Gravity.BOTTOM)
1459 );
Adam Cohen39a06042013-07-19 14:30:12 -07001460
1461 boolean show = shouldShowWeightWatcher();
1462 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001463 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001464 }
1465
1466 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001467 * Sets the all apps button. This method is called from {@link Hotseat}.
1468 */
1469 public void setAllAppsButton(View allAppsButton) {
1470 mAllAppsButton = allAppsButton;
1471 }
1472
1473 public View getAllAppsButton() {
1474 return mAllAppsButton;
1475 }
1476
1477 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001478 * Creates a view representing a shortcut.
1479 *
1480 * @param info The data structure describing the shortcut.
1481 *
1482 * @return A View inflated from R.layout.application.
1483 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001484 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001485 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -07001486 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001487 }
1488
1489 /**
1490 * Creates a view representing a shortcut inflated from the specified resource.
1491 *
1492 * @param layoutResId The id of the XML layout used to create the shortcut.
1493 * @param parent The group the shortcut belongs to.
1494 * @param info The data structure describing the shortcut.
1495 *
1496 * @return A View inflated from layoutResId.
1497 */
Adam Cohen59400422014-03-05 18:07:04 -08001498 public View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -08001499 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07001500 favorite.applyFromShortcutInfo(info, mIconCache, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001501 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001502 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001503 return favorite;
1504 }
1505
1506 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001507 * Add a shortcut to the workspace.
1508 *
1509 * @param data The intent describing the shortcut.
1510 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001511 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001512 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001513 int cellY) {
1514 int[] cellXY = mTmpAddItemCellCoordinates;
1515 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001516 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001517
Michael Jurkad3ef3062010-11-23 16:23:58 -08001518 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001519
Sunny Goyal2350bc92014-10-14 16:42:54 -07001520 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001521 if (info == null) {
1522 return;
1523 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001524 final View view = createShortcut(info);
1525
Adam Cohenfbba09b2011-07-18 21:43:05 -07001526 // First we check if we already know the exact location where we want to add this item.
1527 if (cellX >= 0 && cellY >= 0) {
1528 cellXY[0] = cellX;
1529 cellXY[1] = cellY;
1530 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001531
1532 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001533 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001534 true, null,null)) {
1535 return;
1536 }
1537 DragObject dragObject = new DragObject();
1538 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001539 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1540 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001541 return;
1542 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001543 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001544 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001545 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001546 foundCellSpan = (result != null);
1547 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001548 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001549 }
1550
1551 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001552 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001553 return;
1554 }
1555
Adam Cohendcd297f2013-06-18 13:13:40 -07001556 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001557
1558 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001559 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001560 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001561 }
1562 }
1563
Adam Cohen2f093b62012-04-30 18:59:53 -07001564 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1565 int minHeight) {
1566 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001567 // We want to account for the extra amount of padding that we are adding to the widget
1568 // to ensure that it gets the full amount of space that it has requested
1569 int requiredWidth = minWidth + padding.left + padding.right;
1570 int requiredHeight = minHeight + padding.top + padding.bottom;
Winson Chung66700732013-08-20 16:56:15 -07001571 return CellLayout.rectToCell(requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001572 }
1573
Adam Cohen2f093b62012-04-30 18:59:53 -07001574 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1575 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001576 }
1577
Adam Cohen2f093b62012-04-30 18:59:53 -07001578 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1579 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001580 }
1581
Adam Cohen2f093b62012-04-30 18:59:53 -07001582 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1583 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001584 }
1585
Adam Cohen2f093b62012-04-30 18:59:53 -07001586 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1587 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001588 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001589 }
1590
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001591 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001592 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001593 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001594 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001595 */
Adam Cohen59400422014-03-05 18:07:04 -08001596 private void completeAddAppWidget(int appWidgetId, long container, long screenId,
1597 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1598
1599 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001600 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001601 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1602 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001603 }
Romain Guycbb89e42009-06-08 15:52:54 -07001604
Adam Cohen59400422014-03-05 18:07:04 -08001605 if (appWidgetInfo.isCustomWidget) {
1606 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001607 }
1608
Adam Cohen59400422014-03-05 18:07:04 -08001609 LauncherAppWidgetInfo launcherInfo;
1610 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1611 launcherInfo.spanX = info.spanX;
1612 launcherInfo.spanY = info.spanY;
1613 launcherInfo.minSpanX = info.minSpanX;
1614 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001615 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001616
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001617 LauncherModel.addItemToDatabase(this, launcherInfo,
Adam Cohen59400422014-03-05 18:07:04 -08001618 container, screenId, info.cellX, info.cellY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001619
1620 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001621 if (hostView == null) {
1622 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001623 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1624 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001625 } else {
1626 // The AppWidgetHostView has already been inflated and instantiated
1627 launcherInfo.hostView = hostView;
1628 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001629 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001630 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001631 launcherInfo.notifyWidgetSizeChanged(this);
1632
Adam Cohen59400422014-03-05 18:07:04 -08001633 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1634 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001635
1636 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001637 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001638 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001639 }
Romain Guycbb89e42009-06-08 15:52:54 -07001640
Adam Cohended9f8d2010-11-03 13:25:16 -07001641 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1642 @Override
1643 public void onReceive(Context context, Intent intent) {
1644 final String action = intent.getAction();
1645 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1646 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001647 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001648 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001649
Winson Chungc100e8e2011-08-09 16:02:43 -07001650 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001651 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001652 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001653 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001654 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001655 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1656 mUserPresent = true;
1657 updateRunning();
Dan Sandlerd5024042014-01-09 15:01:33 -05001658 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1659 mModel.resetLoadedState(false, true);
1660 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1661 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1662 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1663 mModel.resetLoadedState(false, true);
1664 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1665 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1666 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001667 } else if (LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED.equals(action)
1668 || LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
1669 getModel().forceReload();
Adam Cohended9f8d2010-11-03 13:25:16 -07001670 }
1671 }
1672 };
1673
1674 @Override
1675 public void onAttachedToWindow() {
1676 super.onAttachedToWindow();
1677
1678 // Listen for broadcasts related to user-presence
1679 final IntentFilter filter = new IntentFilter();
1680 filter.addAction(Intent.ACTION_SCREEN_OFF);
1681 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001682 // For handling managed profiles
1683 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED);
1684 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED);
Dan Sandlerd5024042014-01-09 15:01:33 -05001685 if (ENABLE_DEBUG_INTENTS) {
1686 filter.addAction(DebugIntents.DELETE_DATABASE);
1687 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1688 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001689 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001690 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001691 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001692 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001693 mVisible = true;
1694 }
1695
Adam Cohen0b395352014-06-09 22:54:36 +00001696 /**
1697 * Sets up transparent navigation and status bars in LMP.
1698 * This method is a no-op for other platform versions.
1699 */
Sunny Goyald0091012015-01-20 15:55:34 -08001700 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Adam Cohen0b395352014-06-09 22:54:36 +00001701 private void setupTransparentSystemBarsForLmp() {
Kenny Guyd794a3f2014-09-16 15:17:58 +01001702 if (Utilities.isLmpOrAbove()) {
Sunny Goyald0091012015-01-20 15:55:34 -08001703 Window window = getWindow();
1704 window.getAttributes().systemUiVisibility |=
1705 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1706 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1707 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1708 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1709 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1710 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1711 window.setStatusBarColor(Color.TRANSPARENT);
1712 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001713 }
1714 }
1715
Adam Cohended9f8d2010-11-03 13:25:16 -07001716 @Override
1717 public void onDetachedFromWindow() {
1718 super.onDetachedFromWindow();
1719 mVisible = false;
1720
Adam Cohend113e0c2010-11-11 10:48:05 -08001721 if (mAttached) {
1722 unregisterReceiver(mReceiver);
1723 mAttached = false;
1724 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001725 updateRunning();
1726 }
1727
1728 public void onWindowVisibilityChanged(int visibility) {
1729 mVisible = visibility == View.VISIBLE;
1730 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001731 // The following code used to be in onResume, but it turns out onResume is called when
1732 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1733 // is a more appropriate event to handle
1734 if (mVisible) {
1735 mAppsCustomizeTabHost.onWindowVisible();
1736 if (!mWorkspaceLoading) {
1737 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001738 // We want to let Launcher draw itself at least once before we force it to build
1739 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001740 // apps is nice and speedy.
1741 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001742 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001743 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001744 if (mStarted) return;
1745 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001746 // We delay the layer building a bit in order to give
1747 // other message processing a time to run. In particular
1748 // this avoids a delay in hiding the IME if it was
1749 // currently shown, because doing that may involve
1750 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001751 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001752 final ViewTreeObserver.OnDrawListener listener = this;
1753 mWorkspace.post(new Runnable() {
1754 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001755 if (mWorkspace != null &&
1756 mWorkspace.getViewTreeObserver() != null) {
1757 mWorkspace.getViewTreeObserver().
1758 removeOnDrawListener(listener);
1759 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001760 }
1761 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001762 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001763 }
1764 });
1765 }
1766 clearTypedText();
1767 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001768 }
1769
1770 private void sendAdvanceMessage(long delay) {
1771 mHandler.removeMessages(ADVANCE_MSG);
1772 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1773 mHandler.sendMessageDelayed(msg, delay);
1774 mAutoAdvanceSentTime = System.currentTimeMillis();
1775 }
1776
1777 private void updateRunning() {
1778 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1779 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1780 mAutoAdvanceRunning = autoAdvanceRunning;
1781 if (autoAdvanceRunning) {
1782 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1783 sendAdvanceMessage(delay);
1784 } else {
1785 if (!mWidgetsToAdvance.isEmpty()) {
1786 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1787 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1788 }
1789 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001790 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001791 }
1792 }
1793 }
1794
1795 private final Handler mHandler = new Handler() {
1796 @Override
1797 public void handleMessage(Message msg) {
1798 if (msg.what == ADVANCE_MSG) {
1799 int i = 0;
1800 for (View key: mWidgetsToAdvance.keySet()) {
1801 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1802 final int delay = mAdvanceStagger * i;
1803 if (v instanceof Advanceable) {
1804 postDelayed(new Runnable() {
1805 public void run() {
1806 ((Advanceable) v).advance();
1807 }
1808 }, delay);
1809 }
1810 i++;
1811 }
1812 sendAdvanceMessage(mAdvanceInterval);
1813 }
1814 }
1815 };
1816
1817 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001818 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001819 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1820 if (v instanceof Advanceable) {
1821 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001822 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001823 updateRunning();
1824 }
1825 }
1826
1827 void removeWidgetToAutoAdvance(View hostView) {
1828 if (mWidgetsToAdvance.containsKey(hostView)) {
1829 mWidgetsToAdvance.remove(hostView);
1830 updateRunning();
1831 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001832 }
1833
Joe Onorato9c1289c2009-08-17 11:03:03 -04001834 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001835 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001836 launcherInfo.hostView = null;
1837 }
1838
Winson Chung93eef082012-03-23 15:59:27 -07001839 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1840 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1841 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001842 }
1843
Adam Cohen59400422014-03-05 18:07:04 -08001844 public ArrayList<AppInfo> getAllAppsList() {
1845 return mAppsCustomizeContent.getApps();
1846 }
1847
Winson Chunga6945242014-01-08 14:04:34 -08001848 public DragLayer getDragLayer() {
1849 return mDragLayer;
1850 }
1851
1852 public Workspace getWorkspace() {
1853 return mWorkspace;
1854 }
1855
1856 public Hotseat getHotseat() {
1857 return mHotseat;
1858 }
1859
Jorim Jaggid017f882014-01-14 17:08:48 -08001860 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001861 return mOverviewPanel;
1862 }
1863
1864 public SearchDropTargetBar getSearchBar() {
1865 return mSearchDropTargetBar;
1866 }
1867
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001868 public LauncherAppWidgetHost getAppWidgetHost() {
1869 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001870 }
Romain Guycbb89e42009-06-08 15:52:54 -07001871
Winson Chunga9abd0e2010-10-27 17:18:37 -07001872 public LauncherModel getModel() {
1873 return mModel;
1874 }
1875
Winson Chunga6945242014-01-08 14:04:34 -08001876 protected SharedPreferences getSharedPrefs() {
1877 return mSharedPrefs;
1878 }
1879
Bjorn Bringertc459e522013-06-07 19:36:01 +01001880 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001881 getWindow().closeAllPanels();
1882
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001883 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001884 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001885 }
1886
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001887 @Override
1888 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001889 long startTime = 0;
1890 if (DEBUG_RESUME_TIME) {
1891 startTime = System.currentTimeMillis();
1892 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001893 super.onNewIntent(intent);
1894
1895 // Close the menu
1896 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001897 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001898 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001899
Adam Cohened307df2013-10-02 09:37:31 -07001900 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1901 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1902 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001903
Adam Cohen6fecd412013-10-02 17:41:50 -07001904 if (mWorkspace == null) {
1905 // Can be cases where mWorkspace is null, this prevents a NPE
1906 return;
1907 }
1908 Folder openFolder = mWorkspace.getOpenFolder();
1909 // In all these cases, only animate if we're already on home
1910 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001911
1912 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1913 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Adam Cohen6fecd412013-10-02 17:41:50 -07001914 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Cohen9211d422014-10-07 18:14:53 -07001915 openFolder == null && moveToDefaultScreen) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001916 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001917 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001918
Adam Cohen6fecd412013-10-02 17:41:50 -07001919 closeFolder();
1920 exitSpringLoadedDragMode();
1921
1922 // If we are already on home, then just animate back to the workspace,
1923 // otherwise, just wait until onResume to set the state back to Workspace
1924 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001925 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001926 } else {
1927 mOnResumeState = State.WORKSPACE;
1928 }
1929
1930 final View v = getWindow().peekDecorView();
1931 if (v != null && v.getWindowToken() != null) {
1932 InputMethodManager imm = (InputMethodManager)getSystemService(
1933 INPUT_METHOD_SERVICE);
1934 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1935 }
1936
1937 // Reset the apps customize page
Winson Chunge7e97e62013-12-02 17:02:50 -08001938 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001939 mAppsCustomizeTabHost.reset();
1940 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001941
Adam Cohen9211d422014-10-07 18:14:53 -07001942 if (mLauncherCallbacks != null) {
1943 mLauncherCallbacks.onHomeIntent();
1944 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001945 }
Adam Cohened307df2013-10-02 09:37:31 -07001946
Michael Jurka447bf842013-05-15 14:52:15 +02001947 if (DEBUG_RESUME_TIME) {
1948 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1949 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001950
Adam Cohen9211d422014-10-07 18:14:53 -07001951 if (mLauncherCallbacks != null) {
1952 mLauncherCallbacks.onNewIntent(intent);
1953 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001954 }
1955
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001956 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001957 public void onRestoreInstanceState(Bundle state) {
1958 super.onRestoreInstanceState(state);
1959 for (int page: mSynchronouslyBoundPages) {
1960 mWorkspace.restoreInstanceStateForChild(page);
1961 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001962 }
1963
1964 @Override
1965 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001966 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001967 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1968 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001969 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001970 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001971
Michael Jurka883f55b2010-10-21 15:47:14 -07001972 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001973 // We close any open folder since it will not be re-opened, and we need to make sure
1974 // this state is reflected.
1975 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001976
Adam Cohendcd297f2013-06-18 13:13:40 -07001977 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001978 mWaitingForResult) {
1979 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001980 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001981 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1982 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001983 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1984 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1985 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001986 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001987 }
1988
1989 if (mFolderInfo != null && mWaitingForResult) {
1990 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1991 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1992 }
Michael Jurka946ad472010-07-09 18:05:18 -07001993
Winson Chung785d2eb2011-04-14 16:08:02 -07001994 // Save the current AppsCustomize tab
1995 if (mAppsCustomizeTabHost != null) {
Winson Chung07e045c62013-11-06 15:49:51 -08001996 AppsCustomizePagedView.ContentType type = mAppsCustomizeContent.getContentType();
1997 String currentTabTag = mAppsCustomizeTabHost.getTabTagForContentType(type);
Winson Chung785d2eb2011-04-14 16:08:02 -07001998 if (currentTabTag != null) {
1999 outState.putString("apps_customize_currentTab", currentTabTag);
2000 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07002001 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
2002 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07002003 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00002004 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07002005
2006 if (mLauncherCallbacks != null) {
2007 mLauncherCallbacks.onSaveInstanceState(outState);
2008 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002009 }
2010
2011 @Override
2012 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002013 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002014
Winson Chunge7a03942011-08-05 15:05:12 -07002015 // Remove all pending runnables
2016 mHandler.removeMessages(ADVANCE_MSG);
2017 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002018 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002019
Winson Chungcd2b0142011-06-08 16:02:26 -07002020 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002021 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002022
2023 // It's possible to receive onDestroy after a new Launcher activity has
2024 // been created. In this case, don't interfere with the new Launcher.
2025 if (mModel.isCurrentCallbacks(this)) {
2026 mModel.stopLoader();
2027 app.setLauncher(null);
2028 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002029
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002030 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002031 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002032 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002033 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002034 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002035 mAppWidgetHost = null;
2036
2037 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002038
2039 TextKeyListener.getInstance().release();
2040
Winson Chung81b52252012-08-27 15:34:29 -07002041 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
2042 // to prevent leaking Launcher activities on orientation change.
2043 if (mModel != null) {
2044 mModel.unbindItemInfosAndClearQueuedBindRunnables();
2045 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002046
2047 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002048 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002049
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002050 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002051 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002052 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002053 mWorkspace = null;
2054 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002055
Michael Jurka2ecf9952012-06-18 12:52:28 -07002056 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002057
2058 if (mLauncherCallbacks != null) {
2059 mLauncherCallbacks.onDestroy();
2060 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002061 }
2062
Adam Cohena9cf38f2011-05-02 15:36:58 -07002063 public DragController getDragController() {
2064 return mDragController;
2065 }
2066
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002067 @Override
2068 public void startActivityForResult(Intent intent, int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002069 if (requestCode >= 0) {
2070 setWaitingForResult(true);
2071 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002072 super.startActivityForResult(intent, requestCode);
2073 }
2074
Winson Chung70d72102011-08-12 11:24:35 -07002075 /**
2076 * Indicates that we want global search for this activity by setting the globalSearch
2077 * argument for {@link #startSearch} to true.
2078 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002079 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002080 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002081 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002082
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002083 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07002084
Karl Rosaen138a0412009-04-23 19:00:21 -07002085 if (initialQuery == null) {
2086 // Use any text typed in the launcher as the initial query
2087 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002088 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002089 if (appSearchData == null) {
2090 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002091 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002092 }
Winson Chungadf0c182012-08-23 14:59:07 -07002093 Rect sourceBounds = new Rect();
2094 if (mSearchDropTargetBar != null) {
2095 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2096 }
Romain Guycbb89e42009-06-08 15:52:54 -07002097
Ian Parkinson047036e2014-09-01 15:40:53 +01002098 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002099 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002100 if (clearTextImmediately) {
2101 clearTypedText();
2102 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01002103 }
2104
Ian Parkinson047036e2014-09-01 15:40:53 +01002105 /**
2106 * Start a text search.
2107 *
2108 * @return {@code true} if the search will start immediately, so any further keypresses
2109 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2110 * to buffer keypresses.
2111 */
2112 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002113 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002114 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2115 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2116 sourceBounds);
2117 }
2118
Michael Jurkaa33411c2012-06-14 16:18:21 -07002119 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002120 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002121 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002122 }
2123
2124 /**
2125 * Starts the global search activity. This code is a copied from SearchManager
2126 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002127 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002128 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002129 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002130 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2131 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2132 if (globalSearchActivity == null) {
2133 Log.w(TAG, "No global search activity found.");
2134 return;
2135 }
2136 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2137 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2138 intent.setComponent(globalSearchActivity);
2139 // Make sure that we have a Bundle to put source in
2140 if (appSearchData == null) {
2141 appSearchData = new Bundle();
2142 } else {
2143 appSearchData = new Bundle(appSearchData);
2144 }
Adam Cohen9211d422014-10-07 18:14:53 -07002145 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002146 if (!appSearchData.containsKey("source")) {
2147 appSearchData.putString("source", getPackageName());
2148 }
2149 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2150 if (!TextUtils.isEmpty(initialQuery)) {
2151 intent.putExtra(SearchManager.QUERY, initialQuery);
2152 }
2153 if (selectInitialQuery) {
2154 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2155 }
2156 intent.setSourceBounds(sourceBounds);
2157 try {
2158 startActivity(intent);
2159 } catch (ActivityNotFoundException ex) {
2160 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2161 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002162 }
2163
Yura4f93ec62014-02-04 14:15:21 +00002164 public boolean isOnCustomContent() {
2165 return mWorkspace.isOnOrMovingToCustomContent();
2166 }
2167
Winson Chung70d72102011-08-12 11:24:35 -07002168 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002169 public boolean onPrepareOptionsMenu(Menu menu) {
2170 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002171 if (!isOnCustomContent()) {
2172 // Close any open folders
2173 closeFolder();
2174 // Stop resizing any widgets
2175 mWorkspace.exitWidgetResizeMode();
2176 if (!mWorkspace.isInOverviewMode()) {
2177 // Show the overview mode
2178 showOverviewMode(true);
2179 } else {
2180 showWorkspace(true);
2181 }
Winson Chunge0298742014-01-17 12:03:00 -08002182 }
Adam Cohen9211d422014-10-07 18:14:53 -07002183 if (mLauncherCallbacks != null) {
2184 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2185 }
2186
Michael Jurkab94f3f82013-09-11 18:08:54 +02002187 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002188 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002189
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002190 @Override
2191 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002192 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002193 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002194 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002195 }
2196
Joe Onorato9c1289c2009-08-17 11:03:03 -04002197 public boolean isWorkspaceLocked() {
2198 return mWorkspaceLoading || mWaitingForResult;
2199 }
2200
Adam Cohen517a7f52014-03-01 12:12:59 -08002201 public boolean isWorkspaceLoading() {
2202 return mWorkspaceLoading;
2203 }
2204
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002205 private void setWorkspaceLoading(boolean value) {
2206 boolean isLocked = isWorkspaceLocked();
2207 mWorkspaceLoading = value;
2208 if (isLocked != isWorkspaceLocked()) {
2209 onWorkspaceLockedChanged();
2210 }
2211 }
2212
2213 private void setWaitingForResult(boolean value) {
2214 boolean isLocked = isWorkspaceLocked();
2215 mWaitingForResult = value;
2216 if (isLocked != isWorkspaceLocked()) {
2217 onWorkspaceLockedChanged();
2218 }
2219 }
2220
Adam Cohen9211d422014-10-07 18:14:53 -07002221 protected void onWorkspaceLockedChanged() {
2222 if (mLauncherCallbacks != null) {
2223 mLauncherCallbacks.onWorkspaceLockedChanged();
2224 }
2225 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002226
Michael Jurka0280c3b2010-09-17 15:00:07 -07002227 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002228 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002229 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002230 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2231 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002232 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002233 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002234 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002235
Sunny Goyale6b63a32015-01-16 16:14:29 -08002236 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002237 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002238 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2239 }
2240
Sunny Goyale6b63a32015-01-16 16:14:29 -08002241 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002242 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2243 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002244 if (appWidgetInfo.configure != null) {
2245 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002246 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002247
Bjorn Bringert7984c942009-12-09 15:38:25 +00002248 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002249 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2250 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2251
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002252 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002253 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002254 Runnable onComplete = new Runnable() {
2255 @Override
2256 public void run() {
2257 // Exit spring loaded mode if necessary after adding the widget
2258 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2259 null);
2260 }
2261 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002262 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002263 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002264 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002265 }
2266 }
Romain Guycbb89e42009-06-08 15:52:54 -07002267
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002268 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002269 // Close any folders that may be open.
2270 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002271 mWorkspace.moveToCustomContentScreen(animate);
2272 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002273
2274 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2275 int[] cell, int spanX, int spanY) {
2276 switch (info.itemType) {
2277 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2278 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2279 int span[] = new int[2];
2280 span[0] = spanX;
2281 span[1] = spanY;
2282 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2283 container, screenId, cell, span);
2284 break;
2285 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2286 processShortcutFromDrop(info.componentName, container, screenId, cell);
2287 break;
2288 default:
2289 throw new IllegalStateException("Unknown item type: " + info.itemType);
2290 }
2291 }
2292
Adam Cohenfbba09b2011-07-18 21:43:05 -07002293 /**
2294 * Process a shortcut drop.
2295 *
2296 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002297 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002298 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002299 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002300 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2301 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002302 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002303 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002304 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002305 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002306
2307 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002308 mPendingAddInfo.cellX = cell[0];
2309 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002310 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002311
2312 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2313 createShortcutIntent.setComponent(componentName);
2314 processShortcut(createShortcutIntent);
2315 }
2316
Adam Cohenfbba09b2011-07-18 21:43:05 -07002317 /**
2318 * Process a widget drop.
2319 *
2320 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002321 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002322 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002323 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002324 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2325 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002326 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002327 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002328 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002329 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002330 mPendingAddInfo.minSpanX = info.minSpanX;
2331 mPendingAddInfo.minSpanY = info.minSpanY;
2332
Adam Cohenfbba09b2011-07-18 21:43:05 -07002333 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002334 mPendingAddInfo.cellX = cell[0];
2335 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002336 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002337 if (span != null) {
2338 mPendingAddInfo.spanX = span[0];
2339 mPendingAddInfo.spanY = span[1];
2340 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002341
Adam Cohened66b2b2012-01-23 17:28:51 -08002342 AppWidgetHostView hostView = info.boundWidget;
2343 int appWidgetId;
2344 if (hostView != null) {
2345 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002346 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08002347 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002348 // In this case, we either need to start an activity to get permission to bind
2349 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002350 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002351 Bundle options = info.bindOptions;
2352
Sunny Goyalffe83f12014-08-14 17:39:34 -07002353 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2354 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002355 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002356 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002357 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002358 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002359 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2360 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2361 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002362 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2363 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002364 // TODO: we need to make sure that this accounts for the options bundle.
2365 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002366 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2367 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002368 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002369 }
2370
Joe Onoratodeb98af2010-02-19 14:59:39 -08002371 void processShortcut(Intent intent) {
Kenny Guyed131872014-04-30 03:02:21 +01002372 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_SHORTCUT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002373 }
2374
Winson Chung24ab2f12010-09-16 14:10:47 -07002375 void processWallpaper(Intent intent) {
2376 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
2377 }
2378
Adam Cohendcd297f2013-06-18 13:13:40 -07002379 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002380 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002381 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002382 folderInfo.title = getText(R.string.folder_name);
2383
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002384 // Update the model
Adam Cohendcd297f2013-06-18 13:13:40 -07002385 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, cellX, cellY,
Winson Chung3d503fb2011-07-13 17:25:49 -07002386 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002387 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002388
2389 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002390 FolderIcon newFolder =
2391 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002392 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002393 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002394 // Force measure the new folder icon
2395 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2396 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002397 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002398 }
Romain Guycbb89e42009-06-08 15:52:54 -07002399
Joe Onorato9c1289c2009-08-17 11:03:03 -04002400 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002401 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002402 }
2403
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002404 protected ComponentName getWallpaperPickerComponent() {
Adam Cohen9211d422014-10-07 18:14:53 -07002405 if (mLauncherCallbacks != null) {
2406 return mLauncherCallbacks.getWallpaperPickerComponent();
2407 }
Michael Jurka7ad868b2013-12-12 15:04:25 +01002408 return new ComponentName(getPackageName(), LauncherWallpaperPickerActivity.class.getName());
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002409 }
2410
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002411 /**
2412 * Registers various content observers. The current implementation registers
2413 * only a favorites observer to keep track of the favorites applications.
2414 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002415 private void registerContentObservers() {
2416 ContentResolver resolver = getContentResolver();
2417 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
2418 true, mWidgetObserver);
2419 }
2420
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002421 @Override
2422 public boolean dispatchKeyEvent(KeyEvent event) {
2423 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2424 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002425 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002426 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002427 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002428 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002429 dumpState();
2430 return true;
2431 }
2432 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002433 }
2434 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2435 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002436 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002437 return true;
2438 }
2439 }
2440
2441 return super.dispatchKeyEvent(event);
2442 }
2443
Joe Onorato88ec0992009-11-19 13:16:06 -08002444 @Override
2445 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002446 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2447 return;
2448 }
2449
Winson Chungc93e5ae2012-07-23 20:48:26 -07002450 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07002451 if (mAppsCustomizeContent.getContentType() ==
2452 AppsCustomizePagedView.ContentType.Applications) {
2453 showWorkspace(true);
2454 } else {
2455 showOverviewMode(true);
2456 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07002457 } else if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002458 mWorkspace.exitOverviewMode(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002459 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002460 Folder openFolder = mWorkspace.getOpenFolder();
2461 if (openFolder.isEditingName()) {
2462 openFolder.dismissEditingName();
2463 } else {
2464 closeFolder();
2465 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002466 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002467 mWorkspace.exitWidgetResizeMode();
2468
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002469 // Back button is a no-op here, but give at least some feedback for the button press
2470 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002471 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002472 }
2473
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002474 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002475 * Re-listen when widgets are reset.
2476 */
2477 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002478 if (mAppWidgetHost != null) {
2479 mAppWidgetHost.startListening();
2480 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002481 }
2482
2483 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002484 * Launches the intent referred by the clicked shortcut.
2485 *
2486 * @param v The view representing the clicked shortcut.
2487 */
2488 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002489 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2490 // view has detached (it's possible for this to happen if the view is removed mid touch).
2491 if (v.getWindowToken() == null) {
2492 return;
2493 }
2494
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002495 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002496 return;
2497 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002498
Adam Cohen1697b792013-09-17 19:08:21 -07002499 if (v instanceof Workspace) {
2500 if (mWorkspace.isInOverviewMode()) {
2501 mWorkspace.exitOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002502 }
2503 return;
2504 }
2505
2506 if (v instanceof CellLayout) {
2507 if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002508 mWorkspace.exitOverviewMode(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002509 }
2510 }
2511
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002512 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002513 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002514 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002515 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002516 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002517 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002518 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002519 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002520 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002521 } else if (tag instanceof AppInfo) {
2522 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002523 } else if (tag instanceof LauncherAppWidgetInfo) {
2524 if (v instanceof PendingAppWidgetHostView) {
2525 onClickPendingWidget((PendingAppWidgetHostView) v);
2526 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002527 }
2528 }
2529
Sunny Goyal508da152014-08-14 10:53:27 -07002530 public void onClickPagedViewIcon(View v) {
2531 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002532 if (mLauncherCallbacks != null) {
2533 mLauncherCallbacks.onClickPagedViewIcon(v);
2534 }
Sunny Goyal508da152014-08-14 10:53:27 -07002535 }
2536
Michael Jurka0e260592010-06-30 17:07:39 -07002537 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002538 return false;
2539 }
2540
Michael Jurkaaf442092010-06-10 17:01:57 -07002541 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002542 * Event handler for the app widget view which has not fully restored.
2543 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002544 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002545 if (mIsSafeModeEnabled) {
2546 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2547 return;
2548 }
2549
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002550 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002551 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002552 int widgetId = info.appWidgetId;
2553 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2554 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002555 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2556 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002557 mPendingAddInfo.copyFrom(info);
2558 mPendingAddWidgetId = widgetId;
2559
Sunny Goyalffe83f12014-08-14 17:39:34 -07002560 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2561 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002562 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002563 } else if (info.installProgress < 0) {
2564 // The install has not been queued
2565 final String packageName = info.providerName.getPackageName();
2566 showBrokenAppInstallDialog(packageName,
2567 new DialogInterface.OnClickListener() {
2568 public void onClick(DialogInterface dialog, int id) {
2569 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2570 }
2571 });
2572 } else {
2573 // Download has started.
2574 final String packageName = info.providerName.getPackageName();
2575 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002576 }
2577 }
2578
2579 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002580 * Event handler for the "grid" button that appears on the home screen, which
2581 * enters all apps mode.
2582 *
2583 * @param v The view that was clicked.
2584 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002585 protected void onClickAllAppsButton(View v) {
2586 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
2587 if (isAllAppsVisible()) {
2588 showWorkspace(true);
2589 } else {
2590 showAllApps(true, AppsCustomizePagedView.ContentType.Applications, false);
2591 }
Adam Cohen9211d422014-10-07 18:14:53 -07002592 if (mLauncherCallbacks != null) {
2593 mLauncherCallbacks.onClickAllAppsButton(v);
2594 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002595 }
2596
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002597 private void showBrokenAppInstallDialog(final String packageName,
2598 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002599 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002600 .setTitle(R.string.abandoned_promises_title)
2601 .setMessage(R.string.abandoned_promise_explanation)
2602 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2603 .setNeutralButton(R.string.abandoned_clean_this,
2604 new DialogInterface.OnClickListener() {
2605 public void onClick(DialogInterface dialog, int id) {
2606 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2607 mWorkspace.removeAbandonedPromise(packageName, user);
2608 }
2609 })
2610 .create().show();
2611 return;
2612 }
2613
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002614 /**
2615 * Event handler for an app shortcut click.
2616 *
2617 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2618 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002619 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002620 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2621 Object tag = v.getTag();
2622 if (!(tag instanceof ShortcutInfo)) {
2623 throw new IllegalArgumentException("Input must be a Shortcut");
2624 }
2625
2626 // Open shortcut
2627 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002628
2629 if (shortcut.isDisabled != 0) {
2630 int error = R.string.activity_not_available;
2631 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2632 error = R.string.safemode_shortcut_error;
2633 }
2634 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2635 return;
2636 }
2637
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002638 final Intent intent = shortcut.intent;
2639
2640 // Check for special shortcuts
2641 if (intent.getComponent() != null) {
2642 final String shortcutClass = intent.getComponent().getClassName();
2643
2644 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2645 MemoryDumpActivity.startDump(this);
2646 return;
2647 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2648 toggleShowWeightWatcher();
2649 return;
2650 }
2651 }
2652
Chris Wren40c5ed32014-06-24 18:24:23 -04002653 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002654 if ((v instanceof BubbleTextView)
2655 && shortcut.isPromise()
2656 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002657 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002658 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002659 new DialogInterface.OnClickListener() {
2660 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002661 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002662 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002663 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002664 return;
2665 }
2666
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002667 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002668 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002669
2670 if (mLauncherCallbacks != null) {
2671 mLauncherCallbacks.onClickAppShortcut(v);
2672 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002673 }
2674
Sunny Goyal508da152014-08-14 10:53:27 -07002675 private void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002676 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002677 final ShortcutInfo shortcut;
2678 final Intent intent;
2679 if (tag instanceof ShortcutInfo) {
2680 shortcut = (ShortcutInfo) tag;
2681 intent = shortcut.intent;
2682 int[] pos = new int[2];
2683 v.getLocationOnScreen(pos);
2684 intent.setSourceBounds(new Rect(pos[0], pos[1],
2685 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002686
Sunny Goyal508da152014-08-14 10:53:27 -07002687 } else if (tag instanceof AppInfo) {
2688 shortcut = null;
2689 intent = ((AppInfo) tag).intent;
2690 } else {
2691 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2692 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002693
2694 boolean success = startActivitySafely(v, intent, tag);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002695 mStats.recordLaunch(intent, shortcut);
2696
2697 if (success && v instanceof BubbleTextView) {
2698 mWaitingForResume = (BubbleTextView) v;
2699 mWaitingForResume.setStayPressed(true);
2700 }
2701 }
2702
2703 /**
2704 * Event handler for a folder icon click.
2705 *
2706 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2707 */
2708 protected void onClickFolderIcon(View v) {
2709 if (LOGD) Log.d(TAG, "onClickFolder");
2710 if (!(v instanceof FolderIcon)){
2711 throw new IllegalArgumentException("Input must be a FolderIcon");
2712 }
2713
2714 FolderIcon folderIcon = (FolderIcon) v;
2715 final FolderInfo info = folderIcon.getFolderInfo();
2716 Folder openFolder = mWorkspace.getFolderForTag(info);
2717
2718 // If the folder info reports that the associated folder is open, then verify that
2719 // it is actually opened. There have been a few instances where this gets out of sync.
2720 if (info.opened && openFolder == null) {
2721 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2722 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2723 info.opened = false;
2724 }
2725
2726 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2727 // Close any open folder
2728 closeFolder();
2729 // Open the requested folder
2730 openFolder(folderIcon);
2731 } else {
2732 // Find the open folder...
2733 int folderScreen;
2734 if (openFolder != null) {
2735 folderScreen = mWorkspace.getPageForView(openFolder);
2736 // .. and close it
2737 closeFolder(openFolder);
2738 if (folderScreen != mWorkspace.getCurrentPage()) {
2739 // Close any folder open on the current screen
2740 closeFolder();
2741 // Pull the folder onto this screen
2742 openFolder(folderIcon);
2743 }
2744 }
2745 }
Adam Cohen9211d422014-10-07 18:14:53 -07002746
2747 if (mLauncherCallbacks != null) {
2748 mLauncherCallbacks.onClickFolderIcon(v);
2749 }
Michael Jurka5130e402011-10-13 04:55:35 -07002750 }
2751
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002752 /**
2753 * Event handler for the (Add) Widgets button that appears after a long press
2754 * on the home screen.
2755 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002756 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002757 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002758 if (mIsSafeModeEnabled) {
2759 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2760 } else {
2761 showAllApps(true, AppsCustomizePagedView.ContentType.Widgets, true);
2762 if (mLauncherCallbacks != null) {
2763 mLauncherCallbacks.onClickAddWidgetButton(view);
2764 }
Adam Cohen9211d422014-10-07 18:14:53 -07002765 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002766 }
2767
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002768 /**
2769 * Event handler for the wallpaper picker button that appears after a long press
2770 * on the home screen.
2771 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002772 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002773 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
2774 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
2775 pickWallpaper.setComponent(getWallpaperPickerComponent());
2776 startActivityForResult(pickWallpaper, REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002777
2778 if (mLauncherCallbacks != null) {
2779 mLauncherCallbacks.onClickWallpaperPicker(v);
2780 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002781 }
2782
2783 /**
2784 * Event handler for a click on the settings button that appears after a long press
2785 * on the home screen.
2786 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002787 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002788 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002789 if (mLauncherCallbacks != null) {
2790 mLauncherCallbacks.onClickSettingsButton(v);
2791 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002792 }
2793
Michael Jurka5130e402011-10-13 04:55:35 -07002794 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002795 // Provide the same haptic feedback that the system offers for virtual keys.
2796 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002797 }
2798
Adam Cohen61f560d2013-09-30 15:58:20 -07002799 public void performHapticFeedbackOnTouchDown(View v) {
2800 // Provide the same haptic feedback that the system offers for virtual keys.
2801 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2802 }
2803
2804 public View.OnTouchListener getHapticFeedbackTouchListener() {
2805 if (mHapticFeedbackTouchListener == null) {
2806 mHapticFeedbackTouchListener = new View.OnTouchListener() {
2807 @Override
2808 public boolean onTouch(View v, MotionEvent event) {
2809 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2810 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2811 }
2812 return false;
2813 }
2814 };
2815 }
2816 return mHapticFeedbackTouchListener;
2817 }
2818
Adam Cohen9211d422014-10-07 18:14:53 -07002819 public void onDragStarted(View view) {
2820 if (isOnCustomContent()) {
2821 // Custom content screen doesn't participate in drag and drop. If on custom
2822 // content screen, move to default.
2823 moveWorkspaceToDefaultScreen();
2824 }
2825
2826 if (mLauncherCallbacks != null) {
2827 mLauncherCallbacks.onDragStarted(view);
2828 }
2829 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002830
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002831 /**
2832 * Called when the user stops interacting with the launcher.
2833 * This implies that the user is now on the homescreen and is not doing housekeeping.
2834 */
Adam Cohen9211d422014-10-07 18:14:53 -07002835 protected void onInteractionEnd() {
2836 if (mLauncherCallbacks != null) {
2837 mLauncherCallbacks.onInteractionEnd();
2838 }
2839 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002840
2841 /**
2842 * Called when the user starts interacting with the launcher.
2843 * The possible interactions are:
2844 * - open all apps
2845 * - reorder an app shortcut, or a widget
2846 * - open the overview mode.
2847 * This is a good time to stop doing things that only make sense
2848 * when the user is on the homescreen and not doing housekeeping.
2849 */
Adam Cohen9211d422014-10-07 18:14:53 -07002850 protected void onInteractionBegin() {
2851 if (mLauncherCallbacks != null) {
2852 mLauncherCallbacks.onInteractionBegin();
2853 }
2854 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002855
Kenny Guyf07af7b2014-07-31 11:39:16 +01002856 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002857 try {
2858 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002859 launcherApps.showAppDetailsForProfile(componentName, user);
2860 } catch (SecurityException e) {
2861 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2862 Log.e(TAG, "Launcher does not have permission to launch settings");
2863 } catch (ActivityNotFoundException e) {
2864 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2865 Log.e(TAG, "Unable to launch settings");
2866 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002867 }
2868
Michael Jurka1e2f4652013-07-08 18:03:46 -07002869 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002870 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2871 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002872 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002873 // System applications cannot be installed. For now, show a toast explaining that.
2874 // We may give them the option of disabling apps this way.
2875 int messageId = R.string.uninstall_system_app_text;
2876 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002877 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002878 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002879 String packageName = componentName.getPackageName();
2880 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002881 Intent intent = new Intent(
2882 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002883 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2884 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002885 if (user != null) {
2886 user.addToIntent(intent, Intent.EXTRA_USER);
2887 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002888 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002889 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002890 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002891 }
2892
Michael Jurka86a720e2012-05-09 11:23:23 -07002893 boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002894 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002895 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002896 // Only launch using the new animation if the shortcut has not opted out (this is a
2897 // private contract between launcher and may be ignored in the future).
2898 boolean useLaunchAnimation = (v != null) &&
2899 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002900 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2901 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002902
Kenny Guy1317e2d2014-05-08 18:52:50 +01002903 UserHandleCompat user = null;
2904 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2905 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2906 user = userManager.getUserForSerialNumber(serialNumber);
2907 }
2908
2909 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002910 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002911 ActivityOptions opts = null;
2912 if (sClipRevealMethod != null) {
2913 // TODO: call method directly when Launcher3 can depend on M APIs
2914 int left = 0, top = 0;
2915 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2916 if (v instanceof TextView) {
2917 // Launch from center of icon, not entire view
2918 TextView tv = (TextView) v;
2919 Drawable[] drawables = tv.getCompoundDrawables();
2920 if (drawables != null && drawables[1] != null) {
2921 Rect bounds = drawables[1].getBounds();
2922 left = (width - bounds.width()) / 2;
2923 top = tv.getPaddingTop();
2924 width = bounds.width();
2925 height = bounds.height();
2926 }
2927 }
2928 try {
2929 opts = (ActivityOptions) sClipRevealMethod.invoke(null, v,
2930 left, top, width, height);
2931 } catch (IllegalAccessException e) {
2932 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2933 sClipRevealMethod = null;
2934 } catch (InvocationTargetException e) {
2935 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2936 sClipRevealMethod = null;
2937 }
2938 }
2939 if (opts == null) {
2940 opts = Utilities.isLmpOrAbove() ?
2941 ActivityOptions.makeCustomAnimation(this,
2942 R.anim.task_open_enter, R.anim.no_anim) :
2943 ActivityOptions.makeScaleUpAnimation(v, 0, 0,
2944 v.getMeasuredWidth(), v.getMeasuredHeight());
2945 }
Adam Cohen6ea3b112014-06-11 11:38:49 -07002946 optsBundle = opts.toBundle();
2947 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002948
2949 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2950 // Could be launching some bookkeeping activity
2951 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002952 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002953 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002954 launcherApps.startActivityForProfile(intent.getComponent(), user,
2955 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002956 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002957 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002958 } catch (SecurityException e) {
2959 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002960 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002961 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002962 "or use the exported attribute for this activity. "
2963 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002964 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002965 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002966 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002967
Michael Jurka86a720e2012-05-09 11:23:23 -07002968 boolean startActivitySafely(View v, Intent intent, Object tag) {
2969 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002970 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2971 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2972 return false;
2973 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002974 try {
2975 success = startActivity(v, intent, tag);
2976 } catch (ActivityNotFoundException e) {
2977 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2978 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2979 }
2980 return success;
2981 }
2982
Adam Cohen268c4752012-06-06 17:47:33 -07002983 /**
2984 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2985 * in the DragLayer in the exact absolute location of the original FolderIcon.
2986 */
2987 private void copyFolderIconToImage(FolderIcon fi) {
2988 final int width = fi.getMeasuredWidth();
2989 final int height = fi.getMeasuredHeight();
2990
2991 // Lazy load ImageView, Bitmap and Canvas
2992 if (mFolderIconImageView == null) {
2993 mFolderIconImageView = new ImageView(this);
2994 }
2995 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2996 mFolderIconBitmap.getHeight() != height) {
2997 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2998 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2999 }
3000
3001 DragLayer.LayoutParams lp;
3002 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3003 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3004 } else {
3005 lp = new DragLayer.LayoutParams(width, height);
3006 }
3007
Adam Cohen307fe232012-08-16 17:55:58 -07003008 // The layout from which the folder is being opened may be scaled, adjust the starting
3009 // view size by this scale factor.
3010 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003011 lp.customPosition = true;
3012 lp.x = mRectForFolderAnimation.left;
3013 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003014 lp.width = (int) (scale * width);
3015 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003016
3017 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3018 fi.draw(mFolderIconCanvas);
3019 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003020 if (fi.getFolder() != null) {
3021 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3022 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003023 }
Adam Cohen268c4752012-06-06 17:47:33 -07003024 // Just in case this image view is still in the drag layer from a previous animation,
3025 // we remove it and re-add it.
3026 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3027 mDragLayer.removeView(mFolderIconImageView);
3028 }
3029 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003030 if (fi.getFolder() != null) {
3031 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003032 }
Adam Cohen268c4752012-06-06 17:47:33 -07003033 }
3034
Adam Cohen2801caf2011-05-13 20:57:39 -07003035 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003036 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003037 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3038 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3039 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3040
Adam Cohenc51934b2011-07-26 21:07:43 -07003041 FolderInfo info = (FolderInfo) fi.getTag();
3042 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3043 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003044 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3045 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003046 }
3047
Adam Cohen268c4752012-06-06 17:47:33 -07003048 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3049 copyFolderIconToImage(fi);
3050 fi.setVisibility(View.INVISIBLE);
3051
Michael Jurka2ecf9952012-06-18 12:52:28 -07003052 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003053 scaleX, scaleY);
Kenny Guyd794a3f2014-09-16 15:17:58 +01003054 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003055 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3056 }
3057 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003058 oa.start();
3059 }
3060
Adam Cohen268c4752012-06-06 17:47:33 -07003061 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003062 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003063 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3064 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3065 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3066
Adam Cohen268c4752012-06-06 17:47:33 -07003067 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003068
Adam Cohen268c4752012-06-06 17:47:33 -07003069 // We remove and re-draw the FolderIcon in-case it has changed
3070 mDragLayer.removeView(mFolderIconImageView);
3071 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003072 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003073 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003074 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003075 oa.addListener(new AnimatorListenerAdapter() {
3076 @Override
3077 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003078 if (cl != null) {
3079 cl.clearFolderLeaveBehind();
3080 // Remove the ImageView copy of the FolderIcon and make the original visible.
3081 mDragLayer.removeView(mFolderIconImageView);
3082 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003083 }
3084 }
3085 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003086 oa.start();
3087 }
3088
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003089 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003090 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003091 * is animated relative to the specified View. If the View is null, no animation
3092 * is played.
3093 *
3094 * @param folderInfo The FolderInfo describing the folder to open.
3095 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003096 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003097 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07003098 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003099
Adam Cohena9cf38f2011-05-02 15:36:58 -07003100 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003101
Adam Cohen4554ee12011-08-03 16:13:21 -07003102 // Just verify that the folder hasn't already been added to the DragLayer.
3103 // There was a one-off crash where the folder had a parent already.
3104 if (folder.getParent() == null) {
3105 mDragLayer.addView(folder);
3106 mDragController.addDropTarget((DropTarget) folder);
3107 } else {
3108 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3109 folder.getParent() + ").");
3110 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003111 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003112 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003113
3114 // Notify the accessibility manager that this folder "window" has appeared and occluded
3115 // the workspace items
3116 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3117 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003118 }
3119
3120 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003121 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003122 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003123 if (folder.isEditingName()) {
3124 folder.dismissEditingName();
3125 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003126 closeFolder(folder);
3127 }
3128 }
3129
3130 void closeFolder(Folder folder) {
3131 folder.getInfo().opened = false;
3132
3133 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3134 if (parent != null) {
3135 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3136 shrinkAndFadeInFolderIcon(fi);
3137 }
3138 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003139
3140 // Notify the accessibility manager that this folder "window" has disappeard and no
3141 // longer occludeds the workspace items
3142 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003143 }
3144
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003145 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003146 if (!isDraggingEnabled()) return false;
3147 if (isWorkspaceLocked()) return false;
3148 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003149
Adam Cohen1697b792013-09-17 19:08:21 -07003150 if (v instanceof Workspace) {
3151 if (!mWorkspace.isInOverviewMode()) {
Adam Cohen93c97562013-09-26 13:48:01 -07003152 if (mWorkspace.enterOverviewMode()) {
3153 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3154 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3155 return true;
3156 } else {
3157 return false;
3158 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003159 } else {
3160 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003161 }
Adam Cohen1697b792013-09-17 19:08:21 -07003162 }
3163
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003164 CellLayout.CellInfo longClickCellInfo = null;
3165 View itemUnderLongClick = null;
3166 if (v.getTag() instanceof ItemInfo) {
3167 ItemInfo info = (ItemInfo) v.getTag();
3168 longClickCellInfo = new CellLayout.CellInfo(v, info);;
3169 itemUnderLongClick = longClickCellInfo.cell;
3170 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003171 }
3172
Winson Chung3d503fb2011-07-13 17:25:49 -07003173 // The hotseat touch handling does not go through Workspace, and we always allow long press
3174 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003175 final boolean inHotseat = isHotseatLayout(v);
3176 boolean allowLongPress = inHotseat || mWorkspace.allowLongPress();
Winson Chung3d503fb2011-07-13 17:25:49 -07003177 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003178 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003179 // User long pressed on empty space
3180 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3181 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003182 if (mWorkspace.isInOverviewMode()) {
3183 mWorkspace.startReordering(v);
3184 } else {
3185 mWorkspace.enterOverviewMode();
Adam Cohendedbd962013-07-11 14:21:49 -07003186 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003187 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003188 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3189 mHotseat.getOrderInHotseat(
3190 longClickCellInfo.cellX,
3191 longClickCellInfo.cellY));
3192 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003193 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003194 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003195 }
3196 }
3197 }
3198 return true;
3199 }
3200
Winson Chung3d503fb2011-07-13 17:25:49 -07003201 boolean isHotseatLayout(View layout) {
3202 return mHotseat != null && layout != null &&
3203 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3204 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003205
Winson Chung3d503fb2011-07-13 17:25:49 -07003206 /**
3207 * Returns the CellLayout of the specified container at the specified screen.
3208 */
Sunny Goyal92820592015-03-02 11:31:35 -08003209 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003210 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3211 if (mHotseat != null) {
3212 return mHotseat.getLayout();
3213 } else {
3214 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003215 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003216 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -07003217 return (CellLayout) mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003218 }
3219 }
3220
Daniel Sandler843e8602010-06-07 14:59:01 -04003221 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003222 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003223 }
3224
Craig Mautner360310b2012-10-26 15:13:08 -07003225 private void setWorkspaceBackground(boolean workspace) {
3226 mLauncherView.setBackground(workspace ?
Michael Jurka496fefb2013-05-06 15:39:11 +02003227 mWorkspaceBackgroundDrawable : null);
Craig Mautner360310b2012-10-26 15:13:08 -07003228 }
3229
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003230 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003231 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3232 int curflags = getWindow().getAttributes().flags
3233 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3234 if (wpflags != curflags) {
3235 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3236 }
Craig Mautner360310b2012-10-26 15:13:08 -07003237 setWorkspaceBackground(visible);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003238 }
3239
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003240 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
3241 if (v instanceof LauncherTransitionable) {
3242 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
3243 }
3244 }
3245
Michael Jurkabed61d22012-02-14 22:51:29 -08003246 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
3247 if (v instanceof LauncherTransitionable) {
3248 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
3249 }
Winson Chung70442722012-02-10 15:43:22 -08003250
3251 // Update the workspace transition step as well
3252 dispatchOnLauncherTransitionStep(v, 0f);
3253 }
3254
3255 private void dispatchOnLauncherTransitionStep(View v, float t) {
3256 if (v instanceof LauncherTransitionable) {
3257 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
3258 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003259 }
3260
3261 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
3262 if (v instanceof LauncherTransitionable) {
3263 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
3264 }
Winson Chung70442722012-02-10 15:43:22 -08003265
3266 // Update the workspace transition step as well
3267 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08003268 }
3269
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003270 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07003271 * Things to test when changing the following seven functions.
3272 * - Home from workspace
3273 * - from center screen
3274 * - from other screens
3275 * - Home from all apps
3276 * - from center screen
3277 * - from other screens
3278 * - Back from all apps
3279 * - from center screen
3280 * - from other screens
3281 * - Launch app from workspace and quit
3282 * - with back
3283 * - with home
3284 * - Launch app from all apps and quit
3285 * - with back
3286 * - with home
3287 * - Go to a screen that's not the default, then all
3288 * apps, and launch and app, and go back
3289 * - with back
3290 * -with home
3291 * - On workspace, long press power and go back
3292 * - with back
3293 * - with home
3294 * - On all apps, long press power and go back
3295 * - with back
3296 * - with home
3297 * - On workspace, power off
3298 * - On all apps, power off
3299 * - Launch an app and turn off the screen while in that app
3300 * - Go back with home key
3301 * - Go back with back key TODO: make this not go to workspace
3302 * - From all apps
3303 * - From workspace
3304 * - Enter and exit car mode (becuase it causes an extra configuration changed)
3305 * - From all apps
3306 * - From the center workspace
3307 * - From another workspace
3308 */
3309
3310 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003311 * Zoom the camera out from the workspace to reveal 'toView'.
3312 * Assumes that the view to show is anchored at either the very top or very bottom
3313 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003314 */
Michael Jurkabed61d22012-02-14 22:51:29 -08003315 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Winson Chungc58497e2013-09-03 17:48:37 -07003316 AppsCustomizePagedView.ContentType contentType = mAppsCustomizeContent.getContentType();
3317 showAppsCustomizeHelper(animated, springLoaded, contentType);
3318 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003319
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08003320 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Winson Chungc58497e2013-09-03 17:48:37 -07003321 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded,
3322 final AppsCustomizePagedView.ContentType contentType) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003323 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003324 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003325 mStateAnimation.cancel();
3326 mStateAnimation = null;
3327 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003328
Kenny Guyd794a3f2014-09-16 15:17:58 +01003329 boolean material = Utilities.isLmpOrAbove();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003330
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003331 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003332
Adam Cohen6c5891a2014-07-09 23:53:15 -07003333 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeRevealTime);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003334 final int itemsAlphaStagger =
3335 res.getInteger(R.integer.config_appsCustomizeItemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003336
Michael Jurkabed61d22012-02-14 22:51:29 -08003337 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003338 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Patrick Dubroy558654c2010-07-23 16:48:11 -07003339
Adam Cohen80e6beb2015-02-13 16:14:33 -08003340 final HashMap<View, Integer> layerViews = new HashMap<View, Integer>();
Adam Cohen2854d252014-08-27 16:04:07 -07003341
Adam Cohen6c5891a2014-07-09 23:53:15 -07003342 Workspace.State workspaceState = contentType == AppsCustomizePagedView.ContentType.Widgets ?
3343 Workspace.State.OVERVIEW_HIDDEN : Workspace.State.NORMAL_HIDDEN;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003344 Animator workspaceAnim =
Adam Cohen2854d252014-08-27 16:04:07 -07003345 mWorkspace.getChangeStateAnimation(workspaceState, animated, layerViews);
Sunny Goyalc9acdd52015-02-26 12:34:42 -08003346 if (contentType == AppsCustomizePagedView.ContentType.Widgets) {
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08003347 // Set the content type for the all apps/widgets space
Winson Chungc58497e2013-09-03 17:48:37 -07003348 mAppsCustomizeTabHost.setContentTypeImmediate(contentType);
3349 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003350
Adam Cohena38dc902014-09-07 17:48:55 +02003351 // If for some reason our views aren't initialized, don't animate
3352 boolean initialized = getAllAppsButton() != null;
3353
3354 if (animated && initialized) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003355 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Adam Cohen9bfdb762014-07-21 17:44:06 -07003356 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3357 toView.findViewById(R.id.apps_customize_pane_content);
Adam Cohenf16e5712011-01-13 13:31:45 -08003358
Adam Cohen9bfdb762014-07-21 17:44:06 -07003359 final View page = content.getPageAt(content.getCurrentPage());
3360 final View revealView = toView.findViewById(R.id.fake_page);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003361
Adam Cohen63f1ec02014-08-12 09:23:13 -07003362 final boolean isWidgetTray = contentType == AppsCustomizePagedView.ContentType.Widgets;
3363 if (isWidgetTray) {
Adam Cohen4e243a22014-08-10 18:30:55 -07003364 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel_dark));
3365 } else {
3366 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel));
3367 }
3368
Adam Cohen9bfdb762014-07-21 17:44:06 -07003369 // Hide the real page background, and swap in the fake one
Adam Cohen9bfdb762014-07-21 17:44:06 -07003370 content.setPageBackgroundsVisible(false);
Adam Cohen2854d252014-08-27 16:04:07 -07003371 revealView.setVisibility(View.VISIBLE);
3372 // We need to hide this view as the animation start will be posted.
3373 revealView.setAlpha(0);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003374
Adam Cohen9bfdb762014-07-21 17:44:06 -07003375 int width = revealView.getMeasuredWidth();
3376 int height = revealView.getMeasuredHeight();
Adam Cohen9bfdb762014-07-21 17:44:06 -07003377 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
Adam Cohen2854d252014-08-27 16:04:07 -07003378
Adam Cohen63f1ec02014-08-12 09:23:13 -07003379 revealView.setTranslationY(0);
Adam Cohen94afab42014-08-24 16:10:54 -07003380 revealView.setTranslationX(0);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003381
Adam Cohen63f1ec02014-08-12 09:23:13 -07003382 // Get the y delta between the center of the page and the center of the all apps button
3383 int[] allAppsToPanelDelta = Utilities.getCenterDeltaInScreenSpace(revealView,
3384 getAllAppsButton(), null);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003385
Adam Cohen2854d252014-08-27 16:04:07 -07003386 float alpha = 0;
3387 float xDrift = 0;
3388 float yDrift = 0;
3389 if (material) {
3390 alpha = isWidgetTray ? 0.3f : 1f;
3391 yDrift = isWidgetTray ? height / 2 : allAppsToPanelDelta[1];
3392 xDrift = isWidgetTray ? 0 : allAppsToPanelDelta[0];
3393 } else {
3394 yDrift = 2 * height / 3;
3395 xDrift = 0;
3396 }
3397 final float initAlpha = alpha;
3398
Adam Cohen80e6beb2015-02-13 16:14:33 -08003399 layerViews.put(revealView, BUILD_AND_SET_LAYER);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003400 PropertyValuesHolder panelAlpha = PropertyValuesHolder.ofFloat("alpha", initAlpha, 1f);
Adam Cohen94afab42014-08-24 16:10:54 -07003401 PropertyValuesHolder panelDriftY =
Adam Cohen63f1ec02014-08-12 09:23:13 -07003402 PropertyValuesHolder.ofFloat("translationY", yDrift, 0);
Adam Cohen94afab42014-08-24 16:10:54 -07003403 PropertyValuesHolder panelDriftX =
3404 PropertyValuesHolder.ofFloat("translationX", xDrift, 0);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003405
Adam Cohen2854d252014-08-27 16:04:07 -07003406 ObjectAnimator panelAlphaAndDrift = ObjectAnimator.ofPropertyValuesHolder(revealView,
3407 panelAlpha, panelDriftY, panelDriftX);
3408
Adam Cohen9bfdb762014-07-21 17:44:06 -07003409 panelAlphaAndDrift.setDuration(revealDuration);
3410 panelAlphaAndDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen6c5891a2014-07-09 23:53:15 -07003411
Adam Cohen9bfdb762014-07-21 17:44:06 -07003412 mStateAnimation.play(panelAlphaAndDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003413
Adam Cohen4e243a22014-08-10 18:30:55 -07003414 if (page != null) {
3415 page.setVisibility(View.VISIBLE);
Adam Cohen80e6beb2015-02-13 16:14:33 -08003416 layerViews.put(page, BUILD_AND_SET_LAYER);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003417
Adam Cohen2854d252014-08-27 16:04:07 -07003418 ObjectAnimator pageDrift = ObjectAnimator.ofFloat(page, "translationY", yDrift, 0);
3419 page.setTranslationY(yDrift);
Adam Cohen4e243a22014-08-10 18:30:55 -07003420 pageDrift.setDuration(revealDuration);
3421 pageDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003422 pageDrift.setStartDelay(itemsAlphaStagger);
Adam Cohen4e243a22014-08-10 18:30:55 -07003423 mStateAnimation.play(pageDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003424
Adam Cohen63f1ec02014-08-12 09:23:13 -07003425 page.setAlpha(0f);
Adam Cohen2854d252014-08-27 16:04:07 -07003426 ObjectAnimator itemsAlpha = ObjectAnimator.ofFloat(page, "alpha", 0f, 1f);
Adam Cohen4e243a22014-08-10 18:30:55 -07003427 itemsAlpha.setDuration(revealDuration);
3428 itemsAlpha.setInterpolator(new AccelerateInterpolator(1.5f));
3429 itemsAlpha.setStartDelay(itemsAlphaStagger);
3430 mStateAnimation.play(itemsAlpha);
3431 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003432
Adam Cohen4e243a22014-08-10 18:30:55 -07003433 View pageIndicators = toView.findViewById(R.id.apps_customize_page_indicator);
3434 pageIndicators.setAlpha(0.01f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003435 ObjectAnimator indicatorsAlpha =
Adam Cohen2854d252014-08-27 16:04:07 -07003436 ObjectAnimator.ofFloat(pageIndicators, "alpha", 1f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003437 indicatorsAlpha.setDuration(revealDuration);
3438 mStateAnimation.play(indicatorsAlpha);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003439
Adam Cohen9bfdb762014-07-21 17:44:06 -07003440 if (material) {
Adam Cohen63f1ec02014-08-12 09:23:13 -07003441 final View allApps = getAllAppsButton();
3442 int allAppsButtonSize = LauncherAppState.getInstance().
3443 getDynamicGrid().getDeviceProfile().allAppsButtonVisualSize;
3444 float startRadius = isWidgetTray ? 0 : allAppsButtonSize / 2;
Adam Cohen2854d252014-08-27 16:04:07 -07003445 Animator reveal = ViewAnimationUtils.createCircularReveal(revealView, width / 2,
Adam Cohen63f1ec02014-08-12 09:23:13 -07003446 height / 2, startRadius, revealRadius);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003447 reveal.setDuration(revealDuration);
3448 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003449
3450 reveal.addListener(new AnimatorListenerAdapter() {
3451 public void onAnimationStart(Animator animation) {
3452 if (!isWidgetTray) {
3453 allApps.setVisibility(View.INVISIBLE);
3454 }
3455 }
3456 public void onAnimationEnd(Animator animation) {
3457 if (!isWidgetTray) {
3458 allApps.setVisibility(View.VISIBLE);
3459 }
3460 }
3461 });
Adam Cohen6c5891a2014-07-09 23:53:15 -07003462 mStateAnimation.play(reveal);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003463 }
Michael Jurka1899a362011-11-03 13:50:45 -07003464
Adam Cohen9bfdb762014-07-21 17:44:06 -07003465 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3466 @Override
3467 public void onAnimationEnd(Animator animation) {
3468 dispatchOnLauncherTransitionEnd(fromView, animated, false);
3469 dispatchOnLauncherTransitionEnd(toView, animated, false);
3470
3471 revealView.setVisibility(View.INVISIBLE);
Adam Cohen80e6beb2015-02-13 16:14:33 -08003472
3473 for (View v : layerViews.keySet()) {
3474 if (layerViews.get(v) == BUILD_AND_SET_LAYER) {
3475 v.setLayerType(View.LAYER_TYPE_NONE, null);
3476 }
Adam Cohen4e243a22014-08-10 18:30:55 -07003477 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003478 content.setPageBackgroundsVisible(true);
3479
3480 // Hide the search bar
3481 if (mSearchDropTargetBar != null) {
3482 mSearchDropTargetBar.hideSearchBar(false);
3483 }
Adam Cohen3f9c9712014-10-31 11:48:25 -07003484
3485 // This can hold unnecessary references to views.
3486 mStateAnimation = null;
Adam Cohen9bfdb762014-07-21 17:44:06 -07003487 }
3488
Adam Cohen9bfdb762014-07-21 17:44:06 -07003489 });
3490
Adam Cohen6c5891a2014-07-09 23:53:15 -07003491 if (workspaceAnim != null) {
3492 mStateAnimation.play(workspaceAnim);
3493 }
Adam Cohen2854d252014-08-27 16:04:07 -07003494
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003495 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
3496 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003497 final AnimatorSet stateAnimation = mStateAnimation;
3498 final Runnable startAnimRunnable = new Runnable() {
3499 public void run() {
3500 // Check that mStateAnimation hasn't changed while
3501 // we waited for a layout/draw pass
3502 if (mStateAnimation != stateAnimation)
3503 return;
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003504 dispatchOnLauncherTransitionStart(fromView, animated, false);
3505 dispatchOnLauncherTransitionStart(toView, animated, false);
Adam Cohen2854d252014-08-27 16:04:07 -07003506
3507 revealView.setAlpha(initAlpha);
Adam Cohen80e6beb2015-02-13 16:14:33 -08003508
3509 for (View v : layerViews.keySet()) {
3510 if (layerViews.get(v) == BUILD_AND_SET_LAYER) {
3511 v.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3512 }
3513 }
3514
Kenny Guyd794a3f2014-09-16 15:17:58 +01003515 if (Utilities.isLmpOrAbove()) {
Adam Cohen80e6beb2015-02-13 16:14:33 -08003516 for (View v : layerViews.keySet()) {
3517 if (Utilities.isViewAttachedToWindow(v)) v.buildLayer();
Adam Cohen2854d252014-08-27 16:04:07 -07003518 }
3519 }
3520 mStateAnimation.start();
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003521 }
3522 };
Adam Cohen2854d252014-08-27 16:04:07 -07003523 toView.bringToFront();
3524 toView.setVisibility(View.VISIBLE);
3525 toView.post(startAnimRunnable);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003526 } else {
3527 toView.setTranslationX(0.0f);
3528 toView.setTranslationY(0.0f);
3529 toView.setScaleX(1.0f);
3530 toView.setScaleY(1.0f);
3531 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07003532 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07003533
Daniel Sandlere4f98912013-06-25 15:13:26 -04003534 if (!springLoaded && !LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungc7d2b602012-05-16 17:02:20 -07003535 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07003536 if (mSearchDropTargetBar != null) {
3537 mSearchDropTargetBar.hideSearchBar(false);
3538 }
Michael Jurkaabded662011-03-04 12:06:57 -08003539 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003540 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003541 dispatchOnLauncherTransitionStart(fromView, animated, false);
3542 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003543 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003544 dispatchOnLauncherTransitionStart(toView, animated, false);
3545 dispatchOnLauncherTransitionEnd(toView, animated, false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003546 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003547 }
3548
3549 /**
3550 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07003551 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003552 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003553 */
Adam Cohened307df2013-10-02 09:37:31 -07003554 private void hideAppsCustomizeHelper(Workspace.State toState, final boolean animated,
Adam Cohened66b2b2012-01-23 17:28:51 -08003555 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08003556
Michael Jurkab3e22d92011-10-31 15:58:33 -07003557 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003558 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003559 mStateAnimation.cancel();
3560 mStateAnimation = null;
3561 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003562
Kenny Guyd794a3f2014-09-16 15:17:58 +01003563 boolean material = Utilities.isLmpOrAbove();
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003564 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003565
Adam Cohen63f1ec02014-08-12 09:23:13 -07003566 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeConcealTime);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003567 final int itemsAlphaStagger =
3568 res.getInteger(R.integer.config_appsCustomizeItemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003569
Winson Chungf0ea4d32011-06-06 14:27:16 -07003570 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08003571 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003572 Animator workspaceAnim = null;
Adam Cohen80e6beb2015-02-13 16:14:33 -08003573 final HashMap<View, Integer> layerViews = new HashMap<View, Integer>();
Adam Cohen2854d252014-08-27 16:04:07 -07003574
Adam Cohened307df2013-10-02 09:37:31 -07003575 if (toState == Workspace.State.NORMAL) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003576 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohen2854d252014-08-27 16:04:07 -07003577 toState, animated, layerViews);
Adam Cohened307df2013-10-02 09:37:31 -07003578 } else if (toState == Workspace.State.SPRING_LOADED ||
3579 toState == Workspace.State.OVERVIEW) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003580 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohen2854d252014-08-27 16:04:07 -07003581 toState, animated, layerViews);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003582 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003583
Adam Cohena38dc902014-09-07 17:48:55 +02003584 // If for some reason our views aren't initialized, don't animate
3585 boolean initialized = getAllAppsButton() != null;
3586
3587 if (animated && initialized) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003588 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Adam Cohen2854d252014-08-27 16:04:07 -07003589 if (workspaceAnim != null) {
3590 mStateAnimation.play(workspaceAnim);
3591 }
Michael Jurka159b4cc2012-01-17 03:00:35 -08003592
Adam Cohen9bfdb762014-07-21 17:44:06 -07003593 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3594 fromView.findViewById(R.id.apps_customize_pane_content);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003595
Adam Cohen9bfdb762014-07-21 17:44:06 -07003596 final View page = content.getPageAt(content.getNextPage());
Adam Cohen8e894fa2014-09-08 19:45:43 +02003597
3598 // We need to hide side pages of the Apps / Widget tray to avoid some ugly edge cases
3599 int count = content.getChildCount();
3600 for (int i = 0; i < count; i++) {
3601 View child = content.getChildAt(i);
3602 if (child != page) {
3603 child.setVisibility(View.INVISIBLE);
3604 }
3605 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003606 final View revealView = fromView.findViewById(R.id.fake_page);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003607
Adam Cohen2854d252014-08-27 16:04:07 -07003608 // hideAppsCustomizeHelper is called in some cases when it is already hidden
3609 // don't perform all these no-op animations. In particularly, this was causing
3610 // the all-apps button to pop in and out.
3611 if (fromView.getVisibility() == View.VISIBLE) {
3612 AppsCustomizePagedView.ContentType contentType = content.getContentType();
3613 final boolean isWidgetTray =
3614 contentType == AppsCustomizePagedView.ContentType.Widgets;
Adam Cohen63f1ec02014-08-12 09:23:13 -07003615
Adam Cohen2854d252014-08-27 16:04:07 -07003616 if (isWidgetTray) {
3617 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel_dark));
3618 } else {
3619 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003620 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003621
Adam Cohen2854d252014-08-27 16:04:07 -07003622 int width = revealView.getMeasuredWidth();
3623 int height = revealView.getMeasuredHeight();
3624 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
3625
3626 // Hide the real page background, and swap in the fake one
3627 revealView.setVisibility(View.VISIBLE);
3628 content.setPageBackgroundsVisible(false);
3629
3630 final View allAppsButton = getAllAppsButton();
3631 revealView.setTranslationY(0);
3632 int[] allAppsToPanelDelta = Utilities.getCenterDeltaInScreenSpace(revealView,
3633 allAppsButton, null);
3634
3635 float xDrift = 0;
3636 float yDrift = 0;
3637 if (material) {
3638 yDrift = isWidgetTray ? height / 2 : allAppsToPanelDelta[1];
3639 xDrift = isWidgetTray ? 0 : allAppsToPanelDelta[0];
3640 } else {
Adam Cohen0fb5ce22014-10-24 13:50:20 -07003641 yDrift = 2 * height / 3;
Adam Cohen2854d252014-08-27 16:04:07 -07003642 xDrift = 0;
3643 }
3644
Adam Cohen80e6beb2015-02-13 16:14:33 -08003645 layerViews.put(revealView, BUILD_AND_SET_LAYER);
Adam Cohen2854d252014-08-27 16:04:07 -07003646 TimeInterpolator decelerateInterpolator = material ?
3647 new LogDecelerateInterpolator(100, 0) :
Adam Cohen0fb5ce22014-10-24 13:50:20 -07003648 new DecelerateInterpolator(1f);
Adam Cohen2854d252014-08-27 16:04:07 -07003649
3650 // The vertical motion of the apps panel should be delayed by one frame
3651 // from the conceal animation in order to give the right feel. We correpsondingly
3652 // shorten the duration so that the slide and conceal end at the same time.
3653 ObjectAnimator panelDriftY = LauncherAnimUtils.ofFloat(revealView, "translationY",
3654 0, yDrift);
3655 panelDriftY.setDuration(revealDuration - SINGLE_FRAME_DELAY);
3656 panelDriftY.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
3657 panelDriftY.setInterpolator(decelerateInterpolator);
3658 mStateAnimation.play(panelDriftY);
3659
3660 ObjectAnimator panelDriftX = LauncherAnimUtils.ofFloat(revealView, "translationX",
3661 0, xDrift);
3662 panelDriftX.setDuration(revealDuration - SINGLE_FRAME_DELAY);
3663 panelDriftX.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
3664 panelDriftX.setInterpolator(decelerateInterpolator);
3665 mStateAnimation.play(panelDriftX);
3666
3667 if (isWidgetTray || !material) {
3668 float finalAlpha = material ? 0.4f : 0f;
3669 revealView.setAlpha(1f);
3670 ObjectAnimator panelAlpha = LauncherAnimUtils.ofFloat(revealView, "alpha",
3671 1f, finalAlpha);
Adam Cohen0fb5ce22014-10-24 13:50:20 -07003672 panelAlpha.setDuration(material ? revealDuration : 150);
3673 panelAlpha.setInterpolator(decelerateInterpolator);
3674 panelAlpha.setStartDelay(material ? 0 : itemsAlphaStagger + SINGLE_FRAME_DELAY);
Adam Cohen2854d252014-08-27 16:04:07 -07003675 mStateAnimation.play(panelAlpha);
3676 }
3677
3678 if (page != null) {
Adam Cohen80e6beb2015-02-13 16:14:33 -08003679 layerViews.put(page, BUILD_AND_SET_LAYER);
Adam Cohen2854d252014-08-27 16:04:07 -07003680
3681 ObjectAnimator pageDrift = LauncherAnimUtils.ofFloat(page, "translationY",
3682 0, yDrift);
3683 page.setTranslationY(0);
3684 pageDrift.setDuration(revealDuration - SINGLE_FRAME_DELAY);
3685 pageDrift.setInterpolator(decelerateInterpolator);
3686 pageDrift.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
3687 mStateAnimation.play(pageDrift);
3688
3689 page.setAlpha(1f);
3690 ObjectAnimator itemsAlpha = LauncherAnimUtils.ofFloat(page, "alpha", 1f, 0f);
3691 itemsAlpha.setDuration(100);
3692 itemsAlpha.setInterpolator(decelerateInterpolator);
3693 mStateAnimation.play(itemsAlpha);
3694 }
3695
3696 View pageIndicators = fromView.findViewById(R.id.apps_customize_page_indicator);
3697 pageIndicators.setAlpha(1f);
3698 ObjectAnimator indicatorsAlpha =
3699 LauncherAnimUtils.ofFloat(pageIndicators, "alpha", 0f);
3700 indicatorsAlpha.setDuration(revealDuration);
3701 indicatorsAlpha.setInterpolator(new DecelerateInterpolator(1.5f));
3702 mStateAnimation.play(indicatorsAlpha);
3703
3704 width = revealView.getMeasuredWidth();
3705
3706 if (material) {
3707 if (!isWidgetTray) {
3708 allAppsButton.setVisibility(View.INVISIBLE);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003709 }
Adam Cohen2854d252014-08-27 16:04:07 -07003710 int allAppsButtonSize = LauncherAppState.getInstance().
3711 getDynamicGrid().getDeviceProfile().allAppsButtonVisualSize;
3712 float finalRadius = isWidgetTray ? 0 : allAppsButtonSize / 2;
3713 Animator reveal =
3714 LauncherAnimUtils.createCircularReveal(revealView, width / 2,
3715 height / 2, revealRadius, finalRadius);
3716 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
3717 reveal.setDuration(revealDuration);
3718 reveal.setStartDelay(itemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003719
Adam Cohen2854d252014-08-27 16:04:07 -07003720 reveal.addListener(new AnimatorListenerAdapter() {
3721 public void onAnimationEnd(Animator animation) {
3722 revealView.setVisibility(View.INVISIBLE);
3723 if (!isWidgetTray) {
3724 allAppsButton.setVisibility(View.VISIBLE);
3725 }
3726 }
3727 });
Adam Cohen9bfdb762014-07-21 17:44:06 -07003728
Adam Cohen2854d252014-08-27 16:04:07 -07003729 mStateAnimation.play(reveal);
3730 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003731
Adam Cohen2854d252014-08-27 16:04:07 -07003732 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
3733 dispatchOnLauncherTransitionPrepare(toView, animated, true);
3734 mAppsCustomizeContent.stopScrolling();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003735 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003736
3737 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07003738 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08003739 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003740 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08003741 dispatchOnLauncherTransitionEnd(fromView, animated, true);
3742 dispatchOnLauncherTransitionEnd(toView, animated, true);
Adam Cohened66b2b2012-01-23 17:28:51 -08003743 if (onCompleteRunnable != null) {
3744 onCompleteRunnable.run();
3745 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003746
Adam Cohen80e6beb2015-02-13 16:14:33 -08003747 for (View v : layerViews.keySet()) {
3748 if (layerViews.get(v) == BUILD_AND_SET_LAYER) {
3749 v.setLayerType(View.LAYER_TYPE_NONE, null);
3750 }
Adam Cohen4e243a22014-08-10 18:30:55 -07003751 }
Adam Cohen80e6beb2015-02-13 16:14:33 -08003752
Adam Cohen9bfdb762014-07-21 17:44:06 -07003753 content.setPageBackgroundsVisible(true);
Adam Cohen8e894fa2014-09-08 19:45:43 +02003754 // Unhide side pages
3755 int count = content.getChildCount();
3756 for (int i = 0; i < count; i++) {
3757 View child = content.getChildAt(i);
3758 child.setVisibility(View.VISIBLE);
3759 }
3760
3761 // Reset page transforms
Adam Cohen493f6bc2014-09-18 08:11:05 -07003762 if (page != null) {
3763 page.setTranslationX(0);
3764 page.setTranslationY(0);
3765 page.setAlpha(1);
3766 }
Adam Cohen8e894fa2014-09-08 19:45:43 +02003767 content.setCurrentPage(content.getNextPage());
3768
Chet Haasebc2f0822012-10-26 17:59:53 -07003769 mAppsCustomizeContent.updateCurrentPageScroll();
Adam Cohen3f9c9712014-10-31 11:48:25 -07003770
3771 // This can hold unnecessary references to views.
3772 mStateAnimation = null;
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003773 }
3774 });
3775
Adam Cohen2854d252014-08-27 16:04:07 -07003776 final AnimatorSet stateAnimation = mStateAnimation;
3777 final Runnable startAnimRunnable = new Runnable() {
3778 public void run() {
3779 // Check that mStateAnimation hasn't changed while
3780 // we waited for a layout/draw pass
3781 if (mStateAnimation != stateAnimation)
3782 return;
3783 dispatchOnLauncherTransitionStart(fromView, animated, false);
3784 dispatchOnLauncherTransitionStart(toView, animated, false);
3785
Adam Cohen80e6beb2015-02-13 16:14:33 -08003786 for (View v : layerViews.keySet()) {
3787 if (layerViews.get(v) == BUILD_AND_SET_LAYER) {
3788 v.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3789 }
3790 }
3791
Kenny Guyd794a3f2014-09-16 15:17:58 +01003792 if (Utilities.isLmpOrAbove()) {
Adam Cohen80e6beb2015-02-13 16:14:33 -08003793 for (View v : layerViews.keySet()) {
3794 if (Utilities.isViewAttachedToWindow(v)) v.buildLayer();
Adam Cohen2854d252014-08-27 16:04:07 -07003795 }
3796 }
3797 mStateAnimation.start();
3798 }
3799 };
3800 fromView.post(startAnimRunnable);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003801 } else {
3802 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003803 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003804 dispatchOnLauncherTransitionStart(fromView, animated, true);
3805 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003806 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003807 dispatchOnLauncherTransitionStart(toView, animated, true);
3808 dispatchOnLauncherTransitionEnd(toView, animated, true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003809 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003810 }
3811
Michael Jurkae326f182011-11-21 14:05:46 -08003812 @Override
3813 public void onTrimMemory(int level) {
3814 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003815 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3816 // The widget preview db can result in holding onto over
3817 // 3MB of memory for caching which isn't necessary.
3818 SQLiteDatabase.releaseMemory();
3819
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003820 // This clears all widget bitmaps from the widget tray
Adam Cohen3f9c9712014-10-31 11:48:25 -07003821 if (mAppsCustomizeTabHost != null) {
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003822 mAppsCustomizeTabHost.trimMemory();
Adam Cohen3f9c9712014-10-31 11:48:25 -07003823 }
Michael Jurkae326f182011-11-21 14:05:46 -08003824 }
3825 }
3826
Adam Cohened307df2013-10-02 09:37:31 -07003827 protected void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08003828 showWorkspace(animated, null);
3829 }
3830
Adam Cohened307df2013-10-02 09:37:31 -07003831 protected void showWorkspace() {
3832 showWorkspace(true);
3833 }
3834
Adam Cohened66b2b2012-01-23 17:28:51 -08003835 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Adam Cohene25c5d12014-06-18 10:34:58 -07003836 if (mState != State.WORKSPACE || mWorkspace.getState() != Workspace.State.NORMAL) {
Winson Chung2d75f122013-09-23 16:53:31 -07003837 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003838 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened307df2013-10-02 09:37:31 -07003839 hideAppsCustomizeHelper(Workspace.State.NORMAL, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003840
Winson Chungc7d2b602012-05-16 17:02:20 -07003841 // Show the search bar (only animate if we were showing the drop target bar in spring
3842 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003843 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003844 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003845 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003846
Michael Jurkab3e22d92011-10-31 15:58:33 -07003847 // Set focus to the AppsCustomize button
3848 if (mAllAppsButton != null) {
3849 mAllAppsButton.requestFocus();
3850 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003851 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003852
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003853 // Change the state *after* we've called all the transition code
3854 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003855
Winson Chung5fb63472011-02-02 17:03:37 -08003856 // Resume the auto-advance of widgets
3857 mUserPresent = true;
3858 updateRunning();
3859
alanv1d4fde62012-10-17 13:15:47 -07003860 // Send an accessibility event to announce the context change
3861 getWindow().getDecorView()
3862 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003863
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003864 onWorkspaceShown(animated);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003865 }
3866
Adam Cohened307df2013-10-02 09:37:31 -07003867 void showOverviewMode(boolean animated) {
3868 mWorkspace.setVisibility(View.VISIBLE);
3869 hideAppsCustomizeHelper(Workspace.State.OVERVIEW, animated, false, null);
3870 mState = State.WORKSPACE;
3871 onWorkspaceShown(animated);
3872 }
3873
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003874 public void onWorkspaceShown(boolean animated) {
Joe Onorato00acb122009-08-04 16:04:30 -04003875 }
3876
Winson Chung82963d52013-10-09 11:20:57 -07003877 void showAllApps(boolean animated, AppsCustomizePagedView.ContentType contentType,
3878 boolean resetPageToZero) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003879 if (mState != State.WORKSPACE) return;
3880
Winson Chung82963d52013-10-09 11:20:57 -07003881 if (resetPageToZero) {
3882 mAppsCustomizeTabHost.reset();
3883 }
Winson Chungc58497e2013-09-03 17:48:37 -07003884 showAppsCustomizeHelper(animated, false, contentType);
Adam Cohendcc5e712014-06-23 15:38:55 -04003885 mAppsCustomizeTabHost.post(new Runnable() {
3886 @Override
3887 public void run() {
3888 // We post this in-case the all apps view isn't yet constructed.
3889 mAppsCustomizeTabHost.requestFocus();
3890 }
3891 });
Michael Jurkab3e22d92011-10-31 15:58:33 -07003892
Michael Jurkab3e22d92011-10-31 15:58:33 -07003893 // Change the state *after* we've called all the transition code
3894 mState = State.APPS_CUSTOMIZE;
3895
3896 // Pause the auto-advance of widgets until we are out of AllApps
3897 mUserPresent = false;
3898 updateRunning();
3899 closeFolder();
3900
3901 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003902 getWindow().getDecorView()
3903 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003904 }
3905
Adam Cohen7777d962011-08-18 18:58:38 -07003906 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003907 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07003908 hideAppsCustomizeHelper(Workspace.State.SPRING_LOADED, true, true, null);
Winson Chungc07918d2011-07-01 15:35:26 -07003909 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07003910 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003911 }
Adam Cohen7777d962011-08-18 18:58:38 -07003912
Adam Cohenad4e15c2013-10-17 16:21:35 -07003913 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003914 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07003915 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
3916
Winson Chunge7a03942011-08-05 15:05:12 -07003917 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003918 @Override
3919 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003920 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003921 // Before we show workspace, hide all apps again because
3922 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3923 // clean up our state transition functions
3924 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003925 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003926 } else {
3927 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003928 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003929 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003930 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003931 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003932
Michael Jurkad3ef3062010-11-23 16:23:58 -08003933 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07003934 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003935 final boolean animated = true;
3936 final boolean springLoaded = true;
3937 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07003938 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07003939 }
3940 // Otherwise, we are not in spring loaded mode, so don't do anything.
3941 }
3942
Michael Jurkab3e22d92011-10-31 15:58:33 -07003943 void lockAllApps() {
3944 // TODO
3945 }
3946
3947 void unlockAllApps() {
3948 // TODO
3949 }
3950
Sunny Goyal594d76d2014-11-06 10:12:54 -08003951 protected void disableVoiceButtonProxy(boolean disable) {
3952 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003953 }
3954
Cristina Stancu476493b2013-08-07 17:20:14 +01003955 public View getQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003956 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3957 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003958 }
3959
Adam Cohen24ce0b32014-01-14 16:18:14 -08003960 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003961 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3962 if (searchProvider == null) {
3963 return null;
3964 }
3965
3966 Bundle opts = new Bundle();
3967 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003968 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003969
3970 SharedPreferences sp = getSharedPreferences(
3971 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3972 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003973 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003974 if (!searchProvider.provider.flattenToString().equals(
3975 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003976 || (widgetInfo == null)
3977 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003978 // A valid widget is not already bound.
3979 if (widgetId > -1) {
3980 mAppWidgetHost.deleteAppWidgetId(widgetId);
3981 widgetId = -1;
3982 }
3983
3984 // Try to bind a new widget
3985 widgetId = mAppWidgetHost.allocateAppWidgetId();
3986
3987 if (!AppWidgetManagerCompat.getInstance(this)
3988 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3989 mAppWidgetHost.deleteAppWidgetId(widgetId);
3990 widgetId = -1;
3991 }
3992
3993 sp.edit()
3994 .putInt(QSB_WIDGET_ID, widgetId)
3995 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3996 .commit();
3997 }
3998
3999 if (widgetId != -1) {
4000 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
4001 mQsb.updateAppWidgetOptions(opts);
4002 mQsb.setPadding(0, 0, 0, 0);
4003 mSearchDropTargetBar.addView(mQsb);
4004 }
Cristina Stancu476493b2013-08-07 17:20:14 +01004005 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08004006 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01004007 }
4008
Michael Jurkad7c28052012-04-27 15:43:36 -07004009 @Override
4010 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07004011 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07004012 final List<CharSequence> text = event.getText();
4013 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07004014 // Populate event with a fake title based on the current state.
4015 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohen6c5891a2014-07-09 23:53:15 -07004016 text.add(mAppsCustomizeTabHost.getContentTag());
alanv1d4fde62012-10-17 13:15:47 -07004017 } else {
4018 text.add(getString(R.string.all_apps_home_button_label));
4019 }
Michael Jurkad7c28052012-04-27 15:43:36 -07004020 return result;
4021 }
4022
Patrick Dubroyceae05d2010-08-30 10:40:53 -07004023 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07004024 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004025 */
4026 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
4027 @Override
4028 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004029 closeSystemDialogs();
4030 }
4031 }
4032
4033 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08004034 * Receives notifications whenever the appwidgets are reset.
4035 */
4036 private class AppWidgetResetObserver extends ContentObserver {
4037 public AppWidgetResetObserver() {
4038 super(new Handler());
4039 }
4040
4041 @Override
4042 public void onChange(boolean selfChange) {
4043 onAppWidgetReset();
4044 }
4045 }
4046
4047 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07004048 * If the activity is currently paused, signal that we need to run the passed Runnable
4049 * in onResume.
4050 *
4051 * This needs to be called from incoming places where resources might have been loaded
4052 * while we are paused. That is becaues the Configuration might be wrong
4053 * when we're not running, and if it comes back to what it was when we
4054 * were paused, we are not restarted.
4055 *
4056 * Implementation of the method from LauncherModel.Callbacks.
4057 *
4058 * @return true if we are currently paused. The caller might be able to
4059 * skip some work in that case since we will come back again.
4060 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004061 private boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004062 if (mPaused) {
4063 Log.i(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02004064 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07004065 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004066 }
4067 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07004068 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07004069 return true;
4070 } else {
4071 return false;
4072 }
4073 }
4074
Michael Jurkac402cd92013-05-20 15:49:32 +02004075 private boolean waitUntilResume(Runnable run) {
4076 return waitUntilResume(run, false);
4077 }
4078
Michael Jurka1e2f4652013-07-08 18:03:46 -07004079 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02004080 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07004081 }
4082
Michael Jurka7607c2f2013-04-03 14:33:19 -07004083 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004084 * If the activity is currently paused, signal that we need to re-run the loader
4085 * in onResume.
4086 *
4087 * This needs to be called from incoming places where resources might have been loaded
4088 * while we are paused. That is becaues the Configuration might be wrong
4089 * when we're not running, and if it comes back to what it was when we
4090 * were paused, we are not restarted.
4091 *
4092 * Implementation of the method from LauncherModel.Callbacks.
4093 *
4094 * @return true if we are currently paused. The caller might be able to
4095 * skip some work in that case since we will come back again.
4096 */
4097 public boolean setLoadOnResume() {
4098 if (mPaused) {
4099 Log.i(TAG, "setLoadOnResume");
4100 mOnResumeNeedsLoad = true;
4101 return true;
4102 } else {
4103 return false;
4104 }
4105 }
4106
4107 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004108 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004109 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04004110 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07004111 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07004112 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07004113 } else {
4114 return SCREEN_COUNT / 2;
4115 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004116 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07004117
Joe Onorato9c1289c2009-08-17 11:03:03 -04004118 /**
4119 * Refreshes the shortcuts shown on the workspace.
4120 *
4121 * Implementation of the method from LauncherModel.Callbacks.
4122 */
4123 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004124 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08004125
Michael Jurka7607c2f2013-04-03 14:33:19 -07004126 // If we're starting binding all over again, clear any bind calls we'd postponed in
4127 // the past (see waitUntilResume) -- we don't need them since we're starting binding
4128 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07004129 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07004130
Winson Chungd64d1762013-08-20 14:37:16 -07004131 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07004132 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07004133 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07004134
Michael Jurka05bf644e2011-11-30 20:28:53 -08004135 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07004136 if (mHotseat != null) {
4137 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004138 }
4139 }
4140
Adam Cohendcd297f2013-06-18 13:13:40 -07004141 @Override
4142 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07004143 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07004144
Adam Cohen5084cba2013-09-03 12:01:16 -07004145 // If there are no screens, we need to have an empty screen
4146 if (orderedScreenIds.size() == 0) {
4147 mWorkspace.addExtraEmptyScreen();
4148 }
Winson Chung0e6a7132013-08-23 12:55:10 -07004149
4150 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06004151 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05004152 if (hasCustomContentToLeft()) {
4153 mWorkspace.createCustomContentContainer();
4154 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07004155 }
Winson Chung64359a52013-07-08 17:17:08 -07004156 }
4157
4158 @Override
4159 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Winson Chunga90303b2013-11-15 13:05:06 -08004160 // Log to disk
4161 Launcher.addDumpLog(TAG, "11683562 - bindAddScreens()", true);
4162 Launcher.addDumpLog(TAG, "11683562 - orderedScreenIds: " +
4163 TextUtils.join(", ", orderedScreenIds), true);
Adam Cohendcd297f2013-06-18 13:13:40 -07004164 int count = orderedScreenIds.size();
4165 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07004166 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07004167 }
Adam Cohendcd297f2013-06-18 13:13:40 -07004168 }
4169
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08004170 @Override
4171 public void bindAddPendingItem(final PendingAddItemInfo info, final long container,
4172 final long screenId, final int[] cell, final int spanX, final int spanY) {
4173 showWorkspace(true, new Runnable() {
4174
4175 @Override
4176 public void run() {
4177 mWorkspace.snapToPage(mWorkspace.getPageIndexForScreenId(screenId));
4178 addPendingItem(info, container, screenId, cell, spanX, spanY);
4179 }
4180 });
4181 }
4182
Adam Cohen39a06042013-07-19 14:30:12 -07004183 private boolean shouldShowWeightWatcher() {
4184 String spKey = LauncherAppState.getSharedPreferencesKey();
4185 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07004186 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07004187
4188 return show;
4189 }
4190
4191 private void toggleShowWeightWatcher() {
4192 String spKey = LauncherAppState.getSharedPreferencesKey();
4193 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
4194 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
4195
4196 show = !show;
4197
4198 SharedPreferences.Editor editor = sp.edit();
4199 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
4200 editor.commit();
4201
4202 if (mWeightWatcher != null) {
4203 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
4204 }
4205 }
4206
Winson Chungd64d1762013-08-20 14:37:16 -07004207 public void bindAppsAdded(final ArrayList<Long> newScreens,
4208 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07004209 final ArrayList<ItemInfo> addAnimated,
4210 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004211 Runnable r = new Runnable() {
4212 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07004213 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07004214 }
4215 };
4216 if (waitUntilResume(r)) {
4217 return;
4218 }
4219
Winson Chungd64d1762013-08-20 14:37:16 -07004220 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08004221 if (newScreens != null) {
4222 bindAddScreens(newScreens);
4223 }
Winson Chungd64d1762013-08-20 14:37:16 -07004224
4225 // We add the items without animation on non-visible pages, and with
4226 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08004227 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004228 bindItems(addNotAnimated, 0,
4229 addNotAnimated.size(), false);
4230 }
Adam Cohen76a47a12014-02-05 11:47:43 -08004231 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004232 bindItems(addAnimated, 0,
4233 addAnimated.size(), true);
4234 }
Winson Chungc58497e2013-09-03 17:48:37 -07004235
Winson Chung87412982013-10-03 18:34:14 -07004236 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07004237 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07004238
Sunny Goyalc9acdd52015-02-26 12:34:42 -08004239 if (addedApps != null && mAppsCustomizeContent != null) {
Winson Chungc58497e2013-09-03 17:48:37 -07004240 mAppsCustomizeContent.addApps(addedApps);
4241 }
Winson Chungd64d1762013-08-20 14:37:16 -07004242 }
4243
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004244 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004245 * Bind the items start-end from the list.
4246 *
4247 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004248 */
Winson Chung64359a52013-07-08 17:17:08 -07004249 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
4250 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07004251 Runnable r = new Runnable() {
4252 public void run() {
4253 bindItems(shortcuts, start, end, forceAnimateIcons);
4254 }
4255 };
4256 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004257 return;
4258 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004259
Winson Chungf0c6ae02012-03-21 16:10:31 -07004260 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07004261 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
4262 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07004263 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004264 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07004265 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004266 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04004267 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07004268
4269 // Short circuit if we are loading dock items for a configuration which has no dock
4270 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
4271 mHotseat == null) {
4272 continue;
4273 }
4274
Joe Onorato9c1289c2009-08-17 11:03:03 -04004275 switch (item.itemType) {
4276 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
4277 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07004278 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004279 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07004280
Winson Chung64359a52013-07-08 17:17:08 -07004281 /*
4282 * TODO: FIX collision case
4283 */
Winson Chungce376632013-07-11 16:12:41 -07004284 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
4285 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
4286 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07004287 View v = cl.getChildAt(item.cellX, item.cellY);
4288 Object tag = v.getTag();
4289 String desc = "Collision while binding workspace item: " + item
4290 + ". Collides with " + tag;
4291 if (LauncherAppState.isDogfoodBuild()) {
4292 throw (new RuntimeException(desc));
4293 } else {
4294 Log.d(TAG, desc);
4295 }
Winson Chungce376632013-07-11 16:12:41 -07004296 }
Winson Chung64359a52013-07-08 17:17:08 -07004297 }
4298
Adam Cohendcd297f2013-06-18 13:13:40 -07004299 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
4300 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07004301 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07004302 // Animate all the applications up now
4303 shortcut.setAlpha(0f);
4304 shortcut.setScaleX(0f);
4305 shortcut.setScaleY(0f);
4306 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07004307 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004308 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004309 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07004310 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07004311 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07004312 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07004313 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07004314 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
4315 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004316 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07004317 default:
4318 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04004319 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004320 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004321
Winson Chung997a9232013-07-24 15:33:46 -07004322 if (animateIcons) {
4323 // Animate to the correct page
4324 if (newShortcutsScreenId > -1) {
4325 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07004326 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07004327 final Runnable startBounceAnimRunnable = new Runnable() {
4328 public void run() {
4329 anim.playTogether(bounceAnims);
4330 anim.start();
4331 }
4332 };
Winson Chung997a9232013-07-24 15:33:46 -07004333 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07004334 // We post the animation slightly delayed to prevent slowdowns
4335 // when we are loading right after we return to launcher.
4336 mWorkspace.postDelayed(new Runnable() {
4337 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00004338 if (mWorkspace != null) {
4339 mWorkspace.snapToPage(newScreenIndex);
4340 mWorkspace.postDelayed(startBounceAnimRunnable,
4341 NEW_APPS_ANIMATION_DELAY);
4342 }
Winson Chung94d67682013-09-25 16:29:40 -07004343 }
4344 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07004345 } else {
4346 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07004347 }
4348 }
Winson Chung64359a52013-07-08 17:17:08 -07004349 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004350 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004351 }
4352
Joe Onorato9c1289c2009-08-17 11:03:03 -04004353 /**
4354 * Implementation of the method from LauncherModel.Callbacks.
4355 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004356 public void bindFolders(final HashMap<Long, FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07004357 Runnable r = new Runnable() {
4358 public void run() {
4359 bindFolders(folders);
4360 }
4361 };
4362 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004363 return;
4364 }
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004365 sFolders.clear();
4366 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004367 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004368
4369 /**
4370 * Add the views for a widget to the workspace.
4371 *
4372 * Implementation of the method from LauncherModel.Callbacks.
4373 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004374 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004375 Runnable r = new Runnable() {
4376 public void run() {
4377 bindAppWidget(item);
4378 }
4379 };
4380 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004381 return;
4382 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004383
Daniel Sandler843e8602010-06-07 14:59:01 -04004384 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4385 if (DEBUG_WIDGETS) {
4386 Log.d(TAG, "bindAppWidget: " + item);
4387 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004388 final Workspace workspace = mWorkspace;
4389
Adam Cohen59400422014-03-05 18:07:04 -08004390 LauncherAppWidgetProviderInfo appWidgetInfo =
4391 LauncherModel.getProviderInfo(this, item.providerName);
4392
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004393 if (!mIsSafeModeEnabled
4394 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
4395 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
Sunny Goyalff572272014-07-23 13:58:07 -07004396 if (appWidgetInfo == null) {
4397 if (DEBUG_WIDGETS) {
4398 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4399 + " belongs to component " + item.providerName
4400 + ", as the povider is null");
4401 }
4402 LauncherModel.deleteItemFromDatabase(this, item);
4403 return;
4404 }
4405 // Note: This assumes that the id remap broadcast is received before this step.
4406 // If that is not the case, the id remap will be ignored and user may see the
4407 // click to setup view.
Adam Cohen59400422014-03-05 18:07:04 -08004408 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(appWidgetInfo, null);
Sunny Goyalff572272014-07-23 13:58:07 -07004409 pendingInfo.spanX = item.spanX;
4410 pendingInfo.spanY = item.spanY;
4411 pendingInfo.minSpanX = item.minSpanX;
4412 pendingInfo.minSpanY = item.minSpanY;
4413 Bundle options =
4414 AppsCustomizePagedView.getDefaultOptionsForWidget(this, pendingInfo);
4415
Sunny Goyalff572272014-07-23 13:58:07 -07004416 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07004417 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4418 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07004419
4420 // TODO consider showing a permission dialog when the widget is clicked.
4421 if (!success) {
4422 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4423 if (DEBUG_WIDGETS) {
4424 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4425 + " belongs to component " + item.providerName
4426 + ", as the launcher is unable to bing a new widget id");
4427 }
4428 LauncherModel.deleteItemFromDatabase(this, item);
4429 return;
4430 }
4431
4432 item.appWidgetId = newWidgetId;
4433
4434 // If the widget has a configure activity, it is still needs to set it up, otherwise
4435 // the widget is ready to go.
4436 item.restoreStatus = (appWidgetInfo.configure == null)
4437 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4438 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4439
4440 LauncherModel.updateItemInDatabase(this, item);
4441 }
4442
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004443 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004444 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004445 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004446 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4447 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004448 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004449
Sunny Goyal651077b2014-06-30 14:15:31 -07004450 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
4451 } else {
4452 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004453 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4454 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004455 view.updateIcon(mIconCache);
4456 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004457 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004458 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004459 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004460
Joe Onorato9c1289c2009-08-17 11:03:03 -04004461 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004462 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004463
Adam Cohendcd297f2013-06-18 13:13:40 -07004464 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004465 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08004466 if (!item.isCustomWidget()) {
4467 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4468 }
Adam Cohended9f8d2010-11-03 13:25:16 -07004469
Joe Onorato9c1289c2009-08-17 11:03:03 -04004470 workspace.requestLayout();
4471
Daniel Sandler843e8602010-06-07 14:59:01 -04004472 if (DEBUG_WIDGETS) {
4473 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4474 + (SystemClock.uptimeMillis()-start) + "ms");
4475 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004476 }
4477
Sunny Goyalff572272014-07-23 13:58:07 -07004478 /**
4479 * Restores a pending widget.
4480 *
4481 * @param appWidgetId The app widget id
4482 * @param cellInfo The position on screen where to create the widget.
4483 */
4484 private void completeRestoreAppWidget(final int appWidgetId) {
4485 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4486 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4487 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4488 return;
4489 }
4490
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004491 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004492 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4493
4494 mWorkspace.reinflateWidgetsIfNecessary();
4495 LauncherModel.updateItemInDatabase(this, info);
4496 }
4497
Adam Cohen1462de32012-07-24 22:34:36 -07004498 public void onPageBoundSynchronously(int page) {
4499 mSynchronouslyBoundPages.add(page);
4500 }
4501
Joe Onorato9c1289c2009-08-17 11:03:03 -04004502 /**
4503 * Callback saying that there aren't any more items to bind.
4504 *
4505 * Implementation of the method from LauncherModel.Callbacks.
4506 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004507 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004508 Runnable r = new Runnable() {
4509 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004510 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004511 }
4512 };
4513 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004514 return;
4515 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004516 if (mSavedState != null) {
4517 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004518 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004519 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004520 mSavedState = null;
4521 }
4522
Adam Cohen1462de32012-07-24 22:34:36 -07004523 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004524
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004525 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004526 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004527
4528 // If we received the result of any pending adds while the loader was running (e.g. the
4529 // widget configuration forced an orientation change), process them now.
4530 if (sPendingAddItem != null) {
4531 final long screenId = completeAdd(sPendingAddItem);
4532
4533 // TODO: this moves the user to the page where the pending item was added. Ideally,
4534 // the screen would be guaranteed to exist after bind, and the page would be set through
4535 // the workspace restore process.
4536 mWorkspace.post(new Runnable() {
4537 @Override
4538 public void run() {
4539 mWorkspace.snapToScreenId(screenId);
4540 }
4541 });
4542 sPendingAddItem = null;
4543 }
4544
Sunny Goyale755d462014-07-22 13:48:29 -07004545 PackageInstallerCompat.getInstance(this).onFinishBind();
Adam Cohen9211d422014-10-07 18:14:53 -07004546
4547 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004548 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004549 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004550 }
4551
Adam Cohen3ed316a2014-07-23 18:21:20 -07004552 private void sendLoadingCompleteBroadcastIfNecessary() {
4553 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4554 String permission =
4555 getResources().getString(R.string.receive_first_load_broadcast_permission);
4556 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4557 sendBroadcast(intent, permission);
4558 SharedPreferences.Editor editor = mSharedPrefs.edit();
4559 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4560 editor.apply();
4561 }
4562 }
4563
Winson Chunga0b7e862013-09-05 16:03:15 -07004564 public boolean isAllAppsButtonRank(int rank) {
4565 if (mHotseat != null) {
4566 return mHotseat.isAllAppsButtonRank(rank);
4567 }
4568 return false;
4569 }
4570
Winson Chunga2413752012-04-03 14:22:34 -07004571 private boolean canRunNewAppsAnimation() {
4572 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4573 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4574 }
4575
Winson Chungc9168342013-06-26 14:54:55 -07004576 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4577 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4578 PropertyValuesHolder.ofFloat("alpha", 1f),
4579 PropertyValuesHolder.ofFloat("scaleX", 1f),
4580 PropertyValuesHolder.ofFloat("scaleY", 1f));
4581 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4582 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
4583 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
4584 return bounceAnim;
4585 }
4586
Adam Cohen27772732013-11-11 14:00:56 +00004587 public boolean useVerticalBarLayout() {
4588 return LauncherAppState.getInstance().getDynamicGrid().
4589 getDeviceProfile().isVerticalBarLayout();
4590 }
4591
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004592 protected Rect getSearchBarBounds() {
4593 return LauncherAppState.getInstance().getDynamicGrid().
4594 getDeviceProfile().getSearchBarBounds();
4595 }
4596
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004597 public void bindSearchablesChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004598 if (mSearchDropTargetBar == null) {
4599 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004600 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004601 if (mQsb != null) {
4602 mSearchDropTargetBar.removeView(mQsb);
4603 mQsb = null;
4604 }
4605 mSearchDropTargetBar.setQsbSearchBar(getQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004606 }
4607
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004608 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004609 * Add the icons for all apps.
4610 *
4611 * Implementation of the method from LauncherModel.Callbacks.
4612 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004613 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Sunny Goyalc9acdd52015-02-26 12:34:42 -08004614 if (mAppsCustomizeContent != null) {
4615 mAppsCustomizeContent.setApps(apps);
4616 mAppsCustomizeContent.onPackagesUpdated(
4617 LauncherModel.getSortedWidgetsAndShortcuts(this));
Winson Chung785d2eb2011-04-14 16:08:02 -07004618 }
Adam Cohen9211d422014-10-07 18:14:53 -07004619 if (mLauncherCallbacks != null) {
4620 mLauncherCallbacks.bindAllApplications(apps);
4621 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004622 }
4623
4624 /**
4625 * A package was updated.
4626 *
4627 * Implementation of the method from LauncherModel.Callbacks.
4628 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004629 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004630 Runnable r = new Runnable() {
4631 public void run() {
4632 bindAppsUpdated(apps);
4633 }
4634 };
4635 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004636 return;
4637 }
4638
Sunny Goyalc9acdd52015-02-26 12:34:42 -08004639 if (mAppsCustomizeContent != null) {
Winson Chungc58497e2013-09-03 17:48:37 -07004640 mAppsCustomizeContent.updateApps(apps);
4641 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004642 }
4643
Sunny Goyal4390ace2014-10-13 11:33:11 -07004644 @Override
4645 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4646 Runnable r = new Runnable() {
4647 public void run() {
4648 bindWidgetsRestored(widgets);
4649 }
4650 };
4651 if (waitUntilResume(r)) {
4652 return;
4653 }
4654 mWorkspace.widgetsRestored(widgets);
4655 }
4656
Joe Onorato9c1289c2009-08-17 11:03:03 -04004657 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004658 * Some shortcuts were updated in the background.
4659 *
4660 * Implementation of the method from LauncherModel.Callbacks.
4661 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004662 @Override
4663 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4664 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004665 Runnable r = new Runnable() {
4666 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004667 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004668 }
4669 };
4670 if (waitUntilResume(r)) {
4671 return;
4672 }
4673
Sunny Goyal4390ace2014-10-13 11:33:11 -07004674 if (!updated.isEmpty()) {
4675 mWorkspace.updateShortcuts(updated);
4676 }
4677
4678 if (!removed.isEmpty()) {
4679 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4680 for (ShortcutInfo si : removed) {
4681 removedComponents.add(si.getTargetComponent());
4682 }
4683 mWorkspace.removeItemsByComponentName(removedComponents, user);
4684 // Notify the drag controller
4685 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004686 }
4687 }
4688
4689 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004690 * Update the state of a package, typically related to install state.
4691 *
4692 * Implementation of the method from LauncherModel.Callbacks.
4693 */
Sunny Goyale755d462014-07-22 13:48:29 -07004694 @Override
4695 public void updatePackageState(ArrayList<PackageInstallInfo> installInfo) {
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004696 if (mWorkspace != null) {
Sunny Goyale755d462014-07-22 13:48:29 -07004697 mWorkspace.updatePackageState(installInfo);
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004698 }
4699 }
4700
4701 /**
Sunny Goyala22666f2014-09-18 13:25:15 -07004702 * Update the label and icon of all the icons in a package
4703 *
4704 * Implementation of the method from LauncherModel.Callbacks.
4705 */
4706 @Override
4707 public void updatePackageBadge(String packageName) {
4708 if (mWorkspace != null) {
4709 mWorkspace.updatePackageBadge(packageName, UserHandleCompat.myUserHandle());
4710 }
4711 }
4712
4713 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004714 * A package was uninstalled. We take both the super set of packageNames
4715 * in addition to specific applications to remove, the reason being that
4716 * this can be called when a package is updated as well. In that scenario,
4717 * we only remove specific components from the workspace, where as
4718 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004719 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004720 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004721 * Implementation of the method from LauncherModel.Callbacks.
4722 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004723 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004724 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004725 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004726 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004727 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004728 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004729 }
Winson Chungd64d1762013-08-20 14:37:16 -07004730 };
4731 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004732 return;
4733 }
4734
Sunny Goyal1a745e82014-10-02 15:58:31 -07004735 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004736 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4737 for (AppInfo info : appInfos) {
4738 removedComponents.add(info.componentName);
4739 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004740 if (!packageNames.isEmpty()) {
4741 mWorkspace.removeItemsByPackageName(packageNames, user);
4742 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004743 if (!removedComponents.isEmpty()) {
4744 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004745 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004746 // Notify the drag controller
4747 mDragController.onAppsRemoved(packageNames, removedComponents);
4748
Sunny Goyal1a745e82014-10-02 15:58:31 -07004749 } else {
4750 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004751 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004752
Winson Chungdf95eb12013-10-16 14:57:07 -07004753 // Update AllApps
Sunny Goyalc9acdd52015-02-26 12:34:42 -08004754 if (mAppsCustomizeContent != null) {
Winson Chungc58497e2013-09-03 17:48:37 -07004755 mAppsCustomizeContent.removeApps(appInfos);
4756 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004757 }
Joe Onoratobe386092009-11-17 17:32:16 -08004758
4759 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07004760 * A number of packages were updated.
4761 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004762 private ArrayList<Object> mWidgetsAndShortcuts;
4763 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004764 public void run() {
Michael Jurkac402cd92013-05-20 15:49:32 +02004765 bindPackagesUpdated(mWidgetsAndShortcuts);
4766 mWidgetsAndShortcuts = null;
Winson Chung83892cc2013-05-01 16:53:33 -07004767 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004768 };
Michael Jurkac402cd92013-05-20 15:49:32 +02004769 public void bindPackagesUpdated(final ArrayList<Object> widgetsAndShortcuts) {
4770 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
4771 mWidgetsAndShortcuts = widgetsAndShortcuts;
Winson Chung83892cc2013-05-01 16:53:33 -07004772 return;
4773 }
4774
Winson Chung64359a52013-07-08 17:17:08 -07004775 // Update the widgets pane
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004776 if (mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004777 mAppsCustomizeContent.onPackagesUpdated(widgetsAndShortcuts);
Winson Chung785d2eb2011-04-14 16:08:02 -07004778 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004779 }
4780
Winson Chung400438b2011-01-16 17:53:48 -08004781 private int mapConfigurationOriActivityInfoOri(int configOri) {
4782 final Display d = getWindowManager().getDefaultDisplay();
4783 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4784 switch (d.getRotation()) {
4785 case Surface.ROTATION_0:
4786 case Surface.ROTATION_180:
4787 // We are currently in the same basic orientation as the natural orientation
4788 naturalOri = configOri;
4789 break;
4790 case Surface.ROTATION_90:
4791 case Surface.ROTATION_270:
4792 // We are currently in the other basic orientation to the natural orientation
4793 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4794 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4795 break;
4796 }
4797
4798 int[] oriMap = {
4799 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4800 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4801 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4802 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4803 };
4804 // Since the map starts at portrait, we need to offset if this device's natural orientation
4805 // is landscape.
4806 int indexOffset = 0;
4807 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4808 indexOffset = 1;
4809 }
4810 return oriMap[(d.getRotation() + indexOffset) % 4];
4811 }
Adam Cohen446e9402011-09-15 18:21:21 -07004812
Winson Chung4b919f82012-05-01 10:44:08 -07004813 public void lockScreenOrientation() {
Sunny Goyal4bbf4192014-11-11 12:23:59 -08004814 if (Utilities.isRotationEnabled(this)) {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004815 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
4816 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4817 .getConfiguration().orientation));
4818 } else {
4819 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4820 }
Winson Chung4b919f82012-05-01 10:44:08 -07004821 }
4822 }
4823 public void unlockScreenOrientation(boolean immediate) {
Sunny Goyal4bbf4192014-11-11 12:23:59 -08004824 if (Utilities.isRotationEnabled(this)) {
Winson Chung4b919f82012-05-01 10:44:08 -07004825 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004826 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004827 } else {
4828 mHandler.postDelayed(new Runnable() {
4829 public void run() {
4830 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4831 }
4832 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004833 }
Winson Chung4b919f82012-05-01 10:44:08 -07004834 }
Winson Chung400438b2011-01-16 17:53:48 -08004835 }
4836
Winson Chunge43a1e72014-01-15 10:33:02 -08004837 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004838 if (mLauncherCallbacks != null) {
4839 return mLauncherCallbacks.isLauncherPreinstalled();
4840 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004841 PackageManager pm = getPackageManager();
4842 try {
4843 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4844 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4845 return true;
4846 } else {
4847 return false;
4848 }
4849 } catch (NameNotFoundException e) {
4850 e.printStackTrace();
4851 return false;
4852 }
4853 }
4854
Adam Cohenea90f832014-05-21 15:03:34 -07004855 /**
4856 * This method indicates whether or not we should suggest default wallpaper dimensions
4857 * when our wallpaper cropper was not yet used to set a wallpaper.
4858 */
4859 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004860 if (mLauncherCallbacks != null) {
4861 return mLauncherCallbacks.overrideWallpaperDimensions();
4862 }
Adam Cohenea90f832014-05-21 15:03:34 -07004863 return true;
4864 }
4865
Adam Cohen432609a2014-03-13 17:03:22 -07004866 /**
4867 * To be overridden by subclasses to indicate that there is an activity to launch
4868 * before showing the standard launcher experience.
4869 */
4870 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004871 if (mLauncherCallbacks != null) {
4872 return mLauncherCallbacks.hasFirstRunActivity();
4873 }
Adam Cohen432609a2014-03-13 17:03:22 -07004874 return false;
4875 }
4876
4877 /**
4878 * To be overridden by subclasses to launch any first run activity
4879 */
4880 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004881 if (mLauncherCallbacks != null) {
4882 return mLauncherCallbacks.getFirstRunActivity();
4883 }
Adam Cohen432609a2014-03-13 17:03:22 -07004884 return null;
4885 }
4886
Winson Chunga6945242014-01-08 14:04:34 -08004887 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004888 return !ActivityManager.isRunningInTestHarness() &&
4889 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004890 }
4891
Adam Cohen4a9423d2014-03-28 14:22:31 -07004892 protected boolean hasRunFirstRunActivity() {
4893 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4894 }
4895
Adam Cohen432609a2014-03-13 17:03:22 -07004896 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004897 if (shouldRunFirstRunActivity() &&
4898 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004899 Intent firstRunIntent = getFirstRunActivity();
4900 if (firstRunIntent != null) {
4901 startActivity(firstRunIntent);
4902 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004903 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004904 }
4905 }
Adam Cohen432609a2014-03-13 17:03:22 -07004906 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004907 }
4908
4909 private void markFirstRunActivityShown() {
4910 SharedPreferences.Editor editor = mSharedPrefs.edit();
4911 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4912 editor.apply();
4913 }
4914
Adam Cohen432609a2014-03-13 17:03:22 -07004915 /**
4916 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4917 * screen that must be displayed and dismissed.
4918 */
4919 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004920 if (mLauncherCallbacks != null) {
4921 return mLauncherCallbacks.hasDismissableIntroScreen();
4922 }
Adam Cohen432609a2014-03-13 17:03:22 -07004923 return false;
4924 }
4925
4926 /**
4927 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4928 */
4929 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004930 if (mLauncherCallbacks != null) {
4931 return mLauncherCallbacks.getIntroScreen();
4932 }
Adam Cohen432609a2014-03-13 17:03:22 -07004933 return null;
4934 }
4935
4936 /**
4937 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4938 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4939 */
4940 private boolean shouldShowIntroScreen() {
4941 return hasDismissableIntroScreen() &&
4942 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4943 }
4944
4945 protected void showIntroScreen() {
4946 View introScreen = getIntroScreen();
4947 changeWallpaperVisiblity(false);
4948 if (introScreen != null) {
4949 mDragLayer.showOverlayView(introScreen);
4950 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004951 if (mLauncherOverlayContainer != null) {
4952 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4953 }
Adam Cohen432609a2014-03-13 17:03:22 -07004954 }
4955
4956 public void dismissIntroScreen() {
4957 markIntroScreenDismissed();
4958 if (showFirstRunActivity()) {
4959 // We delay hiding the intro view until the first run activity is showing. This
4960 // avoids a blip.
4961 mWorkspace.postDelayed(new Runnable() {
4962 @Override
4963 public void run() {
4964 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004965 if (mLauncherOverlayContainer != null) {
4966 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4967 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004968 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004969 }
4970 }, ACTIVITY_START_DELAY);
4971 } else {
4972 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004973 if (mLauncherOverlayContainer != null) {
4974 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4975 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004976 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004977 }
4978 changeWallpaperVisiblity(true);
4979 }
4980
4981 private void markIntroScreenDismissed() {
4982 SharedPreferences.Editor editor = mSharedPrefs.edit();
4983 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4984 editor.apply();
4985 }
4986
Sunny Goyal88d60f12014-09-08 03:47:29 -07004987 private void showFirstRunClings() {
4988 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4989 // on the device, then we always show the first run cling experience (or if there is no
4990 // launcher2). Otherwise, we prompt the user upon started for migration
4991 LauncherClings launcherClings = new LauncherClings(this);
4992 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4993 if (mModel.canMigrateFromOldLauncherDb(this)) {
4994 launcherClings.showMigrationCling();
4995 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004996 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004997 }
4998 }
4999 }
5000
Winson Chunga6945242014-01-08 14:04:34 -08005001 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08005002 if (mWorkspace != null) mWorkspace.setAlpha(1f);
5003 if (mHotseat != null) mHotseat.setAlpha(1f);
5004 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
5005 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08005006 }
5007
5008 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08005009 if (mWorkspace != null) mWorkspace.setAlpha(0f);
5010 if (mHotseat != null) mHotseat.setAlpha(0f);
5011 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
5012 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08005013 }
5014
Mathew Inwood72fbec12013-11-19 15:45:07 +00005015 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Kenny Guyed131872014-04-30 03:02:21 +01005016 // Called from search suggestion, not supported in other profiles.
5017 final UserHandleCompat myUser = UserHandleCompat.myUserHandle();
5018 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
5019 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(appLaunchIntent,
5020 myUser);
5021 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00005022 return null;
5023 }
Sunny Goyal4fbc3822015-02-18 16:46:50 -08005024 return new AppInfo(this, activityInfo, myUser, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00005025 }
5026
5027 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
5028 Bitmap icon) {
Kenny Guyed131872014-04-30 03:02:21 +01005029 // Called from search suggestion, not supported in other profiles.
5030 return createShortcutDragInfo(shortcutIntent, caption, icon,
5031 UserHandleCompat.myUserHandle());
5032 }
5033
5034 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
5035 Bitmap icon, UserHandleCompat user) {
Kenny Guyc2bd8102014-06-30 12:30:31 +01005036 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyd6fe5262014-07-21 17:11:41 +01005037 CharSequence contentDescription = userManager.getBadgedLabelForUser(caption, user);
Kenny Guyc2bd8102014-06-30 12:30:31 +01005038 return new ShortcutInfo(shortcutIntent, caption, contentDescription, icon, user);
Mathew Inwood72fbec12013-11-19 15:45:07 +00005039 }
5040
Mathew Inwoodb90860a2014-04-11 17:17:39 +01005041 protected void moveWorkspaceToDefaultScreen() {
5042 mWorkspace.moveToDefaultScreen(false);
5043 }
5044
Mathew Inwood72fbec12013-11-19 15:45:07 +00005045 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
5046 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07005047 mWorkspace.onExternalDragStartedWithItem(dragView);
5048 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00005049 }
5050
Anjali Koppalf5d29132014-02-28 13:33:27 -08005051 @Override
5052 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07005053 if (mLauncherCallbacks != null) {
5054 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
5055 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08005056 }
5057
Winson Chung80baf5a2010-08-09 16:03:15 -07005058 /**
Joe Onoratobe386092009-11-17 17:32:16 -08005059 * Prints out out state for debugging.
5060 */
5061 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04005062 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08005063 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08005064 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
5065 Log.d(TAG, "mRestoring=" + mRestoring);
5066 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
5067 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07005068 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08005069 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07005070
Winson Chung785d2eb2011-04-14 16:08:02 -07005071 if (mAppsCustomizeContent != null) {
5072 mAppsCustomizeContent.dumpState();
5073 }
Daniel Sandler325dc232013-06-05 22:57:57 -04005074 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08005075 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07005076
5077 @Override
5078 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
5079 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07005080 synchronized (sDumpLogs) {
5081 writer.println(" ");
5082 writer.println("Debug logs: ");
5083 for (int i = 0; i < sDumpLogs.size(); i++) {
5084 writer.println(" " + sDumpLogs.get(i));
5085 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07005086 }
Adam Cohen9211d422014-10-07 18:14:53 -07005087 if (mLauncherCallbacks != null) {
5088 mLauncherCallbacks.dump(prefix, fd, writer, args);
5089 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07005090 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005091
5092 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07005093 if (DEBUG_DUMP_LOG) {
5094 synchronized (sDumpLogs) {
5095 Log.d(TAG, "");
5096 Log.d(TAG, "*********************");
5097 Log.d(TAG, "Launcher debug logs: ");
5098 for (int i = 0; i < sDumpLogs.size(); i++) {
5099 Log.d(TAG, " " + sDumpLogs.get(i));
5100 }
5101 Log.d(TAG, "*********************");
5102 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07005103 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005104 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005105 }
5106
5107 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05005108 addDumpLog(tag, log, null, debugLog);
5109 }
5110
5111 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07005112 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05005113 if (e != null) {
5114 Log.d(tag, log, e);
5115 } else {
5116 Log.d(tag, log);
5117 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005118 }
Winson Chungede41292013-09-19 16:27:36 -07005119 if (DEBUG_DUMP_LOG) {
5120 sDateStamp.setTime(System.currentTimeMillis());
5121 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05005122 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
5123 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07005124 }
Winson Chungede41292013-09-19 16:27:36 -07005125 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005126 }
5127
Adam Cohen59400422014-03-05 18:07:04 -08005128 public static CustomAppWidget getCustomAppWidget(String name) {
5129 return sCustomAppWidgets.get(name);
5130 }
5131
5132 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
5133 return sCustomAppWidgets;
5134 }
5135
Winson Chungede41292013-09-19 16:27:36 -07005136 public void dumpLogsToLocalData() {
5137 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01005138 new AsyncTask<Void, Void, Void>() {
5139 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07005140 boolean success = false;
5141 sDateStamp.setTime(sRunStart);
5142 String FILENAME = sDateStamp.getMonth() + "-"
5143 + sDateStamp.getDay() + "_"
5144 + sDateStamp.getHours() + "-"
5145 + sDateStamp.getMinutes() + "_"
5146 + sDateStamp.getSeconds() + ".txt";
5147
5148 FileOutputStream fos = null;
5149 File outFile = null;
5150 try {
5151 outFile = new File(getFilesDir(), FILENAME);
5152 outFile.createNewFile();
5153 fos = new FileOutputStream(outFile);
5154 } catch (Exception e) {
5155 e.printStackTrace();
5156 }
5157 if (fos != null) {
5158 PrintWriter writer = new PrintWriter(fos);
5159
5160 writer.println(" ");
5161 writer.println("Debug logs: ");
5162 synchronized (sDumpLogs) {
5163 for (int i = 0; i < sDumpLogs.size(); i++) {
5164 writer.println(" " + sDumpLogs.get(i));
5165 }
5166 }
5167 writer.close();
5168 }
5169 try {
5170 if (fos != null) {
5171 fos.close();
5172 success = true;
5173 }
5174 } catch (IOException e) {
5175 e.printStackTrace();
5176 }
Michael Jurka43467462013-11-14 12:03:58 +01005177 return null;
Winson Chungede41292013-09-19 16:27:36 -07005178 }
Michael Jurka43467462013-11-14 12:03:58 +01005179 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07005180 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005181 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08005182}
Michael Jurka2763be32011-02-24 11:19:57 -08005183
Michael Jurkaabded662011-03-04 12:06:57 -08005184interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08005185 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07005186 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08005187 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08005188 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08005189 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08005190}
Dan Sandlerd5024042014-01-09 15:01:33 -05005191
5192interface DebugIntents {
5193 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
5194 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00005195}