blob: 75ba8fd99e99bf2b96e0892d9988de65d57d6b4f [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;
Winson Chung70442722012-02-10 15:43:22 -080026import android.animation.ValueAnimator.AnimatorUpdateListener;
Adam Cohen0b395352014-06-09 22:54:36 +000027import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070028import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070029import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070030import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040031import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080033import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070034import android.appwidget.AppWidgetManager;
35import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080037import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080038import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040039import android.content.ComponentName;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080040import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040042import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070044import android.content.IntentFilter;
Winson Chung82f55532011-08-09 14:14:23 -070045import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070046import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080047import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070049import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070051import android.content.res.Resources;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080052import android.database.ContentObserver;
Adam Cohen268c4752012-06-06 17:47:33 -070053import android.graphics.Bitmap;
54import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070055import android.graphics.Color;
Winson Chung5f8afe62013-08-12 16:19:28 -070056import android.graphics.Point;
Adam Cohen268c4752012-06-06 17:47:33 -070057import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070058import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070059import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040060import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070061import android.os.AsyncTask;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080062import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020063import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080064import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070065import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070066import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040067import android.os.SystemClock;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070068import android.provider.Settings;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080069import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.text.Selection;
71import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070072import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080073import android.text.method.TextKeyListener;
Winson Chung892c74d2013-08-22 16:15:50 -070074import android.util.DisplayMetrics;
Joe Onorato7c312c12009-08-13 21:36:53 -070075import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070076import android.view.Display;
77import android.view.Gravity;
78import android.view.HapticFeedbackConstants;
79import android.view.KeyEvent;
80import android.view.LayoutInflater;
81import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070082import android.view.MotionEvent;
83import android.view.Surface;
84import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070085import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080086import android.view.View.OnLongClickListener;
Sunny Goyale755d462014-07-22 13:48:29 -070087import android.view.ViewAnimationUtils;
Adam Cohen96d30a12013-07-16 18:13:21 -070088import android.view.ViewGroup;
89import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080090import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Sunny Goyal651077b2014-06-30 14:15:31 -070091import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070092import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080093import android.view.accessibility.AccessibilityEvent;
Adam Cohencff6af82011-09-13 14:51:53 -070094import android.view.animation.AccelerateDecelerateInterpolator;
Adam Cohen9bfdb762014-07-21 17:44:06 -070095import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080096import android.view.animation.DecelerateInterpolator;
Adam Cohen9bfdb762014-07-21 17:44:06 -070097import android.view.animation.LinearInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080098import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070099import android.widget.Advanceable;
100import android.widget.FrameLayout;
101import android.widget.ImageView;
102import android.widget.TextView;
103import android.widget.Toast;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700104
Sunny Goyal651077b2014-06-30 14:15:31 -0700105import com.android.launcher3.DropTarget.DragObject;
106import com.android.launcher3.PagedView.PageSwitchListener;
Kenny Guyed131872014-04-30 03:02:21 +0100107import com.android.launcher3.compat.LauncherActivityInfoCompat;
108import com.android.launcher3.compat.LauncherAppsCompat;
Sunny Goyale755d462014-07-22 13:48:29 -0700109import com.android.launcher3.compat.PackageInstallerCompat;
110import com.android.launcher3.compat.PackageInstallerCompat.PackageInstallInfo;
Kenny Guyed131872014-04-30 03:02:21 +0100111import com.android.launcher3.compat.UserHandleCompat;
112import com.android.launcher3.compat.UserManagerCompat;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700113
Adam Cohenc0dcf592011-06-01 15:30:43 -0700114import java.io.DataInputStream;
115import java.io.DataOutputStream;
Adam Cohen4caf2982013-08-20 18:54:31 -0700116import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700117import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700118import java.io.FileNotFoundException;
Adam Cohen4caf2982013-08-20 18:54:31 -0700119import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700120import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700121import java.io.PrintWriter;
Adam Cohen0b395352014-06-09 22:54:36 +0000122import java.lang.reflect.Field;
123import java.lang.reflect.InvocationTargetException;
124import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700125import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700126import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700127import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700128import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700129import java.util.HashMap;
Michael Jurkad7c28052012-04-27 15:43:36 -0700130import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000131import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700132
Winson Chunga6945242014-01-08 14:04:34 -0800133
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800134/**
135 * Default launcher application.
136 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100137public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700138 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700139 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800140 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700141 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142
Daniel Sandlerf061f822013-06-27 13:59:36 -0400143 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400144 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700145 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400146 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700147 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700148
Dan Sandlerd5024042014-01-09 15:01:33 -0500149 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
150
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700152 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800153 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700154 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700155 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800156
Michael Jurka8b805b12012-04-18 14:23:14 -0700157 private static final int REQUEST_BIND_APPWIDGET = 11;
158
Mathew Inwood876a8462013-06-14 14:12:41 +0100159 /**
160 * IntentStarter uses request codes starting with this. This must be greater than all activity
161 * request codes used internally.
162 */
163 protected static final int REQUEST_LAST = 100;
164
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800165 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
166
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800167 static final int SCREEN_COUNT = 5;
168 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169
Romain Guy98d01652009-06-30 16:21:04 -0700170 private static final String PREFERENCES = "launcher.preferences";
Michael Jurka0a457bf2012-11-19 14:05:05 -0800171 // To turn on these properties, type
172 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
173 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher_force_rotate";
174 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800175 static final String DISABLE_ALL_APPS_PROPERTY = "launcher_noallapps";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176
Winson Chung2672ff92012-05-04 16:22:30 -0700177 // The Intent extra that defines whether to ignore the launch animation
178 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400179 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700180
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 // Type: int
182 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700183 // Type: int
184 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
187 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800188 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
189 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700190 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800191 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700192 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800193 // Type: boolean
194 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
195 // Type: long
196 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700197 // Type: int
198 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
199 // Type: int
200 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
201 // Type: parcelable
202 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000203 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800204 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000205 // Type: int[]
206 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800207
Adam Cohen432609a2014-03-13 17:03:22 -0700208 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800209 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
210
Adam Cohen3ed316a2014-07-23 18:21:20 -0700211 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
212 static final String ACTION_FIRST_LOAD_COMPLETE =
213 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
214
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100215 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700216 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100217 "com.android.launcher.toolbar_search_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700218 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100219 "com.android.launcher.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700220
Adam Cohen39a06042013-07-19 14:30:12 -0700221 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700222 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700223
Winson Chunga6945242014-01-08 14:04:34 -0800224 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
225
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700226 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700227 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700228 private State mState = State.WORKSPACE;
229 private AnimatorSet mStateAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700230
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700231 private boolean mIsSafeModeEnabled;
232
Joe Onorato9c1289c2009-08-17 11:03:03 -0400233 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700234 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
235 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700236 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800237
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800238 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800239 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800240
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000241 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
242 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
243
Winson Chunga2413752012-04-03 14:22:34 -0700244 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700245 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
246 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Winson Chung64359a52013-07-08 17:17:08 -0700247 private static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700248
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800249 private final BroadcastReceiver mCloseSystemDialogsReceiver
250 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800251 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
252
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800253 private LayoutInflater mInflater;
254
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800255 private Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700256 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800257 private View mPageIndicators;
Michael Jurkab737ee62011-11-15 15:57:22 -0800258 private DragLayer mDragLayer;
259 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700260 private View mWeightWatcher;
Winson Chunga6945242014-01-08 14:04:34 -0800261 private LauncherClings mLauncherClings;
Romain Guycbb89e42009-06-08 15:52:54 -0700262
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700263 private AppWidgetManager mAppWidgetManager;
264 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700265
Michael Jurkac9d95c52011-08-29 14:03:34 -0700266 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700267 private AppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800268 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700269
Michael Jurka0280c3b2010-09-17 15:00:07 -0700270 private int[] mTmpAddItemCellCoordinates = new int[2];
271
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800272 private FolderInfo mFolderInfo;
273
Winson Chung3d503fb2011-07-13 17:25:49 -0700274 private Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800275 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700276
Michael Jurka838a4ca2011-02-07 13:33:06 -0800277 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700278
Winson Chungc51db6a2011-10-05 11:44:49 -0700279 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700280 private AppsCustomizeTabHost mAppsCustomizeTabHost;
281 private AppsCustomizePagedView mAppsCustomizeContent;
282 private boolean mAutoAdvanceRunning = false;
Adam Cohen24ce0b32014-01-14 16:18:14 -0800283 private View mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800284
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700286 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
287 // scroll issues (because the workspace may not have been measured yet) and extra work.
288 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
289 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800290
291 private SpannableStringBuilder mDefaultKeySsb = null;
292
Joe Onorato9c1289c2009-08-17 11:03:03 -0400293 private boolean mWorkspaceLoading = true;
294
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800295 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800296 private boolean mRestoring;
297 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700298 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800299
Michael Jurka1e2f4652013-07-08 18:03:46 -0700300 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700301 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
302
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800303 private Bundle mSavedInstanceState;
304
Joe Onorato9c1289c2009-08-17 11:03:03 -0400305 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800306 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800307 private boolean mUserPresent = true;
308 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700309 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800310 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400311
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700312 private static LocaleConfiguration sLocaleConfiguration = null;
313
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700314 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700315
Adam Cohen61f560d2013-09-30 15:58:20 -0700316 private View.OnTouchListener mHapticFeedbackTouchListener;
317
Adam Cohended9f8d2010-11-03 13:25:16 -0700318 // Related to the auto-advancing of widgets
319 private final int ADVANCE_MSG = 1;
320 private final int mAdvanceInterval = 20000;
321 private final int mAdvanceStagger = 250;
322 private long mAutoAdvanceSentTime;
323 private long mAutoAdvanceTimeLeft = -1;
324 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
325 new HashMap<View, AppWidgetProviderInfo>();
326
Winson Chung400438b2011-01-16 17:53:48 -0800327 // Determines how long to wait after a rotation before restoring the screen orientation to
328 // match the sensor state.
329 private final int mRestoreScreenOrientationDelay = 500;
330
Michael Jurka4ef207b2010-11-29 17:05:45 -0800331 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700332 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
333 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
334 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800335
Winson Chungd64a6662013-09-30 11:06:59 -0700336 private Intent mAppMarketIntent = null;
337 private static final boolean DISABLE_MARKET_BUTTON = true;
338
Craig Mautner360310b2012-10-26 15:13:08 -0700339 private Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700340
Adam Cohen1462de32012-07-24 22:34:36 -0700341 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700342 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700343
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700344 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700345 static Date sDateStamp = new Date();
346 static DateFormat sDateFormat =
347 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
348 static long sRunStart = System.currentTimeMillis();
349 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700350
Winson Chung46353de2012-02-16 14:05:10 -0800351 // We only want to get the SharedPreferences once since it does an FS stat each time we get
352 // it from the context.
353 private SharedPreferences mSharedPrefs;
354
Adam Cohene25af792013-06-06 23:08:25 -0700355 private static ArrayList<ComponentName> mIntentsOnWorkspaceFromUpgradePath = null;
356
Winson Chungf0c6ae02012-03-21 16:10:31 -0700357 // Holds the page that we need to animate to, and the icon views that we need to animate up
358 // when we scroll to that page on resume.
Adam Cohen268c4752012-06-06 17:47:33 -0700359 private ImageView mFolderIconImageView;
360 private Bitmap mFolderIconBitmap;
361 private Canvas mFolderIconCanvas;
362 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700363
Michael Jurkaddd62e92011-02-16 17:49:14 -0800364 private BubbleTextView mWaitingForResume;
365
Michael Jurkac1f5d262011-09-30 19:32:27 -0700366 private Runnable mBuildLayersRunnable = new Runnable() {
367 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700368 if (mWorkspace != null) {
369 mWorkspace.buildPageHardwareLayers();
370 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700371 }
372 };
373
Adam Cohendb364c32014-05-20 14:23:40 -0700374 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800375
Michael Jurka7267fa52013-09-26 15:29:57 -0700376 public static boolean sForceEnableRotation = isPropertyEnabled(FORCE_ENABLE_ROTATION_PROPERTY);
Michael Jurka0a457bf2012-11-19 14:05:05 -0800377
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800378 private static class PendingAddArguments {
379 int requestCode;
380 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700381 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700382 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800383 int cellX;
384 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700385 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800386 }
387
Daniel Sandlerff02d492013-08-05 02:12:05 -0400388 private Stats mStats;
389
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800390 static boolean isPropertyEnabled(String propertyName) {
Michael Jurka0a457bf2012-11-19 14:05:05 -0800391 return Log.isLoggable(propertyName, Log.VERBOSE);
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700392 }
393
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800394 @Override
395 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700396 if (DEBUG_STRICT_MODE) {
397 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
398 .detectDiskReads()
399 .detectDiskWrites()
400 .detectNetwork() // or .detectAll() for all detectable problems
401 .penaltyLog()
402 .build());
403 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
404 .detectLeakedSqlLiteObjects()
405 .detectLeakedClosableObjects()
406 .penaltyLog()
407 .penaltyDeath()
408 .build());
409 }
410
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800411 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400412
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400413 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400414 LauncherAppState app = LauncherAppState.getInstance();
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700415 LauncherAppState.getLauncherProvider().setLauncherProviderChangeListener(this);
Winson Chung5f8afe62013-08-12 16:19:28 -0700416 // Determine the dynamic grid properties
417 Point smallestSize = new Point();
418 Point largestSize = new Point();
419 Point realSize = new Point();
420 Display display = getWindowManager().getDefaultDisplay();
421 display.getCurrentSizeRange(smallestSize, largestSize);
422 display.getRealSize(realSize);
Winson Chung892c74d2013-08-22 16:15:50 -0700423 DisplayMetrics dm = new DisplayMetrics();
424 display.getMetrics(dm);
Winson Chung6e1c0d32013-10-25 15:24:24 -0700425
Winson Chung5f8afe62013-08-12 16:19:28 -0700426 // Lazy-initialize the dynamic grid
427 DeviceProfile grid = app.initDynamicGrid(this,
428 Math.min(smallestSize.x, smallestSize.y),
429 Math.min(largestSize.x, largestSize.y),
Winson Chung892c74d2013-08-22 16:15:50 -0700430 realSize.x, realSize.y,
431 dm.widthPixels, dm.heightPixels);
Winson Chung5f8afe62013-08-12 16:19:28 -0700432
433 // the LauncherApplication should call this, but in case of Instrumentation it might not be present yet
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400434 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700435 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700436 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800437 mModel = app.setLauncher(this);
438 mIconCache = app.getIconCache();
Winson Chunge5467dc2013-10-14 17:03:04 -0700439 mIconCache.flushInvalidIcons(grid);
Joe Onorato41a12d22009-10-31 18:30:00 -0400440 mDragController = new DragController(this);
Winson Chunga6945242014-01-08 14:04:34 -0800441 mLauncherClings = new LauncherClings(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800442 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700443
Daniel Sandlerff02d492013-08-05 02:12:05 -0400444 mStats = new Stats(this);
445
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700446 mAppWidgetManager = AppWidgetManager.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700447
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700448 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
449 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700450
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700451 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
452 // this also ensures that any synchronous binding below doesn't re-trigger another
453 // LauncherModel load.
454 mPaused = false;
455
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800456 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200457 android.os.Debug.startMethodTracing(
458 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800459 }
460
Adam Cohen53805212013-10-01 10:39:23 -0700461
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800462 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800463 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700464
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465 setupViews();
Cristina Stancu476493b2013-08-07 17:20:14 +0100466 grid.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800467
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800468 registerContentObservers();
469
Joe Onorato7c312c12009-08-13 21:36:53 -0700470 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700471
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800472 mSavedState = savedInstanceState;
473 restoreState(mSavedState);
474
475 if (PROFILE_STARTUP) {
476 android.os.Debug.stopMethodTracing();
477 }
478
479 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700480 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700481 // If the user leaves launcher, then we should just load items asynchronously when
482 // they return.
Derek Prothro7aff3992013-12-10 14:00:37 -0500483 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700484 } else {
485 // We only load the page synchronously if the user rotates (or triggers a
486 // configuration change) while launcher is in the foreground
Winson Chung9b9fb962013-11-15 15:39:34 -0800487 mModel.startLoader(true, mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700488 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800489 }
490
491 // For handling default keys
492 mDefaultKeySsb = new SpannableStringBuilder();
493 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800494
495 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
496 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800497
Adam Cohenf9426d52012-06-04 17:26:21 -0700498 updateGlobalIcons();
499
500 // On large interfaces, we want the screen to auto-rotate based on the current orientation
501 unlockScreenOrientation(true);
Winson Chungaf40f202013-09-18 18:26:31 -0700502
Adam Cohen432609a2014-03-13 17:03:22 -0700503 if (shouldShowIntroScreen()) {
504 showIntroScreen();
505 } else {
506 showFirstRunActivity();
507 }
508
Winson Chunge43a1e72014-01-15 10:33:02 -0800509 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
510 // on the device, then we always show the first run cling experience (or if there is no
511 // launcher2). Otherwise, we prompt the user upon started for migration
Winson Chunge43a1e72014-01-15 10:33:02 -0800512 if (mLauncherClings.shouldShowFirstRunOrMigrationClings()) {
513 if (mModel.canMigrateFromOldLauncherDb(this)) {
514 mLauncherClings.showMigrationCling();
515 } else {
516 mLauncherClings.showFirstRunCling();
517 }
Winson Chunga6945242014-01-08 14:04:34 -0800518 } else {
Winson Chunge43a1e72014-01-15 10:33:02 -0800519 mLauncherClings.removeFirstRunAndMigrationClings();
Winson Chunga6945242014-01-08 14:04:34 -0800520 }
Adam Cohenf9426d52012-06-04 17:26:21 -0700521 }
522
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700523 @Override
524 public void onLauncherProviderChange() { }
525
Winson Chung98ca0f72013-07-29 12:58:51 -0700526 /** To be overriden by subclasses to hint to Launcher that we have custom content */
527 protected boolean hasCustomContentToLeft() {
528 return false;
529 }
530
Dave Hawkeya8881582013-09-17 15:55:33 -0600531 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500532 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600533 * {@link #addToCustomContentPage}. This will only be invoked if
534 * {@link #hasCustomContentToLeft()} is {@code true}.
535 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500536 protected void populateCustomContentContainer() {
Dave Hawkeya8881582013-09-17 15:55:33 -0600537 }
538
539 /**
540 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
541 * ensure the custom content page is added or removed if necessary.
542 */
543 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600544 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600545 // Not bound yet, wait for bindScreens to be called.
546 return;
547 }
548
549 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
550 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500551 mWorkspace.createCustomContentContainer();
552 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600553 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
554 mWorkspace.removeCustomContentPage();
555 }
556 }
557
Adam Cohenf9426d52012-06-04 17:26:21 -0700558 private void updateGlobalIcons() {
Winson Chungc51db6a2011-10-05 11:44:49 -0700559 boolean searchVisible = false;
560 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800561 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700562 int coi = getCurrentOrientationIndexForGlobalIcons();
563 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
564 sAppMarketIcon[coi] == null) {
Winson Chungd64a6662013-09-30 11:06:59 -0700565 if (!DISABLE_MARKET_BUTTON) {
566 updateAppMarketIcon();
567 }
Winson Chungc51db6a2011-10-05 11:44:49 -0700568 searchVisible = updateGlobalSearchIcon();
569 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700570 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700571 if (sGlobalSearchIcon[coi] != null) {
572 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700573 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700574 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700575 if (sVoiceSearchIcon[coi] != null) {
576 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700577 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700578 }
Winson Chungd64a6662013-09-30 11:06:59 -0700579 if (!DISABLE_MARKET_BUTTON && sAppMarketIcon[coi] != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -0700580 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800581 }
Winson Chungadf0c182012-08-23 14:59:07 -0700582 if (mSearchDropTargetBar != null) {
583 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
584 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800585 }
Romain Guycbb89e42009-06-08 15:52:54 -0700586
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800587 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700588 if (sLocaleConfiguration == null) {
589 new AsyncTask<Void, Void, LocaleConfiguration>() {
590 @Override
591 protected LocaleConfiguration doInBackground(Void... unused) {
592 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
593 readConfiguration(Launcher.this, localeConfiguration);
594 return localeConfiguration;
595 }
596
597 @Override
598 protected void onPostExecute(LocaleConfiguration result) {
599 sLocaleConfiguration = result;
600 checkForLocaleChange(); // recursive, but now with a locale configuration
601 }
602 }.execute();
603 return;
604 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700605
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800606 final Configuration configuration = getResources().getConfiguration();
607
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700608 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800609 final String locale = configuration.locale.toString();
610
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700611 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800612 final int mcc = configuration.mcc;
613
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700614 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800615 final int mnc = configuration.mnc;
616
Romain Guy84f296c2009-11-04 15:00:44 -0800617 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800618
Romain Guy84f296c2009-11-04 15:00:44 -0800619 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700620 sLocaleConfiguration.locale = locale;
621 sLocaleConfiguration.mcc = mcc;
622 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700623
Joe Onorato0589f0f2010-02-08 13:44:00 -0800624 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700625
626 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
Michael Jurka43467462013-11-14 12:03:58 +0100627 new AsyncTask<Void, Void, Void>() {
628 public Void doInBackground(Void ... args) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700629 writeConfiguration(Launcher.this, localeConfiguration);
Michael Jurka43467462013-11-14 12:03:58 +0100630 return null;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700631 }
Michael Jurka43467462013-11-14 12:03:58 +0100632 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Romain Guy98d01652009-06-30 16:21:04 -0700633 }
634 }
635
636 private static class LocaleConfiguration {
637 public String locale;
638 public int mcc = -1;
639 public int mnc = -1;
640 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700641
Romain Guy98d01652009-06-30 16:21:04 -0700642 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
643 DataInputStream in = null;
644 try {
645 in = new DataInputStream(context.openFileInput(PREFERENCES));
646 configuration.locale = in.readUTF();
647 configuration.mcc = in.readInt();
648 configuration.mnc = in.readInt();
649 } catch (FileNotFoundException e) {
650 // Ignore
651 } catch (IOException e) {
652 // Ignore
653 } finally {
654 if (in != null) {
655 try {
656 in.close();
657 } catch (IOException e) {
658 // Ignore
659 }
660 }
661 }
662 }
663
664 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
665 DataOutputStream out = null;
666 try {
667 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
668 out.writeUTF(configuration.locale);
669 out.writeInt(configuration.mcc);
670 out.writeInt(configuration.mnc);
671 out.flush();
672 } catch (FileNotFoundException e) {
673 // Ignore
674 } catch (IOException e) {
675 //noinspection ResultOfMethodCallIgnored
676 context.getFileStreamPath(PREFERENCES).delete();
677 } finally {
678 if (out != null) {
679 try {
680 out.close();
681 } catch (IOException e) {
682 // Ignore
683 }
684 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800685 }
686 }
687
Anton Hanssona2f665f2013-09-26 12:18:32 +0100688 public Stats getStats() {
689 return mStats;
690 }
691
Bjorn Bringertc459e522013-06-07 19:36:01 +0100692 public LayoutInflater getInflater() {
693 return mInflater;
694 }
695
Winson Chung36a62fe2012-05-06 18:04:42 -0700696 boolean isDraggingEnabled() {
697 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
698 // that is subsequently removed from the workspace in startBinding().
699 return !mModel.isLoadingWorkspace();
700 }
701
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800702 static int getScreen() {
703 synchronized (sLock) {
704 return sScreen;
705 }
706 }
707
708 static void setScreen(int screen) {
709 synchronized (sLock) {
710 sScreen = screen;
711 }
712 }
713
Winson Chung557d6ed2011-07-08 15:34:52 -0700714 /**
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000715 * Copied from View -- the View version of the method isn't called
716 * anywhere else in our process and only exists for API level 17+,
717 * so it's ok to keep our own version with no API requirement.
718 */
719 public static int generateViewId() {
720 for (;;) {
721 final int result = sNextGeneratedId.get();
722 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
723 int newValue = result + 1;
724 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
725 if (sNextGeneratedId.compareAndSet(result, newValue)) {
726 return result;
727 }
728 }
729 }
730
731 public int getViewIdForItem(ItemInfo info) {
732 // This cast is safe given the > 2B range for int.
733 int itemId = (int) info.id;
734 if (mItemIdToViewId.containsKey(itemId)) {
735 return mItemIdToViewId.get(itemId);
736 }
737 int viewId = generateViewId();
738 mItemIdToViewId.put(itemId, viewId);
739 return viewId;
740 }
741
742 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700743 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
744 * a configuration step, this allows the proper animations to run after other transitions.
745 */
Adam Cohendb364c32014-05-20 14:23:40 -0700746 private long completeAdd(PendingAddArguments args) {
747
748 long screenId = ensurePendingDropLayoutExists(args.screenId);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800749 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800750 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700751 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700752 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700753 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800754 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700755 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700756 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800757 }
Michael Jurka27614d22012-04-02 06:40:22 -0700758 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
759 // if you turned the screen off and then back while in All Apps, Launcher would not
760 // return to the workspace. Clearing mAddInfo.container here fixes this issue
761 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700762 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800763 }
764
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800765 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700766 protected void onActivityResult(
767 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700768 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700769 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700770 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800771 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700772
Adam Cohenad4e15c2013-10-17 16:21:35 -0700773 Runnable exitSpringLoaded = new Runnable() {
774 @Override
775 public void run() {
776 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
777 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
778 }
779 };
780
Michael Jurka8b805b12012-04-18 14:23:14 -0700781 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700782 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700783 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
784 if (resultCode == RESULT_CANCELED) {
785 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700786 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700787 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700788 } else if (resultCode == RESULT_OK) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700789 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
790 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700791 }
792 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200793 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
794 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
795 mWorkspace.exitOverviewMode(false);
796 }
797 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700798 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200799
Adam Cohened66b2b2012-01-23 17:28:51 -0800800 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
801 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700802
Adam Cohendb364c32014-05-20 14:23:40 -0700803 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800804 // We have special handling for widgets
805 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800806 final int appWidgetId;
807 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
808 : -1;
809 if (widgetId < 0) {
810 appWidgetId = pendingAddWidgetId;
811 } else {
812 appWidgetId = widgetId;
813 }
814
Adam Cohenad4e15c2013-10-17 16:21:35 -0700815 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800816 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700817 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
818 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700819 result = RESULT_CANCELED;
820 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700821 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700822 @Override
823 public void run() {
824 exitSpringLoadedDragModeDelayed(false, 0, null);
825 }
826 };
Adam Cohendb364c32014-05-20 14:23:40 -0700827 if (workspaceLocked) {
828 // No need to remove the empty screen if we're mid-binding, as the
829 // the bind will not add the empty screen.
830 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
831 } else {
832 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
833 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
834 }
Winson Chung5aaab772012-04-27 15:24:02 -0700835 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700836 if (!workspaceLocked) {
837 mPendingAddInfo.screenId = ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
838 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
839
840 dropLayout.setDropPending(true);
841 final Runnable onComplete = new Runnable() {
842 @Override
843 public void run() {
844 completeTwoStageWidgetDrop(resultCode, appWidgetId);
845 dropLayout.setDropPending(false);
846 }
847 };
848 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
849 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
850 } else {
851 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
852 mPendingAddInfo);
853 sPendingAddItem = args;
854 }
Winson Chung5aaab772012-04-27 15:24:02 -0700855 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800856 return;
857 }
858
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800859 // The pattern used here is that a user PICKs a specific application,
860 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700861
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800862 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
863 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700864 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700865 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
866 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800867 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700868 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800869 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700870 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700871 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
872 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800873 }
Adam Cohen00074722013-10-11 17:46:09 -0700874 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700875 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700876 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800877 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800878 mDragLayer.clearAnimatedView();
Adam Cohened66b2b2012-01-23 17:28:51 -0800879 }
880
Adam Cohendb364c32014-05-20 14:23:40 -0700881 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
882 appWidgetId, ItemInfo info) {
883 PendingAddArguments args = new PendingAddArguments();
884 args.requestCode = requestCode;
885 args.intent = data;
886 args.container = info.container;
887 args.screenId = info.screenId;
888 args.cellX = info.cellX;
889 args.cellY = info.cellY;
890 args.appWidgetId = appWidgetId;
891 return args;
892 }
893
894 /**
895 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
896 *
897 * @param screenId the screen id to check
898 * @return the new screen, or screenId if it exists
899 */
900 private long ensurePendingDropLayoutExists(long screenId) {
901 CellLayout dropLayout =
902 (CellLayout) mWorkspace.getScreenWithId(screenId);
903 if (dropLayout == null) {
904 // it's possible that the add screen was removed because it was
905 // empty and a re-bind occurred
906 mWorkspace.addExtraEmptyScreen();
907 return mWorkspace.commitExtraEmptyScreen();
908 } else {
909 return screenId;
910 }
911 }
912
Adam Cohened66b2b2012-01-23 17:28:51 -0800913 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700914 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700915 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800916 Runnable onCompleteRunnable = null;
917 int animationType = 0;
918
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700919 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800920 if (resultCode == RESULT_OK) {
921 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
922 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700923 mPendingAddWidgetInfo);
924 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800925 onCompleteRunnable = new Runnable() {
926 @Override
927 public void run() {
928 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700929 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700930 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
931 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800932 }
933 };
934 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800935 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800936 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800937 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700938 if (mDragLayer.getAnimatedView() != null) {
939 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
940 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
941 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700942 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700943 // The animated view may be null in the case of a rotation during widget configuration
944 onCompleteRunnable.run();
945 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800946 }
947
948 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700949 protected void onStop() {
950 super.onStop();
951 FirstFrameAnimatorHelper.setIsVisible(false);
952 }
953
954 @Override
955 protected void onStart() {
956 super.onStart();
957 FirstFrameAnimatorHelper.setIsVisible(true);
958 }
959
960 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800961 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200962 long startTime = 0;
963 if (DEBUG_RESUME_TIME) {
964 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400965 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200966 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800967 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700968
Winson Chung4a2afa32012-07-19 14:53:05 -0700969 // Restore the previous launcher state
970 if (mOnResumeState == State.WORKSPACE) {
971 showWorkspace(false);
972 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
Winson Chung07e045c62013-11-06 15:49:51 -0800973 showAllApps(false, mAppsCustomizeContent.getContentType(), false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700974 }
975 mOnResumeState = State.NONE;
976
Craig Mautner360310b2012-10-26 15:13:08 -0700977 // Background was set to gradient in onPause(), restore to black if in all apps.
978 setWorkspaceBackground(mState == State.WORKSPACE);
979
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800980 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700981 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700982 setWorkspaceLoading(true);
Derek Prothro7aff3992013-12-10 14:00:37 -0500983 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400984 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700985 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800986 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700987 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200988 // We might have postponed some bind calls until onResume (see waitUntilResume) --
989 // execute them here
990 long startTimeCallbacks = 0;
991 if (DEBUG_RESUME_TIME) {
992 startTimeCallbacks = System.currentTimeMillis();
993 }
994
995 if (mAppsCustomizeContent != null) {
996 mAppsCustomizeContent.setBulkBind(true);
997 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700998 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
999 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001000 }
1001 if (mAppsCustomizeContent != null) {
1002 mAppsCustomizeContent.setBulkBind(false);
1003 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001004 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001005 if (DEBUG_RESUME_TIME) {
1006 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1007 (System.currentTimeMillis() - startTimeCallbacks));
1008 }
Michael Jurka447bf842013-05-15 14:52:15 +02001009 }
Michael Jurka54554252013-08-01 12:52:23 +02001010 if (mOnResumeCallbacks.size() > 0) {
1011 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1012 mOnResumeCallbacks.get(i).run();
1013 }
1014 mOnResumeCallbacks.clear();
1015 }
Winson Chunge4e50662012-01-23 14:45:13 -08001016
1017 // Reset the pressed state of icons that were locked in the press state while activities
1018 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001019 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001020 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001021 mWaitingForResume.setStayPressed(false);
1022 }
Winson Chunge4e50662012-01-23 14:45:13 -08001023 if (mAppsCustomizeContent != null) {
1024 // Resets the previous all apps icon press state
1025 mAppsCustomizeContent.resetDrawableState();
1026 }
Winson Chung82963d52013-10-09 11:20:57 -07001027
Adam Cohen06dff352012-06-01 17:17:08 -07001028 // It is possible that widgets can receive updates while launcher is not in the foreground.
1029 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1030 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1031 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001032 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001033
Winson Chung780fe592013-09-26 14:48:44 -07001034 // Process any items that were added while Launcher was away.
1035 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1036
Winson Chung5841efa2013-09-30 18:06:44 -07001037 // Update the voice search button proxy
1038 updateVoiceButtonProxyVisible(false);
1039
Adam Cohenf9426d52012-06-04 17:26:21 -07001040 // Again, as with the above scenario, it's possible that one or more of the global icons
1041 // were updated in the wrong orientation.
1042 updateGlobalIcons();
Michael Jurka447bf842013-05-15 14:52:15 +02001043 if (DEBUG_RESUME_TIME) {
1044 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1045 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001046
1047 if (mWorkspace.getCustomContentCallbacks() != null) {
1048 // If we are resuming and the custom content is the current page, we call onShow().
1049 // It is also poassible that onShow will instead be called slightly after first layout
1050 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1051 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001052 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001053 }
1054 }
Adam Cohenedaaa302013-10-01 17:33:27 -07001055 mWorkspace.updateInteractionForState();
Adam Cohen53805212013-10-01 10:39:23 -07001056 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001057
1058 PackageInstallerCompat.getInstance(this).onResume();
Adam Cohen06dff352012-06-01 17:17:08 -07001059 }
1060
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001061 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001062 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001063 // Ensure that items added to Launcher are queued until Launcher returns
1064 InstallShortcutReceiver.enableInstallQueue();
Sunny Goyale755d462014-07-22 13:48:29 -07001065 PackageInstallerCompat.getInstance(this).onPause();
Winson Chung997a9232013-07-24 15:33:46 -07001066
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001067 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001068 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001069 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001070 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001071
1072 // We call onHide() aggressively. The custom content callbacks should be able to
1073 // debounce excess onHide calls.
1074 if (mWorkspace.getCustomContentCallbacks() != null) {
1075 mWorkspace.getCustomContentCallbacks().onHide();
1076 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001077 }
Romain Guycbb89e42009-06-08 15:52:54 -07001078
Adam Cohenbffe7452013-07-22 18:21:45 -07001079 QSBScroller mQsbScroller = new QSBScroller() {
1080 int scrollY = 0;
1081
1082 @Override
1083 public void setScrollY(int scroll) {
1084 scrollY = scroll;
1085
1086 if (mWorkspace.isOnOrMovingToCustomContent()) {
1087 mSearchDropTargetBar.setTranslationY(- scrollY);
Mark Brophyd7dc6812013-09-20 17:27:32 +01001088 getQsbBar().setTranslationY(-scrollY);
Adam Cohenbffe7452013-07-22 18:21:45 -07001089 }
1090 }
1091 };
1092
1093 public void resetQSBScroll() {
1094 mSearchDropTargetBar.animate().translationY(0).start();
Mark Brophyd7dc6812013-09-20 17:27:32 +01001095 getQsbBar().animate().translationY(0).start();
Adam Cohenbffe7452013-07-22 18:21:45 -07001096 }
1097
1098 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001099 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1100 // by a onResume or by scrolling otherwise.
1101 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001102
1103 // Custom content is completely hidden
1104 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001105
1106 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1107 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001108
1109 // Indicates whether the user is allowed to scroll away from the custom content.
1110 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001111 }
1112
Jorim Jaggid017f882014-01-14 17:08:48 -08001113 protected boolean hasSettings() {
1114 return false;
1115 }
1116
Adam Cohenbffe7452013-07-22 18:21:45 -07001117 public interface QSBScroller {
1118 public void setScrollY(int scrollY);
1119 }
1120
Winson Chung98ca0f72013-07-29 12:58:51 -07001121 public QSBScroller addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001122 CustomContentCallbacks callbacks, String description) {
1123 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohenbffe7452013-07-22 18:21:45 -07001124 return mQsbScroller;
Adam Cohen66a01fd2013-06-11 12:48:00 -07001125 }
1126
Adam Cohenedb40762013-07-18 16:45:45 -07001127 // The custom content needs to offset its content to account for the QSB
1128 public int getTopOffsetForCustomContent() {
1129 return mWorkspace.getPaddingTop();
1130 }
1131
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001132 @Override
1133 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001134 // Flag the loader to stop early before switching
1135 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -07001136 if (mAppsCustomizeContent != null) {
1137 mAppsCustomizeContent.surrender();
1138 }
Romain Guy13c2e7b2010-03-10 19:45:00 -08001139 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001140 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001141
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001142 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001143 @Override
1144 public void onWindowFocusChanged(boolean hasFocus) {
1145 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001146 mHasFocus = hasFocus;
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001147 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001148
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001149 private boolean acceptFilter() {
1150 final InputMethodManager inputManager = (InputMethodManager)
1151 getSystemService(Context.INPUT_METHOD_SERVICE);
1152 return !inputManager.isFullscreenMode();
1153 }
1154
1155 @Override
1156 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001157 final int uniChar = event.getUnicodeChar();
1158 final boolean handled = super.onKeyDown(keyCode, event);
1159 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1160 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001161 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1162 keyCode, event);
1163 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001164 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001165 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001166 // showSearchDialog()
1167 // If there are multiple keystrokes before the search dialog takes focus,
1168 // onSearchRequested() will be called for every keystroke,
1169 // but it is idempotent, so it's fine.
1170 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001171 }
1172 }
1173
Joe Onorato8a9625e2010-01-28 15:55:35 -08001174 // Eat the long press event so the keyboard doesn't come up.
1175 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1176 return true;
1177 }
1178
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001179 return handled;
1180 }
1181
Karl Rosaen138a0412009-04-23 19:00:21 -07001182 private String getTypedText() {
1183 return mDefaultKeySsb.toString();
1184 }
1185
1186 private void clearTypedText() {
1187 mDefaultKeySsb.clear();
1188 mDefaultKeySsb.clearSpans();
1189 Selection.setSelection(mDefaultKeySsb, 0);
1190 }
1191
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001192 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001193 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1194 * State
1195 */
1196 private static State intToState(int stateOrdinal) {
1197 State state = State.WORKSPACE;
1198 final State[] stateValues = State.values();
1199 for (int i = 0; i < stateValues.length; i++) {
1200 if (stateValues[i].ordinal() == stateOrdinal) {
1201 state = stateValues[i];
1202 break;
1203 }
1204 }
1205 return state;
1206 }
1207
1208 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001209 * Restores the previous state, if it exists.
1210 *
1211 * @param savedState The previous state.
1212 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001213 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001214 private void restoreState(Bundle savedState) {
1215 if (savedState == null) {
1216 return;
1217 }
1218
Michael Jurka883f55b2010-10-21 15:47:14 -07001219 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -07001220 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -07001221 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001222 }
1223
Adam Cohen21cd0022013-10-09 18:57:02 -07001224 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1225 PagedView.INVALID_RESTORE_PAGE);
1226 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001227 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001228 }
1229
Winson Chung3d503fb2011-07-13 17:25:49 -07001230 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001231 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001232
Winson Chung3d503fb2011-07-13 17:25:49 -07001233 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1234 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001235 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001236 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1237 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001238 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1239 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
1240 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001241 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001242 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001243 mRestoring = true;
1244 }
1245
1246 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
1247 if (renameFolder) {
1248 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001249 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001250 mRestoring = true;
1251 }
Winson Chunga12a2502010-12-20 14:41:35 -08001252
Winson Chung785d2eb2011-04-14 16:08:02 -07001253 // Restore the AppsCustomize tab
1254 if (mAppsCustomizeTabHost != null) {
1255 String curTab = savedState.getString("apps_customize_currentTab");
1256 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001257 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -07001258 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -07001259 mAppsCustomizeContent.loadAssociatedPages(
1260 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -07001261 }
1262
Winson Chung5afbf7b2011-07-25 11:53:08 -07001263 int currentIndex = savedState.getInt("apps_customize_currentIndex");
1264 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001265 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001266 mItemIdToViewId = (HashMap<Integer, Integer>)
1267 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001268 }
1269
1270 /**
1271 * Finds all the views we need and configure them properly.
1272 */
1273 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001274 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001275
Craig Mautner360310b2012-10-26 15:13:08 -07001276 mLauncherView = findViewById(R.id.launcher);
Winson Chung4c98d922011-05-31 16:50:48 -07001277 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1278 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001279 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001280 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001281
John Spurlock77e1f472013-09-11 10:09:51 -04001282 mLauncherView.setSystemUiVisibility(
1283 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001284 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001285
Winson Chung4c98d922011-05-31 16:50:48 -07001286 // Setup the drag layer
1287 mDragLayer.setup(this, dragController);
1288
Winson Chung3d503fb2011-07-13 17:25:49 -07001289 // Setup the hotseat
1290 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1291 if (mHotseat != null) {
1292 mHotseat.setup(this);
Winson Chung11a1a532013-09-13 11:14:45 -07001293 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001294 }
1295
Jorim Jaggid017f882014-01-14 17:08:48 -08001296 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Adam Cohen61f560d2013-09-30 15:58:20 -07001297 View widgetButton = findViewById(R.id.widget_button);
1298 widgetButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001299 @Override
1300 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001301 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001302 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001303 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001304 }
1305 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001306 widgetButton.setOnTouchListener(getHapticFeedbackTouchListener());
1307
1308 View wallpaperButton = findViewById(R.id.wallpaper_button);
1309 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001310 @Override
1311 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001312 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001313 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001314 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001315 }
1316 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001317 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1318
1319 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001320 if (hasSettings()) {
1321 settingsButton.setOnClickListener(new OnClickListener() {
1322 @Override
1323 public void onClick(View arg0) {
1324 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001325 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001326 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001327 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001328 });
1329 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1330 } else {
1331 settingsButton.setVisibility(View.GONE);
1332 FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) widgetButton.getLayoutParams();
1333 lp.gravity = Gravity.END | Gravity.TOP;
1334 widgetButton.requestLayout();
1335 }
1336
Adam Cohendbdff6b2013-09-18 19:09:15 -07001337 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001338
Winson Chung4c98d922011-05-31 16:50:48 -07001339 // Setup the workspace
1340 mWorkspace.setHapticFeedbackEnabled(false);
1341 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001342 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001343 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001344
Winson Chungf0ea4d32011-06-06 14:27:16 -07001345 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001346 mSearchDropTargetBar = (SearchDropTargetBar)
1347 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001348
Winson Chungf0ea4d32011-06-06 14:27:16 -07001349 // Setup AppsCustomize
Craig Mautner360310b2012-10-26 15:13:08 -07001350 mAppsCustomizeTabHost = (AppsCustomizeTabHost) findViewById(R.id.apps_customize_pane);
Winson Chungf0ea4d32011-06-06 14:27:16 -07001351 mAppsCustomizeContent = (AppsCustomizePagedView)
1352 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
1353 mAppsCustomizeContent.setup(this, dragController);
Craig Mautner360310b2012-10-26 15:13:08 -07001354
Winson Chung3d503fb2011-07-13 17:25:49 -07001355 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001356 dragController.setDragScoller(mWorkspace);
1357 dragController.setScrollView(mDragLayer);
1358 dragController.setMoveTarget(mWorkspace);
1359 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001360 if (mSearchDropTargetBar != null) {
1361 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -08001362 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001363
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001364 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001365 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001366 mWeightWatcher = new WeightWatcher(this);
1367 mWeightWatcher.setAlpha(0.5f);
1368 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001369 new FrameLayout.LayoutParams(
1370 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001371 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001372 Gravity.BOTTOM)
1373 );
Adam Cohen39a06042013-07-19 14:30:12 -07001374
1375 boolean show = shouldShowWeightWatcher();
1376 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001377 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001378 }
1379
1380 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001381 * Sets the all apps button. This method is called from {@link Hotseat}.
1382 */
1383 public void setAllAppsButton(View allAppsButton) {
1384 mAllAppsButton = allAppsButton;
1385 }
1386
1387 public View getAllAppsButton() {
1388 return mAllAppsButton;
1389 }
1390
1391 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001392 * Creates a view representing a shortcut.
1393 *
1394 * @param info The data structure describing the shortcut.
1395 *
1396 * @return A View inflated from R.layout.application.
1397 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001398 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001399 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -07001400 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001401 }
1402
1403 /**
1404 * Creates a view representing a shortcut inflated from the specified resource.
1405 *
1406 * @param layoutResId The id of the XML layout used to create the shortcut.
1407 * @param parent The group the shortcut belongs to.
1408 * @param info The data structure describing the shortcut.
1409 *
1410 * @return A View inflated from layoutResId.
1411 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001412 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -08001413 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07001414 favorite.applyFromShortcutInfo(info, mIconCache, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001415 favorite.setOnClickListener(this);
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;
Romain Guycbb89e42009-06-08 15:52:54 -07001569
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001570 LauncherModel.addItemToDatabase(this, launcherInfo,
Adam Cohendcd297f2013-06-18 13:13:40 -07001571 container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001572
1573 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001574 if (hostView == null) {
1575 // Perform actual inflation because we're live
1576 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1577 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1578 } else {
1579 // The AppWidgetHostView has already been inflated and instantiated
1580 launcherInfo.hostView = hostView;
1581 }
Romain Guycbb89e42009-06-08 15:52:54 -07001582
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001583 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001584 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001585 launcherInfo.notifyWidgetSizeChanged(this);
1586
Adam Cohendcd297f2013-06-18 13:13:40 -07001587 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001588 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001589
1590 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001591 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001592 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001593 }
Romain Guycbb89e42009-06-08 15:52:54 -07001594
Adam Cohended9f8d2010-11-03 13:25:16 -07001595 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1596 @Override
1597 public void onReceive(Context context, Intent intent) {
1598 final String action = intent.getAction();
1599 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1600 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001601 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001602 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001603
Winson Chungc100e8e2011-08-09 16:02:43 -07001604 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001605 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001606 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001607 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001608 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001609 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1610 mUserPresent = true;
1611 updateRunning();
Dan Sandlerd5024042014-01-09 15:01:33 -05001612 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1613 mModel.resetLoadedState(false, true);
1614 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1615 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1616 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1617 mModel.resetLoadedState(false, true);
1618 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1619 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1620 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001621 } else if (LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED.equals(action)
1622 || LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
1623 getModel().forceReload();
Adam Cohended9f8d2010-11-03 13:25:16 -07001624 }
1625 }
1626 };
1627
1628 @Override
1629 public void onAttachedToWindow() {
1630 super.onAttachedToWindow();
1631
1632 // Listen for broadcasts related to user-presence
1633 final IntentFilter filter = new IntentFilter();
1634 filter.addAction(Intent.ACTION_SCREEN_OFF);
1635 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001636 // For handling managed profiles
1637 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED);
1638 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED);
Dan Sandlerd5024042014-01-09 15:01:33 -05001639 if (ENABLE_DEBUG_INTENTS) {
1640 filter.addAction(DebugIntents.DELETE_DATABASE);
1641 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1642 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001643 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001644 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001645 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001646 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001647 mVisible = true;
1648 }
1649
Adam Cohen0b395352014-06-09 22:54:36 +00001650 /**
1651 * Sets up transparent navigation and status bars in LMP.
1652 * This method is a no-op for other platform versions.
1653 */
1654 @TargetApi(19)
1655 private void setupTransparentSystemBarsForLmp() {
1656 // TODO(sansid): use the APIs directly when compiling against L sdk.
1657 // Currently we use reflection to access the flags and the API to set the transparency
1658 // on the System bars.
1659 if (Utilities.isLmp()) {
1660 try {
1661 getWindow().getAttributes().systemUiVisibility |=
1662 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1663 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1664 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1665 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1666 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1667 Field drawsSysBackgroundsField = WindowManager.LayoutParams.class.getField(
1668 "FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS");
1669 getWindow().addFlags(drawsSysBackgroundsField.getInt(null));
1670
1671 Method setStatusBarColorMethod =
1672 Window.class.getDeclaredMethod("setStatusBarColor", int.class);
1673 Method setNavigationBarColorMethod =
1674 Window.class.getDeclaredMethod("setNavigationBarColor", int.class);
1675 setStatusBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1676 setNavigationBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1677 } catch (NoSuchFieldException e) {
1678 Log.w(TAG, "NoSuchFieldException while setting up transparent bars");
1679 } catch (NoSuchMethodException ex) {
1680 Log.w(TAG, "NoSuchMethodException while setting up transparent bars");
1681 } catch (IllegalAccessException e) {
1682 Log.w(TAG, "IllegalAccessException while setting up transparent bars");
1683 } catch (IllegalArgumentException e) {
1684 Log.w(TAG, "IllegalArgumentException while setting up transparent bars");
1685 } catch (InvocationTargetException e) {
1686 Log.w(TAG, "InvocationTargetException while setting up transparent bars");
1687 } finally {}
1688 }
1689 }
1690
Adam Cohended9f8d2010-11-03 13:25:16 -07001691 @Override
1692 public void onDetachedFromWindow() {
1693 super.onDetachedFromWindow();
1694 mVisible = false;
1695
Adam Cohend113e0c2010-11-11 10:48:05 -08001696 if (mAttached) {
1697 unregisterReceiver(mReceiver);
1698 mAttached = false;
1699 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001700 updateRunning();
1701 }
1702
1703 public void onWindowVisibilityChanged(int visibility) {
1704 mVisible = visibility == View.VISIBLE;
1705 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001706 // The following code used to be in onResume, but it turns out onResume is called when
1707 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1708 // is a more appropriate event to handle
1709 if (mVisible) {
1710 mAppsCustomizeTabHost.onWindowVisible();
1711 if (!mWorkspaceLoading) {
1712 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001713 // We want to let Launcher draw itself at least once before we force it to build
1714 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001715 // apps is nice and speedy.
1716 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001717 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001718 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001719 if (mStarted) return;
1720 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001721 // We delay the layer building a bit in order to give
1722 // other message processing a time to run. In particular
1723 // this avoids a delay in hiding the IME if it was
1724 // currently shown, because doing that may involve
1725 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001726 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001727 final ViewTreeObserver.OnDrawListener listener = this;
1728 mWorkspace.post(new Runnable() {
1729 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001730 if (mWorkspace != null &&
1731 mWorkspace.getViewTreeObserver() != null) {
1732 mWorkspace.getViewTreeObserver().
1733 removeOnDrawListener(listener);
1734 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001735 }
1736 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001737 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001738 }
1739 });
1740 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001741 // When Launcher comes back to foreground, a different Activity might be responsible for
1742 // the app market intent, so refresh the icon
Winson Chungd64a6662013-09-30 11:06:59 -07001743 if (!DISABLE_MARKET_BUTTON) {
1744 updateAppMarketIcon();
1745 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001746 clearTypedText();
1747 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001748 }
1749
1750 private void sendAdvanceMessage(long delay) {
1751 mHandler.removeMessages(ADVANCE_MSG);
1752 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1753 mHandler.sendMessageDelayed(msg, delay);
1754 mAutoAdvanceSentTime = System.currentTimeMillis();
1755 }
1756
1757 private void updateRunning() {
1758 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1759 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1760 mAutoAdvanceRunning = autoAdvanceRunning;
1761 if (autoAdvanceRunning) {
1762 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1763 sendAdvanceMessage(delay);
1764 } else {
1765 if (!mWidgetsToAdvance.isEmpty()) {
1766 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1767 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1768 }
1769 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001770 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001771 }
1772 }
1773 }
1774
1775 private final Handler mHandler = new Handler() {
1776 @Override
1777 public void handleMessage(Message msg) {
1778 if (msg.what == ADVANCE_MSG) {
1779 int i = 0;
1780 for (View key: mWidgetsToAdvance.keySet()) {
1781 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1782 final int delay = mAdvanceStagger * i;
1783 if (v instanceof Advanceable) {
1784 postDelayed(new Runnable() {
1785 public void run() {
1786 ((Advanceable) v).advance();
1787 }
1788 }, delay);
1789 }
1790 i++;
1791 }
1792 sendAdvanceMessage(mAdvanceInterval);
1793 }
1794 }
1795 };
1796
1797 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001798 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001799 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1800 if (v instanceof Advanceable) {
1801 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001802 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001803 updateRunning();
1804 }
1805 }
1806
1807 void removeWidgetToAutoAdvance(View hostView) {
1808 if (mWidgetsToAdvance.containsKey(hostView)) {
1809 mWidgetsToAdvance.remove(hostView);
1810 updateRunning();
1811 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001812 }
1813
Joe Onorato9c1289c2009-08-17 11:03:03 -04001814 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001815 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001816 launcherInfo.hostView = null;
1817 }
1818
Winson Chung93eef082012-03-23 15:59:27 -07001819 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1820 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1821 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001822 }
1823
Winson Chunga6945242014-01-08 14:04:34 -08001824 public DragLayer getDragLayer() {
1825 return mDragLayer;
1826 }
1827
1828 public Workspace getWorkspace() {
1829 return mWorkspace;
1830 }
1831
1832 public Hotseat getHotseat() {
1833 return mHotseat;
1834 }
1835
Jorim Jaggid017f882014-01-14 17:08:48 -08001836 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001837 return mOverviewPanel;
1838 }
1839
1840 public SearchDropTargetBar getSearchBar() {
1841 return mSearchDropTargetBar;
1842 }
1843
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001844 public LauncherAppWidgetHost getAppWidgetHost() {
1845 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001846 }
Romain Guycbb89e42009-06-08 15:52:54 -07001847
Winson Chunga9abd0e2010-10-27 17:18:37 -07001848 public LauncherModel getModel() {
1849 return mModel;
1850 }
1851
Winson Chunga6945242014-01-08 14:04:34 -08001852 public LauncherClings getLauncherClings() {
1853 return mLauncherClings;
1854 }
1855
1856 protected SharedPreferences getSharedPrefs() {
1857 return mSharedPrefs;
1858 }
1859
Bjorn Bringertc459e522013-06-07 19:36:01 +01001860 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001861 getWindow().closeAllPanels();
1862
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001863 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001864 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001865 }
1866
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001867 @Override
1868 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001869 long startTime = 0;
1870 if (DEBUG_RESUME_TIME) {
1871 startTime = System.currentTimeMillis();
1872 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001873 super.onNewIntent(intent);
1874
1875 // Close the menu
1876 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001877 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001878 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001879
Adam Cohened307df2013-10-02 09:37:31 -07001880 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1881 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1882 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001883
Adam Cohen6fecd412013-10-02 17:41:50 -07001884 if (mWorkspace == null) {
1885 // Can be cases where mWorkspace is null, this prevents a NPE
1886 return;
1887 }
1888 Folder openFolder = mWorkspace.getOpenFolder();
1889 // In all these cases, only animate if we're already on home
1890 mWorkspace.exitWidgetResizeMode();
1891 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Coppa120b8e2013-11-12 16:26:04 +00001892 openFolder == null && shouldMoveToDefaultScreenOnHomeIntent()) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001893 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001894 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001895
Adam Cohen6fecd412013-10-02 17:41:50 -07001896 closeFolder();
1897 exitSpringLoadedDragMode();
1898
1899 // If we are already on home, then just animate back to the workspace,
1900 // otherwise, just wait until onResume to set the state back to Workspace
1901 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001902 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001903 } else {
1904 mOnResumeState = State.WORKSPACE;
1905 }
1906
1907 final View v = getWindow().peekDecorView();
1908 if (v != null && v.getWindowToken() != null) {
1909 InputMethodManager imm = (InputMethodManager)getSystemService(
1910 INPUT_METHOD_SERVICE);
1911 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1912 }
1913
1914 // Reset the apps customize page
Winson Chunge7e97e62013-12-02 17:02:50 -08001915 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001916 mAppsCustomizeTabHost.reset();
1917 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001918
1919 onHomeIntent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001920 }
Adam Cohened307df2013-10-02 09:37:31 -07001921
Michael Jurka447bf842013-05-15 14:52:15 +02001922 if (DEBUG_RESUME_TIME) {
1923 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1924 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001925 }
1926
Adam Coppa120b8e2013-11-12 16:26:04 +00001927 /**
1928 * Override point for subclasses to prevent movement to the default screen when the home
1929 * button is pressed. Used (for example) in GEL, to prevent movement during a search.
1930 */
1931 protected boolean shouldMoveToDefaultScreenOnHomeIntent() {
1932 return true;
1933 }
1934
1935 /**
1936 * Override point for subclasses to provide custom behaviour for when a home intent is fired.
1937 */
1938 protected void onHomeIntent() {
1939 // Do nothing
1940 }
1941
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001942 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001943 public void onRestoreInstanceState(Bundle state) {
1944 super.onRestoreInstanceState(state);
1945 for (int page: mSynchronouslyBoundPages) {
1946 mWorkspace.restoreInstanceStateForChild(page);
1947 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001948 }
1949
1950 @Override
1951 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001952 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001953 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1954 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001955 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001956 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001957
Michael Jurka883f55b2010-10-21 15:47:14 -07001958 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001959 // We close any open folder since it will not be re-opened, and we need to make sure
1960 // this state is reflected.
1961 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001962
Adam Cohendcd297f2013-06-18 13:13:40 -07001963 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001964 mWaitingForResult) {
1965 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001966 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001967 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1968 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001969 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1970 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1971 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001972 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001973 }
1974
1975 if (mFolderInfo != null && mWaitingForResult) {
1976 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1977 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1978 }
Michael Jurka946ad472010-07-09 18:05:18 -07001979
Winson Chung785d2eb2011-04-14 16:08:02 -07001980 // Save the current AppsCustomize tab
1981 if (mAppsCustomizeTabHost != null) {
Winson Chung07e045c62013-11-06 15:49:51 -08001982 AppsCustomizePagedView.ContentType type = mAppsCustomizeContent.getContentType();
1983 String currentTabTag = mAppsCustomizeTabHost.getTabTagForContentType(type);
Winson Chung785d2eb2011-04-14 16:08:02 -07001984 if (currentTabTag != null) {
1985 outState.putString("apps_customize_currentTab", currentTabTag);
1986 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001987 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1988 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001989 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001990 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001991 }
1992
1993 @Override
1994 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001995 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001996
Winson Chunge7a03942011-08-05 15:05:12 -07001997 // Remove all pending runnables
1998 mHandler.removeMessages(ADVANCE_MSG);
1999 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002000 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002001
Winson Chungcd2b0142011-06-08 16:02:26 -07002002 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002003 LauncherAppState app = (LauncherAppState.getInstance());
Winson Chungcd2b0142011-06-08 16:02:26 -07002004 mModel.stopLoader();
2005 app.setLauncher(null);
2006
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002007 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002008 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002009 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002010 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002011 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002012 mAppWidgetHost = null;
2013
2014 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002015
2016 TextKeyListener.getInstance().release();
2017
Winson Chung81b52252012-08-27 15:34:29 -07002018 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
2019 // to prevent leaking Launcher activities on orientation change.
2020 if (mModel != null) {
2021 mModel.unbindItemInfosAndClearQueuedBindRunnables();
2022 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002023
2024 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002025 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002026
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002027 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002028 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002029 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002030 mWorkspace = null;
2031 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002032
Sunny Goyale755d462014-07-22 13:48:29 -07002033 PackageInstallerCompat.getInstance(this).onStop();
Michael Jurka2ecf9952012-06-18 12:52:28 -07002034 LauncherAnimUtils.onDestroyActivity();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002035 }
2036
Adam Cohena9cf38f2011-05-02 15:36:58 -07002037 public DragController getDragController() {
2038 return mDragController;
2039 }
2040
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002041 @Override
2042 public void startActivityForResult(Intent intent, int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002043 if (requestCode >= 0) {
2044 setWaitingForResult(true);
2045 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002046 super.startActivityForResult(intent, requestCode);
2047 }
2048
Winson Chung70d72102011-08-12 11:24:35 -07002049 /**
2050 * Indicates that we want global search for this activity by setting the globalSearch
2051 * argument for {@link #startSearch} to true.
2052 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002053 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002054 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002055 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002056
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002057 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07002058
Karl Rosaen138a0412009-04-23 19:00:21 -07002059 if (initialQuery == null) {
2060 // Use any text typed in the launcher as the initial query
2061 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002062 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002063 if (appSearchData == null) {
2064 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002065 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002066 }
Winson Chungadf0c182012-08-23 14:59:07 -07002067 Rect sourceBounds = new Rect();
2068 if (mSearchDropTargetBar != null) {
2069 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2070 }
Romain Guycbb89e42009-06-08 15:52:54 -07002071
Bjorn Bringertc459e522013-06-07 19:36:01 +01002072 startSearch(initialQuery, selectInitialQuery,
2073 appSearchData, sourceBounds);
2074 }
2075
2076 public void startSearch(String initialQuery,
2077 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Michael Jurkaa33411c2012-06-14 16:18:21 -07002078 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002079 appSearchData, sourceBounds);
Michael Jurkaa33411c2012-06-14 16:18:21 -07002080 }
2081
2082 /**
2083 * Starts the global search activity. This code is a copied from SearchManager
2084 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002085 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002086 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002087 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002088 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2089 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2090 if (globalSearchActivity == null) {
2091 Log.w(TAG, "No global search activity found.");
2092 return;
2093 }
2094 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2095 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2096 intent.setComponent(globalSearchActivity);
2097 // Make sure that we have a Bundle to put source in
2098 if (appSearchData == null) {
2099 appSearchData = new Bundle();
2100 } else {
2101 appSearchData = new Bundle(appSearchData);
2102 }
2103 // Set source to package name of app that starts global search, if not set already.
2104 if (!appSearchData.containsKey("source")) {
2105 appSearchData.putString("source", getPackageName());
2106 }
2107 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2108 if (!TextUtils.isEmpty(initialQuery)) {
2109 intent.putExtra(SearchManager.QUERY, initialQuery);
2110 }
2111 if (selectInitialQuery) {
2112 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2113 }
2114 intent.setSourceBounds(sourceBounds);
2115 try {
2116 startActivity(intent);
2117 } catch (ActivityNotFoundException ex) {
2118 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2119 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002120 }
2121
Yura4f93ec62014-02-04 14:15:21 +00002122 public boolean isOnCustomContent() {
2123 return mWorkspace.isOnOrMovingToCustomContent();
2124 }
2125
Winson Chung70d72102011-08-12 11:24:35 -07002126 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002127 public boolean onPrepareOptionsMenu(Menu menu) {
2128 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002129 if (!isOnCustomContent()) {
2130 // Close any open folders
2131 closeFolder();
2132 // Stop resizing any widgets
2133 mWorkspace.exitWidgetResizeMode();
2134 if (!mWorkspace.isInOverviewMode()) {
2135 // Show the overview mode
2136 showOverviewMode(true);
2137 } else {
2138 showWorkspace(true);
2139 }
Winson Chunge0298742014-01-17 12:03:00 -08002140 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002141 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002142 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002143
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002144 @Override
2145 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002146 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002147 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002148 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002149 }
2150
Joe Onorato9c1289c2009-08-17 11:03:03 -04002151 public boolean isWorkspaceLocked() {
2152 return mWorkspaceLoading || mWaitingForResult;
2153 }
2154
Adam Cohen517a7f52014-03-01 12:12:59 -08002155 public boolean isWorkspaceLoading() {
2156 return mWorkspaceLoading;
2157 }
2158
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002159 private void setWorkspaceLoading(boolean value) {
2160 boolean isLocked = isWorkspaceLocked();
2161 mWorkspaceLoading = value;
2162 if (isLocked != isWorkspaceLocked()) {
2163 onWorkspaceLockedChanged();
2164 }
2165 }
2166
2167 private void setWaitingForResult(boolean value) {
2168 boolean isLocked = isWorkspaceLocked();
2169 mWaitingForResult = value;
2170 if (isLocked != isWorkspaceLocked()) {
2171 onWorkspaceLockedChanged();
2172 }
2173 }
2174
2175 protected void onWorkspaceLockedChanged() { }
2176
Michael Jurka0280c3b2010-09-17 15:00:07 -07002177 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002178 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002179 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002180 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2181 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002182 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002183 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002184 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002185
Adam Cohenad4e15c2013-10-17 16:21:35 -07002186 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2187 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo) {
2188 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2189 }
2190
2191 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2192 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo, int
2193 delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002194 if (appWidgetInfo.configure != null) {
2195 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002196 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002197
Bjorn Bringert7984c942009-12-09 15:38:25 +00002198 // Launch over to configure widget, if needed
2199 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002200 intent.setComponent(appWidgetInfo.configure);
Bjorn Bringert7984c942009-12-09 15:38:25 +00002201 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Michael Jurkaa805e1a2013-08-22 15:00:33 +02002202 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002203 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002204 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002205 Runnable onComplete = new Runnable() {
2206 @Override
2207 public void run() {
2208 // Exit spring loaded mode if necessary after adding the widget
2209 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2210 null);
2211 }
2212 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002213 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002214 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002215 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002216 }
2217 }
Romain Guycbb89e42009-06-08 15:52:54 -07002218
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002219 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002220 // Close any folders that may be open.
2221 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002222 mWorkspace.moveToCustomContentScreen(animate);
2223 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002224 /**
2225 * Process a shortcut drop.
2226 *
2227 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002228 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002229 * @param cell The cell it should be added to, optional
2230 * @param position The location on the screen where it was dropped, optional
2231 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002232 void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
Winson Chung3d503fb2011-07-13 17:25:49 -07002233 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002234 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002235 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002236 mPendingAddInfo.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002237 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002238
2239 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002240 mPendingAddInfo.cellX = cell[0];
2241 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002242 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002243
2244 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2245 createShortcutIntent.setComponent(componentName);
2246 processShortcut(createShortcutIntent);
2247 }
2248
Adam Cohenfbba09b2011-07-18 21:43:05 -07002249 /**
2250 * Process a widget drop.
2251 *
2252 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002253 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002254 * @param cell The cell it should be added to, optional
2255 * @param position The location on the screen where it was dropped, optional
2256 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002257 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
Adam Cohend41fbf52012-02-16 23:53:59 -08002258 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002259 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002260 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002261 mPendingAddInfo.screenId = info.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002262 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08002263 mPendingAddInfo.minSpanX = info.minSpanX;
2264 mPendingAddInfo.minSpanY = info.minSpanY;
2265
Adam Cohenfbba09b2011-07-18 21:43:05 -07002266 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002267 mPendingAddInfo.cellX = cell[0];
2268 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002269 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002270 if (span != null) {
2271 mPendingAddInfo.spanX = span[0];
2272 mPendingAddInfo.spanY = span[1];
2273 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002274
Adam Cohened66b2b2012-01-23 17:28:51 -08002275 AppWidgetHostView hostView = info.boundWidget;
2276 int appWidgetId;
2277 if (hostView != null) {
2278 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002279 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08002280 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002281 // In this case, we either need to start an activity to get permission to bind
2282 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002283 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002284 Bundle options = info.bindOptions;
2285
2286 boolean success = false;
2287 if (options != null) {
2288 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
2289 info.componentName, options);
2290 } else {
2291 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
2292 info.componentName);
2293 }
2294 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002295 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002296 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002297 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002298 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2299 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2300 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Adam Cohendd70d662012-10-04 16:53:44 -07002301 // TODO: we need to make sure that this accounts for the options bundle.
2302 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002303 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2304 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002305 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002306 }
2307
Joe Onoratodeb98af2010-02-19 14:59:39 -08002308 void processShortcut(Intent intent) {
Kenny Guyed131872014-04-30 03:02:21 +01002309 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_SHORTCUT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002310 }
2311
Winson Chung24ab2f12010-09-16 14:10:47 -07002312 void processWallpaper(Intent intent) {
2313 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
2314 }
2315
Adam Cohendcd297f2013-06-18 13:13:40 -07002316 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002317 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002318 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002319 folderInfo.title = getText(R.string.folder_name);
2320
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002321 // Update the model
Adam Cohendcd297f2013-06-18 13:13:40 -07002322 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, cellX, cellY,
Winson Chung3d503fb2011-07-13 17:25:49 -07002323 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002324 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002325
2326 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002327 FolderIcon newFolder =
2328 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002329 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002330 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002331 // Force measure the new folder icon
2332 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2333 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002334 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002335 }
Romain Guycbb89e42009-06-08 15:52:54 -07002336
Joe Onorato9c1289c2009-08-17 11:03:03 -04002337 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002338 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002339 }
2340
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002341 protected ComponentName getWallpaperPickerComponent() {
Michael Jurka7ad868b2013-12-12 15:04:25 +01002342 return new ComponentName(getPackageName(), LauncherWallpaperPickerActivity.class.getName());
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002343 }
2344
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002345 /**
2346 * Registers various content observers. The current implementation registers
2347 * only a favorites observer to keep track of the favorites applications.
2348 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002349 private void registerContentObservers() {
2350 ContentResolver resolver = getContentResolver();
2351 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
2352 true, mWidgetObserver);
2353 }
2354
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002355 @Override
2356 public boolean dispatchKeyEvent(KeyEvent event) {
2357 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2358 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002359 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002360 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002361 case KeyEvent.KEYCODE_VOLUME_DOWN:
Michael Jurka0a457bf2012-11-19 14:05:05 -08002362 if (isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002363 dumpState();
2364 return true;
2365 }
2366 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002367 }
2368 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2369 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002370 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002371 return true;
2372 }
2373 }
2374
2375 return super.dispatchKeyEvent(event);
2376 }
2377
Joe Onorato88ec0992009-11-19 13:16:06 -08002378 @Override
2379 public void onBackPressed() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002380 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07002381 if (mAppsCustomizeContent.getContentType() ==
2382 AppsCustomizePagedView.ContentType.Applications) {
2383 showWorkspace(true);
2384 } else {
2385 showOverviewMode(true);
2386 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07002387 } else if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002388 mWorkspace.exitOverviewMode(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002389 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002390 Folder openFolder = mWorkspace.getOpenFolder();
2391 if (openFolder.isEditingName()) {
2392 openFolder.dismissEditingName();
2393 } else {
2394 closeFolder();
2395 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002396 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002397 mWorkspace.exitWidgetResizeMode();
2398
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002399 // Back button is a no-op here, but give at least some feedback for the button press
2400 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002401 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002402 }
2403
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002404 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002405 * Re-listen when widgets are reset.
2406 */
2407 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002408 if (mAppWidgetHost != null) {
2409 mAppWidgetHost.startListening();
2410 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002411 }
2412
2413 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002414 * Launches the intent referred by the clicked shortcut.
2415 *
2416 * @param v The view representing the clicked shortcut.
2417 */
2418 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002419 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2420 // view has detached (it's possible for this to happen if the view is removed mid touch).
2421 if (v.getWindowToken() == null) {
2422 return;
2423 }
2424
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002425 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002426 return;
2427 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002428
Adam Cohen1697b792013-09-17 19:08:21 -07002429 if (v instanceof Workspace) {
2430 if (mWorkspace.isInOverviewMode()) {
2431 mWorkspace.exitOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002432 }
2433 return;
2434 }
2435
2436 if (v instanceof CellLayout) {
2437 if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002438 mWorkspace.exitOverviewMode(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002439 }
2440 }
2441
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002442 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002443 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002444 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002445 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002446 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002447 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002448 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002449 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002450 onClickAllAppsButton(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002451 }
2452 }
2453
Michael Jurka0e260592010-06-30 17:07:39 -07002454 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002455 return false;
2456 }
2457
Michael Jurkaaf442092010-06-10 17:01:57 -07002458 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002459 * Event handler for the search button
2460 *
2461 * @param v The view that was clicked.
2462 */
2463 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002464 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2465
Amith Yamasania135ba82011-08-09 17:42:01 -07002466 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002467 }
2468
2469 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002470 * Event handler for the voice button
2471 *
2472 * @param v The view that was clicked.
2473 */
2474 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002475 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002476
Bjorn Bringertc459e522013-06-07 19:36:01 +01002477 startVoice();
2478 }
2479
2480 public void startVoice() {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002481 try {
2482 final SearchManager searchManager =
2483 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2484 ComponentName activityName = searchManager.getGlobalSearchActivity();
2485 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002486 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002487 if (activityName != null) {
2488 intent.setPackage(activityName.getPackageName());
2489 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002490 startActivity(null, intent, "onClickVoiceButton");
Michael Jurkaae65ee32012-04-30 11:45:54 -07002491 } catch (ActivityNotFoundException e) {
2492 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002493 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002494 startActivitySafely(null, intent, "onClickVoiceButton");
2495 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002496 }
2497
2498 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002499 * Event handler for the "grid" button that appears on the home screen, which
2500 * enters all apps mode.
2501 *
2502 * @param v The view that was clicked.
2503 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002504 protected void onClickAllAppsButton(View v) {
2505 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
2506 if (isAllAppsVisible()) {
2507 showWorkspace(true);
2508 } else {
2509 showAllApps(true, AppsCustomizePagedView.ContentType.Applications, false);
2510 }
2511 }
2512
2513 /**
Mohammadinamul Sheik3b1a54a2014-03-18 11:28:19 -07002514 * Event handler for a paged view icon click.
2515 * @param v The view that was clicked.
2516 * @param appInfo The {link AppInfo} of the view.
2517 */
2518 public void onClickPagedViewIcon(View v, AppInfo appInfo) {
2519 if (LOGD) Log.d(TAG, "onClickPagedViewIcon");
2520 startActivitySafely(v, appInfo.intent, appInfo);
2521 getStats().recordLaunch(appInfo.intent);
2522 }
2523
2524 /**
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002525 * Event handler for an app shortcut click.
2526 *
2527 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2528 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002529 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002530 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2531 Object tag = v.getTag();
2532 if (!(tag instanceof ShortcutInfo)) {
2533 throw new IllegalArgumentException("Input must be a Shortcut");
2534 }
2535
2536 // Open shortcut
2537 final ShortcutInfo shortcut = (ShortcutInfo) tag;
2538 final Intent intent = shortcut.intent;
2539
2540 // Check for special shortcuts
2541 if (intent.getComponent() != null) {
2542 final String shortcutClass = intent.getComponent().getClassName();
2543
2544 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2545 MemoryDumpActivity.startDump(this);
2546 return;
2547 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2548 toggleShowWeightWatcher();
2549 return;
2550 }
2551 }
2552
Chris Wren40c5ed32014-06-24 18:24:23 -04002553 // Check for abandoned promise
2554 if (shortcut.isAbandoned() && v instanceof BubbleTextView) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002555 AlertDialog.Builder builder = new AlertDialog.Builder(this);
2556 builder.setTitle(R.string.abandoned_promises_title);
Chris Wren803a4be2014-07-01 16:52:49 -04002557 builder.setMessage(R.string.abandoned_promise_explanation);
Chris Wren40c5ed32014-06-24 18:24:23 -04002558 builder.setPositiveButton(R.string.abandoned_search,
2559 new DialogInterface.OnClickListener() {
2560 public void onClick(DialogInterface dialog, int id) {
2561 startAppShortcutActivity(v);
2562 }
2563 }
2564 );
Chris Wren40c5ed32014-06-24 18:24:23 -04002565 builder.setNeutralButton(R.string.abandoned_clean_this,
2566 new DialogInterface.OnClickListener() {
2567 public void onClick(DialogInterface dialog, int id) {
2568 final BubbleTextView bubble = (BubbleTextView) v;
2569 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2570 mWorkspace.removeAbandonedPromise(bubble, user);
2571 }
2572 });
2573 builder.create().show();
2574 return;
2575 }
2576
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002577 // Start activities
Chris Wren40c5ed32014-06-24 18:24:23 -04002578 startAppShortcutActivity(v);
2579 }
2580
2581 private void startAppShortcutActivity(View v) {
2582 Object tag = v.getTag();
2583 if (!(tag instanceof ShortcutInfo)) {
2584 throw new IllegalArgumentException("Input must be a Shortcut");
2585 }
2586 final ShortcutInfo shortcut = (ShortcutInfo) tag;
2587 final Intent intent = shortcut.intent;
2588
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002589 int[] pos = new int[2];
2590 v.getLocationOnScreen(pos);
2591 intent.setSourceBounds(new Rect(pos[0], pos[1],
2592 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
2593
2594 boolean success = startActivitySafely(v, intent, tag);
2595
2596 mStats.recordLaunch(intent, shortcut);
2597
2598 if (success && v instanceof BubbleTextView) {
2599 mWaitingForResume = (BubbleTextView) v;
2600 mWaitingForResume.setStayPressed(true);
2601 }
2602 }
2603
2604 /**
2605 * Event handler for a folder icon click.
2606 *
2607 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2608 */
2609 protected void onClickFolderIcon(View v) {
2610 if (LOGD) Log.d(TAG, "onClickFolder");
2611 if (!(v instanceof FolderIcon)){
2612 throw new IllegalArgumentException("Input must be a FolderIcon");
2613 }
2614
2615 FolderIcon folderIcon = (FolderIcon) v;
2616 final FolderInfo info = folderIcon.getFolderInfo();
2617 Folder openFolder = mWorkspace.getFolderForTag(info);
2618
2619 // If the folder info reports that the associated folder is open, then verify that
2620 // it is actually opened. There have been a few instances where this gets out of sync.
2621 if (info.opened && openFolder == null) {
2622 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2623 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2624 info.opened = false;
2625 }
2626
2627 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2628 // Close any open folder
2629 closeFolder();
2630 // Open the requested folder
2631 openFolder(folderIcon);
2632 } else {
2633 // Find the open folder...
2634 int folderScreen;
2635 if (openFolder != null) {
2636 folderScreen = mWorkspace.getPageForView(openFolder);
2637 // .. and close it
2638 closeFolder(openFolder);
2639 if (folderScreen != mWorkspace.getCurrentPage()) {
2640 // Close any folder open on the current screen
2641 closeFolder();
2642 // Pull the folder onto this screen
2643 openFolder(folderIcon);
2644 }
2645 }
2646 }
Michael Jurka5130e402011-10-13 04:55:35 -07002647 }
2648
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002649 /**
2650 * Event handler for the (Add) Widgets button that appears after a long press
2651 * on the home screen.
2652 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002653 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002654 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002655 showAllApps(true, AppsCustomizePagedView.ContentType.Widgets, true);
2656 }
2657
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002658 /**
2659 * Event handler for the wallpaper picker button that appears after a long press
2660 * on the home screen.
2661 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002662 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002663 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
2664 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
2665 pickWallpaper.setComponent(getWallpaperPickerComponent());
2666 startActivityForResult(pickWallpaper, REQUEST_PICK_WALLPAPER);
2667 }
2668
2669 /**
2670 * Event handler for a click on the settings button that appears after a long press
2671 * on the home screen.
2672 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002673 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002674 if (LOGD) Log.d(TAG, "onClickSettingsButton");
2675 }
2676
Michael Jurka5130e402011-10-13 04:55:35 -07002677 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002678 // Provide the same haptic feedback that the system offers for virtual keys.
2679 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002680 }
2681
Adam Cohen61f560d2013-09-30 15:58:20 -07002682 public void performHapticFeedbackOnTouchDown(View v) {
2683 // Provide the same haptic feedback that the system offers for virtual keys.
2684 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2685 }
2686
2687 public View.OnTouchListener getHapticFeedbackTouchListener() {
2688 if (mHapticFeedbackTouchListener == null) {
2689 mHapticFeedbackTouchListener = new View.OnTouchListener() {
2690 @Override
2691 public boolean onTouch(View v, MotionEvent event) {
2692 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2693 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2694 }
2695 return false;
2696 }
2697 };
2698 }
2699 return mHapticFeedbackTouchListener;
2700 }
2701
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002702 public void onClickAppMarketButton(View v) {
Winson Chungd64a6662013-09-30 11:06:59 -07002703 if (!DISABLE_MARKET_BUTTON) {
2704 if (mAppMarketIntent != null) {
2705 startActivitySafely(v, mAppMarketIntent, "app market");
2706 } else {
2707 Log.e(TAG, "Invalid app market intent.");
2708 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002709 }
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 Cohen2801caf2011-05-13 20:57:39 -07002899 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
2900 oa.start();
2901 }
2902
Adam Cohen268c4752012-06-06 17:47:33 -07002903 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002904 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002905 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2906 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2907 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2908
Adam Cohen268c4752012-06-06 17:47:33 -07002909 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002910
Adam Cohen268c4752012-06-06 17:47:33 -07002911 // We remove and re-draw the FolderIcon in-case it has changed
2912 mDragLayer.removeView(mFolderIconImageView);
2913 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07002914 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002915 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002916 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002917 oa.addListener(new AnimatorListenerAdapter() {
2918 @Override
2919 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002920 if (cl != null) {
2921 cl.clearFolderLeaveBehind();
2922 // Remove the ImageView copy of the FolderIcon and make the original visible.
2923 mDragLayer.removeView(mFolderIconImageView);
2924 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002925 }
2926 }
2927 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002928 oa.start();
2929 }
2930
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002931 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002932 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002933 * is animated relative to the specified View. If the View is null, no animation
2934 * is played.
2935 *
2936 * @param folderInfo The FolderInfo describing the folder to open.
2937 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002938 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002939 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07002940 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002941
Adam Cohena9cf38f2011-05-02 15:36:58 -07002942 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002943
Adam Cohen4554ee12011-08-03 16:13:21 -07002944 // Just verify that the folder hasn't already been added to the DragLayer.
2945 // There was a one-off crash where the folder had a parent already.
2946 if (folder.getParent() == null) {
2947 mDragLayer.addView(folder);
2948 mDragController.addDropTarget((DropTarget) folder);
2949 } else {
2950 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2951 folder.getParent() + ").");
2952 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002953 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002954 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07002955
2956 // Notify the accessibility manager that this folder "window" has appeared and occluded
2957 // the workspace items
2958 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
2959 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07002960 }
2961
2962 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08002963 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07002964 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002965 if (folder.isEditingName()) {
2966 folder.dismissEditingName();
2967 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002968 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002969
2970 // Dismiss the folder cling
Winson Chunga6945242014-01-08 14:04:34 -08002971 mLauncherClings.dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002972 }
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;
Adam Cohencff6af82011-09-13 14:51:53 -07003186 final int startDelay =
3187 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07003188
Adam Cohen6c5891a2014-07-09 23:53:15 -07003189 Workspace.State workspaceState = contentType == AppsCustomizePagedView.ContentType.Widgets ?
3190 Workspace.State.OVERVIEW_HIDDEN : Workspace.State.NORMAL_HIDDEN;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003191 Animator workspaceAnim =
Adam Cohen6c5891a2014-07-09 23:53:15 -07003192 mWorkspace.getChangeStateAnimation(workspaceState, animated);
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08003193 if (!LauncherAppState.isDisableAllApps()
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08003194 || contentType == AppsCustomizePagedView.ContentType.Widgets) {
3195 // Set the content type for the all apps/widgets space
Winson Chungc58497e2013-09-03 17:48:37 -07003196 mAppsCustomizeTabHost.setContentTypeImmediate(contentType);
3197 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003198
3199 if (animated) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003200 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Adam Cohen61033d32010-11-15 18:29:44 -08003201
Adam Cohen9bfdb762014-07-21 17:44:06 -07003202 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3203 toView.findViewById(R.id.apps_customize_pane_content);
Adam Cohenf16e5712011-01-13 13:31:45 -08003204
Adam Cohen9bfdb762014-07-21 17:44:06 -07003205 final View page = content.getPageAt(content.getCurrentPage());
3206 final View revealView = toView.findViewById(R.id.fake_page);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003207
Adam Cohen9bfdb762014-07-21 17:44:06 -07003208 // Hide the real page background, and swap in the fake one
3209 revealView.setVisibility(View.VISIBLE);
3210 content.setPageBackgroundsVisible(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003211
Adam Cohen9bfdb762014-07-21 17:44:06 -07003212 int width = revealView.getMeasuredWidth();
3213 int height = revealView.getMeasuredHeight();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003214
Adam Cohen9bfdb762014-07-21 17:44:06 -07003215 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
3216 float yDrift = height / 2f;
Adam Cohen6c5891a2014-07-09 23:53:15 -07003217
Adam Cohen9bfdb762014-07-21 17:44:06 -07003218 revealView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3219 PropertyValuesHolder panelAlpha = PropertyValuesHolder.ofFloat("alpha", 0.4f, 1f);
3220 PropertyValuesHolder panelDrift =
3221 PropertyValuesHolder.ofFloat("translationY", yDrift, 0f);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003222
Adam Cohen9bfdb762014-07-21 17:44:06 -07003223 ObjectAnimator panelAlphaAndDrift =
3224 ObjectAnimator.ofPropertyValuesHolder(revealView, panelAlpha, panelDrift);
3225 panelAlphaAndDrift.setDuration(revealDuration);
3226 panelAlphaAndDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen6c5891a2014-07-09 23:53:15 -07003227
Adam Cohen9bfdb762014-07-21 17:44:06 -07003228 mStateAnimation.play(panelAlphaAndDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003229
Adam Cohen9bfdb762014-07-21 17:44:06 -07003230 page.setVisibility(View.VISIBLE);
3231 page.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003232
Adam Cohen9bfdb762014-07-21 17:44:06 -07003233 ObjectAnimator pageDrift = ObjectAnimator.ofFloat(page, "translationY", yDrift, 0);
3234 pageDrift.setDuration(revealDuration);
3235 pageDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
3236 mStateAnimation.play(pageDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003237
Adam Cohen9bfdb762014-07-21 17:44:06 -07003238 // TODO (adamcohen): remove this 0.01f hack once fw is fixed
3239 // it's there to work around a framework bug (16918357)
3240 page.setAlpha(0.01f);
3241 ObjectAnimator itemsAlpha = ObjectAnimator.ofFloat(page, "alpha", 0.01f, 1f);
3242 itemsAlpha.setDuration(revealDuration);
3243 itemsAlpha.setInterpolator(new AccelerateInterpolator(1.5f));
3244 itemsAlpha.setStartDelay(itemsAlphaStagger);
3245 mStateAnimation.play(itemsAlpha);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003246
Adam Cohen9bfdb762014-07-21 17:44:06 -07003247 View pageIndicators = fromView.findViewById(R.id.apps_customize_page_indicator);
3248 ObjectAnimator indicatorsAlpha =
3249 ObjectAnimator.ofFloat(pageIndicators, "alpha", 1f);
3250 indicatorsAlpha.setDuration(revealDuration);
3251 mStateAnimation.play(indicatorsAlpha);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003252
Adam Cohen9bfdb762014-07-21 17:44:06 -07003253 if (material) {
3254 ValueAnimator reveal = (ValueAnimator)
Adam Cohen6c5891a2014-07-09 23:53:15 -07003255 ViewAnimationUtils.createCircularReveal(revealView, width / 2,
Adam Cohen9bfdb762014-07-21 17:44:06 -07003256 height / 2, 0f, revealRadius);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003257 reveal.setDuration(revealDuration);
3258 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen6c5891a2014-07-09 23:53:15 -07003259 mStateAnimation.play(reveal);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003260 }
Michael Jurka1899a362011-11-03 13:50:45 -07003261
Adam Cohen9bfdb762014-07-21 17:44:06 -07003262 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3263 @Override
3264 public void onAnimationEnd(Animator animation) {
3265 dispatchOnLauncherTransitionEnd(fromView, animated, false);
3266 dispatchOnLauncherTransitionEnd(toView, animated, false);
3267
3268 revealView.setVisibility(View.INVISIBLE);
3269 revealView.setLayerType(View.LAYER_TYPE_NONE, null);
3270 page.setLayerType(View.LAYER_TYPE_NONE, null);
3271 content.setPageBackgroundsVisible(true);
3272
3273 // Hide the search bar
3274 if (mSearchDropTargetBar != null) {
3275 mSearchDropTargetBar.hideSearchBar(false);
3276 }
3277 }
3278
3279 @Override
3280 public void onAnimationStart(Animator animation) {
3281 // Prepare the position
3282 toView.bringToFront();
3283 toView.setVisibility(View.VISIBLE);
3284 }
3285 });
3286
Michael Jurka1899a362011-11-03 13:50:45 -07003287 boolean delayAnim = false;
Adam Cohen6c5891a2014-07-09 23:53:15 -07003288 if (workspaceAnim != null) {
3289 mStateAnimation.play(workspaceAnim);
3290 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003291 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
3292 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003293
3294 // If any of the objects being animated haven't been measured/laid out
3295 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08003296 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003297 (mWorkspace.getMeasuredWidth() == 0) ||
3298 (toView.getMeasuredWidth() == 0)) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003299 delayAnim = true;
Michael Jurka1899a362011-11-03 13:50:45 -07003300 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003301
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003302 final AnimatorSet stateAnimation = mStateAnimation;
3303 final Runnable startAnimRunnable = new Runnable() {
3304 public void run() {
3305 // Check that mStateAnimation hasn't changed while
3306 // we waited for a layout/draw pass
3307 if (mStateAnimation != stateAnimation)
3308 return;
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003309 dispatchOnLauncherTransitionStart(fromView, animated, false);
3310 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003311 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003312 }
3313 };
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003314 if (delayAnim) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003315 toView.bringToFront();
3316 toView.setVisibility(View.VISIBLE);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003317 final ViewTreeObserver observer = toView.getViewTreeObserver();
3318 observer.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
3319 public void onGlobalLayout() {
3320 startAnimRunnable.run();
3321 toView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
3322 }
3323 });
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003324 } else {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003325 startAnimRunnable.run();
Michael Jurka1899a362011-11-03 13:50:45 -07003326 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003327 } else {
3328 toView.setTranslationX(0.0f);
3329 toView.setTranslationY(0.0f);
3330 toView.setScaleX(1.0f);
3331 toView.setScaleY(1.0f);
3332 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07003333 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07003334
Daniel Sandlere4f98912013-06-25 15:13:26 -04003335 if (!springLoaded && !LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungc7d2b602012-05-16 17:02:20 -07003336 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07003337 if (mSearchDropTargetBar != null) {
3338 mSearchDropTargetBar.hideSearchBar(false);
3339 }
Michael Jurkaabded662011-03-04 12:06:57 -08003340 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003341 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003342 dispatchOnLauncherTransitionStart(fromView, animated, false);
3343 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003344 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003345 dispatchOnLauncherTransitionStart(toView, animated, false);
3346 dispatchOnLauncherTransitionEnd(toView, animated, false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003347 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003348 }
3349
3350 /**
3351 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07003352 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003353 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003354 */
Adam Cohened307df2013-10-02 09:37:31 -07003355 private void hideAppsCustomizeHelper(Workspace.State toState, final boolean animated,
Adam Cohened66b2b2012-01-23 17:28:51 -08003356 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08003357
Michael Jurkab3e22d92011-10-31 15:58:33 -07003358 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003359 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003360 mStateAnimation.cancel();
3361 mStateAnimation = null;
3362 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003363
3364 boolean material = Utilities.isLmp();
3365
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003366 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003367
Winson Chungf0ea4d32011-06-06 14:27:16 -07003368 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003369 final int fadeOutDuration = res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
3370 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeRevealTime);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003371 final int itemsAlphaStagger =
3372 res.getInteger(R.integer.config_appsCustomizeItemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003373
Winson Chungf0ea4d32011-06-06 14:27:16 -07003374 final float scaleFactor = (float)
3375 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
3376 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08003377 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003378 Animator workspaceAnim = null;
Adam Cohened307df2013-10-02 09:37:31 -07003379 if (toState == Workspace.State.NORMAL) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003380 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
3381 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohened307df2013-10-02 09:37:31 -07003382 toState, animated, stagger, -1);
3383 } else if (toState == Workspace.State.SPRING_LOADED ||
3384 toState == Workspace.State.OVERVIEW) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003385 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohened307df2013-10-02 09:37:31 -07003386 toState, animated);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003387 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003388
Winson Chung4afe9b32011-07-27 17:46:20 -07003389 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003390 if (animated) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003391 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurka159b4cc2012-01-17 03:00:35 -08003392
Adam Cohen9bfdb762014-07-21 17:44:06 -07003393 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3394 fromView.findViewById(R.id.apps_customize_pane_content);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003395
Adam Cohen9bfdb762014-07-21 17:44:06 -07003396 final View page = content.getPageAt(content.getNextPage());
3397 final View revealView = fromView.findViewById(R.id.fake_page);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003398
Adam Cohen9bfdb762014-07-21 17:44:06 -07003399 int width = revealView.getMeasuredWidth();
3400 int height = revealView.getMeasuredHeight();
3401 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003402
Adam Cohen9bfdb762014-07-21 17:44:06 -07003403 // Hide the real page background, and swap in the fake one
3404 revealView.setVisibility(View.VISIBLE);
3405 content.setPageBackgroundsVisible(false);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003406
Adam Cohen9bfdb762014-07-21 17:44:06 -07003407 float yDrift = height / 2f;
Adam Cohen6c5891a2014-07-09 23:53:15 -07003408
Adam Cohen9bfdb762014-07-21 17:44:06 -07003409 revealView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003410
Adam Cohen9bfdb762014-07-21 17:44:06 -07003411 PropertyValuesHolder panelAlpha = PropertyValuesHolder.ofFloat(View.ALPHA, 1f, 0f);
3412 PropertyValuesHolder panelDrift =
3413 PropertyValuesHolder.ofFloat(View.TRANSLATION_Y, 0, yDrift);
3414 ObjectAnimator panelAlphaAndDrift =
3415 ObjectAnimator.ofPropertyValuesHolder(revealView, panelAlpha, panelDrift);
3416 panelAlphaAndDrift.setDuration(revealDuration);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003417
Adam Cohen9bfdb762014-07-21 17:44:06 -07003418 panelAlphaAndDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
3419 panelAlphaAndDrift.setStartDelay(itemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003420
Adam Cohen9bfdb762014-07-21 17:44:06 -07003421 mStateAnimation.play(panelAlphaAndDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003422
Adam Cohen9bfdb762014-07-21 17:44:06 -07003423 page.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003424
Adam Cohen9bfdb762014-07-21 17:44:06 -07003425 ObjectAnimator pageDrift = ObjectAnimator.ofFloat(page, View.TRANSLATION_Y, 0, yDrift);
3426 pageDrift.setDuration(revealDuration);
3427 pageDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
3428 pageDrift.setStartDelay(itemsAlphaStagger);
3429 mStateAnimation.play(pageDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003430
Adam Cohen9bfdb762014-07-21 17:44:06 -07003431 page.setAlpha(1f);
3432 ObjectAnimator itemsAlpha = ObjectAnimator.ofFloat(page, View.ALPHA, 1f, 0f);
3433 itemsAlpha.setDuration(revealDuration);
3434 itemsAlpha.setInterpolator(new LogDecelerateInterpolator(100, 0));
3435 mStateAnimation.play(itemsAlpha);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003436
Adam Cohen9bfdb762014-07-21 17:44:06 -07003437 View pageIndicators = fromView.findViewById(R.id.apps_customize_page_indicator);
3438 ObjectAnimator indicatorsAlpha =
3439 ObjectAnimator.ofFloat(pageIndicators, View.ALPHA, 0f);
3440 indicatorsAlpha.setDuration(revealDuration);
3441 indicatorsAlpha.setInterpolator(new DecelerateInterpolator(1.5f));
3442 mStateAnimation.play(indicatorsAlpha);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003443
Adam Cohen9bfdb762014-07-21 17:44:06 -07003444 width = revealView.getMeasuredWidth();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003445
Adam Cohen9bfdb762014-07-21 17:44:06 -07003446 if (material) {
Nilesh Agrawal300c1502014-07-22 13:20:54 -07003447 Animator reveal =
Adam Cohen6c5891a2014-07-09 23:53:15 -07003448 ViewAnimationUtils.createCircularReveal(revealView, width / 2,
3449 height / 2 + 100, revealRadius, 0f);
3450 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
3451 reveal.setDuration(revealDuration);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003452 reveal.setStartDelay(itemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003453
3454 reveal.addListener(new AnimatorListenerAdapter() {
Adam Cohen6c5891a2014-07-09 23:53:15 -07003455 public void onAnimationEnd(Animator animation) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003456 revealView.setVisibility(View.INVISIBLE);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003457 }
3458 });
3459
Adam Cohen6c5891a2014-07-09 23:53:15 -07003460 mStateAnimation.play(reveal);
3461 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003462
3463 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
3464 dispatchOnLauncherTransitionPrepare(toView, animated, true);
3465 mAppsCustomizeContent.stopScrolling();
3466
Adam Cohen6c5891a2014-07-09 23:53:15 -07003467 if (workspaceAnim != null) {
3468 mStateAnimation.play(workspaceAnim);
3469 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003470
3471 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07003472 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08003473 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003474 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08003475 dispatchOnLauncherTransitionEnd(fromView, animated, true);
3476 dispatchOnLauncherTransitionEnd(toView, animated, true);
Adam Cohened66b2b2012-01-23 17:28:51 -08003477 if (onCompleteRunnable != null) {
3478 onCompleteRunnable.run();
3479 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003480
3481 revealView.setLayerType(View.LAYER_TYPE_NONE, null);
3482 page.setLayerType(View.LAYER_TYPE_NONE, null);
3483 content.setPageBackgroundsVisible(true);
Chet Haasebc2f0822012-10-26 17:59:53 -07003484 mAppsCustomizeContent.updateCurrentPageScroll();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003485 }
3486 });
3487
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003488 dispatchOnLauncherTransitionStart(fromView, animated, true);
3489 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003490 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003491 } else {
3492 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003493 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003494 dispatchOnLauncherTransitionStart(fromView, animated, true);
3495 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003496 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003497 dispatchOnLauncherTransitionStart(toView, animated, true);
3498 dispatchOnLauncherTransitionEnd(toView, animated, true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003499 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003500 }
3501
Michael Jurkae326f182011-11-21 14:05:46 -08003502 @Override
3503 public void onTrimMemory(int level) {
3504 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07003505 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08003506 mAppsCustomizeTabHost.onTrimMemory();
3507 }
3508 }
3509
Adam Cohened307df2013-10-02 09:37:31 -07003510 protected void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08003511 showWorkspace(animated, null);
3512 }
3513
Adam Cohened307df2013-10-02 09:37:31 -07003514 protected void showWorkspace() {
3515 showWorkspace(true);
3516 }
3517
Adam Cohened66b2b2012-01-23 17:28:51 -08003518 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Adam Cohene25c5d12014-06-18 10:34:58 -07003519 if (mState != State.WORKSPACE || mWorkspace.getState() != Workspace.State.NORMAL) {
Winson Chung2d75f122013-09-23 16:53:31 -07003520 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003521 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened307df2013-10-02 09:37:31 -07003522 hideAppsCustomizeHelper(Workspace.State.NORMAL, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003523
Winson Chungc7d2b602012-05-16 17:02:20 -07003524 // Show the search bar (only animate if we were showing the drop target bar in spring
3525 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003526 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003527 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003528 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003529
Michael Jurkab3e22d92011-10-31 15:58:33 -07003530 // Set focus to the AppsCustomize button
3531 if (mAllAppsButton != null) {
3532 mAllAppsButton.requestFocus();
3533 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003534 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003535
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003536 // Change the state *after* we've called all the transition code
3537 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003538
Winson Chung5fb63472011-02-02 17:03:37 -08003539 // Resume the auto-advance of widgets
3540 mUserPresent = true;
3541 updateRunning();
3542
alanv1d4fde62012-10-17 13:15:47 -07003543 // Send an accessibility event to announce the context change
3544 getWindow().getDecorView()
3545 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003546
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003547 onWorkspaceShown(animated);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003548 }
3549
Adam Cohened307df2013-10-02 09:37:31 -07003550 void showOverviewMode(boolean animated) {
3551 mWorkspace.setVisibility(View.VISIBLE);
3552 hideAppsCustomizeHelper(Workspace.State.OVERVIEW, animated, false, null);
3553 mState = State.WORKSPACE;
3554 onWorkspaceShown(animated);
3555 }
3556
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003557 public void onWorkspaceShown(boolean animated) {
Joe Onorato00acb122009-08-04 16:04:30 -04003558 }
3559
Winson Chung82963d52013-10-09 11:20:57 -07003560 void showAllApps(boolean animated, AppsCustomizePagedView.ContentType contentType,
3561 boolean resetPageToZero) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003562 if (mState != State.WORKSPACE) return;
3563
Winson Chung82963d52013-10-09 11:20:57 -07003564 if (resetPageToZero) {
3565 mAppsCustomizeTabHost.reset();
3566 }
Winson Chungc58497e2013-09-03 17:48:37 -07003567 showAppsCustomizeHelper(animated, false, contentType);
Adam Cohendcc5e712014-06-23 15:38:55 -04003568 mAppsCustomizeTabHost.post(new Runnable() {
3569 @Override
3570 public void run() {
3571 // We post this in-case the all apps view isn't yet constructed.
3572 mAppsCustomizeTabHost.requestFocus();
3573 }
3574 });
Michael Jurkab3e22d92011-10-31 15:58:33 -07003575
Michael Jurkab3e22d92011-10-31 15:58:33 -07003576 // Change the state *after* we've called all the transition code
3577 mState = State.APPS_CUSTOMIZE;
3578
3579 // Pause the auto-advance of widgets until we are out of AllApps
3580 mUserPresent = false;
3581 updateRunning();
3582 closeFolder();
3583
3584 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003585 getWindow().getDecorView()
3586 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003587 }
3588
Adam Cohen7777d962011-08-18 18:58:38 -07003589 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003590 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07003591 hideAppsCustomizeHelper(Workspace.State.SPRING_LOADED, true, true, null);
Winson Chungc07918d2011-07-01 15:35:26 -07003592 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07003593 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003594 }
Adam Cohen7777d962011-08-18 18:58:38 -07003595
Adam Cohenad4e15c2013-10-17 16:21:35 -07003596 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003597 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07003598 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
3599
Winson Chunge7a03942011-08-05 15:05:12 -07003600 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003601 @Override
3602 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003603 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003604 // Before we show workspace, hide all apps again because
3605 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3606 // clean up our state transition functions
3607 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003608 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003609 } else {
3610 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003611 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003612 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003613 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003614 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003615
Michael Jurkad3ef3062010-11-23 16:23:58 -08003616 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07003617 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003618 final boolean animated = true;
3619 final boolean springLoaded = true;
3620 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07003621 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07003622 }
3623 // Otherwise, we are not in spring loaded mode, so don't do anything.
3624 }
3625
Michael Jurkab3e22d92011-10-31 15:58:33 -07003626 void lockAllApps() {
3627 // TODO
3628 }
3629
3630 void unlockAllApps() {
3631 // TODO
3632 }
3633
Winson Chungf0ea4d32011-06-06 14:27:16 -07003634 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003635 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003636 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003637 void showHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003638 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003639 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003640 if (mHotseat.getAlpha() != 1f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003641 int duration = 0;
3642 if (mSearchDropTargetBar != null) {
3643 duration = mSearchDropTargetBar.getTransitionInDuration();
3644 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003645 mHotseat.animate().alpha(1f).setDuration(duration);
3646 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003647 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003648 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003649 }
3650 }
3651 }
3652
3653 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003654 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003655 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003656 void hideHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003657 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003658 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003659 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003660 int duration = 0;
3661 if (mSearchDropTargetBar != null) {
3662 duration = mSearchDropTargetBar.getTransitionOutDuration();
3663 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003664 mHotseat.animate().alpha(0f).setDuration(duration);
3665 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003666 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003667 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003668 }
Winson Chungb26f3d62011-06-02 10:49:29 -07003669 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003670 }
3671
Patrick Dubroy5f445422011-02-18 14:35:21 -08003672 /**
3673 * Add an item from all apps or customize onto the given workspace screen.
3674 * If layout is null, add to the current screen.
3675 */
3676 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003677 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07003678 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07003679 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003680 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003681
Winson Chungdff8ebb2011-09-08 17:25:31 -07003682 /** Maps the current orientation to an index for referencing orientation correct global icons */
3683 private int getCurrentOrientationIndexForGlobalIcons() {
3684 // default - 0, landscape - 1
3685 switch (getResources().getConfiguration().orientation) {
3686 case Configuration.ORIENTATION_LANDSCAPE:
3687 return 1;
3688 default:
3689 return 0;
3690 }
3691 }
3692
Michael Jurkaae65ee32012-04-30 11:45:54 -07003693 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07003694 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003695 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07003696 // Look for the toolbar icon specified in the activity meta-data
3697 Bundle metaData = packageManager.getActivityInfo(
3698 activityName, PackageManager.GET_META_DATA).metaData;
3699 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07003700 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003701 if (iconResId != 0) {
3702 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003703 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003704 }
3705 }
3706 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07003707 // This can happen if the activity defines an invalid drawable
3708 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
3709 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01003710 } catch (Resources.NotFoundException nfe) {
3711 // This can happen if the activity defines an invalid drawable
3712 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
3713 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003714 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003715 return null;
3716 }
3717
3718 // if successful in getting icon, return it; otherwise, set button to use default drawable
3719 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003720 int buttonId, ComponentName activityName, int fallbackDrawableId,
3721 String toolbarResourceName) {
3722 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07003723 Resources r = getResources();
3724 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3725 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003726
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003727 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003728 // If we were unable to find the icon via the meta-data, use a generic one
3729 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07003730 toolbarIcon = r.getDrawable(fallbackDrawableId);
3731 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003732 if (button != null) {
3733 button.setCompoundDrawables(toolbarIcon, null, null, null);
3734 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003735 return null;
3736 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07003737 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003738 if (button != null) {
3739 button.setCompoundDrawables(toolbarIcon, null, null, null);
3740 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003741 return toolbarIcon.getConstantState();
3742 }
3743 }
3744
3745 // if successful in getting icon, return it; otherwise, set button to use default drawable
3746 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003747 int buttonId, ComponentName activityName, int fallbackDrawableId,
3748 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003749 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07003750 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003751
Michael Jurka19e0fc52011-07-22 18:00:21 -07003752 if (button != null) {
3753 // If we were unable to find the icon via the meta-data, use a
3754 // generic one
3755 if (toolbarIcon == null) {
3756 button.setImageResource(fallbackDrawableId);
3757 } else {
3758 button.setImageDrawable(toolbarIcon);
3759 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003760 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003761
3762 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3763
Michael Jurka0423dcf2010-10-05 14:56:18 -07003764 }
3765
Winson Chung1b884092012-06-08 17:13:02 -07003766 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003767 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003768 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003769 }
3770
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003771 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003772 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003773 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003774 }
3775
Winson Chungbb185bd2011-11-21 12:31:42 -08003776 private void invalidatePressedFocusedStates(View container, View button) {
3777 if (container instanceof HolographicLinearLayout) {
3778 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3779 layout.invalidatePressedFocusedStates();
3780 } else if (button instanceof HolographicImageView) {
3781 HolographicImageView view = (HolographicImageView) button;
3782 view.invalidatePressedFocusedStates();
3783 }
3784 }
3785
Cristina Stancu476493b2013-08-07 17:20:14 +01003786 public View getQsbBar() {
Adam Cohen24ce0b32014-01-14 16:18:14 -08003787 if (mQsb == null) {
3788 mQsb = mInflater.inflate(R.layout.qsb, mSearchDropTargetBar, false);
3789 mSearchDropTargetBar.addView(mQsb);
Cristina Stancu476493b2013-08-07 17:20:14 +01003790 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003791 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003792 }
3793
3794 protected boolean updateGlobalSearchIcon() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003795 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003796 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003797 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003798 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003799
Winson Chung1cad91e2011-05-25 17:41:01 -07003800 final SearchManager searchManager =
3801 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3802 ComponentName activityName = searchManager.getGlobalSearchActivity();
3803 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003804 int coi = getCurrentOrientationIndexForGlobalIcons();
3805 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003806 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3807 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3808 if (sGlobalSearchIcon[coi] == null) {
3809 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3810 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3811 TOOLBAR_ICON_METADATA_NAME);
3812 }
3813
Winson Chungc51db6a2011-10-05 11:44:49 -07003814 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3815 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003816 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003817 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003818 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003819 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003820 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3821 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04003822 if (searchButton != null) searchButton.setVisibility(View.GONE);
3823 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003824 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003825 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003826 }
3827 }
3828
Cristina Stancu476493b2013-08-07 17:20:14 +01003829 protected void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003830 final View searchButtonContainer = findViewById(R.id.search_button_container);
3831 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003832 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003833 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003834 }
3835
Cristina Stancu476493b2013-08-07 17:20:14 +01003836 protected boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07003837 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003838 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003839
Winson Chungc51db6a2011-10-05 11:44:49 -07003840 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003841 final SearchManager searchManager =
3842 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3843 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3844
3845 ComponentName activityName = null;
3846 if (globalSearchActivity != null) {
3847 // Check if the global search activity handles voice search
3848 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3849 intent.setPackage(globalSearchActivity.getPackageName());
3850 activityName = intent.resolveActivity(getPackageManager());
3851 }
3852
3853 if (activityName == null) {
3854 // Fallback: check if an activity other than the global search activity
3855 // resolves this
3856 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3857 activityName = intent.resolveActivity(getPackageManager());
3858 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003859 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003860 int coi = getCurrentOrientationIndexForGlobalIcons();
3861 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003862 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3863 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3864 if (sVoiceSearchIcon[coi] == null) {
3865 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3866 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3867 TOOLBAR_ICON_METADATA_NAME);
3868 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003869 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003870 voiceButton.setVisibility(View.VISIBLE);
Winson Chung5841efa2013-09-30 18:06:44 -07003871 updateVoiceButtonProxyVisible(false);
Winson Chungbb185bd2011-11-21 12:31:42 -08003872 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003873 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003874 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07003875 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04003876 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003877 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003878 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003879 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003880 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003881
Cristina Stancu476493b2013-08-07 17:20:14 +01003882 protected void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003883 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3884 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003885 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003886 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003887 }
3888
Winson Chung5841efa2013-09-30 18:06:44 -07003889 public void updateVoiceButtonProxyVisible(boolean forceDisableVoiceButtonProxy) {
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003890 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
3891 if (voiceButtonProxy != null) {
Winson Chung5841efa2013-09-30 18:06:44 -07003892 boolean visible = !forceDisableVoiceButtonProxy &&
3893 mWorkspace.shouldVoiceButtonProxyBeVisible();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003894 voiceButtonProxy.setVisibility(visible ? View.VISIBLE : View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003895 voiceButtonProxy.bringToFront();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003896 }
3897 }
Winson Chung5841efa2013-09-30 18:06:44 -07003898
3899 /**
3900 * This is an overrid eot disable the voice button proxy. If disabled is true, then the voice button proxy
3901 * will be hidden regardless of what shouldVoiceButtonProxyBeVisible() returns.
3902 */
3903 public void disableVoiceButtonProxy(boolean disabled) {
3904 updateVoiceButtonProxyVisible(disabled);
3905 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003906 /**
Winson Chungeb66b142011-06-16 13:14:22 -07003907 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003908 */
3909 private void updateAppMarketIcon() {
Winson Chungd64a6662013-09-30 11:06:59 -07003910 if (!DISABLE_MARKET_BUTTON) {
3911 final View marketButton = findViewById(R.id.market_button);
3912 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3913 // Find the app market activity by resolving an intent.
3914 // (If multiple app markets are installed, it will return the ResolverActivity.)
3915 ComponentName activityName = intent.resolveActivity(getPackageManager());
3916 if (activityName != null) {
3917 int coi = getCurrentOrientationIndexForGlobalIcons();
3918 mAppMarketIntent = intent;
3919 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
3920 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
3921 TOOLBAR_ICON_METADATA_NAME);
3922 marketButton.setVisibility(View.VISIBLE);
3923 } else {
3924 // We should hide and disable the view so that we don't try and restore the visibility
3925 // of it when we swap between drag & normal states from IconDropTarget subclasses.
3926 marketButton.setVisibility(View.GONE);
3927 marketButton.setEnabled(false);
3928 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003929 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003930 }
3931
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003932 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chungd64a6662013-09-30 11:06:59 -07003933 if (!DISABLE_MARKET_BUTTON) {
3934 // Ensure that the new drawable we are creating has the approprate toolbar icon bounds
3935 Resources r = getResources();
3936 Drawable marketIconDrawable = d.newDrawable(r);
3937 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3938 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
3939 marketIconDrawable.setBounds(0, 0, w, h);
Winson Chung1b884092012-06-08 17:13:02 -07003940
Winson Chungd64a6662013-09-30 11:06:59 -07003941 updateTextButtonWithDrawable(R.id.market_button, marketIconDrawable);
3942 }
Michael Jurka4ef207b2010-11-29 17:05:45 -08003943 }
3944
Michael Jurkad7c28052012-04-27 15:43:36 -07003945 @Override
3946 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003947 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003948 final List<CharSequence> text = event.getText();
3949 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003950 // Populate event with a fake title based on the current state.
3951 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohen6c5891a2014-07-09 23:53:15 -07003952 text.add(mAppsCustomizeTabHost.getContentTag());
alanv1d4fde62012-10-17 13:15:47 -07003953 } else {
3954 text.add(getString(R.string.all_apps_home_button_label));
3955 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003956 return result;
3957 }
3958
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003959 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003960 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003961 */
3962 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
3963 @Override
3964 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003965 closeSystemDialogs();
3966 }
3967 }
3968
3969 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003970 * Receives notifications whenever the appwidgets are reset.
3971 */
3972 private class AppWidgetResetObserver extends ContentObserver {
3973 public AppWidgetResetObserver() {
3974 super(new Handler());
3975 }
3976
3977 @Override
3978 public void onChange(boolean selfChange) {
3979 onAppWidgetReset();
3980 }
3981 }
3982
3983 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003984 * If the activity is currently paused, signal that we need to run the passed Runnable
3985 * in onResume.
3986 *
3987 * This needs to be called from incoming places where resources might have been loaded
3988 * while we are paused. That is becaues the Configuration might be wrong
3989 * when we're not running, and if it comes back to what it was when we
3990 * were paused, we are not restarted.
3991 *
3992 * Implementation of the method from LauncherModel.Callbacks.
3993 *
3994 * @return true if we are currently paused. The caller might be able to
3995 * skip some work in that case since we will come back again.
3996 */
Michael Jurkac402cd92013-05-20 15:49:32 +02003997 private boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003998 if (mPaused) {
3999 Log.i(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02004000 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07004001 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004002 }
4003 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07004004 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07004005 return true;
4006 } else {
4007 return false;
4008 }
4009 }
4010
Michael Jurkac402cd92013-05-20 15:49:32 +02004011 private boolean waitUntilResume(Runnable run) {
4012 return waitUntilResume(run, false);
4013 }
4014
Michael Jurka1e2f4652013-07-08 18:03:46 -07004015 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02004016 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07004017 }
4018
Michael Jurka7607c2f2013-04-03 14:33:19 -07004019 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004020 * If the activity is currently paused, signal that we need to re-run the loader
4021 * in onResume.
4022 *
4023 * This needs to be called from incoming places where resources might have been loaded
4024 * while we are paused. That is becaues the Configuration might be wrong
4025 * when we're not running, and if it comes back to what it was when we
4026 * were paused, we are not restarted.
4027 *
4028 * Implementation of the method from LauncherModel.Callbacks.
4029 *
4030 * @return true if we are currently paused. The caller might be able to
4031 * skip some work in that case since we will come back again.
4032 */
4033 public boolean setLoadOnResume() {
4034 if (mPaused) {
4035 Log.i(TAG, "setLoadOnResume");
4036 mOnResumeNeedsLoad = true;
4037 return true;
4038 } else {
4039 return false;
4040 }
4041 }
4042
4043 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004044 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004045 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04004046 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07004047 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07004048 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07004049 } else {
4050 return SCREEN_COUNT / 2;
4051 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004052 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07004053
Joe Onorato9c1289c2009-08-17 11:03:03 -04004054 /**
4055 * Refreshes the shortcuts shown on the workspace.
4056 *
4057 * Implementation of the method from LauncherModel.Callbacks.
4058 */
4059 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004060 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08004061
Michael Jurka7607c2f2013-04-03 14:33:19 -07004062 // If we're starting binding all over again, clear any bind calls we'd postponed in
4063 // the past (see waitUntilResume) -- we don't need them since we're starting binding
4064 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07004065 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07004066
Winson Chungd64d1762013-08-20 14:37:16 -07004067 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07004068 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07004069 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07004070
Michael Jurka05bf644e2011-11-30 20:28:53 -08004071 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07004072 if (mHotseat != null) {
4073 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004074 }
4075 }
4076
Adam Cohendcd297f2013-06-18 13:13:40 -07004077 @Override
4078 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07004079 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07004080
Adam Cohen5084cba2013-09-03 12:01:16 -07004081 // If there are no screens, we need to have an empty screen
4082 if (orderedScreenIds.size() == 0) {
4083 mWorkspace.addExtraEmptyScreen();
4084 }
Winson Chung0e6a7132013-08-23 12:55:10 -07004085
4086 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06004087 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05004088 if (hasCustomContentToLeft()) {
4089 mWorkspace.createCustomContentContainer();
4090 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07004091 }
Winson Chung64359a52013-07-08 17:17:08 -07004092 }
4093
4094 @Override
4095 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Winson Chunga90303b2013-11-15 13:05:06 -08004096 // Log to disk
4097 Launcher.addDumpLog(TAG, "11683562 - bindAddScreens()", true);
4098 Launcher.addDumpLog(TAG, "11683562 - orderedScreenIds: " +
4099 TextUtils.join(", ", orderedScreenIds), true);
Adam Cohendcd297f2013-06-18 13:13:40 -07004100 int count = orderedScreenIds.size();
4101 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07004102 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07004103 }
Adam Cohendcd297f2013-06-18 13:13:40 -07004104 }
4105
Adam Cohen39a06042013-07-19 14:30:12 -07004106 private boolean shouldShowWeightWatcher() {
4107 String spKey = LauncherAppState.getSharedPreferencesKey();
4108 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07004109 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07004110
4111 return show;
4112 }
4113
4114 private void toggleShowWeightWatcher() {
4115 String spKey = LauncherAppState.getSharedPreferencesKey();
4116 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
4117 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
4118
4119 show = !show;
4120
4121 SharedPreferences.Editor editor = sp.edit();
4122 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
4123 editor.commit();
4124
4125 if (mWeightWatcher != null) {
4126 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
4127 }
4128 }
4129
Winson Chungd64d1762013-08-20 14:37:16 -07004130 public void bindAppsAdded(final ArrayList<Long> newScreens,
4131 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07004132 final ArrayList<ItemInfo> addAnimated,
4133 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004134 Runnable r = new Runnable() {
4135 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07004136 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07004137 }
4138 };
4139 if (waitUntilResume(r)) {
4140 return;
4141 }
4142
Winson Chungd64d1762013-08-20 14:37:16 -07004143 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08004144 if (newScreens != null) {
4145 bindAddScreens(newScreens);
4146 }
Winson Chungd64d1762013-08-20 14:37:16 -07004147
4148 // We add the items without animation on non-visible pages, and with
4149 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08004150 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004151 bindItems(addNotAnimated, 0,
4152 addNotAnimated.size(), false);
4153 }
Adam Cohen76a47a12014-02-05 11:47:43 -08004154 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004155 bindItems(addAnimated, 0,
4156 addAnimated.size(), true);
4157 }
Winson Chungc58497e2013-09-03 17:48:37 -07004158
Winson Chung87412982013-10-03 18:34:14 -07004159 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07004160 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07004161
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004162 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004163 addedApps != null && mAppsCustomizeContent != null) {
4164 mAppsCustomizeContent.addApps(addedApps);
4165 }
Winson Chungd64d1762013-08-20 14:37:16 -07004166 }
4167
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004168 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004169 * Bind the items start-end from the list.
4170 *
4171 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004172 */
Winson Chung64359a52013-07-08 17:17:08 -07004173 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
4174 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07004175 Runnable r = new Runnable() {
4176 public void run() {
4177 bindItems(shortcuts, start, end, forceAnimateIcons);
4178 }
4179 };
4180 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004181 return;
4182 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004183
Winson Chungf0c6ae02012-03-21 16:10:31 -07004184 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07004185 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
4186 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07004187 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004188 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07004189 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004190 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04004191 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07004192
4193 // Short circuit if we are loading dock items for a configuration which has no dock
4194 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
4195 mHotseat == null) {
4196 continue;
4197 }
4198
Joe Onorato9c1289c2009-08-17 11:03:03 -04004199 switch (item.itemType) {
4200 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
4201 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07004202 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004203 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07004204
Winson Chung64359a52013-07-08 17:17:08 -07004205 /*
4206 * TODO: FIX collision case
4207 */
Winson Chungce376632013-07-11 16:12:41 -07004208 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
4209 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
4210 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07004211 View v = cl.getChildAt(item.cellX, item.cellY);
4212 Object tag = v.getTag();
4213 String desc = "Collision while binding workspace item: " + item
4214 + ". Collides with " + tag;
4215 if (LauncherAppState.isDogfoodBuild()) {
4216 throw (new RuntimeException(desc));
4217 } else {
4218 Log.d(TAG, desc);
4219 }
Winson Chungce376632013-07-11 16:12:41 -07004220 }
Winson Chung64359a52013-07-08 17:17:08 -07004221 }
4222
Adam Cohendcd297f2013-06-18 13:13:40 -07004223 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
4224 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07004225 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07004226 // Animate all the applications up now
4227 shortcut.setAlpha(0f);
4228 shortcut.setScaleX(0f);
4229 shortcut.setScaleY(0f);
4230 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07004231 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004232 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004233 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07004234 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07004235 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07004236 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07004237 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07004238 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
4239 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004240 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07004241 default:
4242 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04004243 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004244 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004245
Winson Chung997a9232013-07-24 15:33:46 -07004246 if (animateIcons) {
4247 // Animate to the correct page
4248 if (newShortcutsScreenId > -1) {
4249 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07004250 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07004251 final Runnable startBounceAnimRunnable = new Runnable() {
4252 public void run() {
4253 anim.playTogether(bounceAnims);
4254 anim.start();
4255 }
4256 };
Winson Chung997a9232013-07-24 15:33:46 -07004257 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07004258 // We post the animation slightly delayed to prevent slowdowns
4259 // when we are loading right after we return to launcher.
4260 mWorkspace.postDelayed(new Runnable() {
4261 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00004262 if (mWorkspace != null) {
4263 mWorkspace.snapToPage(newScreenIndex);
4264 mWorkspace.postDelayed(startBounceAnimRunnable,
4265 NEW_APPS_ANIMATION_DELAY);
4266 }
Winson Chung94d67682013-09-25 16:29:40 -07004267 }
4268 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07004269 } else {
4270 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07004271 }
4272 }
Winson Chung64359a52013-07-08 17:17:08 -07004273 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004274 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004275 }
4276
Joe Onorato9c1289c2009-08-17 11:03:03 -04004277 /**
4278 * Implementation of the method from LauncherModel.Callbacks.
4279 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004280 public void bindFolders(final HashMap<Long, FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07004281 Runnable r = new Runnable() {
4282 public void run() {
4283 bindFolders(folders);
4284 }
4285 };
4286 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004287 return;
4288 }
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004289 sFolders.clear();
4290 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004291 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004292
4293 /**
4294 * Add the views for a widget to the workspace.
4295 *
4296 * Implementation of the method from LauncherModel.Callbacks.
4297 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004298 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004299 Runnable r = new Runnable() {
4300 public void run() {
4301 bindAppWidget(item);
4302 }
4303 };
4304 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004305 return;
4306 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004307
Daniel Sandler843e8602010-06-07 14:59:01 -04004308 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4309 if (DEBUG_WIDGETS) {
4310 Log.d(TAG, "bindAppWidget: " + item);
4311 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004312 final Workspace workspace = mWorkspace;
4313
Sunny Goyal651077b2014-06-30 14:15:31 -07004314 final AppWidgetProviderInfo appWidgetInfo;
4315 if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
4316 final int appWidgetId = item.appWidgetId;
4317 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4318 if (DEBUG_WIDGETS) {
4319 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
4320 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004321
Sunny Goyal651077b2014-06-30 14:15:31 -07004322 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
4323 } else {
4324 appWidgetInfo = null;
4325 item.hostView = new LauncherAppWidgetHostView(this, false);
4326 item.hostView.updateAppWidget(null);
4327 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004328
Joe Onorato9c1289c2009-08-17 11:03:03 -04004329 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004330 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004331
Adam Cohendcd297f2013-06-18 13:13:40 -07004332 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004333 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07004334 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4335
Joe Onorato9c1289c2009-08-17 11:03:03 -04004336 workspace.requestLayout();
4337
Daniel Sandler843e8602010-06-07 14:59:01 -04004338 if (DEBUG_WIDGETS) {
4339 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4340 + (SystemClock.uptimeMillis()-start) + "ms");
4341 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004342 }
4343
Adam Cohen1462de32012-07-24 22:34:36 -07004344 public void onPageBoundSynchronously(int page) {
4345 mSynchronouslyBoundPages.add(page);
4346 }
4347
Joe Onorato9c1289c2009-08-17 11:03:03 -04004348 /**
4349 * Callback saying that there aren't any more items to bind.
4350 *
4351 * Implementation of the method from LauncherModel.Callbacks.
4352 */
Adam Cohene25af792013-06-06 23:08:25 -07004353 public void finishBindingItems(final boolean upgradePath) {
Winson Chungd64d1762013-08-20 14:37:16 -07004354 Runnable r = new Runnable() {
4355 public void run() {
4356 finishBindingItems(upgradePath);
4357 }
4358 };
4359 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004360 return;
4361 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004362 if (mSavedState != null) {
4363 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004364 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004365 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004366 mSavedState = null;
4367 }
4368
Adam Cohen1462de32012-07-24 22:34:36 -07004369 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004370
Winson Chungc51db6a2011-10-05 11:44:49 -07004371 // Update the market app icon as necessary (the other icons will be managed in response to
4372 // package changes in bindSearchablesChanged()
Winson Chungd64a6662013-09-30 11:06:59 -07004373 if (!DISABLE_MARKET_BUTTON) {
4374 updateAppMarketIcon();
4375 }
Michael Jurkac1f5d262011-09-30 19:32:27 -07004376
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004377 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004378 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004379
4380 // If we received the result of any pending adds while the loader was running (e.g. the
4381 // widget configuration forced an orientation change), process them now.
4382 if (sPendingAddItem != null) {
4383 final long screenId = completeAdd(sPendingAddItem);
4384
4385 // TODO: this moves the user to the page where the pending item was added. Ideally,
4386 // the screen would be guaranteed to exist after bind, and the page would be set through
4387 // the workspace restore process.
4388 mWorkspace.post(new Runnable() {
4389 @Override
4390 public void run() {
4391 mWorkspace.snapToScreenId(screenId);
4392 }
4393 });
4394 sPendingAddItem = null;
4395 }
4396
Adam Cohene25af792013-06-06 23:08:25 -07004397 if (upgradePath) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004398 mWorkspace.getUniqueComponents(true, null);
4399 mIntentsOnWorkspaceFromUpgradePath = mWorkspace.getUniqueComponents(true, null);
Adam Cohene25af792013-06-06 23:08:25 -07004400 }
Sunny Goyale755d462014-07-22 13:48:29 -07004401 PackageInstallerCompat.getInstance(this).onFinishBind();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004402 }
4403
Adam Cohen3ed316a2014-07-23 18:21:20 -07004404 private void sendLoadingCompleteBroadcastIfNecessary() {
4405 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4406 String permission =
4407 getResources().getString(R.string.receive_first_load_broadcast_permission);
4408 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4409 sendBroadcast(intent, permission);
4410 SharedPreferences.Editor editor = mSharedPrefs.edit();
4411 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4412 editor.apply();
4413 }
4414 }
4415
Winson Chunga0b7e862013-09-05 16:03:15 -07004416 public boolean isAllAppsButtonRank(int rank) {
4417 if (mHotseat != null) {
4418 return mHotseat.isAllAppsButtonRank(rank);
4419 }
4420 return false;
4421 }
4422
Winson Chunga2413752012-04-03 14:22:34 -07004423 private boolean canRunNewAppsAnimation() {
4424 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4425 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4426 }
4427
Winson Chungc9168342013-06-26 14:54:55 -07004428 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4429 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4430 PropertyValuesHolder.ofFloat("alpha", 1f),
4431 PropertyValuesHolder.ofFloat("scaleX", 1f),
4432 PropertyValuesHolder.ofFloat("scaleY", 1f));
4433 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4434 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
4435 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
4436 return bounceAnim;
4437 }
4438
Adam Cohen27772732013-11-11 14:00:56 +00004439 public boolean useVerticalBarLayout() {
4440 return LauncherAppState.getInstance().getDynamicGrid().
4441 getDeviceProfile().isVerticalBarLayout();
4442 }
4443
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004444 protected Rect getSearchBarBounds() {
4445 return LauncherAppState.getInstance().getDynamicGrid().
4446 getDeviceProfile().getSearchBarBounds();
4447 }
4448
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004449 @Override
4450 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07004451 boolean searchVisible = updateGlobalSearchIcon();
4452 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07004453 if (mSearchDropTargetBar != null) {
4454 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
4455 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004456 }
4457
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004458 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004459 * Add the icons for all apps.
4460 *
4461 * Implementation of the method from LauncherModel.Callbacks.
4462 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004463 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004464 if (LauncherAppState.isDisableAllApps()) {
Winson Chungc58497e2013-09-03 17:48:37 -07004465 if (mIntentsOnWorkspaceFromUpgradePath != null) {
4466 if (LauncherModel.UPGRADE_USE_MORE_APPS_FOLDER) {
4467 getHotseat().addAllAppsFolder(mIconCache, apps,
4468 mIntentsOnWorkspaceFromUpgradePath, Launcher.this, mWorkspace);
4469 }
4470 mIntentsOnWorkspaceFromUpgradePath = null;
Daniel Sandler8707e0f2013-08-15 15:54:18 -07004471 }
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004472 if (mAppsCustomizeContent != null) {
4473 mAppsCustomizeContent.onPackagesUpdated(
4474 LauncherModel.getSortedWidgetsAndShortcuts(this));
4475 }
Winson Chungc58497e2013-09-03 17:48:37 -07004476 } else {
Winson Chungad7db6e2013-10-08 14:01:06 -07004477 if (mAppsCustomizeContent != null) {
Winson Chungc58497e2013-09-03 17:48:37 -07004478 mAppsCustomizeContent.setApps(apps);
Winson Chung6e1c0d32013-10-25 15:24:24 -07004479 mAppsCustomizeContent.onPackagesUpdated(
4480 LauncherModel.getSortedWidgetsAndShortcuts(this));
Winson Chungc58497e2013-09-03 17:48:37 -07004481 }
Winson Chung785d2eb2011-04-14 16:08:02 -07004482 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004483 }
4484
4485 /**
4486 * A package was updated.
4487 *
4488 * Implementation of the method from LauncherModel.Callbacks.
4489 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004490 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004491 Runnable r = new Runnable() {
4492 public void run() {
4493 bindAppsUpdated(apps);
4494 }
4495 };
4496 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004497 return;
4498 }
4499
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004500 if (mWorkspace != null) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004501 mWorkspace.updateShortcutsAndWidgets(apps);
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004502 }
Winson Chungc58497e2013-09-03 17:48:37 -07004503
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004504 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004505 mAppsCustomizeContent != null) {
4506 mAppsCustomizeContent.updateApps(apps);
4507 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004508 }
4509
4510 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004511 * Update the state of a package, typically related to install state.
4512 *
4513 * Implementation of the method from LauncherModel.Callbacks.
4514 */
Sunny Goyale755d462014-07-22 13:48:29 -07004515 @Override
4516 public void updatePackageState(ArrayList<PackageInstallInfo> installInfo) {
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004517 if (mWorkspace != null) {
Sunny Goyale755d462014-07-22 13:48:29 -07004518 mWorkspace.updatePackageState(installInfo);
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004519 }
4520 }
4521
4522 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004523 * A package was uninstalled. We take both the super set of packageNames
4524 * in addition to specific applications to remove, the reason being that
4525 * this can be called when a package is updated as well. In that scenario,
4526 * we only remove specific components from the workspace, where as
4527 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004528 *
4529 * Implementation of the method from LauncherModel.Callbacks.
4530 */
Winson Chung83892cc2013-05-01 16:53:33 -07004531 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Kenny Guyed131872014-04-30 03:02:21 +01004532 final ArrayList<AppInfo> appInfos, final UserHandleCompat user) {
Winson Chungd64d1762013-08-20 14:37:16 -07004533 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004534 public void run() {
Kenny Guyed131872014-04-30 03:02:21 +01004535 bindComponentsRemoved(packageNames, appInfos, user);
Winson Chung83892cc2013-05-01 16:53:33 -07004536 }
Winson Chungd64d1762013-08-20 14:37:16 -07004537 };
4538 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004539 return;
4540 }
4541
Winson Chungdf95eb12013-10-16 14:57:07 -07004542 if (!packageNames.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004543 mWorkspace.removeItemsByPackageName(packageNames, user);
Winson Chungdf95eb12013-10-16 14:57:07 -07004544 }
4545 if (!appInfos.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004546 mWorkspace.removeItemsByApplicationInfo(appInfos, user);
Joe Onorato36115782010-06-17 13:28:48 -04004547 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004548
Winson Chunga1820962011-10-03 16:31:06 -07004549 // Notify the drag controller
Winson Chungdf95eb12013-10-16 14:57:07 -07004550 mDragController.onAppsRemoved(packageNames, appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004551
Winson Chungdf95eb12013-10-16 14:57:07 -07004552 // Update AllApps
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004553 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004554 mAppsCustomizeContent != null) {
4555 mAppsCustomizeContent.removeApps(appInfos);
4556 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004557 }
Joe Onoratobe386092009-11-17 17:32:16 -08004558
4559 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07004560 * A number of packages were updated.
4561 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004562 private ArrayList<Object> mWidgetsAndShortcuts;
4563 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004564 public void run() {
Michael Jurkac402cd92013-05-20 15:49:32 +02004565 bindPackagesUpdated(mWidgetsAndShortcuts);
4566 mWidgetsAndShortcuts = null;
Winson Chung83892cc2013-05-01 16:53:33 -07004567 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004568 };
Michael Jurkac402cd92013-05-20 15:49:32 +02004569 public void bindPackagesUpdated(final ArrayList<Object> widgetsAndShortcuts) {
4570 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
4571 mWidgetsAndShortcuts = widgetsAndShortcuts;
Winson Chung83892cc2013-05-01 16:53:33 -07004572 return;
4573 }
4574
Winson Chung64359a52013-07-08 17:17:08 -07004575 // Update the widgets pane
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004576 if (mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004577 mAppsCustomizeContent.onPackagesUpdated(widgetsAndShortcuts);
Winson Chung785d2eb2011-04-14 16:08:02 -07004578 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004579 }
4580
Winson Chung400438b2011-01-16 17:53:48 -08004581 private int mapConfigurationOriActivityInfoOri(int configOri) {
4582 final Display d = getWindowManager().getDefaultDisplay();
4583 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4584 switch (d.getRotation()) {
4585 case Surface.ROTATION_0:
4586 case Surface.ROTATION_180:
4587 // We are currently in the same basic orientation as the natural orientation
4588 naturalOri = configOri;
4589 break;
4590 case Surface.ROTATION_90:
4591 case Surface.ROTATION_270:
4592 // We are currently in the other basic orientation to the natural orientation
4593 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4594 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4595 break;
4596 }
4597
4598 int[] oriMap = {
4599 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4600 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4601 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4602 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4603 };
4604 // Since the map starts at portrait, we need to offset if this device's natural orientation
4605 // is landscape.
4606 int indexOffset = 0;
4607 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4608 indexOffset = 1;
4609 }
4610 return oriMap[(d.getRotation() + indexOffset) % 4];
4611 }
Adam Cohen446e9402011-09-15 18:21:21 -07004612
Winson Chung4b919f82012-05-01 10:44:08 -07004613 public boolean isRotationEnabled() {
Michael Jurka0a457bf2012-11-19 14:05:05 -08004614 boolean enableRotation = sForceEnableRotation ||
Winson Chung4b919f82012-05-01 10:44:08 -07004615 getResources().getBoolean(R.bool.allow_rotation);
4616 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08004617 }
Winson Chung4b919f82012-05-01 10:44:08 -07004618 public void lockScreenOrientation() {
4619 if (isRotationEnabled()) {
4620 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4621 .getConfiguration().orientation));
4622 }
4623 }
4624 public void unlockScreenOrientation(boolean immediate) {
4625 if (isRotationEnabled()) {
4626 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004627 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004628 } else {
4629 mHandler.postDelayed(new Runnable() {
4630 public void run() {
4631 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4632 }
4633 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004634 }
Winson Chung4b919f82012-05-01 10:44:08 -07004635 }
Winson Chung400438b2011-01-16 17:53:48 -08004636 }
4637
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004638 /**
4639 * Called when the SearchBar hint should be changed.
4640 *
4641 * @param hint the hint to be displayed in the search bar.
4642 */
4643 protected void onSearchBarHintChanged(String hint) {
Winson Chunga6945242014-01-08 14:04:34 -08004644 mLauncherClings.updateSearchBarHint(hint);
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004645 }
4646
Winson Chunge43a1e72014-01-15 10:33:02 -08004647 protected boolean isLauncherPreinstalled() {
4648 PackageManager pm = getPackageManager();
4649 try {
4650 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4651 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4652 return true;
4653 } else {
4654 return false;
4655 }
4656 } catch (NameNotFoundException e) {
4657 e.printStackTrace();
4658 return false;
4659 }
4660 }
4661
Adam Cohenea90f832014-05-21 15:03:34 -07004662 /**
4663 * This method indicates whether or not we should suggest default wallpaper dimensions
4664 * when our wallpaper cropper was not yet used to set a wallpaper.
4665 */
4666 protected boolean overrideWallpaperDimensions() {
4667 return true;
4668 }
4669
Adam Cohen5eed5d82014-05-19 13:12:13 -07004670 protected boolean shouldClingFocusHotseatApp() {
4671 return false;
4672 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004673 protected String getFirstRunClingSearchBarHint() {
4674 return "";
4675 }
4676 protected String getFirstRunCustomContentHint() {
4677 return "";
4678 }
Winson Chung3a6e7f32013-10-09 15:50:52 -07004679 protected int getFirstRunFocusedHotseatAppDrawableId() {
4680 return -1;
4681 }
4682 protected ComponentName getFirstRunFocusedHotseatAppComponentName() {
4683 return null;
4684 }
4685 protected int getFirstRunFocusedHotseatAppRank() {
4686 return -1;
4687 }
4688 protected String getFirstRunFocusedHotseatAppBubbleTitle() {
4689 return "";
4690 }
4691 protected String getFirstRunFocusedHotseatAppBubbleDescription() {
4692 return "";
4693 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004694
Winson Chungaf40f202013-09-18 18:26:31 -07004695 public void dismissFirstRunCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004696 mLauncherClings.dismissFirstRunCling(v);
4697 }
4698 public void dismissMigrationClingCopyApps(View v) {
4699 mLauncherClings.dismissMigrationClingCopyApps(v);
4700 }
4701 public void dismissMigrationClingUseDefault(View v) {
4702 mLauncherClings.dismissMigrationClingUseDefault(v);
4703 }
4704 public void dismissMigrationWorkspaceCling(View v) {
4705 mLauncherClings.dismissMigrationWorkspaceCling(v);
Winson Chungaf40f202013-09-18 18:26:31 -07004706 }
Winson Chung82f55532011-08-09 14:14:23 -07004707 public void dismissWorkspaceCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004708 mLauncherClings.dismissWorkspaceCling(v);
Winson Chung7d7541e2011-09-16 20:14:36 -07004709 }
4710 public void dismissFolderCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004711 mLauncherClings.dismissFolderCling(v);
Winson Chung82f55532011-08-09 14:14:23 -07004712 }
Adam Cohen6268f2d2014-05-16 16:42:35 -07004713 public void markFolderClingDismissedIfNecessary() {
4714 mLauncherClings.markFolderClingDismissedIfNecessary();
4715 }
Adam Cohen432609a2014-03-13 17:03:22 -07004716
4717 /**
4718 * To be overridden by subclasses to indicate that there is an activity to launch
4719 * before showing the standard launcher experience.
4720 */
4721 protected boolean hasFirstRunActivity() {
4722 return false;
4723 }
4724
4725 /**
4726 * To be overridden by subclasses to launch any first run activity
4727 */
4728 protected Intent getFirstRunActivity() {
4729 return null;
4730 }
4731
Winson Chunga6945242014-01-08 14:04:34 -08004732 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004733 return !ActivityManager.isRunningInTestHarness() &&
4734 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004735 }
4736
Adam Cohen4a9423d2014-03-28 14:22:31 -07004737 protected boolean hasRunFirstRunActivity() {
4738 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4739 }
4740
Adam Cohen432609a2014-03-13 17:03:22 -07004741 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004742 if (shouldRunFirstRunActivity() &&
4743 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004744 Intent firstRunIntent = getFirstRunActivity();
4745 if (firstRunIntent != null) {
4746 startActivity(firstRunIntent);
4747 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004748 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004749 }
4750 }
Adam Cohen432609a2014-03-13 17:03:22 -07004751 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004752 }
4753
4754 private void markFirstRunActivityShown() {
4755 SharedPreferences.Editor editor = mSharedPrefs.edit();
4756 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4757 editor.apply();
4758 }
4759
Adam Cohen432609a2014-03-13 17:03:22 -07004760 /**
4761 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4762 * screen that must be displayed and dismissed.
4763 */
4764 protected boolean hasDismissableIntroScreen() {
4765 return false;
4766 }
4767
4768 /**
4769 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4770 */
4771 protected View getIntroScreen() {
4772 return null;
4773 }
4774
4775 /**
4776 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4777 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4778 */
4779 private boolean shouldShowIntroScreen() {
4780 return hasDismissableIntroScreen() &&
4781 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4782 }
4783
4784 protected void showIntroScreen() {
4785 View introScreen = getIntroScreen();
4786 changeWallpaperVisiblity(false);
4787 if (introScreen != null) {
4788 mDragLayer.showOverlayView(introScreen);
4789 }
4790 }
4791
4792 public void dismissIntroScreen() {
4793 markIntroScreenDismissed();
4794 if (showFirstRunActivity()) {
4795 // We delay hiding the intro view until the first run activity is showing. This
4796 // avoids a blip.
4797 mWorkspace.postDelayed(new Runnable() {
4798 @Override
4799 public void run() {
4800 mDragLayer.dismissOverlayView();
4801 }
4802 }, ACTIVITY_START_DELAY);
4803 } else {
4804 mDragLayer.dismissOverlayView();
4805 }
4806 changeWallpaperVisiblity(true);
4807 }
4808
4809 private void markIntroScreenDismissed() {
4810 SharedPreferences.Editor editor = mSharedPrefs.edit();
4811 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4812 editor.apply();
4813 }
4814
Winson Chunga6945242014-01-08 14:04:34 -08004815 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004816 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4817 if (mHotseat != null) mHotseat.setAlpha(1f);
4818 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
4819 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004820 }
4821
4822 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004823 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4824 if (mHotseat != null) mHotseat.setAlpha(0f);
4825 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
4826 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004827 }
4828
Mathew Inwood72fbec12013-11-19 15:45:07 +00004829 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Kenny Guyed131872014-04-30 03:02:21 +01004830 // Called from search suggestion, not supported in other profiles.
4831 final UserHandleCompat myUser = UserHandleCompat.myUserHandle();
4832 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
4833 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(appLaunchIntent,
4834 myUser);
4835 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004836 return null;
4837 }
Kenny Guyed131872014-04-30 03:02:21 +01004838 return new AppInfo(this, activityInfo, myUser, mIconCache, null);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004839 }
4840
4841 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4842 Bitmap icon) {
Kenny Guyed131872014-04-30 03:02:21 +01004843 // Called from search suggestion, not supported in other profiles.
4844 return createShortcutDragInfo(shortcutIntent, caption, icon,
4845 UserHandleCompat.myUserHandle());
4846 }
4847
4848 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4849 Bitmap icon, UserHandleCompat user) {
Kenny Guyc2bd8102014-06-30 12:30:31 +01004850 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyd6fe5262014-07-21 17:11:41 +01004851 CharSequence contentDescription = userManager.getBadgedLabelForUser(caption, user);
Kenny Guyc2bd8102014-06-30 12:30:31 +01004852 return new ShortcutInfo(shortcutIntent, caption, contentDescription, icon, user);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004853 }
4854
Mathew Inwoodb90860a2014-04-11 17:17:39 +01004855 protected void moveWorkspaceToDefaultScreen() {
4856 mWorkspace.moveToDefaultScreen(false);
4857 }
4858
Mathew Inwood72fbec12013-11-19 15:45:07 +00004859 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4860 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004861 mWorkspace.onExternalDragStartedWithItem(dragView);
4862 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004863 }
4864
Anjali Koppalf5d29132014-02-28 13:33:27 -08004865 @Override
4866 public void onPageSwitch(View newPage, int newPageIndex) {
4867 }
4868
Winson Chung80baf5a2010-08-09 16:03:15 -07004869 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004870 * Prints out out state for debugging.
4871 */
4872 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004873 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004874 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004875 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4876 Log.d(TAG, "mRestoring=" + mRestoring);
4877 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4878 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004879 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004880 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004881
Winson Chung785d2eb2011-04-14 16:08:02 -07004882 if (mAppsCustomizeContent != null) {
4883 mAppsCustomizeContent.dumpState();
4884 }
Daniel Sandler325dc232013-06-05 22:57:57 -04004885 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004886 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004887
4888 @Override
4889 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4890 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004891 synchronized (sDumpLogs) {
4892 writer.println(" ");
4893 writer.println("Debug logs: ");
4894 for (int i = 0; i < sDumpLogs.size(); i++) {
4895 writer.println(" " + sDumpLogs.get(i));
4896 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004897 }
4898 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004899
4900 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004901 if (DEBUG_DUMP_LOG) {
4902 synchronized (sDumpLogs) {
4903 Log.d(TAG, "");
4904 Log.d(TAG, "*********************");
4905 Log.d(TAG, "Launcher debug logs: ");
4906 for (int i = 0; i < sDumpLogs.size(); i++) {
4907 Log.d(TAG, " " + sDumpLogs.get(i));
4908 }
4909 Log.d(TAG, "*********************");
4910 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004911 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004912 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004913 }
4914
4915 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004916 addDumpLog(tag, log, null, debugLog);
4917 }
4918
4919 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004920 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004921 if (e != null) {
4922 Log.d(tag, log, e);
4923 } else {
4924 Log.d(tag, log);
4925 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004926 }
Winson Chungede41292013-09-19 16:27:36 -07004927 if (DEBUG_DUMP_LOG) {
4928 sDateStamp.setTime(System.currentTimeMillis());
4929 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004930 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4931 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004932 }
Winson Chungede41292013-09-19 16:27:36 -07004933 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004934 }
4935
Winson Chungede41292013-09-19 16:27:36 -07004936 public void dumpLogsToLocalData() {
4937 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004938 new AsyncTask<Void, Void, Void>() {
4939 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004940 boolean success = false;
4941 sDateStamp.setTime(sRunStart);
4942 String FILENAME = sDateStamp.getMonth() + "-"
4943 + sDateStamp.getDay() + "_"
4944 + sDateStamp.getHours() + "-"
4945 + sDateStamp.getMinutes() + "_"
4946 + sDateStamp.getSeconds() + ".txt";
4947
4948 FileOutputStream fos = null;
4949 File outFile = null;
4950 try {
4951 outFile = new File(getFilesDir(), FILENAME);
4952 outFile.createNewFile();
4953 fos = new FileOutputStream(outFile);
4954 } catch (Exception e) {
4955 e.printStackTrace();
4956 }
4957 if (fos != null) {
4958 PrintWriter writer = new PrintWriter(fos);
4959
4960 writer.println(" ");
4961 writer.println("Debug logs: ");
4962 synchronized (sDumpLogs) {
4963 for (int i = 0; i < sDumpLogs.size(); i++) {
4964 writer.println(" " + sDumpLogs.get(i));
4965 }
4966 }
4967 writer.close();
4968 }
4969 try {
4970 if (fos != null) {
4971 fos.close();
4972 success = true;
4973 }
4974 } catch (IOException e) {
4975 e.printStackTrace();
4976 }
Michael Jurka43467462013-11-14 12:03:58 +01004977 return null;
Winson Chungede41292013-09-19 16:27:36 -07004978 }
Michael Jurka43467462013-11-14 12:03:58 +01004979 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004980 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004981 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004982}
Michael Jurka2763be32011-02-24 11:19:57 -08004983
Michael Jurkaabded662011-03-04 12:06:57 -08004984interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08004985 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07004986 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08004987 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08004988 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08004989 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08004990}
Dan Sandlerd5024042014-01-09 15:01:33 -05004991
4992interface DebugIntents {
4993 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4994 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004995}