blob: e134d1b4d077eb1aca680510bcb40d5495eb2091 [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;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070025import android.animation.ValueAnimator;
Adam Cohen0b395352014-06-09 22:54:36 +000026import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070029import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040030import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080032import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070033import android.appwidget.AppWidgetManager;
34import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080036import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080037import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040038import android.content.ComponentName;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080039import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040041import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070043import android.content.IntentFilter;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080046import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070048import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070050import android.content.res.Resources;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080051import android.database.ContentObserver;
Adam Cohen268c4752012-06-06 17:47:33 -070052import android.graphics.Bitmap;
53import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070054import android.graphics.Color;
Winson Chung5f8afe62013-08-12 16:19:28 -070055import android.graphics.Point;
Adam Cohen268c4752012-06-06 17:47:33 -070056import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070058import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040059import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070060import android.os.AsyncTask;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020062import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080063import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070064import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070065import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040066import android.os.SystemClock;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080067import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.text.Selection;
69import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070070import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.text.method.TextKeyListener;
Winson Chung892c74d2013-08-22 16:15:50 -070072import android.util.DisplayMetrics;
Joe Onorato7c312c12009-08-13 21:36:53 -070073import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070074import android.view.Display;
75import android.view.Gravity;
76import android.view.HapticFeedbackConstants;
77import android.view.KeyEvent;
78import android.view.LayoutInflater;
79import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070080import android.view.MotionEvent;
81import android.view.Surface;
82import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070083import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080084import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.view.ViewGroup;
86import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080087import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Sunny Goyal651077b2014-06-30 14:15:31 -070088import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070089import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080090import android.view.accessibility.AccessibilityEvent;
Adam Cohen9bfdb762014-07-21 17:44:06 -070091import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080092import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080093import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070094import android.widget.Advanceable;
95import android.widget.FrameLayout;
96import android.widget.ImageView;
97import android.widget.TextView;
98import android.widget.Toast;
Adam Cohen6c5891a2014-07-09 23:53:15 -070099
Sunny Goyal651077b2014-06-30 14:15:31 -0700100import com.android.launcher3.DropTarget.DragObject;
101import com.android.launcher3.PagedView.PageSwitchListener;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700102import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100103import com.android.launcher3.compat.LauncherActivityInfoCompat;
104import com.android.launcher3.compat.LauncherAppsCompat;
Sunny Goyale755d462014-07-22 13:48:29 -0700105import com.android.launcher3.compat.PackageInstallerCompat;
106import com.android.launcher3.compat.PackageInstallerCompat.PackageInstallInfo;
Kenny Guyed131872014-04-30 03:02:21 +0100107import com.android.launcher3.compat.UserHandleCompat;
108import com.android.launcher3.compat.UserManagerCompat;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700109
Adam Cohenc0dcf592011-06-01 15:30:43 -0700110import java.io.DataInputStream;
111import java.io.DataOutputStream;
Adam Cohen4caf2982013-08-20 18:54:31 -0700112import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700113import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700114import java.io.FileNotFoundException;
Adam Cohen4caf2982013-08-20 18:54:31 -0700115import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700116import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700117import java.io.PrintWriter;
Adam Cohen0b395352014-06-09 22:54:36 +0000118import java.lang.reflect.Field;
119import java.lang.reflect.InvocationTargetException;
120import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700121import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700122import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700123import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700124import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700125import java.util.HashMap;
Michael Jurkad7c28052012-04-27 15:43:36 -0700126import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000127import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700128
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800129/**
130 * Default launcher application.
131 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100132public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700133 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700134 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800135 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700136 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800137
Daniel Sandlerf061f822013-06-27 13:59:36 -0400138 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400139 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700140 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400141 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700142 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700143
Dan Sandlerd5024042014-01-09 15:01:33 -0500144 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
145
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800146 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700147 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800148 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700149 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700150 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151
Michael Jurka8b805b12012-04-18 14:23:14 -0700152 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700153 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700154
Mathew Inwood876a8462013-06-14 14:12:41 +0100155 /**
156 * IntentStarter uses request codes starting with this. This must be greater than all activity
157 * request codes used internally.
158 */
159 protected static final int REQUEST_LAST = 100;
160
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800161 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
162
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800163 static final int SCREEN_COUNT = 5;
164 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800165
Romain Guy98d01652009-06-30 16:21:04 -0700166 private static final String PREFERENCES = "launcher.preferences";
Michael Jurka0a457bf2012-11-19 14:05:05 -0800167 // To turn on these properties, type
168 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
169 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher_force_rotate";
170 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800171 static final String DISABLE_ALL_APPS_PROPERTY = "launcher_noallapps";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800172
Winson Chung2672ff92012-05-04 16:22:30 -0700173 // The Intent extra that defines whether to ignore the launch animation
174 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400175 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700176
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177 // Type: int
178 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700179 // Type: int
180 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700182 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
183 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
185 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800187 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700188 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800189 // Type: boolean
190 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
191 // Type: long
192 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700193 // Type: int
194 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
195 // Type: int
196 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
197 // Type: parcelable
198 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000199 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800200 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000201 // Type: int[]
202 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800203
Adam Cohen432609a2014-03-13 17:03:22 -0700204 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800205 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
206
Adam Cohen3ed316a2014-07-23 18:21:20 -0700207 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
208 static final String ACTION_FIRST_LOAD_COMPLETE =
209 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
210
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100211 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700212 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100213 "com.android.launcher.toolbar_search_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700214 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100215 "com.android.launcher.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700216
Adam Cohen39a06042013-07-19 14:30:12 -0700217 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700218 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700219
Winson Chunga6945242014-01-08 14:04:34 -0800220 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
221
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700222 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700223 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700224 private State mState = State.WORKSPACE;
225 private AnimatorSet mStateAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700226
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700227 private boolean mIsSafeModeEnabled;
228
Joe Onorato9c1289c2009-08-17 11:03:03 -0400229 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700230 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
231 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700232 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800233
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800234 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800235 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800236
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000237 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
238 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
239
Winson Chunga2413752012-04-03 14:22:34 -0700240 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700241 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
242 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Winson Chung64359a52013-07-08 17:17:08 -0700243 private static int NEW_APPS_ANIMATION_DELAY = 500;
Adam Cohen63f1ec02014-08-12 09:23:13 -0700244 private static final int SINGLE_FRAME_DELAY = 16;
Winson Chunga2413752012-04-03 14:22:34 -0700245
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800246 private final BroadcastReceiver mCloseSystemDialogsReceiver
247 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800248 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
249
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800250 private LayoutInflater mInflater;
251
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800252 private Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700253 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800254 private View mPageIndicators;
Michael Jurkab737ee62011-11-15 15:57:22 -0800255 private DragLayer mDragLayer;
256 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700257 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700258
Sunny Goyalffe83f12014-08-14 17:39:34 -0700259 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700260 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700261
Michael Jurkac9d95c52011-08-29 14:03:34 -0700262 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700263 private AppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800264 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700265
Michael Jurka0280c3b2010-09-17 15:00:07 -0700266 private int[] mTmpAddItemCellCoordinates = new int[2];
267
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800268 private FolderInfo mFolderInfo;
269
Winson Chung3d503fb2011-07-13 17:25:49 -0700270 private Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800271 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700272
Michael Jurka838a4ca2011-02-07 13:33:06 -0800273 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700274
Winson Chungc51db6a2011-10-05 11:44:49 -0700275 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700276 private AppsCustomizeTabHost mAppsCustomizeTabHost;
277 private AppsCustomizePagedView mAppsCustomizeContent;
278 private boolean mAutoAdvanceRunning = false;
Adam Cohen24ce0b32014-01-14 16:18:14 -0800279 private View mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800280
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800281 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700282 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
283 // scroll issues (because the workspace may not have been measured yet) and extra work.
284 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
285 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800286
287 private SpannableStringBuilder mDefaultKeySsb = null;
288
Joe Onorato9c1289c2009-08-17 11:03:03 -0400289 private boolean mWorkspaceLoading = true;
290
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800291 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800292 private boolean mRestoring;
293 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700294 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800295
Michael Jurka1e2f4652013-07-08 18:03:46 -0700296 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700297 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
298
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800299 private Bundle mSavedInstanceState;
300
Joe Onorato9c1289c2009-08-17 11:03:03 -0400301 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800302 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800303 private boolean mUserPresent = true;
304 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700305 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800306 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400307
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700308 private static LocaleConfiguration sLocaleConfiguration = null;
309
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700310 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700311
Adam Cohen61f560d2013-09-30 15:58:20 -0700312 private View.OnTouchListener mHapticFeedbackTouchListener;
313
Adam Cohended9f8d2010-11-03 13:25:16 -0700314 // Related to the auto-advancing of widgets
315 private final int ADVANCE_MSG = 1;
316 private final int mAdvanceInterval = 20000;
317 private final int mAdvanceStagger = 250;
318 private long mAutoAdvanceSentTime;
319 private long mAutoAdvanceTimeLeft = -1;
320 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
321 new HashMap<View, AppWidgetProviderInfo>();
322
Winson Chung400438b2011-01-16 17:53:48 -0800323 // Determines how long to wait after a rotation before restoring the screen orientation to
324 // match the sensor state.
325 private final int mRestoreScreenOrientationDelay = 500;
326
Michael Jurka4ef207b2010-11-29 17:05:45 -0800327 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700328 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
329 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
Winson Chungd64a6662013-09-30 11:06:59 -0700330
Craig Mautner360310b2012-10-26 15:13:08 -0700331 private Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700332
Adam Cohen1462de32012-07-24 22:34:36 -0700333 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700334 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700335
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700336 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700337 static Date sDateStamp = new Date();
338 static DateFormat sDateFormat =
339 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
340 static long sRunStart = System.currentTimeMillis();
341 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700342
Winson Chung46353de2012-02-16 14:05:10 -0800343 // We only want to get the SharedPreferences once since it does an FS stat each time we get
344 // it from the context.
345 private SharedPreferences mSharedPrefs;
346
Adam Cohene25af792013-06-06 23:08:25 -0700347 private static ArrayList<ComponentName> mIntentsOnWorkspaceFromUpgradePath = null;
348
Winson Chungf0c6ae02012-03-21 16:10:31 -0700349 // Holds the page that we need to animate to, and the icon views that we need to animate up
350 // when we scroll to that page on resume.
Adam Cohen268c4752012-06-06 17:47:33 -0700351 private ImageView mFolderIconImageView;
352 private Bitmap mFolderIconBitmap;
353 private Canvas mFolderIconCanvas;
354 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700355
Michael Jurkaddd62e92011-02-16 17:49:14 -0800356 private BubbleTextView mWaitingForResume;
357
Michael Jurkac1f5d262011-09-30 19:32:27 -0700358 private Runnable mBuildLayersRunnable = new Runnable() {
359 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700360 if (mWorkspace != null) {
361 mWorkspace.buildPageHardwareLayers();
362 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700363 }
364 };
365
Adam Cohendb364c32014-05-20 14:23:40 -0700366 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800367
Michael Jurka7267fa52013-09-26 15:29:57 -0700368 public static boolean sForceEnableRotation = isPropertyEnabled(FORCE_ENABLE_ROTATION_PROPERTY);
Michael Jurka0a457bf2012-11-19 14:05:05 -0800369
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800370 private static class PendingAddArguments {
371 int requestCode;
372 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700373 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700374 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800375 int cellX;
376 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700377 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800378 }
379
Daniel Sandlerff02d492013-08-05 02:12:05 -0400380 private Stats mStats;
381
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700382 FocusIndicatorView mFocusHandler;
383
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800384 static boolean isPropertyEnabled(String propertyName) {
Michael Jurka0a457bf2012-11-19 14:05:05 -0800385 return Log.isLoggable(propertyName, Log.VERBOSE);
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700386 }
387
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800388 @Override
389 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700390 if (DEBUG_STRICT_MODE) {
391 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
392 .detectDiskReads()
393 .detectDiskWrites()
394 .detectNetwork() // or .detectAll() for all detectable problems
395 .penaltyLog()
396 .build());
397 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
398 .detectLeakedSqlLiteObjects()
399 .detectLeakedClosableObjects()
400 .penaltyLog()
401 .penaltyDeath()
402 .build());
403 }
404
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800405 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400406
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400407 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400408 LauncherAppState app = LauncherAppState.getInstance();
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700409 LauncherAppState.getLauncherProvider().setLauncherProviderChangeListener(this);
Winson Chung5f8afe62013-08-12 16:19:28 -0700410 // Determine the dynamic grid properties
411 Point smallestSize = new Point();
412 Point largestSize = new Point();
413 Point realSize = new Point();
414 Display display = getWindowManager().getDefaultDisplay();
415 display.getCurrentSizeRange(smallestSize, largestSize);
416 display.getRealSize(realSize);
Winson Chung892c74d2013-08-22 16:15:50 -0700417 DisplayMetrics dm = new DisplayMetrics();
418 display.getMetrics(dm);
Winson Chung6e1c0d32013-10-25 15:24:24 -0700419
Winson Chung5f8afe62013-08-12 16:19:28 -0700420 // Lazy-initialize the dynamic grid
421 DeviceProfile grid = app.initDynamicGrid(this,
422 Math.min(smallestSize.x, smallestSize.y),
423 Math.min(largestSize.x, largestSize.y),
Winson Chung892c74d2013-08-22 16:15:50 -0700424 realSize.x, realSize.y,
425 dm.widthPixels, dm.heightPixels);
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 updateGlobalIcons();
491
492 // On large interfaces, we want the screen to auto-rotate based on the current orientation
493 unlockScreenOrientation(true);
Winson Chungaf40f202013-09-18 18:26:31 -0700494
Adam Cohen432609a2014-03-13 17:03:22 -0700495 if (shouldShowIntroScreen()) {
496 showIntroScreen();
497 } else {
498 showFirstRunActivity();
499 }
500
Winson Chunge43a1e72014-01-15 10:33:02 -0800501 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
502 // on the device, then we always show the first run cling experience (or if there is no
503 // launcher2). Otherwise, we prompt the user upon started for migration
Sunny Goyal424418b2014-08-22 16:09:37 -0700504 LauncherClings launcherClings = new LauncherClings(this);
505 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Winson Chunge43a1e72014-01-15 10:33:02 -0800506 if (mModel.canMigrateFromOldLauncherDb(this)) {
Sunny Goyal424418b2014-08-22 16:09:37 -0700507 launcherClings.showMigrationCling();
Winson Chunge43a1e72014-01-15 10:33:02 -0800508 } else {
Sunny Goyal424418b2014-08-22 16:09:37 -0700509 launcherClings.showLongPressCling(true);
Winson Chunge43a1e72014-01-15 10:33:02 -0800510 }
Winson Chunga6945242014-01-08 14:04:34 -0800511 }
Adam Cohenf9426d52012-06-04 17:26:21 -0700512 }
513
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700514 @Override
515 public void onLauncherProviderChange() { }
516
Winson Chung98ca0f72013-07-29 12:58:51 -0700517 /** To be overriden by subclasses to hint to Launcher that we have custom content */
518 protected boolean hasCustomContentToLeft() {
519 return false;
520 }
521
Dave Hawkeya8881582013-09-17 15:55:33 -0600522 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500523 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600524 * {@link #addToCustomContentPage}. This will only be invoked if
525 * {@link #hasCustomContentToLeft()} is {@code true}.
526 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500527 protected void populateCustomContentContainer() {
Dave Hawkeya8881582013-09-17 15:55:33 -0600528 }
529
530 /**
531 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
532 * ensure the custom content page is added or removed if necessary.
533 */
534 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600535 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600536 // Not bound yet, wait for bindScreens to be called.
537 return;
538 }
539
540 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
541 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500542 mWorkspace.createCustomContentContainer();
543 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600544 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
545 mWorkspace.removeCustomContentPage();
546 }
547 }
548
Adam Cohenf9426d52012-06-04 17:26:21 -0700549 private void updateGlobalIcons() {
Winson Chungc51db6a2011-10-05 11:44:49 -0700550 boolean searchVisible = false;
551 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800552 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700553 int coi = getCurrentOrientationIndexForGlobalIcons();
Adam Cohena00673c2014-08-14 12:57:28 -0700554 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null) {
Winson Chungc51db6a2011-10-05 11:44:49 -0700555 searchVisible = updateGlobalSearchIcon();
556 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700557 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700558 if (sGlobalSearchIcon[coi] != null) {
559 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700560 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700561 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700562 if (sVoiceSearchIcon[coi] != null) {
563 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700564 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700565 }
Winson Chungadf0c182012-08-23 14:59:07 -0700566 if (mSearchDropTargetBar != null) {
567 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
568 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800569 }
Romain Guycbb89e42009-06-08 15:52:54 -0700570
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 {
629 in = new DataInputStream(context.openFileInput(PREFERENCES));
630 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 {
651 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
652 out.writeUTF(configuration.locale);
653 out.writeInt(configuration.mcc);
654 out.writeInt(configuration.mnc);
655 out.flush();
656 } catch (FileNotFoundException e) {
657 // Ignore
658 } catch (IOException e) {
659 //noinspection ResultOfMethodCallIgnored
660 context.getFileStreamPath(PREFERENCES).delete();
661 } finally {
662 if (out != null) {
663 try {
664 out.close();
665 } catch (IOException e) {
666 // Ignore
667 }
668 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800669 }
670 }
671
Anton Hanssona2f665f2013-09-26 12:18:32 +0100672 public Stats getStats() {
673 return mStats;
674 }
675
Bjorn Bringertc459e522013-06-07 19:36:01 +0100676 public LayoutInflater getInflater() {
677 return mInflater;
678 }
679
Winson Chung36a62fe2012-05-06 18:04:42 -0700680 boolean isDraggingEnabled() {
681 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
682 // that is subsequently removed from the workspace in startBinding().
683 return !mModel.isLoadingWorkspace();
684 }
685
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800686 static int getScreen() {
687 synchronized (sLock) {
688 return sScreen;
689 }
690 }
691
692 static void setScreen(int screen) {
693 synchronized (sLock) {
694 sScreen = screen;
695 }
696 }
697
Winson Chung557d6ed2011-07-08 15:34:52 -0700698 /**
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000699 * Copied from View -- the View version of the method isn't called
700 * anywhere else in our process and only exists for API level 17+,
701 * so it's ok to keep our own version with no API requirement.
702 */
703 public static int generateViewId() {
704 for (;;) {
705 final int result = sNextGeneratedId.get();
706 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
707 int newValue = result + 1;
708 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
709 if (sNextGeneratedId.compareAndSet(result, newValue)) {
710 return result;
711 }
712 }
713 }
714
715 public int getViewIdForItem(ItemInfo info) {
716 // This cast is safe given the > 2B range for int.
717 int itemId = (int) info.id;
718 if (mItemIdToViewId.containsKey(itemId)) {
719 return mItemIdToViewId.get(itemId);
720 }
721 int viewId = generateViewId();
722 mItemIdToViewId.put(itemId, viewId);
723 return viewId;
724 }
725
726 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700727 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
728 * a configuration step, this allows the proper animations to run after other transitions.
729 */
Adam Cohendb364c32014-05-20 14:23:40 -0700730 private long completeAdd(PendingAddArguments args) {
731
732 long screenId = ensurePendingDropLayoutExists(args.screenId);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800733 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800734 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700735 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700736 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700737 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800738 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700739 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700740 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700741 case REQUEST_RECONFIGURE_APPWIDGET:
742 completeRestoreAppWidget(args.appWidgetId);
743 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800744 }
Michael Jurka27614d22012-04-02 06:40:22 -0700745 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
746 // if you turned the screen off and then back while in All Apps, Launcher would not
747 // return to the workspace. Clearing mAddInfo.container here fixes this issue
748 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700749 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800750 }
751
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800752 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700753 protected void onActivityResult(
754 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700755 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700756 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700757 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800758 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700759
Adam Cohenad4e15c2013-10-17 16:21:35 -0700760 Runnable exitSpringLoaded = new Runnable() {
761 @Override
762 public void run() {
763 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
764 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
765 }
766 };
767
Michael Jurka8b805b12012-04-18 14:23:14 -0700768 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700769 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700770 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
771 if (resultCode == RESULT_CANCELED) {
772 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700773 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700774 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700775 } else if (resultCode == RESULT_OK) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700776 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
777 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700778 }
779 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200780 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
781 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
782 mWorkspace.exitOverviewMode(false);
783 }
784 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700785 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200786
Adam Cohened66b2b2012-01-23 17:28:51 -0800787 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
788 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700789
Adam Cohendb364c32014-05-20 14:23:40 -0700790 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800791 // We have special handling for widgets
792 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800793 final int appWidgetId;
794 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
795 : -1;
796 if (widgetId < 0) {
797 appWidgetId = pendingAddWidgetId;
798 } else {
799 appWidgetId = widgetId;
800 }
801
Adam Cohenad4e15c2013-10-17 16:21:35 -0700802 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800803 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700804 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
805 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700806 result = RESULT_CANCELED;
807 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700808 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700809 @Override
810 public void run() {
811 exitSpringLoadedDragModeDelayed(false, 0, null);
812 }
813 };
Adam Cohendb364c32014-05-20 14:23:40 -0700814 if (workspaceLocked) {
815 // No need to remove the empty screen if we're mid-binding, as the
816 // the bind will not add the empty screen.
817 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
818 } else {
819 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
820 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
821 }
Winson Chung5aaab772012-04-27 15:24:02 -0700822 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700823 if (!workspaceLocked) {
824 mPendingAddInfo.screenId = ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
825 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 Cohened66b2b2012-01-23 17:28:51 -0800881 }
882
Adam Cohendb364c32014-05-20 14:23:40 -0700883 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
884 appWidgetId, ItemInfo info) {
885 PendingAddArguments args = new PendingAddArguments();
886 args.requestCode = requestCode;
887 args.intent = data;
888 args.container = info.container;
889 args.screenId = info.screenId;
890 args.cellX = info.cellX;
891 args.cellY = info.cellY;
892 args.appWidgetId = appWidgetId;
893 return args;
894 }
895
896 /**
897 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
898 *
899 * @param screenId the screen id to check
900 * @return the new screen, or screenId if it exists
901 */
902 private long ensurePendingDropLayoutExists(long screenId) {
903 CellLayout dropLayout =
904 (CellLayout) mWorkspace.getScreenWithId(screenId);
905 if (dropLayout == null) {
906 // it's possible that the add screen was removed because it was
907 // empty and a re-bind occurred
908 mWorkspace.addExtraEmptyScreen();
909 return mWorkspace.commitExtraEmptyScreen();
910 } else {
911 return screenId;
912 }
913 }
914
Adam Cohened66b2b2012-01-23 17:28:51 -0800915 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700916 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700917 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800918 Runnable onCompleteRunnable = null;
919 int animationType = 0;
920
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700921 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800922 if (resultCode == RESULT_OK) {
923 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
924 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700925 mPendingAddWidgetInfo);
926 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800927 onCompleteRunnable = new Runnable() {
928 @Override
929 public void run() {
930 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700931 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700932 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
933 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800934 }
935 };
936 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800937 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800938 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800939 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700940 if (mDragLayer.getAnimatedView() != null) {
941 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
942 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
943 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700944 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700945 // The animated view may be null in the case of a rotation during widget configuration
946 onCompleteRunnable.run();
947 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800948 }
949
950 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700951 protected void onStop() {
952 super.onStop();
953 FirstFrameAnimatorHelper.setIsVisible(false);
954 }
955
956 @Override
957 protected void onStart() {
958 super.onStart();
959 FirstFrameAnimatorHelper.setIsVisible(true);
960 }
961
962 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800963 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200964 long startTime = 0;
965 if (DEBUG_RESUME_TIME) {
966 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400967 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200968 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800969 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700970
Winson Chung4a2afa32012-07-19 14:53:05 -0700971 // Restore the previous launcher state
972 if (mOnResumeState == State.WORKSPACE) {
973 showWorkspace(false);
974 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
Winson Chung07e045c62013-11-06 15:49:51 -0800975 showAllApps(false, mAppsCustomizeContent.getContentType(), false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700976 }
977 mOnResumeState = State.NONE;
978
Craig Mautner360310b2012-10-26 15:13:08 -0700979 // Background was set to gradient in onPause(), restore to black if in all apps.
980 setWorkspaceBackground(mState == State.WORKSPACE);
981
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800982 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700983 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700984 setWorkspaceLoading(true);
Derek Prothro7aff3992013-12-10 14:00:37 -0500985 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400986 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700987 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800988 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700989 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200990 // We might have postponed some bind calls until onResume (see waitUntilResume) --
991 // execute them here
992 long startTimeCallbacks = 0;
993 if (DEBUG_RESUME_TIME) {
994 startTimeCallbacks = System.currentTimeMillis();
995 }
996
997 if (mAppsCustomizeContent != null) {
998 mAppsCustomizeContent.setBulkBind(true);
999 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001000 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1001 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001002 }
1003 if (mAppsCustomizeContent != null) {
1004 mAppsCustomizeContent.setBulkBind(false);
1005 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001006 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001007 if (DEBUG_RESUME_TIME) {
1008 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1009 (System.currentTimeMillis() - startTimeCallbacks));
1010 }
Michael Jurka447bf842013-05-15 14:52:15 +02001011 }
Michael Jurka54554252013-08-01 12:52:23 +02001012 if (mOnResumeCallbacks.size() > 0) {
1013 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1014 mOnResumeCallbacks.get(i).run();
1015 }
1016 mOnResumeCallbacks.clear();
1017 }
Winson Chunge4e50662012-01-23 14:45:13 -08001018
1019 // Reset the pressed state of icons that were locked in the press state while activities
1020 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001021 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001022 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001023 mWaitingForResume.setStayPressed(false);
1024 }
Winson Chung82963d52013-10-09 11:20:57 -07001025
Adam Cohen06dff352012-06-01 17:17:08 -07001026 // It is possible that widgets can receive updates while launcher is not in the foreground.
1027 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1028 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1029 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001030 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001031
Winson Chung780fe592013-09-26 14:48:44 -07001032 // Process any items that were added while Launcher was away.
1033 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1034
Winson Chung5841efa2013-09-30 18:06:44 -07001035 // Update the voice search button proxy
1036 updateVoiceButtonProxyVisible(false);
1037
Adam Cohenf9426d52012-06-04 17:26:21 -07001038 // Again, as with the above scenario, it's possible that one or more of the global icons
1039 // were updated in the wrong orientation.
1040 updateGlobalIcons();
Michael Jurka447bf842013-05-15 14:52:15 +02001041 if (DEBUG_RESUME_TIME) {
1042 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1043 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001044
1045 if (mWorkspace.getCustomContentCallbacks() != null) {
1046 // If we are resuming and the custom content is the current page, we call onShow().
1047 // It is also poassible that onShow will instead be called slightly after first layout
1048 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1049 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001050 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001051 }
1052 }
Adam Cohenedaaa302013-10-01 17:33:27 -07001053 mWorkspace.updateInteractionForState();
Adam Cohen53805212013-10-01 10:39:23 -07001054 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001055
1056 PackageInstallerCompat.getInstance(this).onResume();
Adam Cohen06dff352012-06-01 17:17:08 -07001057 }
1058
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001059 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001060 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001061 // Ensure that items added to Launcher are queued until Launcher returns
1062 InstallShortcutReceiver.enableInstallQueue();
Sunny Goyale755d462014-07-22 13:48:29 -07001063 PackageInstallerCompat.getInstance(this).onPause();
Winson Chung997a9232013-07-24 15:33:46 -07001064
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001065 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001066 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001067 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001068 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001069
1070 // We call onHide() aggressively. The custom content callbacks should be able to
1071 // debounce excess onHide calls.
1072 if (mWorkspace.getCustomContentCallbacks() != null) {
1073 mWorkspace.getCustomContentCallbacks().onHide();
1074 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001075 }
Romain Guycbb89e42009-06-08 15:52:54 -07001076
Adam Cohenbffe7452013-07-22 18:21:45 -07001077 QSBScroller mQsbScroller = new QSBScroller() {
1078 int scrollY = 0;
1079
1080 @Override
1081 public void setScrollY(int scroll) {
1082 scrollY = scroll;
1083
1084 if (mWorkspace.isOnOrMovingToCustomContent()) {
1085 mSearchDropTargetBar.setTranslationY(- scrollY);
Mark Brophyd7dc6812013-09-20 17:27:32 +01001086 getQsbBar().setTranslationY(-scrollY);
Adam Cohenbffe7452013-07-22 18:21:45 -07001087 }
1088 }
1089 };
1090
1091 public void resetQSBScroll() {
1092 mSearchDropTargetBar.animate().translationY(0).start();
Mark Brophyd7dc6812013-09-20 17:27:32 +01001093 getQsbBar().animate().translationY(0).start();
Adam Cohenbffe7452013-07-22 18:21:45 -07001094 }
1095
1096 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001097 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1098 // by a onResume or by scrolling otherwise.
1099 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001100
1101 // Custom content is completely hidden
1102 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001103
1104 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1105 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001106
1107 // Indicates whether the user is allowed to scroll away from the custom content.
1108 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001109 }
1110
Jorim Jaggid017f882014-01-14 17:08:48 -08001111 protected boolean hasSettings() {
1112 return false;
1113 }
1114
Adam Cohenbffe7452013-07-22 18:21:45 -07001115 public interface QSBScroller {
1116 public void setScrollY(int scrollY);
1117 }
1118
Winson Chung98ca0f72013-07-29 12:58:51 -07001119 public QSBScroller addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001120 CustomContentCallbacks callbacks, String description) {
1121 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohenbffe7452013-07-22 18:21:45 -07001122 return mQsbScroller;
Adam Cohen66a01fd2013-06-11 12:48:00 -07001123 }
1124
Adam Cohenedb40762013-07-18 16:45:45 -07001125 // The custom content needs to offset its content to account for the QSB
1126 public int getTopOffsetForCustomContent() {
1127 return mWorkspace.getPaddingTop();
1128 }
1129
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001130 @Override
1131 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001132 // Flag the loader to stop early before switching
1133 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -07001134 if (mAppsCustomizeContent != null) {
1135 mAppsCustomizeContent.surrender();
1136 }
Romain Guy13c2e7b2010-03-10 19:45:00 -08001137 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001138 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001139
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001140 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001141 @Override
1142 public void onWindowFocusChanged(boolean hasFocus) {
1143 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001144 mHasFocus = hasFocus;
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001145 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001146
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001147 private boolean acceptFilter() {
1148 final InputMethodManager inputManager = (InputMethodManager)
1149 getSystemService(Context.INPUT_METHOD_SERVICE);
1150 return !inputManager.isFullscreenMode();
1151 }
1152
1153 @Override
1154 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001155 final int uniChar = event.getUnicodeChar();
1156 final boolean handled = super.onKeyDown(keyCode, event);
1157 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1158 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001159 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1160 keyCode, event);
1161 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001162 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001163 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001164 // showSearchDialog()
1165 // If there are multiple keystrokes before the search dialog takes focus,
1166 // onSearchRequested() will be called for every keystroke,
1167 // but it is idempotent, so it's fine.
1168 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001169 }
1170 }
1171
Joe Onorato8a9625e2010-01-28 15:55:35 -08001172 // Eat the long press event so the keyboard doesn't come up.
1173 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1174 return true;
1175 }
1176
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001177 return handled;
1178 }
1179
Karl Rosaen138a0412009-04-23 19:00:21 -07001180 private String getTypedText() {
1181 return mDefaultKeySsb.toString();
1182 }
1183
1184 private void clearTypedText() {
1185 mDefaultKeySsb.clear();
1186 mDefaultKeySsb.clearSpans();
1187 Selection.setSelection(mDefaultKeySsb, 0);
1188 }
1189
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001190 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001191 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1192 * State
1193 */
1194 private static State intToState(int stateOrdinal) {
1195 State state = State.WORKSPACE;
1196 final State[] stateValues = State.values();
1197 for (int i = 0; i < stateValues.length; i++) {
1198 if (stateValues[i].ordinal() == stateOrdinal) {
1199 state = stateValues[i];
1200 break;
1201 }
1202 }
1203 return state;
1204 }
1205
1206 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001207 * Restores the previous state, if it exists.
1208 *
1209 * @param savedState The previous state.
1210 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001211 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001212 private void restoreState(Bundle savedState) {
1213 if (savedState == null) {
1214 return;
1215 }
1216
Michael Jurka883f55b2010-10-21 15:47:14 -07001217 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -07001218 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -07001219 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001220 }
1221
Adam Cohen21cd0022013-10-09 18:57:02 -07001222 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1223 PagedView.INVALID_RESTORE_PAGE);
1224 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001225 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001226 }
1227
Winson Chung3d503fb2011-07-13 17:25:49 -07001228 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001229 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001230
Winson Chung3d503fb2011-07-13 17:25:49 -07001231 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1232 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001233 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001234 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1235 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001236 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1237 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
1238 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001239 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001240 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001241 mRestoring = true;
1242 }
1243
1244 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
1245 if (renameFolder) {
1246 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001247 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001248 mRestoring = true;
1249 }
Winson Chunga12a2502010-12-20 14:41:35 -08001250
Winson Chung785d2eb2011-04-14 16:08:02 -07001251 // Restore the AppsCustomize tab
1252 if (mAppsCustomizeTabHost != null) {
1253 String curTab = savedState.getString("apps_customize_currentTab");
1254 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001255 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -07001256 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -07001257 mAppsCustomizeContent.loadAssociatedPages(
1258 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -07001259 }
1260
Winson Chung5afbf7b2011-07-25 11:53:08 -07001261 int currentIndex = savedState.getInt("apps_customize_currentIndex");
1262 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001263 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001264 mItemIdToViewId = (HashMap<Integer, Integer>)
1265 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001266 }
1267
1268 /**
1269 * Finds all the views we need and configure them properly.
1270 */
1271 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001272 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001273
Craig Mautner360310b2012-10-26 15:13:08 -07001274 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001275 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001276 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1277 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001278 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001279 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001280
John Spurlock77e1f472013-09-11 10:09:51 -04001281 mLauncherView.setSystemUiVisibility(
1282 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001283 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001284
Winson Chung4c98d922011-05-31 16:50:48 -07001285 // Setup the drag layer
1286 mDragLayer.setup(this, dragController);
1287
Winson Chung3d503fb2011-07-13 17:25:49 -07001288 // Setup the hotseat
1289 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1290 if (mHotseat != null) {
1291 mHotseat.setup(this);
Winson Chung11a1a532013-09-13 11:14:45 -07001292 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001293 }
1294
Jorim Jaggid017f882014-01-14 17:08:48 -08001295 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Adam Cohen61f560d2013-09-30 15:58:20 -07001296 View widgetButton = findViewById(R.id.widget_button);
1297 widgetButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001298 @Override
1299 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001300 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001301 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001302 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001303 }
1304 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001305 widgetButton.setOnTouchListener(getHapticFeedbackTouchListener());
1306
1307 View wallpaperButton = findViewById(R.id.wallpaper_button);
1308 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001309 @Override
1310 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001311 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001312 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001313 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001314 }
1315 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001316 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1317
1318 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001319 if (hasSettings()) {
1320 settingsButton.setOnClickListener(new OnClickListener() {
1321 @Override
1322 public void onClick(View arg0) {
1323 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001324 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001325 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001326 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001327 });
1328 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1329 } else {
1330 settingsButton.setVisibility(View.GONE);
1331 FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) widgetButton.getLayoutParams();
1332 lp.gravity = Gravity.END | Gravity.TOP;
1333 widgetButton.requestLayout();
1334 }
1335
Adam Cohendbdff6b2013-09-18 19:09:15 -07001336 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001337
Winson Chung4c98d922011-05-31 16:50:48 -07001338 // Setup the workspace
1339 mWorkspace.setHapticFeedbackEnabled(false);
1340 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001341 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001342 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001343
Winson Chungf0ea4d32011-06-06 14:27:16 -07001344 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001345 mSearchDropTargetBar = (SearchDropTargetBar)
1346 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001347
Winson Chungf0ea4d32011-06-06 14:27:16 -07001348 // Setup AppsCustomize
Craig Mautner360310b2012-10-26 15:13:08 -07001349 mAppsCustomizeTabHost = (AppsCustomizeTabHost) findViewById(R.id.apps_customize_pane);
Winson Chungf0ea4d32011-06-06 14:27:16 -07001350 mAppsCustomizeContent = (AppsCustomizePagedView)
1351 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
1352 mAppsCustomizeContent.setup(this, dragController);
Craig Mautner360310b2012-10-26 15:13:08 -07001353
Winson Chung3d503fb2011-07-13 17:25:49 -07001354 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001355 dragController.setDragScoller(mWorkspace);
1356 dragController.setScrollView(mDragLayer);
1357 dragController.setMoveTarget(mWorkspace);
1358 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001359 if (mSearchDropTargetBar != null) {
1360 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -08001361 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001362
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001363 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001364 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001365 mWeightWatcher = new WeightWatcher(this);
1366 mWeightWatcher.setAlpha(0.5f);
1367 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001368 new FrameLayout.LayoutParams(
1369 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001370 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001371 Gravity.BOTTOM)
1372 );
Adam Cohen39a06042013-07-19 14:30:12 -07001373
1374 boolean show = shouldShowWeightWatcher();
1375 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001376 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001377 }
1378
1379 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001380 * Sets the all apps button. This method is called from {@link Hotseat}.
1381 */
1382 public void setAllAppsButton(View allAppsButton) {
1383 mAllAppsButton = allAppsButton;
1384 }
1385
1386 public View getAllAppsButton() {
1387 return mAllAppsButton;
1388 }
1389
1390 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001391 * Creates a view representing a shortcut.
1392 *
1393 * @param info The data structure describing the shortcut.
1394 *
1395 * @return A View inflated from R.layout.application.
1396 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001397 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001398 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -07001399 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001400 }
1401
1402 /**
1403 * Creates a view representing a shortcut inflated from the specified resource.
1404 *
1405 * @param layoutResId The id of the XML layout used to create the shortcut.
1406 * @param parent The group the shortcut belongs to.
1407 * @param info The data structure describing the shortcut.
1408 *
1409 * @return A View inflated from layoutResId.
1410 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001411 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -08001412 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07001413 favorite.applyFromShortcutInfo(info, mIconCache, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001414 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001415 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001416 return favorite;
1417 }
1418
1419 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001420 * Add a shortcut to the workspace.
1421 *
1422 * @param data The intent describing the shortcut.
1423 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001424 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001425 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001426 int cellY) {
1427 int[] cellXY = mTmpAddItemCellCoordinates;
1428 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001429 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001430
Michael Jurkad3ef3062010-11-23 16:23:58 -08001431 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001432
Adam Cohen558baaf2011-08-15 15:22:57 -07001433 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -08001434 if (info == null) {
1435 return;
1436 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001437 final View view = createShortcut(info);
1438
Adam Cohenfbba09b2011-07-18 21:43:05 -07001439 // First we check if we already know the exact location where we want to add this item.
1440 if (cellX >= 0 && cellY >= 0) {
1441 cellXY[0] = cellX;
1442 cellXY[1] = cellY;
1443 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001444
1445 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001446 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001447 true, null,null)) {
1448 return;
1449 }
1450 DragObject dragObject = new DragObject();
1451 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001452 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1453 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001454 return;
1455 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001456 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001457 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001458 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001459 foundCellSpan = (result != null);
1460 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001461 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001462 }
1463
1464 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001465 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001466 return;
1467 }
1468
Adam Cohendcd297f2013-06-18 13:13:40 -07001469 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001470
1471 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001472 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001473 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001474 }
1475 }
1476
Adam Cohen2f093b62012-04-30 18:59:53 -07001477 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1478 int minHeight) {
1479 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001480 // We want to account for the extra amount of padding that we are adding to the widget
1481 // to ensure that it gets the full amount of space that it has requested
1482 int requiredWidth = minWidth + padding.left + padding.right;
1483 int requiredHeight = minHeight + padding.top + padding.bottom;
Winson Chung66700732013-08-20 16:56:15 -07001484 return CellLayout.rectToCell(requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001485 }
1486
Adam Cohen2f093b62012-04-30 18:59:53 -07001487 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1488 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001489 }
1490
Adam Cohen2f093b62012-04-30 18:59:53 -07001491 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1492 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001493 }
1494
Adam Cohen2f093b62012-04-30 18:59:53 -07001495 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1496 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001497 }
1498
Adam Cohen2f093b62012-04-30 18:59:53 -07001499 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1500 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001501 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001502 }
1503
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001504 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001505 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001506 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001507 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001508 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001509 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001510 private void completeAddAppWidget(final int appWidgetId, long container, long screenId,
Adam Cohened66b2b2012-01-23 17:28:51 -08001511 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1512 if (appWidgetInfo == null) {
1513 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1514 }
Romain Guycbb89e42009-06-08 15:52:54 -07001515
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001516 // Calculate the grid spans needed to fit this widget
Adam Cohendcd297f2013-06-18 13:13:40 -07001517 CellLayout layout = getCellLayout(container, screenId);
Adam Cohen09353862011-07-14 16:10:03 -07001518
Adam Cohen2f093b62012-04-30 18:59:53 -07001519 int[] minSpanXY = getMinSpanForWidget(this, appWidgetInfo);
1520 int[] spanXY = getSpanForWidget(this, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001521
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001522 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001523 // We have saved the position to which the widget was dragged-- this really only matters
1524 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001525 int[] cellXY = mTmpAddItemCellCoordinates;
1526 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001527 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001528 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001529 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1530 cellXY[0] = mPendingAddInfo.cellX;
1531 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001532 spanXY[0] = mPendingAddInfo.spanX;
1533 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001534 foundCellSpan = true;
1535 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001536 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001537 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001538 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1539 spanXY[1], cellXY, finalSpan);
1540 spanXY[0] = finalSpan[0];
1541 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001542 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001543 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001544 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001545 }
1546
Michael Jurka0280c3b2010-09-17 15:00:07 -07001547 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001548 if (appWidgetId != -1) {
1549 // Deleting an app widget ID is a void call but writes to disk before returning
1550 // to the caller...
Michael Jurka43467462013-11-14 12:03:58 +01001551 new AsyncTask<Void, Void, Void>() {
1552 public Void doInBackground(Void ... args) {
Winson Chungf7640c82011-02-28 13:47:29 -08001553 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Michael Jurka43467462013-11-14 12:03:58 +01001554 return null;
Winson Chungf7640c82011-02-28 13:47:29 -08001555 }
Michael Jurka43467462013-11-14 12:03:58 +01001556 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Winson Chungf7640c82011-02-28 13:47:29 -08001557 }
Winson Chung93eef082012-03-23 15:59:27 -07001558 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001559 return;
1560 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001561
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001562 // Build Launcher-specific widget info and save to database
Winson Chung11a49372012-04-27 15:12:38 -07001563 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId,
1564 appWidgetInfo.provider);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001565 launcherInfo.spanX = spanXY[0];
1566 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001567 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1568 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001569 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001570
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001571 LauncherModel.addItemToDatabase(this, launcherInfo,
Adam Cohendcd297f2013-06-18 13:13:40 -07001572 container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001573
1574 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001575 if (hostView == null) {
1576 // Perform actual inflation because we're live
1577 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1578 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1579 } else {
1580 // The AppWidgetHostView has already been inflated and instantiated
1581 launcherInfo.hostView = hostView;
1582 }
Romain Guycbb89e42009-06-08 15:52:54 -07001583
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001584 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001585 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001586 launcherInfo.notifyWidgetSizeChanged(this);
1587
Adam Cohendcd297f2013-06-18 13:13:40 -07001588 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001589 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001590
1591 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001592 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001593 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001594 }
Romain Guycbb89e42009-06-08 15:52:54 -07001595
Adam Cohended9f8d2010-11-03 13:25:16 -07001596 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1597 @Override
1598 public void onReceive(Context context, Intent intent) {
1599 final String action = intent.getAction();
1600 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1601 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001602 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001603 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001604
Winson Chungc100e8e2011-08-09 16:02:43 -07001605 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001606 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001607 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001608 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001609 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001610 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1611 mUserPresent = true;
1612 updateRunning();
Dan Sandlerd5024042014-01-09 15:01:33 -05001613 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1614 mModel.resetLoadedState(false, true);
1615 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1616 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1617 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1618 mModel.resetLoadedState(false, true);
1619 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1620 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1621 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001622 } else if (LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED.equals(action)
1623 || LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
1624 getModel().forceReload();
Adam Cohended9f8d2010-11-03 13:25:16 -07001625 }
1626 }
1627 };
1628
1629 @Override
1630 public void onAttachedToWindow() {
1631 super.onAttachedToWindow();
1632
1633 // Listen for broadcasts related to user-presence
1634 final IntentFilter filter = new IntentFilter();
1635 filter.addAction(Intent.ACTION_SCREEN_OFF);
1636 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001637 // For handling managed profiles
1638 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED);
1639 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED);
Dan Sandlerd5024042014-01-09 15:01:33 -05001640 if (ENABLE_DEBUG_INTENTS) {
1641 filter.addAction(DebugIntents.DELETE_DATABASE);
1642 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1643 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001644 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001645 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001646 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001647 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001648 mVisible = true;
1649 }
1650
Adam Cohen0b395352014-06-09 22:54:36 +00001651 /**
1652 * Sets up transparent navigation and status bars in LMP.
1653 * This method is a no-op for other platform versions.
1654 */
1655 @TargetApi(19)
1656 private void setupTransparentSystemBarsForLmp() {
1657 // TODO(sansid): use the APIs directly when compiling against L sdk.
1658 // Currently we use reflection to access the flags and the API to set the transparency
1659 // on the System bars.
1660 if (Utilities.isLmp()) {
1661 try {
1662 getWindow().getAttributes().systemUiVisibility |=
1663 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1664 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1665 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1666 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1667 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1668 Field drawsSysBackgroundsField = WindowManager.LayoutParams.class.getField(
1669 "FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS");
1670 getWindow().addFlags(drawsSysBackgroundsField.getInt(null));
1671
1672 Method setStatusBarColorMethod =
1673 Window.class.getDeclaredMethod("setStatusBarColor", int.class);
1674 Method setNavigationBarColorMethod =
1675 Window.class.getDeclaredMethod("setNavigationBarColor", int.class);
1676 setStatusBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1677 setNavigationBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1678 } catch (NoSuchFieldException e) {
1679 Log.w(TAG, "NoSuchFieldException while setting up transparent bars");
1680 } catch (NoSuchMethodException ex) {
1681 Log.w(TAG, "NoSuchMethodException while setting up transparent bars");
1682 } catch (IllegalAccessException e) {
1683 Log.w(TAG, "IllegalAccessException while setting up transparent bars");
1684 } catch (IllegalArgumentException e) {
1685 Log.w(TAG, "IllegalArgumentException while setting up transparent bars");
1686 } catch (InvocationTargetException e) {
1687 Log.w(TAG, "InvocationTargetException while setting up transparent bars");
1688 } finally {}
1689 }
1690 }
1691
Adam Cohended9f8d2010-11-03 13:25:16 -07001692 @Override
1693 public void onDetachedFromWindow() {
1694 super.onDetachedFromWindow();
1695 mVisible = false;
1696
Adam Cohend113e0c2010-11-11 10:48:05 -08001697 if (mAttached) {
1698 unregisterReceiver(mReceiver);
1699 mAttached = false;
1700 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001701 updateRunning();
1702 }
1703
1704 public void onWindowVisibilityChanged(int visibility) {
1705 mVisible = visibility == View.VISIBLE;
1706 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001707 // The following code used to be in onResume, but it turns out onResume is called when
1708 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1709 // is a more appropriate event to handle
1710 if (mVisible) {
1711 mAppsCustomizeTabHost.onWindowVisible();
1712 if (!mWorkspaceLoading) {
1713 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001714 // We want to let Launcher draw itself at least once before we force it to build
1715 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001716 // apps is nice and speedy.
1717 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001718 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001719 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001720 if (mStarted) return;
1721 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001722 // We delay the layer building a bit in order to give
1723 // other message processing a time to run. In particular
1724 // this avoids a delay in hiding the IME if it was
1725 // currently shown, because doing that may involve
1726 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001727 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001728 final ViewTreeObserver.OnDrawListener listener = this;
1729 mWorkspace.post(new Runnable() {
1730 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001731 if (mWorkspace != null &&
1732 mWorkspace.getViewTreeObserver() != null) {
1733 mWorkspace.getViewTreeObserver().
1734 removeOnDrawListener(listener);
1735 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001736 }
1737 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001738 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001739 }
1740 });
1741 }
1742 clearTypedText();
1743 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001744 }
1745
1746 private void sendAdvanceMessage(long delay) {
1747 mHandler.removeMessages(ADVANCE_MSG);
1748 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1749 mHandler.sendMessageDelayed(msg, delay);
1750 mAutoAdvanceSentTime = System.currentTimeMillis();
1751 }
1752
1753 private void updateRunning() {
1754 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1755 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1756 mAutoAdvanceRunning = autoAdvanceRunning;
1757 if (autoAdvanceRunning) {
1758 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1759 sendAdvanceMessage(delay);
1760 } else {
1761 if (!mWidgetsToAdvance.isEmpty()) {
1762 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1763 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1764 }
1765 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001766 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001767 }
1768 }
1769 }
1770
1771 private final Handler mHandler = new Handler() {
1772 @Override
1773 public void handleMessage(Message msg) {
1774 if (msg.what == ADVANCE_MSG) {
1775 int i = 0;
1776 for (View key: mWidgetsToAdvance.keySet()) {
1777 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1778 final int delay = mAdvanceStagger * i;
1779 if (v instanceof Advanceable) {
1780 postDelayed(new Runnable() {
1781 public void run() {
1782 ((Advanceable) v).advance();
1783 }
1784 }, delay);
1785 }
1786 i++;
1787 }
1788 sendAdvanceMessage(mAdvanceInterval);
1789 }
1790 }
1791 };
1792
1793 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001794 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001795 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1796 if (v instanceof Advanceable) {
1797 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001798 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001799 updateRunning();
1800 }
1801 }
1802
1803 void removeWidgetToAutoAdvance(View hostView) {
1804 if (mWidgetsToAdvance.containsKey(hostView)) {
1805 mWidgetsToAdvance.remove(hostView);
1806 updateRunning();
1807 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001808 }
1809
Joe Onorato9c1289c2009-08-17 11:03:03 -04001810 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001811 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001812 launcherInfo.hostView = null;
1813 }
1814
Winson Chung93eef082012-03-23 15:59:27 -07001815 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1816 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1817 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001818 }
1819
Winson Chunga6945242014-01-08 14:04:34 -08001820 public DragLayer getDragLayer() {
1821 return mDragLayer;
1822 }
1823
1824 public Workspace getWorkspace() {
1825 return mWorkspace;
1826 }
1827
1828 public Hotseat getHotseat() {
1829 return mHotseat;
1830 }
1831
Jorim Jaggid017f882014-01-14 17:08:48 -08001832 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001833 return mOverviewPanel;
1834 }
1835
1836 public SearchDropTargetBar getSearchBar() {
1837 return mSearchDropTargetBar;
1838 }
1839
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001840 public LauncherAppWidgetHost getAppWidgetHost() {
1841 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001842 }
Romain Guycbb89e42009-06-08 15:52:54 -07001843
Winson Chunga9abd0e2010-10-27 17:18:37 -07001844 public LauncherModel getModel() {
1845 return mModel;
1846 }
1847
Winson Chunga6945242014-01-08 14:04:34 -08001848 protected SharedPreferences getSharedPrefs() {
1849 return mSharedPrefs;
1850 }
1851
Bjorn Bringertc459e522013-06-07 19:36:01 +01001852 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001853 getWindow().closeAllPanels();
1854
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001855 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001856 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001857 }
1858
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001859 @Override
1860 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001861 long startTime = 0;
1862 if (DEBUG_RESUME_TIME) {
1863 startTime = System.currentTimeMillis();
1864 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001865 super.onNewIntent(intent);
1866
1867 // Close the menu
1868 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001869 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001870 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001871
Adam Cohened307df2013-10-02 09:37:31 -07001872 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1873 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1874 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001875
Adam Cohen6fecd412013-10-02 17:41:50 -07001876 if (mWorkspace == null) {
1877 // Can be cases where mWorkspace is null, this prevents a NPE
1878 return;
1879 }
1880 Folder openFolder = mWorkspace.getOpenFolder();
1881 // In all these cases, only animate if we're already on home
1882 mWorkspace.exitWidgetResizeMode();
1883 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Coppa120b8e2013-11-12 16:26:04 +00001884 openFolder == null && shouldMoveToDefaultScreenOnHomeIntent()) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001885 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001886 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001887
Adam Cohen6fecd412013-10-02 17:41:50 -07001888 closeFolder();
1889 exitSpringLoadedDragMode();
1890
1891 // If we are already on home, then just animate back to the workspace,
1892 // otherwise, just wait until onResume to set the state back to Workspace
1893 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001894 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001895 } else {
1896 mOnResumeState = State.WORKSPACE;
1897 }
1898
1899 final View v = getWindow().peekDecorView();
1900 if (v != null && v.getWindowToken() != null) {
1901 InputMethodManager imm = (InputMethodManager)getSystemService(
1902 INPUT_METHOD_SERVICE);
1903 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1904 }
1905
1906 // Reset the apps customize page
Winson Chunge7e97e62013-12-02 17:02:50 -08001907 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001908 mAppsCustomizeTabHost.reset();
1909 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001910
1911 onHomeIntent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001912 }
Adam Cohened307df2013-10-02 09:37:31 -07001913
Michael Jurka447bf842013-05-15 14:52:15 +02001914 if (DEBUG_RESUME_TIME) {
1915 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1916 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001917 }
1918
Adam Coppa120b8e2013-11-12 16:26:04 +00001919 /**
1920 * Override point for subclasses to prevent movement to the default screen when the home
1921 * button is pressed. Used (for example) in GEL, to prevent movement during a search.
1922 */
1923 protected boolean shouldMoveToDefaultScreenOnHomeIntent() {
1924 return true;
1925 }
1926
1927 /**
1928 * Override point for subclasses to provide custom behaviour for when a home intent is fired.
1929 */
1930 protected void onHomeIntent() {
1931 // Do nothing
1932 }
1933
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001934 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001935 public void onRestoreInstanceState(Bundle state) {
1936 super.onRestoreInstanceState(state);
1937 for (int page: mSynchronouslyBoundPages) {
1938 mWorkspace.restoreInstanceStateForChild(page);
1939 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001940 }
1941
1942 @Override
1943 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001944 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001945 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1946 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001947 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001948 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001949
Michael Jurka883f55b2010-10-21 15:47:14 -07001950 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001951 // We close any open folder since it will not be re-opened, and we need to make sure
1952 // this state is reflected.
1953 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001954
Adam Cohendcd297f2013-06-18 13:13:40 -07001955 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001956 mWaitingForResult) {
1957 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001958 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001959 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1960 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001961 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1962 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1963 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001964 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001965 }
1966
1967 if (mFolderInfo != null && mWaitingForResult) {
1968 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1969 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1970 }
Michael Jurka946ad472010-07-09 18:05:18 -07001971
Winson Chung785d2eb2011-04-14 16:08:02 -07001972 // Save the current AppsCustomize tab
1973 if (mAppsCustomizeTabHost != null) {
Winson Chung07e045c62013-11-06 15:49:51 -08001974 AppsCustomizePagedView.ContentType type = mAppsCustomizeContent.getContentType();
1975 String currentTabTag = mAppsCustomizeTabHost.getTabTagForContentType(type);
Winson Chung785d2eb2011-04-14 16:08:02 -07001976 if (currentTabTag != null) {
1977 outState.putString("apps_customize_currentTab", currentTabTag);
1978 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001979 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1980 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001981 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001982 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001983 }
1984
1985 @Override
1986 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001987 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001988
Winson Chunge7a03942011-08-05 15:05:12 -07001989 // Remove all pending runnables
1990 mHandler.removeMessages(ADVANCE_MSG);
1991 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001992 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001993
Winson Chungcd2b0142011-06-08 16:02:26 -07001994 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001995 LauncherAppState app = (LauncherAppState.getInstance());
Winson Chungcd2b0142011-06-08 16:02:26 -07001996 mModel.stopLoader();
1997 app.setLauncher(null);
1998
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001999 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002000 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002001 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002002 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002003 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002004 mAppWidgetHost = null;
2005
2006 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002007
2008 TextKeyListener.getInstance().release();
2009
Winson Chung81b52252012-08-27 15:34:29 -07002010 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
2011 // to prevent leaking Launcher activities on orientation change.
2012 if (mModel != null) {
2013 mModel.unbindItemInfosAndClearQueuedBindRunnables();
2014 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002015
2016 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002017 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002018
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002019 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002020 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002021 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002022 mWorkspace = null;
2023 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002024
Sunny Goyale755d462014-07-22 13:48:29 -07002025 PackageInstallerCompat.getInstance(this).onStop();
Michael Jurka2ecf9952012-06-18 12:52:28 -07002026 LauncherAnimUtils.onDestroyActivity();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002027 }
2028
Adam Cohena9cf38f2011-05-02 15:36:58 -07002029 public DragController getDragController() {
2030 return mDragController;
2031 }
2032
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002033 @Override
2034 public void startActivityForResult(Intent intent, int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002035 if (requestCode >= 0) {
2036 setWaitingForResult(true);
2037 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002038 super.startActivityForResult(intent, requestCode);
2039 }
2040
Winson Chung70d72102011-08-12 11:24:35 -07002041 /**
2042 * Indicates that we want global search for this activity by setting the globalSearch
2043 * argument for {@link #startSearch} to true.
2044 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002045 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002046 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002047 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002048
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002049 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07002050
Karl Rosaen138a0412009-04-23 19:00:21 -07002051 if (initialQuery == null) {
2052 // Use any text typed in the launcher as the initial query
2053 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002054 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002055 if (appSearchData == null) {
2056 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002057 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002058 }
Winson Chungadf0c182012-08-23 14:59:07 -07002059 Rect sourceBounds = new Rect();
2060 if (mSearchDropTargetBar != null) {
2061 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2062 }
Romain Guycbb89e42009-06-08 15:52:54 -07002063
Bjorn Bringertc459e522013-06-07 19:36:01 +01002064 startSearch(initialQuery, selectInitialQuery,
2065 appSearchData, sourceBounds);
2066 }
2067
2068 public void startSearch(String initialQuery,
2069 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Michael Jurkaa33411c2012-06-14 16:18:21 -07002070 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002071 appSearchData, sourceBounds);
Michael Jurkaa33411c2012-06-14 16:18:21 -07002072 }
2073
2074 /**
2075 * Starts the global search activity. This code is a copied from SearchManager
2076 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002077 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002078 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002079 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002080 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2081 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2082 if (globalSearchActivity == null) {
2083 Log.w(TAG, "No global search activity found.");
2084 return;
2085 }
2086 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2087 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2088 intent.setComponent(globalSearchActivity);
2089 // Make sure that we have a Bundle to put source in
2090 if (appSearchData == null) {
2091 appSearchData = new Bundle();
2092 } else {
2093 appSearchData = new Bundle(appSearchData);
2094 }
2095 // Set source to package name of app that starts global search, if not set already.
2096 if (!appSearchData.containsKey("source")) {
2097 appSearchData.putString("source", getPackageName());
2098 }
2099 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2100 if (!TextUtils.isEmpty(initialQuery)) {
2101 intent.putExtra(SearchManager.QUERY, initialQuery);
2102 }
2103 if (selectInitialQuery) {
2104 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2105 }
2106 intent.setSourceBounds(sourceBounds);
2107 try {
2108 startActivity(intent);
2109 } catch (ActivityNotFoundException ex) {
2110 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2111 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002112 }
2113
Yura4f93ec62014-02-04 14:15:21 +00002114 public boolean isOnCustomContent() {
2115 return mWorkspace.isOnOrMovingToCustomContent();
2116 }
2117
Winson Chung70d72102011-08-12 11:24:35 -07002118 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002119 public boolean onPrepareOptionsMenu(Menu menu) {
2120 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002121 if (!isOnCustomContent()) {
2122 // Close any open folders
2123 closeFolder();
2124 // Stop resizing any widgets
2125 mWorkspace.exitWidgetResizeMode();
2126 if (!mWorkspace.isInOverviewMode()) {
2127 // Show the overview mode
2128 showOverviewMode(true);
2129 } else {
2130 showWorkspace(true);
2131 }
Winson Chunge0298742014-01-17 12:03:00 -08002132 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002133 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002134 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002135
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002136 @Override
2137 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002138 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002139 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002140 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002141 }
2142
Joe Onorato9c1289c2009-08-17 11:03:03 -04002143 public boolean isWorkspaceLocked() {
2144 return mWorkspaceLoading || mWaitingForResult;
2145 }
2146
Adam Cohen517a7f52014-03-01 12:12:59 -08002147 public boolean isWorkspaceLoading() {
2148 return mWorkspaceLoading;
2149 }
2150
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002151 private void setWorkspaceLoading(boolean value) {
2152 boolean isLocked = isWorkspaceLocked();
2153 mWorkspaceLoading = value;
2154 if (isLocked != isWorkspaceLocked()) {
2155 onWorkspaceLockedChanged();
2156 }
2157 }
2158
2159 private void setWaitingForResult(boolean value) {
2160 boolean isLocked = isWorkspaceLocked();
2161 mWaitingForResult = value;
2162 if (isLocked != isWorkspaceLocked()) {
2163 onWorkspaceLockedChanged();
2164 }
2165 }
2166
2167 protected void onWorkspaceLockedChanged() { }
2168
Michael Jurka0280c3b2010-09-17 15:00:07 -07002169 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002170 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002171 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002172 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2173 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002174 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002175 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002176 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002177
Adam Cohenad4e15c2013-10-17 16:21:35 -07002178 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2179 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo) {
2180 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2181 }
2182
2183 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2184 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo, int
2185 delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002186 if (appWidgetInfo.configure != null) {
2187 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002188 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002189
Bjorn Bringert7984c942009-12-09 15:38:25 +00002190 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002191 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2192 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2193
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002194 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002195 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002196 Runnable onComplete = new Runnable() {
2197 @Override
2198 public void run() {
2199 // Exit spring loaded mode if necessary after adding the widget
2200 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2201 null);
2202 }
2203 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002204 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002205 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002206 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002207 }
2208 }
Romain Guycbb89e42009-06-08 15:52:54 -07002209
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002210 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002211 // Close any folders that may be open.
2212 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002213 mWorkspace.moveToCustomContentScreen(animate);
2214 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002215 /**
2216 * Process a shortcut drop.
2217 *
2218 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002219 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002220 * @param cell The cell it should be added to, optional
2221 * @param position The location on the screen where it was dropped, optional
2222 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002223 void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
Winson Chung3d503fb2011-07-13 17:25:49 -07002224 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002225 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002226 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002227 mPendingAddInfo.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002228 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002229
2230 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002231 mPendingAddInfo.cellX = cell[0];
2232 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002233 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002234
2235 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2236 createShortcutIntent.setComponent(componentName);
2237 processShortcut(createShortcutIntent);
2238 }
2239
Adam Cohenfbba09b2011-07-18 21:43:05 -07002240 /**
2241 * Process a widget drop.
2242 *
2243 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002244 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002245 * @param cell The cell it should be added to, optional
2246 * @param position The location on the screen where it was dropped, optional
2247 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002248 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
Adam Cohend41fbf52012-02-16 23:53:59 -08002249 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002250 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002251 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002252 mPendingAddInfo.screenId = info.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002253 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08002254 mPendingAddInfo.minSpanX = info.minSpanX;
2255 mPendingAddInfo.minSpanY = info.minSpanY;
2256
Adam Cohenfbba09b2011-07-18 21:43:05 -07002257 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002258 mPendingAddInfo.cellX = cell[0];
2259 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002260 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002261 if (span != null) {
2262 mPendingAddInfo.spanX = span[0];
2263 mPendingAddInfo.spanY = span[1];
2264 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002265
Adam Cohened66b2b2012-01-23 17:28:51 -08002266 AppWidgetHostView hostView = info.boundWidget;
2267 int appWidgetId;
2268 if (hostView != null) {
2269 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002270 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08002271 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002272 // In this case, we either need to start an activity to get permission to bind
2273 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002274 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002275 Bundle options = info.bindOptions;
2276
Sunny Goyalffe83f12014-08-14 17:39:34 -07002277 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2278 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002279 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002280 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002281 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002282 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002283 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2284 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2285 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002286 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2287 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002288 // TODO: we need to make sure that this accounts for the options bundle.
2289 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002290 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2291 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002292 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002293 }
2294
Joe Onoratodeb98af2010-02-19 14:59:39 -08002295 void processShortcut(Intent intent) {
Kenny Guyed131872014-04-30 03:02:21 +01002296 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_SHORTCUT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002297 }
2298
Winson Chung24ab2f12010-09-16 14:10:47 -07002299 void processWallpaper(Intent intent) {
2300 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
2301 }
2302
Adam Cohendcd297f2013-06-18 13:13:40 -07002303 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002304 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002305 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002306 folderInfo.title = getText(R.string.folder_name);
2307
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002308 // Update the model
Adam Cohendcd297f2013-06-18 13:13:40 -07002309 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, cellX, cellY,
Winson Chung3d503fb2011-07-13 17:25:49 -07002310 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002311 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002312
2313 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002314 FolderIcon newFolder =
2315 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002316 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002317 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002318 // Force measure the new folder icon
2319 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2320 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002321 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002322 }
Romain Guycbb89e42009-06-08 15:52:54 -07002323
Joe Onorato9c1289c2009-08-17 11:03:03 -04002324 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002325 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002326 }
2327
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002328 protected ComponentName getWallpaperPickerComponent() {
Michael Jurka7ad868b2013-12-12 15:04:25 +01002329 return new ComponentName(getPackageName(), LauncherWallpaperPickerActivity.class.getName());
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002330 }
2331
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002332 /**
2333 * Registers various content observers. The current implementation registers
2334 * only a favorites observer to keep track of the favorites applications.
2335 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002336 private void registerContentObservers() {
2337 ContentResolver resolver = getContentResolver();
2338 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
2339 true, mWidgetObserver);
2340 }
2341
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002342 @Override
2343 public boolean dispatchKeyEvent(KeyEvent event) {
2344 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2345 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002346 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002347 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002348 case KeyEvent.KEYCODE_VOLUME_DOWN:
Michael Jurka0a457bf2012-11-19 14:05:05 -08002349 if (isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002350 dumpState();
2351 return true;
2352 }
2353 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002354 }
2355 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2356 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002357 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002358 return true;
2359 }
2360 }
2361
2362 return super.dispatchKeyEvent(event);
2363 }
2364
Joe Onorato88ec0992009-11-19 13:16:06 -08002365 @Override
2366 public void onBackPressed() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002367 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07002368 if (mAppsCustomizeContent.getContentType() ==
2369 AppsCustomizePagedView.ContentType.Applications) {
2370 showWorkspace(true);
2371 } else {
2372 showOverviewMode(true);
2373 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07002374 } else if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002375 mWorkspace.exitOverviewMode(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002376 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002377 Folder openFolder = mWorkspace.getOpenFolder();
2378 if (openFolder.isEditingName()) {
2379 openFolder.dismissEditingName();
2380 } else {
2381 closeFolder();
2382 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002383 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002384 mWorkspace.exitWidgetResizeMode();
2385
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002386 // Back button is a no-op here, but give at least some feedback for the button press
2387 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002388 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002389 }
2390
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002391 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002392 * Re-listen when widgets are reset.
2393 */
2394 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002395 if (mAppWidgetHost != null) {
2396 mAppWidgetHost.startListening();
2397 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002398 }
2399
2400 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002401 * Launches the intent referred by the clicked shortcut.
2402 *
2403 * @param v The view representing the clicked shortcut.
2404 */
2405 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002406 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2407 // view has detached (it's possible for this to happen if the view is removed mid touch).
2408 if (v.getWindowToken() == null) {
2409 return;
2410 }
2411
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002412 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002413 return;
2414 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002415
Adam Cohen1697b792013-09-17 19:08:21 -07002416 if (v instanceof Workspace) {
2417 if (mWorkspace.isInOverviewMode()) {
2418 mWorkspace.exitOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002419 }
2420 return;
2421 }
2422
2423 if (v instanceof CellLayout) {
2424 if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002425 mWorkspace.exitOverviewMode(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002426 }
2427 }
2428
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002429 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002430 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002431 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002432 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002433 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002434 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002435 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002436 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002437 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002438 } else if (tag instanceof AppInfo) {
2439 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002440 } else if (tag instanceof LauncherAppWidgetInfo) {
2441 if (v instanceof PendingAppWidgetHostView) {
2442 onClickPendingWidget((PendingAppWidgetHostView) v);
2443 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002444 }
2445 }
2446
Sunny Goyal508da152014-08-14 10:53:27 -07002447 public void onClickPagedViewIcon(View v) {
2448 startAppShortcutOrInfoActivity(v);
2449 }
2450
Michael Jurka0e260592010-06-30 17:07:39 -07002451 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002452 return false;
2453 }
2454
Michael Jurkaaf442092010-06-10 17:01:57 -07002455 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002456 * Event handler for the app widget view which has not fully restored.
2457 */
2458 public void onClickPendingWidget(PendingAppWidgetHostView v) {
2459 if (v.isReadyForClickSetup()) {
2460 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
2461 int widgetId = info.appWidgetId;
2462 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2463 if (appWidgetInfo != null) {
2464 mPendingAddWidgetInfo = appWidgetInfo;
2465 mPendingAddInfo.copyFrom(info);
2466 mPendingAddWidgetId = widgetId;
2467
Sunny Goyalffe83f12014-08-14 17:39:34 -07002468 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2469 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002470 }
2471 }
2472 }
2473
2474 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002475 * Event handler for the search button
2476 *
2477 * @param v The view that was clicked.
2478 */
2479 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002480 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2481
Amith Yamasania135ba82011-08-09 17:42:01 -07002482 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002483 }
2484
2485 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002486 * Event handler for the voice button
2487 *
2488 * @param v The view that was clicked.
2489 */
2490 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002491 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002492
Bjorn Bringertc459e522013-06-07 19:36:01 +01002493 startVoice();
2494 }
2495
2496 public void startVoice() {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002497 try {
2498 final SearchManager searchManager =
2499 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2500 ComponentName activityName = searchManager.getGlobalSearchActivity();
2501 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002502 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002503 if (activityName != null) {
2504 intent.setPackage(activityName.getPackageName());
2505 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002506 startActivity(null, intent, "onClickVoiceButton");
Michael Jurkaae65ee32012-04-30 11:45:54 -07002507 } catch (ActivityNotFoundException e) {
2508 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002509 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002510 startActivitySafely(null, intent, "onClickVoiceButton");
2511 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002512 }
2513
2514 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002515 * Event handler for the "grid" button that appears on the home screen, which
2516 * enters all apps mode.
2517 *
2518 * @param v The view that was clicked.
2519 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002520 protected void onClickAllAppsButton(View v) {
2521 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
2522 if (isAllAppsVisible()) {
2523 showWorkspace(true);
2524 } else {
2525 showAllApps(true, AppsCustomizePagedView.ContentType.Applications, false);
2526 }
2527 }
2528
2529 /**
2530 * Event handler for an app shortcut click.
2531 *
2532 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2533 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002534 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002535 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2536 Object tag = v.getTag();
2537 if (!(tag instanceof ShortcutInfo)) {
2538 throw new IllegalArgumentException("Input must be a Shortcut");
2539 }
2540
2541 // Open shortcut
2542 final ShortcutInfo shortcut = (ShortcutInfo) tag;
2543 final Intent intent = shortcut.intent;
2544
2545 // Check for special shortcuts
2546 if (intent.getComponent() != null) {
2547 final String shortcutClass = intent.getComponent().getClassName();
2548
2549 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2550 MemoryDumpActivity.startDump(this);
2551 return;
2552 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2553 toggleShowWeightWatcher();
2554 return;
2555 }
2556 }
2557
Chris Wren40c5ed32014-06-24 18:24:23 -04002558 // Check for abandoned promise
2559 if (shortcut.isAbandoned() && v instanceof BubbleTextView) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002560 AlertDialog.Builder builder = new AlertDialog.Builder(this);
2561 builder.setTitle(R.string.abandoned_promises_title);
Chris Wren803a4be2014-07-01 16:52:49 -04002562 builder.setMessage(R.string.abandoned_promise_explanation);
Chris Wren40c5ed32014-06-24 18:24:23 -04002563 builder.setPositiveButton(R.string.abandoned_search,
2564 new DialogInterface.OnClickListener() {
2565 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002566 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002567 }
2568 }
2569 );
Chris Wren40c5ed32014-06-24 18:24:23 -04002570 builder.setNeutralButton(R.string.abandoned_clean_this,
2571 new DialogInterface.OnClickListener() {
2572 public void onClick(DialogInterface dialog, int id) {
2573 final BubbleTextView bubble = (BubbleTextView) v;
2574 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2575 mWorkspace.removeAbandonedPromise(bubble, user);
2576 }
2577 });
2578 builder.create().show();
2579 return;
2580 }
2581
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002582 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002583 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002584 }
2585
Sunny Goyal508da152014-08-14 10:53:27 -07002586 private void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002587 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002588 final ShortcutInfo shortcut;
2589 final Intent intent;
2590 if (tag instanceof ShortcutInfo) {
2591 shortcut = (ShortcutInfo) tag;
2592 intent = shortcut.intent;
2593 int[] pos = new int[2];
2594 v.getLocationOnScreen(pos);
2595 intent.setSourceBounds(new Rect(pos[0], pos[1],
2596 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002597
Sunny Goyal508da152014-08-14 10:53:27 -07002598 } else if (tag instanceof AppInfo) {
2599 shortcut = null;
2600 intent = ((AppInfo) tag).intent;
2601 } else {
2602 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2603 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002604
2605 boolean success = startActivitySafely(v, intent, tag);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002606 mStats.recordLaunch(intent, shortcut);
2607
2608 if (success && v instanceof BubbleTextView) {
2609 mWaitingForResume = (BubbleTextView) v;
2610 mWaitingForResume.setStayPressed(true);
2611 }
2612 }
2613
2614 /**
2615 * Event handler for a folder icon click.
2616 *
2617 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2618 */
2619 protected void onClickFolderIcon(View v) {
2620 if (LOGD) Log.d(TAG, "onClickFolder");
2621 if (!(v instanceof FolderIcon)){
2622 throw new IllegalArgumentException("Input must be a FolderIcon");
2623 }
2624
2625 FolderIcon folderIcon = (FolderIcon) v;
2626 final FolderInfo info = folderIcon.getFolderInfo();
2627 Folder openFolder = mWorkspace.getFolderForTag(info);
2628
2629 // If the folder info reports that the associated folder is open, then verify that
2630 // it is actually opened. There have been a few instances where this gets out of sync.
2631 if (info.opened && openFolder == null) {
2632 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2633 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2634 info.opened = false;
2635 }
2636
2637 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2638 // Close any open folder
2639 closeFolder();
2640 // Open the requested folder
2641 openFolder(folderIcon);
2642 } else {
2643 // Find the open folder...
2644 int folderScreen;
2645 if (openFolder != null) {
2646 folderScreen = mWorkspace.getPageForView(openFolder);
2647 // .. and close it
2648 closeFolder(openFolder);
2649 if (folderScreen != mWorkspace.getCurrentPage()) {
2650 // Close any folder open on the current screen
2651 closeFolder();
2652 // Pull the folder onto this screen
2653 openFolder(folderIcon);
2654 }
2655 }
2656 }
Michael Jurka5130e402011-10-13 04:55:35 -07002657 }
2658
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002659 /**
2660 * Event handler for the (Add) Widgets button that appears after a long press
2661 * on the home screen.
2662 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002663 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002664 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002665 showAllApps(true, AppsCustomizePagedView.ContentType.Widgets, true);
2666 }
2667
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002668 /**
2669 * Event handler for the wallpaper picker button that appears after a long press
2670 * on the home screen.
2671 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002672 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002673 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
2674 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
2675 pickWallpaper.setComponent(getWallpaperPickerComponent());
2676 startActivityForResult(pickWallpaper, REQUEST_PICK_WALLPAPER);
2677 }
2678
2679 /**
2680 * Event handler for a click on the settings button that appears after a long press
2681 * on the home screen.
2682 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002683 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002684 if (LOGD) Log.d(TAG, "onClickSettingsButton");
2685 }
2686
Michael Jurka5130e402011-10-13 04:55:35 -07002687 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002688 // Provide the same haptic feedback that the system offers for virtual keys.
2689 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002690 }
2691
Adam Cohen61f560d2013-09-30 15:58:20 -07002692 public void performHapticFeedbackOnTouchDown(View v) {
2693 // Provide the same haptic feedback that the system offers for virtual keys.
2694 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2695 }
2696
2697 public View.OnTouchListener getHapticFeedbackTouchListener() {
2698 if (mHapticFeedbackTouchListener == null) {
2699 mHapticFeedbackTouchListener = new View.OnTouchListener() {
2700 @Override
2701 public boolean onTouch(View v, MotionEvent event) {
2702 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2703 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2704 }
2705 return false;
2706 }
2707 };
2708 }
2709 return mHapticFeedbackTouchListener;
2710 }
2711
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002712 public void onDragStarted(View view) {}
2713
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002714 /**
2715 * Called when the user stops interacting with the launcher.
2716 * This implies that the user is now on the homescreen and is not doing housekeeping.
2717 */
2718 protected void onInteractionEnd() {}
2719
2720 /**
2721 * Called when the user starts interacting with the launcher.
2722 * The possible interactions are:
2723 * - open all apps
2724 * - reorder an app shortcut, or a widget
2725 * - open the overview mode.
2726 * This is a good time to stop doing things that only make sense
2727 * when the user is on the homescreen and not doing housekeeping.
2728 */
2729 protected void onInteractionBegin() {}
2730
Kenny Guyf07af7b2014-07-31 11:39:16 +01002731 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002732 String packageName = componentName.getPackageName();
Kenny Guyf07af7b2014-07-31 11:39:16 +01002733 try {
2734 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2735 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
2736 launcherApps.showAppDetailsForProfile(componentName, user);
2737 } catch (SecurityException e) {
2738 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2739 Log.e(TAG, "Launcher does not have permission to launch settings");
2740 } catch (ActivityNotFoundException e) {
2741 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2742 Log.e(TAG, "Unable to launch settings");
2743 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002744 }
2745
Michael Jurka1e2f4652013-07-08 18:03:46 -07002746 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002747 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2748 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002749 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002750 // System applications cannot be installed. For now, show a toast explaining that.
2751 // We may give them the option of disabling apps this way.
2752 int messageId = R.string.uninstall_system_app_text;
2753 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002754 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002755 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002756 String packageName = componentName.getPackageName();
2757 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002758 Intent intent = new Intent(
2759 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002760 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2761 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002762 if (user != null) {
2763 user.addToIntent(intent, Intent.EXTRA_USER);
2764 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002765 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002766 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002767 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002768 }
2769
Michael Jurka86a720e2012-05-09 11:23:23 -07002770 boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002771 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002772 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002773 // Only launch using the new animation if the shortcut has not opted out (this is a
2774 // private contract between launcher and may be ignored in the future).
2775 boolean useLaunchAnimation = (v != null) &&
2776 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002777 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2778 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002779
Kenny Guy1317e2d2014-05-08 18:52:50 +01002780 UserHandleCompat user = null;
2781 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2782 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2783 user = userManager.getUserForSerialNumber(serialNumber);
2784 }
2785
2786 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002787 if (useLaunchAnimation) {
Adam Cohen4da294d2014-07-28 10:56:19 -07002788 ActivityOptions opts = Utilities.isLmp() ?
2789 ActivityOptions.makeCustomAnimation(this, R.anim.task_open_enter, R.anim.no_anim) :
2790 ActivityOptions.makeScaleUpAnimation(v, 0, 0, v.getMeasuredWidth(), v.getMeasuredHeight());
Adam Cohen6ea3b112014-06-11 11:38:49 -07002791 optsBundle = opts.toBundle();
2792 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002793
2794 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2795 // Could be launching some bookkeeping activity
2796 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002797 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002798 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002799 launcherApps.startActivityForProfile(intent.getComponent(), user,
2800 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002801 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002802 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002803 } catch (SecurityException e) {
2804 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002805 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002806 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002807 "or use the exported attribute for this activity. "
2808 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002809 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002810 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002811 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002812
Michael Jurka86a720e2012-05-09 11:23:23 -07002813 boolean startActivitySafely(View v, Intent intent, Object tag) {
2814 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002815 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2816 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2817 return false;
2818 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002819 try {
2820 success = startActivity(v, intent, tag);
2821 } catch (ActivityNotFoundException e) {
2822 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2823 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2824 }
2825 return success;
2826 }
2827
Adam Cohen268c4752012-06-06 17:47:33 -07002828 /**
2829 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2830 * in the DragLayer in the exact absolute location of the original FolderIcon.
2831 */
2832 private void copyFolderIconToImage(FolderIcon fi) {
2833 final int width = fi.getMeasuredWidth();
2834 final int height = fi.getMeasuredHeight();
2835
2836 // Lazy load ImageView, Bitmap and Canvas
2837 if (mFolderIconImageView == null) {
2838 mFolderIconImageView = new ImageView(this);
2839 }
2840 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2841 mFolderIconBitmap.getHeight() != height) {
2842 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2843 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2844 }
2845
2846 DragLayer.LayoutParams lp;
2847 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2848 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2849 } else {
2850 lp = new DragLayer.LayoutParams(width, height);
2851 }
2852
Adam Cohen307fe232012-08-16 17:55:58 -07002853 // The layout from which the folder is being opened may be scaled, adjust the starting
2854 // view size by this scale factor.
2855 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002856 lp.customPosition = true;
2857 lp.x = mRectForFolderAnimation.left;
2858 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002859 lp.width = (int) (scale * width);
2860 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002861
2862 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2863 fi.draw(mFolderIconCanvas);
2864 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002865 if (fi.getFolder() != null) {
2866 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2867 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002868 }
Adam Cohen268c4752012-06-06 17:47:33 -07002869 // Just in case this image view is still in the drag layer from a previous animation,
2870 // we remove it and re-add it.
2871 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2872 mDragLayer.removeView(mFolderIconImageView);
2873 }
2874 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002875 if (fi.getFolder() != null) {
2876 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002877 }
Adam Cohen268c4752012-06-06 17:47:33 -07002878 }
2879
Adam Cohen2801caf2011-05-13 20:57:39 -07002880 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002881 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002882 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2883 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2884 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2885
Adam Cohenc51934b2011-07-26 21:07:43 -07002886 FolderInfo info = (FolderInfo) fi.getTag();
2887 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2888 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002889 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2890 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002891 }
2892
Adam Cohen268c4752012-06-06 17:47:33 -07002893 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2894 copyFolderIconToImage(fi);
2895 fi.setVisibility(View.INVISIBLE);
2896
Michael Jurka2ecf9952012-06-18 12:52:28 -07002897 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002898 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002899 if (Utilities.isLmp()) {
2900 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
2901 }
2902 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07002903 oa.start();
2904 }
2905
Adam Cohen268c4752012-06-06 17:47:33 -07002906 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002907 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002908 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2909 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2910 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2911
Adam Cohen268c4752012-06-06 17:47:33 -07002912 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002913
Adam Cohen268c4752012-06-06 17:47:33 -07002914 // We remove and re-draw the FolderIcon in-case it has changed
2915 mDragLayer.removeView(mFolderIconImageView);
2916 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07002917 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002918 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002919 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002920 oa.addListener(new AnimatorListenerAdapter() {
2921 @Override
2922 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002923 if (cl != null) {
2924 cl.clearFolderLeaveBehind();
2925 // Remove the ImageView copy of the FolderIcon and make the original visible.
2926 mDragLayer.removeView(mFolderIconImageView);
2927 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002928 }
2929 }
2930 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002931 oa.start();
2932 }
2933
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002934 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002935 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002936 * is animated relative to the specified View. If the View is null, no animation
2937 * is played.
2938 *
2939 * @param folderInfo The FolderInfo describing the folder to open.
2940 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002941 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002942 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07002943 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002944
Adam Cohena9cf38f2011-05-02 15:36:58 -07002945 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002946
Adam Cohen4554ee12011-08-03 16:13:21 -07002947 // Just verify that the folder hasn't already been added to the DragLayer.
2948 // There was a one-off crash where the folder had a parent already.
2949 if (folder.getParent() == null) {
2950 mDragLayer.addView(folder);
2951 mDragController.addDropTarget((DropTarget) folder);
2952 } else {
2953 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2954 folder.getParent() + ").");
2955 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002956 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002957 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07002958
2959 // Notify the accessibility manager that this folder "window" has appeared and occluded
2960 // the workspace items
2961 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
2962 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07002963 }
2964
2965 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08002966 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07002967 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002968 if (folder.isEditingName()) {
2969 folder.dismissEditingName();
2970 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002971 closeFolder(folder);
2972 }
2973 }
2974
2975 void closeFolder(Folder folder) {
2976 folder.getInfo().opened = false;
2977
2978 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2979 if (parent != null) {
2980 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2981 shrinkAndFadeInFolderIcon(fi);
2982 }
2983 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07002984
2985 // Notify the accessibility manager that this folder "window" has disappeard and no
2986 // longer occludeds the workspace items
2987 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002988 }
2989
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002990 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07002991 if (!isDraggingEnabled()) return false;
2992 if (isWorkspaceLocked()) return false;
2993 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002994
Adam Cohen1697b792013-09-17 19:08:21 -07002995 if (v instanceof Workspace) {
2996 if (!mWorkspace.isInOverviewMode()) {
Adam Cohen93c97562013-09-26 13:48:01 -07002997 if (mWorkspace.enterOverviewMode()) {
2998 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2999 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3000 return true;
3001 } else {
3002 return false;
3003 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003004 } else {
3005 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003006 }
Adam Cohen1697b792013-09-17 19:08:21 -07003007 }
3008
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003009 CellLayout.CellInfo longClickCellInfo = null;
3010 View itemUnderLongClick = null;
3011 if (v.getTag() instanceof ItemInfo) {
3012 ItemInfo info = (ItemInfo) v.getTag();
3013 longClickCellInfo = new CellLayout.CellInfo(v, info);;
3014 itemUnderLongClick = longClickCellInfo.cell;
3015 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003016 }
3017
Winson Chung3d503fb2011-07-13 17:25:49 -07003018 // The hotseat touch handling does not go through Workspace, and we always allow long press
3019 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003020 final boolean inHotseat = isHotseatLayout(v);
3021 boolean allowLongPress = inHotseat || mWorkspace.allowLongPress();
Winson Chung3d503fb2011-07-13 17:25:49 -07003022 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003023 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003024 // User long pressed on empty space
3025 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3026 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003027 if (mWorkspace.isInOverviewMode()) {
3028 mWorkspace.startReordering(v);
3029 } else {
3030 mWorkspace.enterOverviewMode();
Adam Cohendedbd962013-07-11 14:21:49 -07003031 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003032 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003033 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3034 mHotseat.getOrderInHotseat(
3035 longClickCellInfo.cellX,
3036 longClickCellInfo.cellY));
3037 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003038 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003039 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003040 }
3041 }
3042 }
3043 return true;
3044 }
3045
Winson Chung3d503fb2011-07-13 17:25:49 -07003046 boolean isHotseatLayout(View layout) {
3047 return mHotseat != null && layout != null &&
3048 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3049 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003050
Winson Chung3d503fb2011-07-13 17:25:49 -07003051 /**
3052 * Returns the CellLayout of the specified container at the specified screen.
3053 */
Adam Cohendcd297f2013-06-18 13:13:40 -07003054 CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003055 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3056 if (mHotseat != null) {
3057 return mHotseat.getLayout();
3058 } else {
3059 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003060 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003061 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -07003062 return (CellLayout) mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003063 }
3064 }
3065
Daniel Sandler843e8602010-06-07 14:59:01 -04003066 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003067 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003068 }
3069
Craig Mautner360310b2012-10-26 15:13:08 -07003070 private void setWorkspaceBackground(boolean workspace) {
3071 mLauncherView.setBackground(workspace ?
Michael Jurka496fefb2013-05-06 15:39:11 +02003072 mWorkspaceBackgroundDrawable : null);
Craig Mautner360310b2012-10-26 15:13:08 -07003073 }
3074
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003075 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003076 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3077 int curflags = getWindow().getAttributes().flags
3078 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3079 if (wpflags != curflags) {
3080 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3081 }
Craig Mautner360310b2012-10-26 15:13:08 -07003082 setWorkspaceBackground(visible);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003083 }
3084
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003085 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
3086 if (v instanceof LauncherTransitionable) {
3087 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
3088 }
3089 }
3090
Michael Jurkabed61d22012-02-14 22:51:29 -08003091 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
3092 if (v instanceof LauncherTransitionable) {
3093 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
3094 }
Winson Chung70442722012-02-10 15:43:22 -08003095
3096 // Update the workspace transition step as well
3097 dispatchOnLauncherTransitionStep(v, 0f);
3098 }
3099
3100 private void dispatchOnLauncherTransitionStep(View v, float t) {
3101 if (v instanceof LauncherTransitionable) {
3102 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
3103 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003104 }
3105
3106 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
3107 if (v instanceof LauncherTransitionable) {
3108 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
3109 }
Winson Chung70442722012-02-10 15:43:22 -08003110
3111 // Update the workspace transition step as well
3112 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08003113 }
3114
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003115 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07003116 * Things to test when changing the following seven functions.
3117 * - Home from workspace
3118 * - from center screen
3119 * - from other screens
3120 * - Home from all apps
3121 * - from center screen
3122 * - from other screens
3123 * - Back from all apps
3124 * - from center screen
3125 * - from other screens
3126 * - Launch app from workspace and quit
3127 * - with back
3128 * - with home
3129 * - Launch app from all apps and quit
3130 * - with back
3131 * - with home
3132 * - Go to a screen that's not the default, then all
3133 * apps, and launch and app, and go back
3134 * - with back
3135 * -with home
3136 * - On workspace, long press power and go back
3137 * - with back
3138 * - with home
3139 * - On all apps, long press power and go back
3140 * - with back
3141 * - with home
3142 * - On workspace, power off
3143 * - On all apps, power off
3144 * - Launch an app and turn off the screen while in that app
3145 * - Go back with home key
3146 * - Go back with back key TODO: make this not go to workspace
3147 * - From all apps
3148 * - From workspace
3149 * - Enter and exit car mode (becuase it causes an extra configuration changed)
3150 * - From all apps
3151 * - From the center workspace
3152 * - From another workspace
3153 */
3154
3155 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003156 * Zoom the camera out from the workspace to reveal 'toView'.
3157 * Assumes that the view to show is anchored at either the very top or very bottom
3158 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003159 */
Michael Jurkabed61d22012-02-14 22:51:29 -08003160 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Winson Chungc58497e2013-09-03 17:48:37 -07003161 AppsCustomizePagedView.ContentType contentType = mAppsCustomizeContent.getContentType();
3162 showAppsCustomizeHelper(animated, springLoaded, contentType);
3163 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003164
Winson Chungc58497e2013-09-03 17:48:37 -07003165 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded,
3166 final AppsCustomizePagedView.ContentType contentType) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003167 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003168 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003169 mStateAnimation.cancel();
3170 mStateAnimation = null;
3171 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003172
3173 boolean material = Utilities.isLmp();
3174
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003175 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003176
Winson Chungf0ea4d32011-06-06 14:27:16 -07003177 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
3178 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003179 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeRevealTime);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003180 final int itemsAlphaStagger =
3181 res.getInteger(R.integer.config_appsCustomizeItemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003182
Winson Chungf0ea4d32011-06-06 14:27:16 -07003183 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08003184 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003185 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Patrick Dubroy558654c2010-07-23 16:48:11 -07003186
Adam Cohen6c5891a2014-07-09 23:53:15 -07003187 Workspace.State workspaceState = contentType == AppsCustomizePagedView.ContentType.Widgets ?
3188 Workspace.State.OVERVIEW_HIDDEN : Workspace.State.NORMAL_HIDDEN;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003189 Animator workspaceAnim =
Adam Cohen6c5891a2014-07-09 23:53:15 -07003190 mWorkspace.getChangeStateAnimation(workspaceState, animated);
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08003191 if (!LauncherAppState.isDisableAllApps()
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08003192 || contentType == AppsCustomizePagedView.ContentType.Widgets) {
3193 // Set the content type for the all apps/widgets space
Winson Chungc58497e2013-09-03 17:48:37 -07003194 mAppsCustomizeTabHost.setContentTypeImmediate(contentType);
3195 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003196
3197 if (animated) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003198 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Adam Cohen61033d32010-11-15 18:29:44 -08003199
Adam Cohen9bfdb762014-07-21 17:44:06 -07003200 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3201 toView.findViewById(R.id.apps_customize_pane_content);
Adam Cohenf16e5712011-01-13 13:31:45 -08003202
Adam Cohen9bfdb762014-07-21 17:44:06 -07003203 final View page = content.getPageAt(content.getCurrentPage());
3204 final View revealView = toView.findViewById(R.id.fake_page);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003205
Adam Cohen63f1ec02014-08-12 09:23:13 -07003206 final float initialPanelAlpha = 1f;
3207
3208 final boolean isWidgetTray = contentType == AppsCustomizePagedView.ContentType.Widgets;
3209 if (isWidgetTray) {
Adam Cohen4e243a22014-08-10 18:30:55 -07003210 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel_dark));
3211 } else {
3212 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel));
3213 }
3214
Adam Cohen9bfdb762014-07-21 17:44:06 -07003215 // Hide the real page background, and swap in the fake one
3216 revealView.setVisibility(View.VISIBLE);
3217 content.setPageBackgroundsVisible(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003218
Adam Cohen9bfdb762014-07-21 17:44:06 -07003219 int width = revealView.getMeasuredWidth();
3220 int height = revealView.getMeasuredHeight();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003221
Adam Cohen9bfdb762014-07-21 17:44:06 -07003222 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003223 revealView.setTranslationY(0);
Adam Cohen94afab42014-08-24 16:10:54 -07003224 revealView.setTranslationX(0);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003225
Adam Cohen63f1ec02014-08-12 09:23:13 -07003226 // Get the y delta between the center of the page and the center of the all apps button
3227 int[] allAppsToPanelDelta = Utilities.getCenterDeltaInScreenSpace(revealView,
3228 getAllAppsButton(), null);
3229 float yDrift = isWidgetTray ? height / 2 : allAppsToPanelDelta[1];
Adam Cohen94afab42014-08-24 16:10:54 -07003230 float xDrift = isWidgetTray ? 0 : allAppsToPanelDelta[0];
Adam Cohen63f1ec02014-08-12 09:23:13 -07003231
3232 float initAlpha = isWidgetTray ? 0.3f : 1f;
Adam Cohen9bfdb762014-07-21 17:44:06 -07003233 revealView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003234 PropertyValuesHolder panelAlpha = PropertyValuesHolder.ofFloat("alpha", initAlpha, 1f);
Adam Cohen94afab42014-08-24 16:10:54 -07003235 PropertyValuesHolder panelDriftY =
Adam Cohen63f1ec02014-08-12 09:23:13 -07003236 PropertyValuesHolder.ofFloat("translationY", yDrift, 0);
Adam Cohen94afab42014-08-24 16:10:54 -07003237 PropertyValuesHolder panelDriftX =
3238 PropertyValuesHolder.ofFloat("translationX", xDrift, 0);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003239
Adam Cohen9bfdb762014-07-21 17:44:06 -07003240 ObjectAnimator panelAlphaAndDrift =
Adam Cohen94afab42014-08-24 16:10:54 -07003241 LauncherAnimUtils.ofPropertyValuesHolder(revealView, panelAlpha, panelDriftY, panelDriftX);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003242 panelAlphaAndDrift.setDuration(revealDuration);
3243 panelAlphaAndDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen6c5891a2014-07-09 23:53:15 -07003244
Adam Cohen9bfdb762014-07-21 17:44:06 -07003245 mStateAnimation.play(panelAlphaAndDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003246
Adam Cohen4e243a22014-08-10 18:30:55 -07003247 if (page != null) {
3248 page.setVisibility(View.VISIBLE);
3249 page.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003250
Adam Cohen63f1ec02014-08-12 09:23:13 -07003251 ObjectAnimator pageDrift = LauncherAnimUtils.ofFloat(page, "translationY", yDrift, 0);
Adam Cohen4e243a22014-08-10 18:30:55 -07003252 pageDrift.setDuration(revealDuration);
3253 pageDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003254 pageDrift.setStartDelay(itemsAlphaStagger);
Adam Cohen4e243a22014-08-10 18:30:55 -07003255 mStateAnimation.play(pageDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003256
Adam Cohen63f1ec02014-08-12 09:23:13 -07003257 page.setAlpha(0f);
3258 ObjectAnimator itemsAlpha = LauncherAnimUtils.ofFloat(page, "alpha", 0f, 1f);
Adam Cohen4e243a22014-08-10 18:30:55 -07003259 itemsAlpha.setDuration(revealDuration);
3260 itemsAlpha.setInterpolator(new AccelerateInterpolator(1.5f));
3261 itemsAlpha.setStartDelay(itemsAlphaStagger);
3262 mStateAnimation.play(itemsAlpha);
3263 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003264
Adam Cohen4e243a22014-08-10 18:30:55 -07003265 View pageIndicators = toView.findViewById(R.id.apps_customize_page_indicator);
3266 pageIndicators.setAlpha(0.01f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003267 ObjectAnimator indicatorsAlpha =
Adam Cohen63f1ec02014-08-12 09:23:13 -07003268 LauncherAnimUtils.ofFloat(pageIndicators, "alpha", 1f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003269 indicatorsAlpha.setDuration(revealDuration);
3270 mStateAnimation.play(indicatorsAlpha);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003271
Adam Cohen9bfdb762014-07-21 17:44:06 -07003272 if (material) {
Adam Cohen63f1ec02014-08-12 09:23:13 -07003273 final View allApps = getAllAppsButton();
3274 int allAppsButtonSize = LauncherAppState.getInstance().
3275 getDynamicGrid().getDeviceProfile().allAppsButtonVisualSize;
3276 float startRadius = isWidgetTray ? 0 : allAppsButtonSize / 2;
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003277 Animator reveal = LauncherAnimUtils.createCircularReveal(revealView, width / 2,
Adam Cohen63f1ec02014-08-12 09:23:13 -07003278 height / 2, startRadius, revealRadius);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003279 reveal.setDuration(revealDuration);
3280 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003281
3282 reveal.addListener(new AnimatorListenerAdapter() {
3283 public void onAnimationStart(Animator animation) {
3284 if (!isWidgetTray) {
3285 allApps.setVisibility(View.INVISIBLE);
3286 }
3287 }
3288 public void onAnimationEnd(Animator animation) {
3289 if (!isWidgetTray) {
3290 allApps.setVisibility(View.VISIBLE);
3291 }
3292 }
3293 });
3294
Adam Cohen6c5891a2014-07-09 23:53:15 -07003295 mStateAnimation.play(reveal);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003296 }
Michael Jurka1899a362011-11-03 13:50:45 -07003297
Adam Cohen9bfdb762014-07-21 17:44:06 -07003298 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3299 @Override
3300 public void onAnimationEnd(Animator animation) {
3301 dispatchOnLauncherTransitionEnd(fromView, animated, false);
3302 dispatchOnLauncherTransitionEnd(toView, animated, false);
3303
3304 revealView.setVisibility(View.INVISIBLE);
3305 revealView.setLayerType(View.LAYER_TYPE_NONE, null);
Adam Cohen4e243a22014-08-10 18:30:55 -07003306 if (page != null) {
3307 page.setLayerType(View.LAYER_TYPE_NONE, null);
3308 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003309 content.setPageBackgroundsVisible(true);
3310
3311 // Hide the search bar
3312 if (mSearchDropTargetBar != null) {
3313 mSearchDropTargetBar.hideSearchBar(false);
3314 }
3315 }
3316
3317 @Override
3318 public void onAnimationStart(Animator animation) {
3319 // Prepare the position
3320 toView.bringToFront();
3321 toView.setVisibility(View.VISIBLE);
3322 }
3323 });
3324
Michael Jurka1899a362011-11-03 13:50:45 -07003325 boolean delayAnim = false;
Adam Cohen6c5891a2014-07-09 23:53:15 -07003326 if (workspaceAnim != null) {
3327 mStateAnimation.play(workspaceAnim);
3328 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003329 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
3330 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003331
3332 // If any of the objects being animated haven't been measured/laid out
3333 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08003334 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003335 (mWorkspace.getMeasuredWidth() == 0) ||
3336 (toView.getMeasuredWidth() == 0)) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003337 delayAnim = true;
Michael Jurka1899a362011-11-03 13:50:45 -07003338 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003339
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003340 final AnimatorSet stateAnimation = mStateAnimation;
3341 final Runnable startAnimRunnable = new Runnable() {
3342 public void run() {
3343 // Check that mStateAnimation hasn't changed while
3344 // we waited for a layout/draw pass
3345 if (mStateAnimation != stateAnimation)
3346 return;
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003347 dispatchOnLauncherTransitionStart(fromView, animated, false);
3348 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003349 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003350 }
3351 };
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003352 if (delayAnim) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003353 toView.bringToFront();
3354 toView.setVisibility(View.VISIBLE);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003355 final ViewTreeObserver observer = toView.getViewTreeObserver();
3356 observer.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
3357 public void onGlobalLayout() {
3358 startAnimRunnable.run();
3359 toView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
3360 }
3361 });
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003362 } else {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003363 startAnimRunnable.run();
Michael Jurka1899a362011-11-03 13:50:45 -07003364 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003365 } else {
3366 toView.setTranslationX(0.0f);
3367 toView.setTranslationY(0.0f);
3368 toView.setScaleX(1.0f);
3369 toView.setScaleY(1.0f);
3370 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07003371 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07003372
Daniel Sandlere4f98912013-06-25 15:13:26 -04003373 if (!springLoaded && !LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungc7d2b602012-05-16 17:02:20 -07003374 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07003375 if (mSearchDropTargetBar != null) {
3376 mSearchDropTargetBar.hideSearchBar(false);
3377 }
Michael Jurkaabded662011-03-04 12:06:57 -08003378 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003379 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003380 dispatchOnLauncherTransitionStart(fromView, animated, false);
3381 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003382 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003383 dispatchOnLauncherTransitionStart(toView, animated, false);
3384 dispatchOnLauncherTransitionEnd(toView, animated, false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003385 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003386 }
3387
3388 /**
3389 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07003390 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003391 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003392 */
Adam Cohened307df2013-10-02 09:37:31 -07003393 private void hideAppsCustomizeHelper(Workspace.State toState, final boolean animated,
Adam Cohened66b2b2012-01-23 17:28:51 -08003394 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08003395
Michael Jurkab3e22d92011-10-31 15:58:33 -07003396 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003397 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003398 mStateAnimation.cancel();
3399 mStateAnimation = null;
3400 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003401
3402 boolean material = Utilities.isLmp();
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003403 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003404
Winson Chungf0ea4d32011-06-06 14:27:16 -07003405 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003406 final int fadeOutDuration = res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003407 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeConcealTime);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003408 final int itemsAlphaStagger =
3409 res.getInteger(R.integer.config_appsCustomizeItemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003410
Winson Chungf0ea4d32011-06-06 14:27:16 -07003411 final float scaleFactor = (float)
3412 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
3413 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08003414 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003415 Animator workspaceAnim = null;
Adam Cohened307df2013-10-02 09:37:31 -07003416 if (toState == Workspace.State.NORMAL) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003417 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohen63f1ec02014-08-12 09:23:13 -07003418 toState, animated);
Adam Cohened307df2013-10-02 09:37:31 -07003419 } else if (toState == Workspace.State.SPRING_LOADED ||
3420 toState == Workspace.State.OVERVIEW) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003421 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohened307df2013-10-02 09:37:31 -07003422 toState, animated);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003423 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003424
Winson Chung4afe9b32011-07-27 17:46:20 -07003425 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003426 if (animated) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003427 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurka159b4cc2012-01-17 03:00:35 -08003428
Adam Cohen9bfdb762014-07-21 17:44:06 -07003429 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3430 fromView.findViewById(R.id.apps_customize_pane_content);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003431
Adam Cohen9bfdb762014-07-21 17:44:06 -07003432 final View page = content.getPageAt(content.getNextPage());
3433 final View revealView = fromView.findViewById(R.id.fake_page);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003434
Adam Cohen4e243a22014-08-10 18:30:55 -07003435 AppsCustomizePagedView.ContentType contentType = content.getContentType();
Adam Cohen63f1ec02014-08-12 09:23:13 -07003436 final boolean isWidgetTray = contentType == AppsCustomizePagedView.ContentType.Widgets;
3437
3438 if (isWidgetTray) {
Adam Cohen4e243a22014-08-10 18:30:55 -07003439 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel_dark));
3440 } else {
3441 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel));
3442 }
3443
Adam Cohen9bfdb762014-07-21 17:44:06 -07003444 int width = revealView.getMeasuredWidth();
3445 int height = revealView.getMeasuredHeight();
3446 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003447
Adam Cohen9bfdb762014-07-21 17:44:06 -07003448 // Hide the real page background, and swap in the fake one
3449 revealView.setVisibility(View.VISIBLE);
3450 content.setPageBackgroundsVisible(false);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003451
Adam Cohen63f1ec02014-08-12 09:23:13 -07003452 final View allAppsButton = getAllAppsButton();
3453 revealView.setTranslationY(0);
3454 int[] allAppsToPanelDelta = Utilities.getCenterDeltaInScreenSpace(revealView,
3455 allAppsButton, null);
3456 float yDrift = isWidgetTray ? height / 2 : allAppsToPanelDelta[1];
Adam Cohen94afab42014-08-24 16:10:54 -07003457 float xDrift = isWidgetTray ? 0 : allAppsToPanelDelta[0];
Adam Cohen6c5891a2014-07-09 23:53:15 -07003458
Adam Cohen9bfdb762014-07-21 17:44:06 -07003459 revealView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003460
Adam Cohen63f1ec02014-08-12 09:23:13 -07003461 // The vertical motion of the apps panel should be delayed by one frame
3462 // from the conceal animation in order to give the right feel. We correpsondingly
3463 // shorten the duration so that the slide and conceal end at the same time.
Adam Cohen94afab42014-08-24 16:10:54 -07003464 ObjectAnimator panelDriftY = LauncherAnimUtils.ofFloat(revealView, "translationY", 0, yDrift);
3465 panelDriftY.setDuration(revealDuration - SINGLE_FRAME_DELAY);
3466 panelDriftY.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
3467 panelDriftY.setInterpolator(new LogDecelerateInterpolator(100, 0));
3468 mStateAnimation.play(panelDriftY);
3469
3470 ObjectAnimator panelDriftX = LauncherAnimUtils.ofFloat(revealView, "translationX", 0, xDrift);
3471 panelDriftX.setDuration(revealDuration - SINGLE_FRAME_DELAY);
3472 panelDriftX.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
3473 panelDriftX.setInterpolator(new LogDecelerateInterpolator(100, 0));
3474 mStateAnimation.play(panelDriftX);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003475
Adam Cohen63f1ec02014-08-12 09:23:13 -07003476 if (isWidgetTray) {
3477 ObjectAnimator panelAlpha = LauncherAnimUtils.ofFloat(revealView, "alpha", 1f, 0.4f);
3478 panelAlpha.setDuration(revealDuration);
3479 panelAlpha.setInterpolator(new LogDecelerateInterpolator(100, 0));
3480 mStateAnimation.play(panelAlpha);
3481 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003482
Adam Cohen4e243a22014-08-10 18:30:55 -07003483 if (page != null) {
3484 page.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003485
Adam Cohen63f1ec02014-08-12 09:23:13 -07003486 ObjectAnimator pageDrift = LauncherAnimUtils.ofFloat(page, "translationY",
3487 0, yDrift);
3488 pageDrift.setDuration(revealDuration - SINGLE_FRAME_DELAY);
Adam Cohen4e243a22014-08-10 18:30:55 -07003489 pageDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003490 pageDrift.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
Adam Cohen4e243a22014-08-10 18:30:55 -07003491 mStateAnimation.play(pageDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003492
Adam Cohen4e243a22014-08-10 18:30:55 -07003493 page.setAlpha(1f);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003494 ObjectAnimator itemsAlpha = LauncherAnimUtils.ofFloat(page, "alpha", 1f, 0f);
3495 itemsAlpha.setDuration(100);
Adam Cohen4e243a22014-08-10 18:30:55 -07003496 itemsAlpha.setInterpolator(new LogDecelerateInterpolator(100, 0));
3497 mStateAnimation.play(itemsAlpha);
3498 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003499
Adam Cohen9bfdb762014-07-21 17:44:06 -07003500 View pageIndicators = fromView.findViewById(R.id.apps_customize_page_indicator);
Adam Cohen4e243a22014-08-10 18:30:55 -07003501 pageIndicators.setAlpha(1f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003502 ObjectAnimator indicatorsAlpha =
Adam Cohen63f1ec02014-08-12 09:23:13 -07003503 LauncherAnimUtils.ofFloat(pageIndicators, "alpha", 0f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003504 indicatorsAlpha.setDuration(revealDuration);
3505 indicatorsAlpha.setInterpolator(new DecelerateInterpolator(1.5f));
3506 mStateAnimation.play(indicatorsAlpha);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003507
Adam Cohen9bfdb762014-07-21 17:44:06 -07003508 width = revealView.getMeasuredWidth();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003509
Adam Cohen9bfdb762014-07-21 17:44:06 -07003510 if (material) {
Adam Cohen63f1ec02014-08-12 09:23:13 -07003511 if (!isWidgetTray) {
3512 allAppsButton.setVisibility(View.INVISIBLE);
3513 }
3514 int allAppsButtonSize = LauncherAppState.getInstance().
3515 getDynamicGrid().getDeviceProfile().allAppsButtonVisualSize;
3516 float finalRadius = isWidgetTray ? 0 : allAppsButtonSize / 2;
Nilesh Agrawal300c1502014-07-22 13:20:54 -07003517 Animator reveal =
Adam Cohen63f1ec02014-08-12 09:23:13 -07003518 LauncherAnimUtils.createCircularReveal(revealView, width / 2,
3519 height / 2, revealRadius, finalRadius);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003520 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
3521 reveal.setDuration(revealDuration);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003522 reveal.setStartDelay(itemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003523
3524 reveal.addListener(new AnimatorListenerAdapter() {
Adam Cohen6c5891a2014-07-09 23:53:15 -07003525 public void onAnimationEnd(Animator animation) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003526 revealView.setVisibility(View.INVISIBLE);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003527 if (!isWidgetTray) {
3528 allAppsButton.setVisibility(View.VISIBLE);
3529 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003530 }
3531 });
3532
Adam Cohen6c5891a2014-07-09 23:53:15 -07003533 mStateAnimation.play(reveal);
3534 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003535
3536 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
3537 dispatchOnLauncherTransitionPrepare(toView, animated, true);
3538 mAppsCustomizeContent.stopScrolling();
3539
Adam Cohen6c5891a2014-07-09 23:53:15 -07003540 if (workspaceAnim != null) {
3541 mStateAnimation.play(workspaceAnim);
3542 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003543
3544 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07003545 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08003546 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003547 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08003548 dispatchOnLauncherTransitionEnd(fromView, animated, true);
3549 dispatchOnLauncherTransitionEnd(toView, animated, true);
Adam Cohened66b2b2012-01-23 17:28:51 -08003550 if (onCompleteRunnable != null) {
3551 onCompleteRunnable.run();
3552 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003553
3554 revealView.setLayerType(View.LAYER_TYPE_NONE, null);
Adam Cohen4e243a22014-08-10 18:30:55 -07003555 if (page != null) {
3556 page.setLayerType(View.LAYER_TYPE_NONE, null);
3557 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003558 content.setPageBackgroundsVisible(true);
Chet Haasebc2f0822012-10-26 17:59:53 -07003559 mAppsCustomizeContent.updateCurrentPageScroll();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003560 }
3561 });
3562
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003563 dispatchOnLauncherTransitionStart(fromView, animated, true);
3564 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003565 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003566 } else {
3567 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003568 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003569 dispatchOnLauncherTransitionStart(fromView, animated, true);
3570 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003571 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003572 dispatchOnLauncherTransitionStart(toView, animated, true);
3573 dispatchOnLauncherTransitionEnd(toView, animated, true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003574 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003575 }
3576
Michael Jurkae326f182011-11-21 14:05:46 -08003577 @Override
3578 public void onTrimMemory(int level) {
3579 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07003580 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08003581 mAppsCustomizeTabHost.onTrimMemory();
3582 }
3583 }
3584
Adam Cohened307df2013-10-02 09:37:31 -07003585 protected void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08003586 showWorkspace(animated, null);
3587 }
3588
Adam Cohened307df2013-10-02 09:37:31 -07003589 protected void showWorkspace() {
3590 showWorkspace(true);
3591 }
3592
Adam Cohened66b2b2012-01-23 17:28:51 -08003593 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Adam Cohene25c5d12014-06-18 10:34:58 -07003594 if (mState != State.WORKSPACE || mWorkspace.getState() != Workspace.State.NORMAL) {
Winson Chung2d75f122013-09-23 16:53:31 -07003595 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003596 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened307df2013-10-02 09:37:31 -07003597 hideAppsCustomizeHelper(Workspace.State.NORMAL, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003598
Winson Chungc7d2b602012-05-16 17:02:20 -07003599 // Show the search bar (only animate if we were showing the drop target bar in spring
3600 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003601 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003602 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003603 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003604
Michael Jurkab3e22d92011-10-31 15:58:33 -07003605 // Set focus to the AppsCustomize button
3606 if (mAllAppsButton != null) {
3607 mAllAppsButton.requestFocus();
3608 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003609 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003610
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003611 // Change the state *after* we've called all the transition code
3612 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003613
Winson Chung5fb63472011-02-02 17:03:37 -08003614 // Resume the auto-advance of widgets
3615 mUserPresent = true;
3616 updateRunning();
3617
alanv1d4fde62012-10-17 13:15:47 -07003618 // Send an accessibility event to announce the context change
3619 getWindow().getDecorView()
3620 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003621
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003622 onWorkspaceShown(animated);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003623 }
3624
Adam Cohened307df2013-10-02 09:37:31 -07003625 void showOverviewMode(boolean animated) {
3626 mWorkspace.setVisibility(View.VISIBLE);
3627 hideAppsCustomizeHelper(Workspace.State.OVERVIEW, animated, false, null);
3628 mState = State.WORKSPACE;
3629 onWorkspaceShown(animated);
3630 }
3631
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003632 public void onWorkspaceShown(boolean animated) {
Joe Onorato00acb122009-08-04 16:04:30 -04003633 }
3634
Winson Chung82963d52013-10-09 11:20:57 -07003635 void showAllApps(boolean animated, AppsCustomizePagedView.ContentType contentType,
3636 boolean resetPageToZero) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003637 if (mState != State.WORKSPACE) return;
3638
Winson Chung82963d52013-10-09 11:20:57 -07003639 if (resetPageToZero) {
3640 mAppsCustomizeTabHost.reset();
3641 }
Winson Chungc58497e2013-09-03 17:48:37 -07003642 showAppsCustomizeHelper(animated, false, contentType);
Adam Cohendcc5e712014-06-23 15:38:55 -04003643 mAppsCustomizeTabHost.post(new Runnable() {
3644 @Override
3645 public void run() {
3646 // We post this in-case the all apps view isn't yet constructed.
3647 mAppsCustomizeTabHost.requestFocus();
3648 }
3649 });
Michael Jurkab3e22d92011-10-31 15:58:33 -07003650
Michael Jurkab3e22d92011-10-31 15:58:33 -07003651 // Change the state *after* we've called all the transition code
3652 mState = State.APPS_CUSTOMIZE;
3653
3654 // Pause the auto-advance of widgets until we are out of AllApps
3655 mUserPresent = false;
3656 updateRunning();
3657 closeFolder();
3658
3659 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003660 getWindow().getDecorView()
3661 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003662 }
3663
Adam Cohen7777d962011-08-18 18:58:38 -07003664 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003665 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07003666 hideAppsCustomizeHelper(Workspace.State.SPRING_LOADED, true, true, null);
Winson Chungc07918d2011-07-01 15:35:26 -07003667 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07003668 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003669 }
Adam Cohen7777d962011-08-18 18:58:38 -07003670
Adam Cohenad4e15c2013-10-17 16:21:35 -07003671 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003672 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07003673 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
3674
Winson Chunge7a03942011-08-05 15:05:12 -07003675 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003676 @Override
3677 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003678 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003679 // Before we show workspace, hide all apps again because
3680 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3681 // clean up our state transition functions
3682 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003683 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003684 } else {
3685 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003686 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003687 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003688 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003689 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003690
Michael Jurkad3ef3062010-11-23 16:23:58 -08003691 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07003692 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003693 final boolean animated = true;
3694 final boolean springLoaded = true;
3695 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07003696 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07003697 }
3698 // Otherwise, we are not in spring loaded mode, so don't do anything.
3699 }
3700
Michael Jurkab3e22d92011-10-31 15:58:33 -07003701 void lockAllApps() {
3702 // TODO
3703 }
3704
3705 void unlockAllApps() {
3706 // TODO
3707 }
3708
Winson Chungf0ea4d32011-06-06 14:27:16 -07003709 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003710 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003711 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003712 void showHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003713 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003714 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003715 if (mHotseat.getAlpha() != 1f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003716 int duration = 0;
3717 if (mSearchDropTargetBar != null) {
3718 duration = mSearchDropTargetBar.getTransitionInDuration();
3719 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003720 mHotseat.animate().alpha(1f).setDuration(duration);
3721 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003722 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003723 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003724 }
3725 }
3726 }
3727
3728 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003729 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003730 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003731 void hideHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003732 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003733 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003734 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003735 int duration = 0;
3736 if (mSearchDropTargetBar != null) {
3737 duration = mSearchDropTargetBar.getTransitionOutDuration();
3738 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003739 mHotseat.animate().alpha(0f).setDuration(duration);
3740 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003741 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003742 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003743 }
Winson Chungb26f3d62011-06-02 10:49:29 -07003744 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003745 }
3746
Patrick Dubroy5f445422011-02-18 14:35:21 -08003747 /**
3748 * Add an item from all apps or customize onto the given workspace screen.
3749 * If layout is null, add to the current screen.
3750 */
3751 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003752 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07003753 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07003754 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003755 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003756
Winson Chungdff8ebb2011-09-08 17:25:31 -07003757 /** Maps the current orientation to an index for referencing orientation correct global icons */
3758 private int getCurrentOrientationIndexForGlobalIcons() {
3759 // default - 0, landscape - 1
3760 switch (getResources().getConfiguration().orientation) {
3761 case Configuration.ORIENTATION_LANDSCAPE:
3762 return 1;
3763 default:
3764 return 0;
3765 }
3766 }
3767
Michael Jurkaae65ee32012-04-30 11:45:54 -07003768 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07003769 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003770 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07003771 // Look for the toolbar icon specified in the activity meta-data
3772 Bundle metaData = packageManager.getActivityInfo(
3773 activityName, PackageManager.GET_META_DATA).metaData;
3774 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07003775 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003776 if (iconResId != 0) {
3777 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003778 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003779 }
3780 }
3781 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07003782 // This can happen if the activity defines an invalid drawable
3783 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
3784 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01003785 } catch (Resources.NotFoundException nfe) {
3786 // This can happen if the activity defines an invalid drawable
3787 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
3788 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003789 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003790 return null;
3791 }
3792
3793 // if successful in getting icon, return it; otherwise, set button to use default drawable
3794 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003795 int buttonId, ComponentName activityName, int fallbackDrawableId,
3796 String toolbarResourceName) {
3797 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07003798 Resources r = getResources();
3799 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3800 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003801
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003802 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003803 // If we were unable to find the icon via the meta-data, use a generic one
3804 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07003805 toolbarIcon = r.getDrawable(fallbackDrawableId);
3806 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003807 if (button != null) {
3808 button.setCompoundDrawables(toolbarIcon, null, null, null);
3809 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003810 return null;
3811 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07003812 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003813 if (button != null) {
3814 button.setCompoundDrawables(toolbarIcon, null, null, null);
3815 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003816 return toolbarIcon.getConstantState();
3817 }
3818 }
3819
3820 // if successful in getting icon, return it; otherwise, set button to use default drawable
3821 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003822 int buttonId, ComponentName activityName, int fallbackDrawableId,
3823 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003824 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07003825 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003826
Michael Jurka19e0fc52011-07-22 18:00:21 -07003827 if (button != null) {
3828 // If we were unable to find the icon via the meta-data, use a
3829 // generic one
3830 if (toolbarIcon == null) {
3831 button.setImageResource(fallbackDrawableId);
3832 } else {
3833 button.setImageDrawable(toolbarIcon);
3834 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003835 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003836
3837 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3838
Michael Jurka0423dcf2010-10-05 14:56:18 -07003839 }
3840
Winson Chung1b884092012-06-08 17:13:02 -07003841 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003842 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003843 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003844 }
3845
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003846 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003847 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003848 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003849 }
3850
Winson Chungbb185bd2011-11-21 12:31:42 -08003851 private void invalidatePressedFocusedStates(View container, View button) {
3852 if (container instanceof HolographicLinearLayout) {
3853 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3854 layout.invalidatePressedFocusedStates();
3855 } else if (button instanceof HolographicImageView) {
3856 HolographicImageView view = (HolographicImageView) button;
3857 view.invalidatePressedFocusedStates();
3858 }
3859 }
3860
Cristina Stancu476493b2013-08-07 17:20:14 +01003861 public View getQsbBar() {
Adam Cohen24ce0b32014-01-14 16:18:14 -08003862 if (mQsb == null) {
3863 mQsb = mInflater.inflate(R.layout.qsb, mSearchDropTargetBar, false);
3864 mSearchDropTargetBar.addView(mQsb);
Cristina Stancu476493b2013-08-07 17:20:14 +01003865 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003866 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003867 }
3868
3869 protected boolean updateGlobalSearchIcon() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003870 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003871 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003872 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003873 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003874
Winson Chung1cad91e2011-05-25 17:41:01 -07003875 final SearchManager searchManager =
3876 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3877 ComponentName activityName = searchManager.getGlobalSearchActivity();
3878 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003879 int coi = getCurrentOrientationIndexForGlobalIcons();
3880 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003881 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3882 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3883 if (sGlobalSearchIcon[coi] == null) {
3884 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3885 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3886 TOOLBAR_ICON_METADATA_NAME);
3887 }
3888
Winson Chungc51db6a2011-10-05 11:44:49 -07003889 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3890 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003891 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003892 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003893 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003894 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003895 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3896 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04003897 if (searchButton != null) searchButton.setVisibility(View.GONE);
3898 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003899 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003900 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003901 }
3902 }
3903
Cristina Stancu476493b2013-08-07 17:20:14 +01003904 protected void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003905 final View searchButtonContainer = findViewById(R.id.search_button_container);
3906 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003907 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003908 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003909 }
3910
Cristina Stancu476493b2013-08-07 17:20:14 +01003911 protected boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07003912 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003913 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003914
Winson Chungc51db6a2011-10-05 11:44:49 -07003915 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003916 final SearchManager searchManager =
3917 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3918 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3919
3920 ComponentName activityName = null;
3921 if (globalSearchActivity != null) {
3922 // Check if the global search activity handles voice search
3923 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3924 intent.setPackage(globalSearchActivity.getPackageName());
3925 activityName = intent.resolveActivity(getPackageManager());
3926 }
3927
3928 if (activityName == null) {
3929 // Fallback: check if an activity other than the global search activity
3930 // resolves this
3931 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3932 activityName = intent.resolveActivity(getPackageManager());
3933 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003934 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003935 int coi = getCurrentOrientationIndexForGlobalIcons();
3936 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003937 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3938 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3939 if (sVoiceSearchIcon[coi] == null) {
3940 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3941 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3942 TOOLBAR_ICON_METADATA_NAME);
3943 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003944 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003945 voiceButton.setVisibility(View.VISIBLE);
Winson Chung5841efa2013-09-30 18:06:44 -07003946 updateVoiceButtonProxyVisible(false);
Winson Chungbb185bd2011-11-21 12:31:42 -08003947 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003948 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003949 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07003950 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04003951 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003952 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003953 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003954 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003955 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003956
Cristina Stancu476493b2013-08-07 17:20:14 +01003957 protected void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003958 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3959 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003960 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003961 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003962 }
3963
Winson Chung5841efa2013-09-30 18:06:44 -07003964 public void updateVoiceButtonProxyVisible(boolean forceDisableVoiceButtonProxy) {
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003965 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
3966 if (voiceButtonProxy != null) {
Winson Chung5841efa2013-09-30 18:06:44 -07003967 boolean visible = !forceDisableVoiceButtonProxy &&
3968 mWorkspace.shouldVoiceButtonProxyBeVisible();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003969 voiceButtonProxy.setVisibility(visible ? View.VISIBLE : View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003970 voiceButtonProxy.bringToFront();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003971 }
3972 }
Winson Chung5841efa2013-09-30 18:06:44 -07003973
3974 /**
3975 * This is an overrid eot disable the voice button proxy. If disabled is true, then the voice button proxy
3976 * will be hidden regardless of what shouldVoiceButtonProxyBeVisible() returns.
3977 */
3978 public void disableVoiceButtonProxy(boolean disabled) {
3979 updateVoiceButtonProxyVisible(disabled);
3980 }
Michael Jurka4ef207b2010-11-29 17:05:45 -08003981
Michael Jurkad7c28052012-04-27 15:43:36 -07003982 @Override
3983 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003984 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003985 final List<CharSequence> text = event.getText();
3986 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003987 // Populate event with a fake title based on the current state.
3988 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohen6c5891a2014-07-09 23:53:15 -07003989 text.add(mAppsCustomizeTabHost.getContentTag());
alanv1d4fde62012-10-17 13:15:47 -07003990 } else {
3991 text.add(getString(R.string.all_apps_home_button_label));
3992 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003993 return result;
3994 }
3995
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003996 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003997 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003998 */
3999 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
4000 @Override
4001 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004002 closeSystemDialogs();
4003 }
4004 }
4005
4006 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08004007 * Receives notifications whenever the appwidgets are reset.
4008 */
4009 private class AppWidgetResetObserver extends ContentObserver {
4010 public AppWidgetResetObserver() {
4011 super(new Handler());
4012 }
4013
4014 @Override
4015 public void onChange(boolean selfChange) {
4016 onAppWidgetReset();
4017 }
4018 }
4019
4020 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07004021 * If the activity is currently paused, signal that we need to run the passed Runnable
4022 * in onResume.
4023 *
4024 * This needs to be called from incoming places where resources might have been loaded
4025 * while we are paused. That is becaues the Configuration might be wrong
4026 * when we're not running, and if it comes back to what it was when we
4027 * were paused, we are not restarted.
4028 *
4029 * Implementation of the method from LauncherModel.Callbacks.
4030 *
4031 * @return true if we are currently paused. The caller might be able to
4032 * skip some work in that case since we will come back again.
4033 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004034 private boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004035 if (mPaused) {
4036 Log.i(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02004037 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07004038 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004039 }
4040 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07004041 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07004042 return true;
4043 } else {
4044 return false;
4045 }
4046 }
4047
Michael Jurkac402cd92013-05-20 15:49:32 +02004048 private boolean waitUntilResume(Runnable run) {
4049 return waitUntilResume(run, false);
4050 }
4051
Michael Jurka1e2f4652013-07-08 18:03:46 -07004052 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02004053 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07004054 }
4055
Michael Jurka7607c2f2013-04-03 14:33:19 -07004056 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004057 * If the activity is currently paused, signal that we need to re-run the loader
4058 * in onResume.
4059 *
4060 * This needs to be called from incoming places where resources might have been loaded
4061 * while we are paused. That is becaues the Configuration might be wrong
4062 * when we're not running, and if it comes back to what it was when we
4063 * were paused, we are not restarted.
4064 *
4065 * Implementation of the method from LauncherModel.Callbacks.
4066 *
4067 * @return true if we are currently paused. The caller might be able to
4068 * skip some work in that case since we will come back again.
4069 */
4070 public boolean setLoadOnResume() {
4071 if (mPaused) {
4072 Log.i(TAG, "setLoadOnResume");
4073 mOnResumeNeedsLoad = true;
4074 return true;
4075 } else {
4076 return false;
4077 }
4078 }
4079
4080 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004081 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004082 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04004083 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07004084 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07004085 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07004086 } else {
4087 return SCREEN_COUNT / 2;
4088 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004089 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07004090
Joe Onorato9c1289c2009-08-17 11:03:03 -04004091 /**
4092 * Refreshes the shortcuts shown on the workspace.
4093 *
4094 * Implementation of the method from LauncherModel.Callbacks.
4095 */
4096 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004097 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08004098
Michael Jurka7607c2f2013-04-03 14:33:19 -07004099 // If we're starting binding all over again, clear any bind calls we'd postponed in
4100 // the past (see waitUntilResume) -- we don't need them since we're starting binding
4101 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07004102 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07004103
Winson Chungd64d1762013-08-20 14:37:16 -07004104 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07004105 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07004106 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07004107
Michael Jurka05bf644e2011-11-30 20:28:53 -08004108 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07004109 if (mHotseat != null) {
4110 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004111 }
4112 }
4113
Adam Cohendcd297f2013-06-18 13:13:40 -07004114 @Override
4115 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07004116 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07004117
Adam Cohen5084cba2013-09-03 12:01:16 -07004118 // If there are no screens, we need to have an empty screen
4119 if (orderedScreenIds.size() == 0) {
4120 mWorkspace.addExtraEmptyScreen();
4121 }
Winson Chung0e6a7132013-08-23 12:55:10 -07004122
4123 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06004124 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05004125 if (hasCustomContentToLeft()) {
4126 mWorkspace.createCustomContentContainer();
4127 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07004128 }
Winson Chung64359a52013-07-08 17:17:08 -07004129 }
4130
4131 @Override
4132 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Winson Chunga90303b2013-11-15 13:05:06 -08004133 // Log to disk
4134 Launcher.addDumpLog(TAG, "11683562 - bindAddScreens()", true);
4135 Launcher.addDumpLog(TAG, "11683562 - orderedScreenIds: " +
4136 TextUtils.join(", ", orderedScreenIds), true);
Adam Cohendcd297f2013-06-18 13:13:40 -07004137 int count = orderedScreenIds.size();
4138 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07004139 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07004140 }
Adam Cohendcd297f2013-06-18 13:13:40 -07004141 }
4142
Adam Cohen39a06042013-07-19 14:30:12 -07004143 private boolean shouldShowWeightWatcher() {
4144 String spKey = LauncherAppState.getSharedPreferencesKey();
4145 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07004146 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07004147
4148 return show;
4149 }
4150
4151 private void toggleShowWeightWatcher() {
4152 String spKey = LauncherAppState.getSharedPreferencesKey();
4153 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
4154 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
4155
4156 show = !show;
4157
4158 SharedPreferences.Editor editor = sp.edit();
4159 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
4160 editor.commit();
4161
4162 if (mWeightWatcher != null) {
4163 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
4164 }
4165 }
4166
Winson Chungd64d1762013-08-20 14:37:16 -07004167 public void bindAppsAdded(final ArrayList<Long> newScreens,
4168 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07004169 final ArrayList<ItemInfo> addAnimated,
4170 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004171 Runnable r = new Runnable() {
4172 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07004173 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07004174 }
4175 };
4176 if (waitUntilResume(r)) {
4177 return;
4178 }
4179
Winson Chungd64d1762013-08-20 14:37:16 -07004180 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08004181 if (newScreens != null) {
4182 bindAddScreens(newScreens);
4183 }
Winson Chungd64d1762013-08-20 14:37:16 -07004184
4185 // We add the items without animation on non-visible pages, and with
4186 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08004187 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004188 bindItems(addNotAnimated, 0,
4189 addNotAnimated.size(), false);
4190 }
Adam Cohen76a47a12014-02-05 11:47:43 -08004191 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004192 bindItems(addAnimated, 0,
4193 addAnimated.size(), true);
4194 }
Winson Chungc58497e2013-09-03 17:48:37 -07004195
Winson Chung87412982013-10-03 18:34:14 -07004196 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07004197 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07004198
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004199 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004200 addedApps != null && mAppsCustomizeContent != null) {
4201 mAppsCustomizeContent.addApps(addedApps);
4202 }
Winson Chungd64d1762013-08-20 14:37:16 -07004203 }
4204
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004205 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004206 * Bind the items start-end from the list.
4207 *
4208 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004209 */
Winson Chung64359a52013-07-08 17:17:08 -07004210 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
4211 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07004212 Runnable r = new Runnable() {
4213 public void run() {
4214 bindItems(shortcuts, start, end, forceAnimateIcons);
4215 }
4216 };
4217 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004218 return;
4219 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004220
Winson Chungf0c6ae02012-03-21 16:10:31 -07004221 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07004222 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
4223 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07004224 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004225 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07004226 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004227 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04004228 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07004229
4230 // Short circuit if we are loading dock items for a configuration which has no dock
4231 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
4232 mHotseat == null) {
4233 continue;
4234 }
4235
Joe Onorato9c1289c2009-08-17 11:03:03 -04004236 switch (item.itemType) {
4237 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
4238 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07004239 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004240 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07004241
Winson Chung64359a52013-07-08 17:17:08 -07004242 /*
4243 * TODO: FIX collision case
4244 */
Winson Chungce376632013-07-11 16:12:41 -07004245 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
4246 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
4247 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07004248 View v = cl.getChildAt(item.cellX, item.cellY);
4249 Object tag = v.getTag();
4250 String desc = "Collision while binding workspace item: " + item
4251 + ". Collides with " + tag;
4252 if (LauncherAppState.isDogfoodBuild()) {
4253 throw (new RuntimeException(desc));
4254 } else {
4255 Log.d(TAG, desc);
4256 }
Winson Chungce376632013-07-11 16:12:41 -07004257 }
Winson Chung64359a52013-07-08 17:17:08 -07004258 }
4259
Adam Cohendcd297f2013-06-18 13:13:40 -07004260 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
4261 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07004262 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07004263 // Animate all the applications up now
4264 shortcut.setAlpha(0f);
4265 shortcut.setScaleX(0f);
4266 shortcut.setScaleY(0f);
4267 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07004268 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004269 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004270 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07004271 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07004272 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07004273 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07004274 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07004275 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
4276 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004277 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07004278 default:
4279 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04004280 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004281 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004282
Winson Chung997a9232013-07-24 15:33:46 -07004283 if (animateIcons) {
4284 // Animate to the correct page
4285 if (newShortcutsScreenId > -1) {
4286 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07004287 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07004288 final Runnable startBounceAnimRunnable = new Runnable() {
4289 public void run() {
4290 anim.playTogether(bounceAnims);
4291 anim.start();
4292 }
4293 };
Winson Chung997a9232013-07-24 15:33:46 -07004294 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07004295 // We post the animation slightly delayed to prevent slowdowns
4296 // when we are loading right after we return to launcher.
4297 mWorkspace.postDelayed(new Runnable() {
4298 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00004299 if (mWorkspace != null) {
4300 mWorkspace.snapToPage(newScreenIndex);
4301 mWorkspace.postDelayed(startBounceAnimRunnable,
4302 NEW_APPS_ANIMATION_DELAY);
4303 }
Winson Chung94d67682013-09-25 16:29:40 -07004304 }
4305 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07004306 } else {
4307 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07004308 }
4309 }
Winson Chung64359a52013-07-08 17:17:08 -07004310 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004311 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004312 }
4313
Joe Onorato9c1289c2009-08-17 11:03:03 -04004314 /**
4315 * Implementation of the method from LauncherModel.Callbacks.
4316 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004317 public void bindFolders(final HashMap<Long, FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07004318 Runnable r = new Runnable() {
4319 public void run() {
4320 bindFolders(folders);
4321 }
4322 };
4323 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004324 return;
4325 }
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004326 sFolders.clear();
4327 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004328 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004329
4330 /**
4331 * Add the views for a widget to the workspace.
4332 *
4333 * Implementation of the method from LauncherModel.Callbacks.
4334 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004335 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004336 Runnable r = new Runnable() {
4337 public void run() {
4338 bindAppWidget(item);
4339 }
4340 };
4341 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004342 return;
4343 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004344
Daniel Sandler843e8602010-06-07 14:59:01 -04004345 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4346 if (DEBUG_WIDGETS) {
4347 Log.d(TAG, "bindAppWidget: " + item);
4348 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004349 final Workspace workspace = mWorkspace;
4350
Sunny Goyalff572272014-07-23 13:58:07 -07004351 AppWidgetProviderInfo appWidgetInfo;
4352 if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0) &&
4353 ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
4354
4355 appWidgetInfo = mModel.findAppWidgetProviderInfoWithComponent(this, item.providerName);
4356 if (appWidgetInfo == null) {
4357 if (DEBUG_WIDGETS) {
4358 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4359 + " belongs to component " + item.providerName
4360 + ", as the povider is null");
4361 }
4362 LauncherModel.deleteItemFromDatabase(this, item);
4363 return;
4364 }
4365 // Note: This assumes that the id remap broadcast is received before this step.
4366 // If that is not the case, the id remap will be ignored and user may see the
4367 // click to setup view.
4368 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(appWidgetInfo, null, null);
4369 pendingInfo.spanX = item.spanX;
4370 pendingInfo.spanY = item.spanY;
4371 pendingInfo.minSpanX = item.minSpanX;
4372 pendingInfo.minSpanY = item.minSpanY;
4373 Bundle options =
4374 AppsCustomizePagedView.getDefaultOptionsForWidget(this, pendingInfo);
4375
Sunny Goyalff572272014-07-23 13:58:07 -07004376 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07004377 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4378 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07004379
4380 // TODO consider showing a permission dialog when the widget is clicked.
4381 if (!success) {
4382 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4383 if (DEBUG_WIDGETS) {
4384 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4385 + " belongs to component " + item.providerName
4386 + ", as the launcher is unable to bing a new widget id");
4387 }
4388 LauncherModel.deleteItemFromDatabase(this, item);
4389 return;
4390 }
4391
4392 item.appWidgetId = newWidgetId;
4393
4394 // If the widget has a configure activity, it is still needs to set it up, otherwise
4395 // the widget is ready to go.
4396 item.restoreStatus = (appWidgetInfo.configure == null)
4397 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4398 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4399
4400 LauncherModel.updateItemInDatabase(this, item);
4401 }
4402
Sunny Goyal651077b2014-06-30 14:15:31 -07004403 if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
4404 final int appWidgetId = item.appWidgetId;
4405 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4406 if (DEBUG_WIDGETS) {
4407 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
4408 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004409
Sunny Goyal651077b2014-06-30 14:15:31 -07004410 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
4411 } else {
4412 appWidgetInfo = null;
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004413 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item);
4414 view.updateIcon(mIconCache);
4415 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004416 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004417 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004418 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004419
Joe Onorato9c1289c2009-08-17 11:03:03 -04004420 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004421 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004422
Adam Cohendcd297f2013-06-18 13:13:40 -07004423 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004424 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07004425 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4426
Joe Onorato9c1289c2009-08-17 11:03:03 -04004427 workspace.requestLayout();
4428
Daniel Sandler843e8602010-06-07 14:59:01 -04004429 if (DEBUG_WIDGETS) {
4430 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4431 + (SystemClock.uptimeMillis()-start) + "ms");
4432 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004433 }
4434
Sunny Goyalff572272014-07-23 13:58:07 -07004435 /**
4436 * Restores a pending widget.
4437 *
4438 * @param appWidgetId The app widget id
4439 * @param cellInfo The position on screen where to create the widget.
4440 */
4441 private void completeRestoreAppWidget(final int appWidgetId) {
4442 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4443 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4444 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4445 return;
4446 }
4447
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004448 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004449 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4450
4451 mWorkspace.reinflateWidgetsIfNecessary();
4452 LauncherModel.updateItemInDatabase(this, info);
4453 }
4454
Adam Cohen1462de32012-07-24 22:34:36 -07004455 public void onPageBoundSynchronously(int page) {
4456 mSynchronouslyBoundPages.add(page);
4457 }
4458
Joe Onorato9c1289c2009-08-17 11:03:03 -04004459 /**
4460 * Callback saying that there aren't any more items to bind.
4461 *
4462 * Implementation of the method from LauncherModel.Callbacks.
4463 */
Adam Cohene25af792013-06-06 23:08:25 -07004464 public void finishBindingItems(final boolean upgradePath) {
Winson Chungd64d1762013-08-20 14:37:16 -07004465 Runnable r = new Runnable() {
4466 public void run() {
4467 finishBindingItems(upgradePath);
4468 }
4469 };
4470 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004471 return;
4472 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004473 if (mSavedState != null) {
4474 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004475 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004476 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004477 mSavedState = null;
4478 }
4479
Adam Cohen1462de32012-07-24 22:34:36 -07004480 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004481
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004482 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004483 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004484
4485 // If we received the result of any pending adds while the loader was running (e.g. the
4486 // widget configuration forced an orientation change), process them now.
4487 if (sPendingAddItem != null) {
4488 final long screenId = completeAdd(sPendingAddItem);
4489
4490 // TODO: this moves the user to the page where the pending item was added. Ideally,
4491 // the screen would be guaranteed to exist after bind, and the page would be set through
4492 // the workspace restore process.
4493 mWorkspace.post(new Runnable() {
4494 @Override
4495 public void run() {
4496 mWorkspace.snapToScreenId(screenId);
4497 }
4498 });
4499 sPendingAddItem = null;
4500 }
4501
Adam Cohene25af792013-06-06 23:08:25 -07004502 if (upgradePath) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004503 mWorkspace.getUniqueComponents(true, null);
4504 mIntentsOnWorkspaceFromUpgradePath = mWorkspace.getUniqueComponents(true, null);
Adam Cohene25af792013-06-06 23:08:25 -07004505 }
Sunny Goyale755d462014-07-22 13:48:29 -07004506 PackageInstallerCompat.getInstance(this).onFinishBind();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004507 }
4508
Adam Cohen3ed316a2014-07-23 18:21:20 -07004509 private void sendLoadingCompleteBroadcastIfNecessary() {
4510 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4511 String permission =
4512 getResources().getString(R.string.receive_first_load_broadcast_permission);
4513 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4514 sendBroadcast(intent, permission);
4515 SharedPreferences.Editor editor = mSharedPrefs.edit();
4516 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4517 editor.apply();
4518 }
4519 }
4520
Winson Chunga0b7e862013-09-05 16:03:15 -07004521 public boolean isAllAppsButtonRank(int rank) {
4522 if (mHotseat != null) {
4523 return mHotseat.isAllAppsButtonRank(rank);
4524 }
4525 return false;
4526 }
4527
Winson Chunga2413752012-04-03 14:22:34 -07004528 private boolean canRunNewAppsAnimation() {
4529 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4530 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4531 }
4532
Winson Chungc9168342013-06-26 14:54:55 -07004533 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4534 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4535 PropertyValuesHolder.ofFloat("alpha", 1f),
4536 PropertyValuesHolder.ofFloat("scaleX", 1f),
4537 PropertyValuesHolder.ofFloat("scaleY", 1f));
4538 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4539 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
4540 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
4541 return bounceAnim;
4542 }
4543
Adam Cohen27772732013-11-11 14:00:56 +00004544 public boolean useVerticalBarLayout() {
4545 return LauncherAppState.getInstance().getDynamicGrid().
4546 getDeviceProfile().isVerticalBarLayout();
4547 }
4548
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004549 protected Rect getSearchBarBounds() {
4550 return LauncherAppState.getInstance().getDynamicGrid().
4551 getDeviceProfile().getSearchBarBounds();
4552 }
4553
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004554 @Override
4555 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07004556 boolean searchVisible = updateGlobalSearchIcon();
4557 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07004558 if (mSearchDropTargetBar != null) {
4559 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
4560 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004561 }
4562
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004563 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004564 * Add the icons for all apps.
4565 *
4566 * Implementation of the method from LauncherModel.Callbacks.
4567 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004568 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004569 if (LauncherAppState.isDisableAllApps()) {
Winson Chungc58497e2013-09-03 17:48:37 -07004570 if (mIntentsOnWorkspaceFromUpgradePath != null) {
4571 if (LauncherModel.UPGRADE_USE_MORE_APPS_FOLDER) {
4572 getHotseat().addAllAppsFolder(mIconCache, apps,
4573 mIntentsOnWorkspaceFromUpgradePath, Launcher.this, mWorkspace);
4574 }
4575 mIntentsOnWorkspaceFromUpgradePath = null;
Daniel Sandler8707e0f2013-08-15 15:54:18 -07004576 }
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004577 if (mAppsCustomizeContent != null) {
4578 mAppsCustomizeContent.onPackagesUpdated(
4579 LauncherModel.getSortedWidgetsAndShortcuts(this));
4580 }
Winson Chungc58497e2013-09-03 17:48:37 -07004581 } else {
Winson Chungad7db6e2013-10-08 14:01:06 -07004582 if (mAppsCustomizeContent != null) {
Winson Chungc58497e2013-09-03 17:48:37 -07004583 mAppsCustomizeContent.setApps(apps);
Winson Chung6e1c0d32013-10-25 15:24:24 -07004584 mAppsCustomizeContent.onPackagesUpdated(
4585 LauncherModel.getSortedWidgetsAndShortcuts(this));
Winson Chungc58497e2013-09-03 17:48:37 -07004586 }
Winson Chung785d2eb2011-04-14 16:08:02 -07004587 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004588 }
4589
4590 /**
4591 * A package was updated.
4592 *
4593 * Implementation of the method from LauncherModel.Callbacks.
4594 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004595 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004596 Runnable r = new Runnable() {
4597 public void run() {
4598 bindAppsUpdated(apps);
4599 }
4600 };
4601 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004602 return;
4603 }
4604
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004605 if (mWorkspace != null) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004606 mWorkspace.updateShortcutsAndWidgets(apps);
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004607 }
Winson Chungc58497e2013-09-03 17:48:37 -07004608
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004609 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004610 mAppsCustomizeContent != null) {
4611 mAppsCustomizeContent.updateApps(apps);
4612 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004613 }
4614
4615 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004616 * Update the state of a package, typically related to install state.
4617 *
4618 * Implementation of the method from LauncherModel.Callbacks.
4619 */
Sunny Goyale755d462014-07-22 13:48:29 -07004620 @Override
4621 public void updatePackageState(ArrayList<PackageInstallInfo> installInfo) {
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004622 if (mWorkspace != null) {
Sunny Goyale755d462014-07-22 13:48:29 -07004623 mWorkspace.updatePackageState(installInfo);
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004624 }
4625 }
4626
4627 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004628 * A package was uninstalled. We take both the super set of packageNames
4629 * in addition to specific applications to remove, the reason being that
4630 * this can be called when a package is updated as well. In that scenario,
4631 * we only remove specific components from the workspace, where as
4632 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004633 *
4634 * Implementation of the method from LauncherModel.Callbacks.
4635 */
Winson Chung83892cc2013-05-01 16:53:33 -07004636 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Kenny Guyed131872014-04-30 03:02:21 +01004637 final ArrayList<AppInfo> appInfos, final UserHandleCompat user) {
Winson Chungd64d1762013-08-20 14:37:16 -07004638 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004639 public void run() {
Kenny Guyed131872014-04-30 03:02:21 +01004640 bindComponentsRemoved(packageNames, appInfos, user);
Winson Chung83892cc2013-05-01 16:53:33 -07004641 }
Winson Chungd64d1762013-08-20 14:37:16 -07004642 };
4643 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004644 return;
4645 }
4646
Winson Chungdf95eb12013-10-16 14:57:07 -07004647 if (!packageNames.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004648 mWorkspace.removeItemsByPackageName(packageNames, user);
Winson Chungdf95eb12013-10-16 14:57:07 -07004649 }
4650 if (!appInfos.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004651 mWorkspace.removeItemsByApplicationInfo(appInfos, user);
Joe Onorato36115782010-06-17 13:28:48 -04004652 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004653
Winson Chunga1820962011-10-03 16:31:06 -07004654 // Notify the drag controller
Winson Chungdf95eb12013-10-16 14:57:07 -07004655 mDragController.onAppsRemoved(packageNames, appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004656
Winson Chungdf95eb12013-10-16 14:57:07 -07004657 // Update AllApps
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004658 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004659 mAppsCustomizeContent != null) {
4660 mAppsCustomizeContent.removeApps(appInfos);
4661 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004662 }
Joe Onoratobe386092009-11-17 17:32:16 -08004663
4664 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07004665 * A number of packages were updated.
4666 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004667 private ArrayList<Object> mWidgetsAndShortcuts;
4668 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004669 public void run() {
Michael Jurkac402cd92013-05-20 15:49:32 +02004670 bindPackagesUpdated(mWidgetsAndShortcuts);
4671 mWidgetsAndShortcuts = null;
Winson Chung83892cc2013-05-01 16:53:33 -07004672 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004673 };
Michael Jurkac402cd92013-05-20 15:49:32 +02004674 public void bindPackagesUpdated(final ArrayList<Object> widgetsAndShortcuts) {
4675 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
4676 mWidgetsAndShortcuts = widgetsAndShortcuts;
Winson Chung83892cc2013-05-01 16:53:33 -07004677 return;
4678 }
4679
Winson Chung64359a52013-07-08 17:17:08 -07004680 // Update the widgets pane
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004681 if (mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004682 mAppsCustomizeContent.onPackagesUpdated(widgetsAndShortcuts);
Winson Chung785d2eb2011-04-14 16:08:02 -07004683 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004684 }
4685
Winson Chung400438b2011-01-16 17:53:48 -08004686 private int mapConfigurationOriActivityInfoOri(int configOri) {
4687 final Display d = getWindowManager().getDefaultDisplay();
4688 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4689 switch (d.getRotation()) {
4690 case Surface.ROTATION_0:
4691 case Surface.ROTATION_180:
4692 // We are currently in the same basic orientation as the natural orientation
4693 naturalOri = configOri;
4694 break;
4695 case Surface.ROTATION_90:
4696 case Surface.ROTATION_270:
4697 // We are currently in the other basic orientation to the natural orientation
4698 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4699 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4700 break;
4701 }
4702
4703 int[] oriMap = {
4704 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4705 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4706 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4707 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4708 };
4709 // Since the map starts at portrait, we need to offset if this device's natural orientation
4710 // is landscape.
4711 int indexOffset = 0;
4712 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4713 indexOffset = 1;
4714 }
4715 return oriMap[(d.getRotation() + indexOffset) % 4];
4716 }
Adam Cohen446e9402011-09-15 18:21:21 -07004717
Winson Chung4b919f82012-05-01 10:44:08 -07004718 public boolean isRotationEnabled() {
Michael Jurka0a457bf2012-11-19 14:05:05 -08004719 boolean enableRotation = sForceEnableRotation ||
Winson Chung4b919f82012-05-01 10:44:08 -07004720 getResources().getBoolean(R.bool.allow_rotation);
4721 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08004722 }
Winson Chung4b919f82012-05-01 10:44:08 -07004723 public void lockScreenOrientation() {
4724 if (isRotationEnabled()) {
4725 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4726 .getConfiguration().orientation));
4727 }
4728 }
4729 public void unlockScreenOrientation(boolean immediate) {
4730 if (isRotationEnabled()) {
4731 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004732 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004733 } else {
4734 mHandler.postDelayed(new Runnable() {
4735 public void run() {
4736 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4737 }
4738 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004739 }
Winson Chung4b919f82012-05-01 10:44:08 -07004740 }
Winson Chung400438b2011-01-16 17:53:48 -08004741 }
4742
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004743 /**
4744 * Called when the SearchBar hint should be changed.
4745 *
4746 * @param hint the hint to be displayed in the search bar.
4747 */
4748 protected void onSearchBarHintChanged(String hint) {
Sunny Goyal424418b2014-08-22 16:09:37 -07004749
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004750 }
4751
Winson Chunge43a1e72014-01-15 10:33:02 -08004752 protected boolean isLauncherPreinstalled() {
4753 PackageManager pm = getPackageManager();
4754 try {
4755 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4756 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4757 return true;
4758 } else {
4759 return false;
4760 }
4761 } catch (NameNotFoundException e) {
4762 e.printStackTrace();
4763 return false;
4764 }
4765 }
4766
Adam Cohenea90f832014-05-21 15:03:34 -07004767 /**
4768 * This method indicates whether or not we should suggest default wallpaper dimensions
4769 * when our wallpaper cropper was not yet used to set a wallpaper.
4770 */
4771 protected boolean overrideWallpaperDimensions() {
4772 return true;
4773 }
4774
Adam Cohen5eed5d82014-05-19 13:12:13 -07004775 protected boolean shouldClingFocusHotseatApp() {
4776 return false;
4777 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004778 protected String getFirstRunClingSearchBarHint() {
4779 return "";
4780 }
4781 protected String getFirstRunCustomContentHint() {
4782 return "";
4783 }
Winson Chung3a6e7f32013-10-09 15:50:52 -07004784 protected int getFirstRunFocusedHotseatAppDrawableId() {
4785 return -1;
4786 }
4787 protected ComponentName getFirstRunFocusedHotseatAppComponentName() {
4788 return null;
4789 }
4790 protected int getFirstRunFocusedHotseatAppRank() {
4791 return -1;
4792 }
4793 protected String getFirstRunFocusedHotseatAppBubbleTitle() {
4794 return "";
4795 }
4796 protected String getFirstRunFocusedHotseatAppBubbleDescription() {
4797 return "";
4798 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004799
Adam Cohen432609a2014-03-13 17:03:22 -07004800 /**
4801 * To be overridden by subclasses to indicate that there is an activity to launch
4802 * before showing the standard launcher experience.
4803 */
4804 protected boolean hasFirstRunActivity() {
4805 return false;
4806 }
4807
4808 /**
4809 * To be overridden by subclasses to launch any first run activity
4810 */
4811 protected Intent getFirstRunActivity() {
4812 return null;
4813 }
4814
Winson Chunga6945242014-01-08 14:04:34 -08004815 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004816 return !ActivityManager.isRunningInTestHarness() &&
4817 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004818 }
4819
Adam Cohen4a9423d2014-03-28 14:22:31 -07004820 protected boolean hasRunFirstRunActivity() {
4821 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4822 }
4823
Adam Cohen432609a2014-03-13 17:03:22 -07004824 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004825 if (shouldRunFirstRunActivity() &&
4826 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004827 Intent firstRunIntent = getFirstRunActivity();
4828 if (firstRunIntent != null) {
4829 startActivity(firstRunIntent);
4830 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004831 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004832 }
4833 }
Adam Cohen432609a2014-03-13 17:03:22 -07004834 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004835 }
4836
4837 private void markFirstRunActivityShown() {
4838 SharedPreferences.Editor editor = mSharedPrefs.edit();
4839 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4840 editor.apply();
4841 }
4842
Adam Cohen432609a2014-03-13 17:03:22 -07004843 /**
4844 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4845 * screen that must be displayed and dismissed.
4846 */
4847 protected boolean hasDismissableIntroScreen() {
4848 return false;
4849 }
4850
4851 /**
4852 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4853 */
4854 protected View getIntroScreen() {
4855 return null;
4856 }
4857
4858 /**
4859 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4860 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4861 */
4862 private boolean shouldShowIntroScreen() {
4863 return hasDismissableIntroScreen() &&
4864 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4865 }
4866
4867 protected void showIntroScreen() {
4868 View introScreen = getIntroScreen();
4869 changeWallpaperVisiblity(false);
4870 if (introScreen != null) {
4871 mDragLayer.showOverlayView(introScreen);
4872 }
4873 }
4874
4875 public void dismissIntroScreen() {
4876 markIntroScreenDismissed();
4877 if (showFirstRunActivity()) {
4878 // We delay hiding the intro view until the first run activity is showing. This
4879 // avoids a blip.
4880 mWorkspace.postDelayed(new Runnable() {
4881 @Override
4882 public void run() {
4883 mDragLayer.dismissOverlayView();
4884 }
4885 }, ACTIVITY_START_DELAY);
4886 } else {
4887 mDragLayer.dismissOverlayView();
4888 }
4889 changeWallpaperVisiblity(true);
4890 }
4891
4892 private void markIntroScreenDismissed() {
4893 SharedPreferences.Editor editor = mSharedPrefs.edit();
4894 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4895 editor.apply();
4896 }
4897
Winson Chunga6945242014-01-08 14:04:34 -08004898 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004899 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4900 if (mHotseat != null) mHotseat.setAlpha(1f);
4901 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
4902 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004903 }
4904
4905 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004906 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4907 if (mHotseat != null) mHotseat.setAlpha(0f);
4908 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
4909 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004910 }
4911
Mathew Inwood72fbec12013-11-19 15:45:07 +00004912 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Kenny Guyed131872014-04-30 03:02:21 +01004913 // Called from search suggestion, not supported in other profiles.
4914 final UserHandleCompat myUser = UserHandleCompat.myUserHandle();
4915 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
4916 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(appLaunchIntent,
4917 myUser);
4918 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004919 return null;
4920 }
Kenny Guyed131872014-04-30 03:02:21 +01004921 return new AppInfo(this, activityInfo, myUser, mIconCache, null);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004922 }
4923
4924 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4925 Bitmap icon) {
Kenny Guyed131872014-04-30 03:02:21 +01004926 // Called from search suggestion, not supported in other profiles.
4927 return createShortcutDragInfo(shortcutIntent, caption, icon,
4928 UserHandleCompat.myUserHandle());
4929 }
4930
4931 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4932 Bitmap icon, UserHandleCompat user) {
Kenny Guyc2bd8102014-06-30 12:30:31 +01004933 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyd6fe5262014-07-21 17:11:41 +01004934 CharSequence contentDescription = userManager.getBadgedLabelForUser(caption, user);
Kenny Guyc2bd8102014-06-30 12:30:31 +01004935 return new ShortcutInfo(shortcutIntent, caption, contentDescription, icon, user);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004936 }
4937
Mathew Inwoodb90860a2014-04-11 17:17:39 +01004938 protected void moveWorkspaceToDefaultScreen() {
4939 mWorkspace.moveToDefaultScreen(false);
4940 }
4941
Mathew Inwood72fbec12013-11-19 15:45:07 +00004942 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4943 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004944 mWorkspace.onExternalDragStartedWithItem(dragView);
4945 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004946 }
4947
Anjali Koppalf5d29132014-02-28 13:33:27 -08004948 @Override
4949 public void onPageSwitch(View newPage, int newPageIndex) {
4950 }
4951
Winson Chung80baf5a2010-08-09 16:03:15 -07004952 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004953 * Prints out out state for debugging.
4954 */
4955 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004956 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004957 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004958 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4959 Log.d(TAG, "mRestoring=" + mRestoring);
4960 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4961 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004962 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004963 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004964
Winson Chung785d2eb2011-04-14 16:08:02 -07004965 if (mAppsCustomizeContent != null) {
4966 mAppsCustomizeContent.dumpState();
4967 }
Daniel Sandler325dc232013-06-05 22:57:57 -04004968 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004969 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004970
4971 @Override
4972 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4973 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004974 synchronized (sDumpLogs) {
4975 writer.println(" ");
4976 writer.println("Debug logs: ");
4977 for (int i = 0; i < sDumpLogs.size(); i++) {
4978 writer.println(" " + sDumpLogs.get(i));
4979 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004980 }
4981 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004982
4983 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004984 if (DEBUG_DUMP_LOG) {
4985 synchronized (sDumpLogs) {
4986 Log.d(TAG, "");
4987 Log.d(TAG, "*********************");
4988 Log.d(TAG, "Launcher debug logs: ");
4989 for (int i = 0; i < sDumpLogs.size(); i++) {
4990 Log.d(TAG, " " + sDumpLogs.get(i));
4991 }
4992 Log.d(TAG, "*********************");
4993 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004994 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004995 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004996 }
4997
4998 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004999 addDumpLog(tag, log, null, debugLog);
5000 }
5001
5002 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07005003 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05005004 if (e != null) {
5005 Log.d(tag, log, e);
5006 } else {
5007 Log.d(tag, log);
5008 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005009 }
Winson Chungede41292013-09-19 16:27:36 -07005010 if (DEBUG_DUMP_LOG) {
5011 sDateStamp.setTime(System.currentTimeMillis());
5012 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05005013 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
5014 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07005015 }
Winson Chungede41292013-09-19 16:27:36 -07005016 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005017 }
5018
Winson Chungede41292013-09-19 16:27:36 -07005019 public void dumpLogsToLocalData() {
5020 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01005021 new AsyncTask<Void, Void, Void>() {
5022 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07005023 boolean success = false;
5024 sDateStamp.setTime(sRunStart);
5025 String FILENAME = sDateStamp.getMonth() + "-"
5026 + sDateStamp.getDay() + "_"
5027 + sDateStamp.getHours() + "-"
5028 + sDateStamp.getMinutes() + "_"
5029 + sDateStamp.getSeconds() + ".txt";
5030
5031 FileOutputStream fos = null;
5032 File outFile = null;
5033 try {
5034 outFile = new File(getFilesDir(), FILENAME);
5035 outFile.createNewFile();
5036 fos = new FileOutputStream(outFile);
5037 } catch (Exception e) {
5038 e.printStackTrace();
5039 }
5040 if (fos != null) {
5041 PrintWriter writer = new PrintWriter(fos);
5042
5043 writer.println(" ");
5044 writer.println("Debug logs: ");
5045 synchronized (sDumpLogs) {
5046 for (int i = 0; i < sDumpLogs.size(); i++) {
5047 writer.println(" " + sDumpLogs.get(i));
5048 }
5049 }
5050 writer.close();
5051 }
5052 try {
5053 if (fos != null) {
5054 fos.close();
5055 success = true;
5056 }
5057 } catch (IOException e) {
5058 e.printStackTrace();
5059 }
Michael Jurka43467462013-11-14 12:03:58 +01005060 return null;
Winson Chungede41292013-09-19 16:27:36 -07005061 }
Michael Jurka43467462013-11-14 12:03:58 +01005062 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07005063 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005064 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08005065}
Michael Jurka2763be32011-02-24 11:19:57 -08005066
Michael Jurkaabded662011-03-04 12:06:57 -08005067interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08005068 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07005069 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08005070 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08005071 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08005072 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08005073}
Dan Sandlerd5024042014-01-09 15:01:33 -05005074
5075interface DebugIntents {
5076 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
5077 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00005078}