blob: 5e05f927dbef2a435ec5bec604b4b6820b0df39f [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 Cohen6c5891a2014-07-09 23:53:15 -070085import android.view.ViewAnimationUtils;
Adam Cohen0b395352014-06-09 22:54:36 +000086import android.view.Window;
Adam Cohenf358a4b2013-07-23 16:47:31 -070087import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080088import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070089import android.view.ViewGroup;
90import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080091import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Sunny Goyal651077b2014-06-30 14:15:31 -070092import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070093import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080094import android.view.accessibility.AccessibilityEvent;
Adam Cohencff6af82011-09-13 14:51:53 -070095import android.view.animation.AccelerateDecelerateInterpolator;
Adam Cohen6c5891a2014-07-09 23:53:15 -070096import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080097import android.view.animation.DecelerateInterpolator;
Adam Cohen6c5891a2014-07-09 23:53:15 -070098import android.view.animation.LinearInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080099import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -0700100import android.widget.Advanceable;
101import android.widget.FrameLayout;
102import android.widget.ImageView;
103import android.widget.TextView;
104import android.widget.Toast;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700105
Sunny Goyal651077b2014-06-30 14:15:31 -0700106import com.android.launcher3.DropTarget.DragObject;
107import com.android.launcher3.PagedView.PageSwitchListener;
Kenny Guyed131872014-04-30 03:02:21 +0100108import com.android.launcher3.compat.LauncherActivityInfoCompat;
109import com.android.launcher3.compat.LauncherAppsCompat;
110import com.android.launcher3.compat.UserHandleCompat;
111import com.android.launcher3.compat.UserManagerCompat;
Daniel Sandler325dc232013-06-05 22:57:57 -0400112import com.android.launcher3.DropTarget.DragObject;
Anjali Koppalf5d29132014-02-28 13:33:27 -0800113import com.android.launcher3.PagedView.PageSwitchListener;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700114
Adam Cohenc0dcf592011-06-01 15:30:43 -0700115import java.io.DataInputStream;
116import java.io.DataOutputStream;
Adam Cohen4caf2982013-08-20 18:54:31 -0700117import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700119import java.io.FileNotFoundException;
Adam Cohen4caf2982013-08-20 18:54:31 -0700120import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700121import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700122import java.io.PrintWriter;
Adam Cohen0b395352014-06-09 22:54:36 +0000123import java.lang.reflect.Field;
124import java.lang.reflect.InvocationTargetException;
125import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700126import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700127import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700128import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700129import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700130import java.util.HashMap;
Michael Jurkad7c28052012-04-27 15:43:36 -0700131import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000132import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700133
Winson Chunga6945242014-01-08 14:04:34 -0800134
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800135/**
136 * Default launcher application.
137 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100138public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700139 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700140 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800141 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700142 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800143
Daniel Sandlerf061f822013-06-27 13:59:36 -0400144 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400145 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700146 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400147 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700148 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700149
Dan Sandlerd5024042014-01-09 15:01:33 -0500150 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
151
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800152 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700153 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800154 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700155 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700156 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800157
Michael Jurka8b805b12012-04-18 14:23:14 -0700158 private static final int REQUEST_BIND_APPWIDGET = 11;
159
Mathew Inwood876a8462013-06-14 14:12:41 +0100160 /**
161 * IntentStarter uses request codes starting with this. This must be greater than all activity
162 * request codes used internally.
163 */
164 protected static final int REQUEST_LAST = 100;
165
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800166 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
167
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800168 static final int SCREEN_COUNT = 5;
169 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800170
Romain Guy98d01652009-06-30 16:21:04 -0700171 private static final String PREFERENCES = "launcher.preferences";
Michael Jurka0a457bf2012-11-19 14:05:05 -0800172 // To turn on these properties, type
173 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
174 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher_force_rotate";
175 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800176 static final String DISABLE_ALL_APPS_PROPERTY = "launcher_noallapps";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177
Winson Chung2672ff92012-05-04 16:22:30 -0700178 // The Intent extra that defines whether to ignore the launch animation
179 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400180 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700181
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 // Type: int
183 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700184 // Type: int
185 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800186 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700187 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
188 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800189 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
190 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700191 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800192 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700193 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800194 // Type: boolean
195 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
196 // Type: long
197 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700198 // Type: int
199 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
200 // Type: int
201 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
202 // Type: parcelable
203 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000204 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800205 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000206 // Type: int[]
207 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800208
Adam Cohen432609a2014-03-13 17:03:22 -0700209 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800210 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
211
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100212 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700213 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100214 "com.android.launcher.toolbar_search_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700215 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100216 "com.android.launcher.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700217
Adam Cohen39a06042013-07-19 14:30:12 -0700218 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b802013-08-15 15:44:26 -0700219 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700220
Winson Chunga6945242014-01-08 14:04:34 -0800221 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
222
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700223 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700224 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700225 private State mState = State.WORKSPACE;
226 private AnimatorSet mStateAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700227
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700228 private boolean mIsSafeModeEnabled;
229
Joe Onorato9c1289c2009-08-17 11:03:03 -0400230 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700231 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
232 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700233 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800234
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800235 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800236 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800237
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000238 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
239 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
240
Winson Chunga2413752012-04-03 14:22:34 -0700241 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700242 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
243 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Winson Chung64359a52013-07-08 17:17:08 -0700244 private static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700245
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800246 private final BroadcastReceiver mCloseSystemDialogsReceiver
247 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800248 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
249
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800250 private LayoutInflater mInflater;
251
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800252 private Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700253 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800254 private View mPageIndicators;
Michael Jurkab737ee62011-11-15 15:57:22 -0800255 private DragLayer mDragLayer;
256 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700257 private View mWeightWatcher;
Winson Chunga6945242014-01-08 14:04:34 -0800258 private LauncherClings mLauncherClings;
Romain Guycbb89e42009-06-08 15:52:54 -0700259
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700260 private AppWidgetManager mAppWidgetManager;
261 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700262
Michael Jurkac9d95c52011-08-29 14:03:34 -0700263 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700264 private AppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800265 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700266
Michael Jurka0280c3b2010-09-17 15:00:07 -0700267 private int[] mTmpAddItemCellCoordinates = new int[2];
268
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800269 private FolderInfo mFolderInfo;
270
Winson Chung3d503fb2011-07-13 17:25:49 -0700271 private Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800272 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700273
Michael Jurka838a4ca2011-02-07 13:33:06 -0800274 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700275
Winson Chungc51db6a2011-10-05 11:44:49 -0700276 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700277 private AppsCustomizeTabHost mAppsCustomizeTabHost;
278 private AppsCustomizePagedView mAppsCustomizeContent;
279 private boolean mAutoAdvanceRunning = false;
Adam Cohen24ce0b32014-01-14 16:18:14 -0800280 private View mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800281
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800282 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700283 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
284 // scroll issues (because the workspace may not have been measured yet) and extra work.
285 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
286 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800287
288 private SpannableStringBuilder mDefaultKeySsb = null;
289
Joe Onorato9c1289c2009-08-17 11:03:03 -0400290 private boolean mWorkspaceLoading = true;
291
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800292 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800293 private boolean mRestoring;
294 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700295 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800296
Michael Jurka1e2f4652013-07-08 18:03:46 -0700297 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700298 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
299
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800300 private Bundle mSavedInstanceState;
301
Joe Onorato9c1289c2009-08-17 11:03:03 -0400302 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800303 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800304 private boolean mUserPresent = true;
305 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700306 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800307 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400308
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700309 private static LocaleConfiguration sLocaleConfiguration = null;
310
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700311 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700312
Adam Cohen61f560d2013-09-30 15:58:20 -0700313 private View.OnTouchListener mHapticFeedbackTouchListener;
314
Adam Cohended9f8d2010-11-03 13:25:16 -0700315 // Related to the auto-advancing of widgets
316 private final int ADVANCE_MSG = 1;
317 private final int mAdvanceInterval = 20000;
318 private final int mAdvanceStagger = 250;
319 private long mAutoAdvanceSentTime;
320 private long mAutoAdvanceTimeLeft = -1;
321 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
322 new HashMap<View, AppWidgetProviderInfo>();
323
Winson Chung400438b2011-01-16 17:53:48 -0800324 // Determines how long to wait after a rotation before restoring the screen orientation to
325 // match the sensor state.
326 private final int mRestoreScreenOrientationDelay = 500;
327
Michael Jurka4ef207b2010-11-29 17:05:45 -0800328 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700329 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
330 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
331 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800332
Winson Chungd64a6662013-09-30 11:06:59 -0700333 private Intent mAppMarketIntent = null;
334 private static final boolean DISABLE_MARKET_BUTTON = true;
335
Craig Mautner360310b2012-10-26 15:13:08 -0700336 private Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700337
Adam Cohen1462de32012-07-24 22:34:36 -0700338 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700339 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700340
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700341 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700342 static Date sDateStamp = new Date();
343 static DateFormat sDateFormat =
344 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
345 static long sRunStart = System.currentTimeMillis();
346 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700347
Winson Chung46353de2012-02-16 14:05:10 -0800348 // We only want to get the SharedPreferences once since it does an FS stat each time we get
349 // it from the context.
350 private SharedPreferences mSharedPrefs;
351
Adam Cohene25af792013-06-06 23:08:25 -0700352 private static ArrayList<ComponentName> mIntentsOnWorkspaceFromUpgradePath = null;
353
Winson Chungf0c6ae02012-03-21 16:10:31 -0700354 // Holds the page that we need to animate to, and the icon views that we need to animate up
355 // when we scroll to that page on resume.
Adam Cohen268c4752012-06-06 17:47:33 -0700356 private ImageView mFolderIconImageView;
357 private Bitmap mFolderIconBitmap;
358 private Canvas mFolderIconCanvas;
359 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700360
Michael Jurkaddd62e92011-02-16 17:49:14 -0800361 private BubbleTextView mWaitingForResume;
362
Michael Jurkac1f5d262011-09-30 19:32:27 -0700363 private Runnable mBuildLayersRunnable = new Runnable() {
364 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700365 if (mWorkspace != null) {
366 mWorkspace.buildPageHardwareLayers();
367 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700368 }
369 };
370
Adam Cohendb364c32014-05-20 14:23:40 -0700371 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800372
Michael Jurka7267fa52013-09-26 15:29:57 -0700373 public static boolean sForceEnableRotation = isPropertyEnabled(FORCE_ENABLE_ROTATION_PROPERTY);
Michael Jurka0a457bf2012-11-19 14:05:05 -0800374
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800375 private static class PendingAddArguments {
376 int requestCode;
377 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700378 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700379 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800380 int cellX;
381 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700382 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800383 }
384
Daniel Sandlerff02d492013-08-05 02:12:05 -0400385 private Stats mStats;
386
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800387 static boolean isPropertyEnabled(String propertyName) {
Michael Jurka0a457bf2012-11-19 14:05:05 -0800388 return Log.isLoggable(propertyName, Log.VERBOSE);
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700389 }
390
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800391 @Override
392 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700393 if (DEBUG_STRICT_MODE) {
394 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
395 .detectDiskReads()
396 .detectDiskWrites()
397 .detectNetwork() // or .detectAll() for all detectable problems
398 .penaltyLog()
399 .build());
400 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
401 .detectLeakedSqlLiteObjects()
402 .detectLeakedClosableObjects()
403 .penaltyLog()
404 .penaltyDeath()
405 .build());
406 }
407
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800408 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400409
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400410 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400411 LauncherAppState app = LauncherAppState.getInstance();
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700412 LauncherAppState.getLauncherProvider().setLauncherProviderChangeListener(this);
Winson Chung5f8afe62013-08-12 16:19:28 -0700413 // Determine the dynamic grid properties
414 Point smallestSize = new Point();
415 Point largestSize = new Point();
416 Point realSize = new Point();
417 Display display = getWindowManager().getDefaultDisplay();
418 display.getCurrentSizeRange(smallestSize, largestSize);
419 display.getRealSize(realSize);
Winson Chung892c74d2013-08-22 16:15:50 -0700420 DisplayMetrics dm = new DisplayMetrics();
421 display.getMetrics(dm);
Winson Chung6e1c0d32013-10-25 15:24:24 -0700422
Winson Chung5f8afe62013-08-12 16:19:28 -0700423 // Lazy-initialize the dynamic grid
424 DeviceProfile grid = app.initDynamicGrid(this,
425 Math.min(smallestSize.x, smallestSize.y),
426 Math.min(largestSize.x, largestSize.y),
Winson Chung892c74d2013-08-22 16:15:50 -0700427 realSize.x, realSize.y,
428 dm.widthPixels, dm.heightPixels);
Winson Chung5f8afe62013-08-12 16:19:28 -0700429
430 // the LauncherApplication should call this, but in case of Instrumentation it might not be present yet
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400431 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700432 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700433 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800434 mModel = app.setLauncher(this);
435 mIconCache = app.getIconCache();
Winson Chunge5467dc2013-10-14 17:03:04 -0700436 mIconCache.flushInvalidIcons(grid);
Joe Onorato41a12d22009-10-31 18:30:00 -0400437 mDragController = new DragController(this);
Winson Chunga6945242014-01-08 14:04:34 -0800438 mLauncherClings = new LauncherClings(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800439 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700440
Daniel Sandlerff02d492013-08-05 02:12:05 -0400441 mStats = new Stats(this);
442
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700443 mAppWidgetManager = AppWidgetManager.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700444
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700445 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
446 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700447
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700448 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
449 // this also ensures that any synchronous binding below doesn't re-trigger another
450 // LauncherModel load.
451 mPaused = false;
452
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800453 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200454 android.os.Debug.startMethodTracing(
455 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800456 }
457
Adam Cohen53805212013-10-01 10:39:23 -0700458
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800459 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800460 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700461
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800462 setupViews();
Cristina Stancu476493b2013-08-07 17:20:14 +0100463 grid.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800464
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800465 registerContentObservers();
466
Joe Onorato7c312c12009-08-13 21:36:53 -0700467 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700468
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800469 mSavedState = savedInstanceState;
470 restoreState(mSavedState);
471
472 if (PROFILE_STARTUP) {
473 android.os.Debug.stopMethodTracing();
474 }
475
476 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700477 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700478 // If the user leaves launcher, then we should just load items asynchronously when
479 // they return.
Derek Prothro7aff3992013-12-10 14:00:37 -0500480 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700481 } else {
482 // We only load the page synchronously if the user rotates (or triggers a
483 // configuration change) while launcher is in the foreground
Winson Chung9b9fb962013-11-15 15:39:34 -0800484 mModel.startLoader(true, mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700485 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800486 }
487
488 // For handling default keys
489 mDefaultKeySsb = new SpannableStringBuilder();
490 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800491
492 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
493 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800494
Adam Cohenf9426d52012-06-04 17:26:21 -0700495 updateGlobalIcons();
496
497 // On large interfaces, we want the screen to auto-rotate based on the current orientation
498 unlockScreenOrientation(true);
Winson Chungaf40f202013-09-18 18:26:31 -0700499
Adam Cohen432609a2014-03-13 17:03:22 -0700500 if (shouldShowIntroScreen()) {
501 showIntroScreen();
502 } else {
503 showFirstRunActivity();
504 }
505
Winson Chunge43a1e72014-01-15 10:33:02 -0800506 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
507 // on the device, then we always show the first run cling experience (or if there is no
508 // launcher2). Otherwise, we prompt the user upon started for migration
Winson Chunge43a1e72014-01-15 10:33:02 -0800509 if (mLauncherClings.shouldShowFirstRunOrMigrationClings()) {
510 if (mModel.canMigrateFromOldLauncherDb(this)) {
511 mLauncherClings.showMigrationCling();
512 } else {
513 mLauncherClings.showFirstRunCling();
514 }
Winson Chunga6945242014-01-08 14:04:34 -0800515 } else {
Winson Chunge43a1e72014-01-15 10:33:02 -0800516 mLauncherClings.removeFirstRunAndMigrationClings();
Winson Chunga6945242014-01-08 14:04:34 -0800517 }
Adam Cohenf9426d52012-06-04 17:26:21 -0700518 }
519
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700520 @Override
521 public void onLauncherProviderChange() { }
522
Winson Chung98ca0f72013-07-29 12:58:51 -0700523 /** To be overriden by subclasses to hint to Launcher that we have custom content */
524 protected boolean hasCustomContentToLeft() {
525 return false;
526 }
527
Dave Hawkeya8881582013-09-17 15:55:33 -0600528 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500529 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600530 * {@link #addToCustomContentPage}. This will only be invoked if
531 * {@link #hasCustomContentToLeft()} is {@code true}.
532 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500533 protected void populateCustomContentContainer() {
Dave Hawkeya8881582013-09-17 15:55:33 -0600534 }
535
536 /**
537 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
538 * ensure the custom content page is added or removed if necessary.
539 */
540 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600541 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600542 // Not bound yet, wait for bindScreens to be called.
543 return;
544 }
545
546 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
547 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500548 mWorkspace.createCustomContentContainer();
549 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600550 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
551 mWorkspace.removeCustomContentPage();
552 }
553 }
554
Adam Cohenf9426d52012-06-04 17:26:21 -0700555 private void updateGlobalIcons() {
Winson Chungc51db6a2011-10-05 11:44:49 -0700556 boolean searchVisible = false;
557 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800558 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700559 int coi = getCurrentOrientationIndexForGlobalIcons();
560 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
561 sAppMarketIcon[coi] == null) {
Winson Chungd64a6662013-09-30 11:06:59 -0700562 if (!DISABLE_MARKET_BUTTON) {
563 updateAppMarketIcon();
564 }
Winson Chungc51db6a2011-10-05 11:44:49 -0700565 searchVisible = updateGlobalSearchIcon();
566 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700567 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700568 if (sGlobalSearchIcon[coi] != null) {
569 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700570 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700571 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700572 if (sVoiceSearchIcon[coi] != null) {
573 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700574 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700575 }
Winson Chungd64a6662013-09-30 11:06:59 -0700576 if (!DISABLE_MARKET_BUTTON && sAppMarketIcon[coi] != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -0700577 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800578 }
Winson Chungadf0c182012-08-23 14:59:07 -0700579 if (mSearchDropTargetBar != null) {
580 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
581 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800582 }
Romain Guycbb89e42009-06-08 15:52:54 -0700583
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800584 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700585 if (sLocaleConfiguration == null) {
586 new AsyncTask<Void, Void, LocaleConfiguration>() {
587 @Override
588 protected LocaleConfiguration doInBackground(Void... unused) {
589 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
590 readConfiguration(Launcher.this, localeConfiguration);
591 return localeConfiguration;
592 }
593
594 @Override
595 protected void onPostExecute(LocaleConfiguration result) {
596 sLocaleConfiguration = result;
597 checkForLocaleChange(); // recursive, but now with a locale configuration
598 }
599 }.execute();
600 return;
601 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700602
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800603 final Configuration configuration = getResources().getConfiguration();
604
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700605 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800606 final String locale = configuration.locale.toString();
607
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700608 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800609 final int mcc = configuration.mcc;
610
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700611 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800612 final int mnc = configuration.mnc;
613
Romain Guy84f296c2009-11-04 15:00:44 -0800614 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800615
Romain Guy84f296c2009-11-04 15:00:44 -0800616 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700617 sLocaleConfiguration.locale = locale;
618 sLocaleConfiguration.mcc = mcc;
619 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700620
Joe Onorato0589f0f2010-02-08 13:44:00 -0800621 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700622
623 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
Michael Jurka43467462013-11-14 12:03:58 +0100624 new AsyncTask<Void, Void, Void>() {
625 public Void doInBackground(Void ... args) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700626 writeConfiguration(Launcher.this, localeConfiguration);
Michael Jurka43467462013-11-14 12:03:58 +0100627 return null;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700628 }
Michael Jurka43467462013-11-14 12:03:58 +0100629 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Romain Guy98d01652009-06-30 16:21:04 -0700630 }
631 }
632
633 private static class LocaleConfiguration {
634 public String locale;
635 public int mcc = -1;
636 public int mnc = -1;
637 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700638
Romain Guy98d01652009-06-30 16:21:04 -0700639 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
640 DataInputStream in = null;
641 try {
642 in = new DataInputStream(context.openFileInput(PREFERENCES));
643 configuration.locale = in.readUTF();
644 configuration.mcc = in.readInt();
645 configuration.mnc = in.readInt();
646 } catch (FileNotFoundException e) {
647 // Ignore
648 } catch (IOException e) {
649 // Ignore
650 } finally {
651 if (in != null) {
652 try {
653 in.close();
654 } catch (IOException e) {
655 // Ignore
656 }
657 }
658 }
659 }
660
661 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
662 DataOutputStream out = null;
663 try {
664 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
665 out.writeUTF(configuration.locale);
666 out.writeInt(configuration.mcc);
667 out.writeInt(configuration.mnc);
668 out.flush();
669 } catch (FileNotFoundException e) {
670 // Ignore
671 } catch (IOException e) {
672 //noinspection ResultOfMethodCallIgnored
673 context.getFileStreamPath(PREFERENCES).delete();
674 } finally {
675 if (out != null) {
676 try {
677 out.close();
678 } catch (IOException e) {
679 // Ignore
680 }
681 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800682 }
683 }
684
Anton Hanssona2f665f2013-09-26 12:18:32 +0100685 public Stats getStats() {
686 return mStats;
687 }
688
Bjorn Bringertc459e522013-06-07 19:36:01 +0100689 public LayoutInflater getInflater() {
690 return mInflater;
691 }
692
Winson Chung36a62fe2012-05-06 18:04:42 -0700693 boolean isDraggingEnabled() {
694 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
695 // that is subsequently removed from the workspace in startBinding().
696 return !mModel.isLoadingWorkspace();
697 }
698
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800699 static int getScreen() {
700 synchronized (sLock) {
701 return sScreen;
702 }
703 }
704
705 static void setScreen(int screen) {
706 synchronized (sLock) {
707 sScreen = screen;
708 }
709 }
710
Winson Chung557d6ed2011-07-08 15:34:52 -0700711 /**
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000712 * Copied from View -- the View version of the method isn't called
713 * anywhere else in our process and only exists for API level 17+,
714 * so it's ok to keep our own version with no API requirement.
715 */
716 public static int generateViewId() {
717 for (;;) {
718 final int result = sNextGeneratedId.get();
719 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
720 int newValue = result + 1;
721 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
722 if (sNextGeneratedId.compareAndSet(result, newValue)) {
723 return result;
724 }
725 }
726 }
727
728 public int getViewIdForItem(ItemInfo info) {
729 // This cast is safe given the > 2B range for int.
730 int itemId = (int) info.id;
731 if (mItemIdToViewId.containsKey(itemId)) {
732 return mItemIdToViewId.get(itemId);
733 }
734 int viewId = generateViewId();
735 mItemIdToViewId.put(itemId, viewId);
736 return viewId;
737 }
738
739 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700740 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
741 * a configuration step, this allows the proper animations to run after other transitions.
742 */
Adam Cohendb364c32014-05-20 14:23:40 -0700743 private long completeAdd(PendingAddArguments args) {
744
745 long screenId = ensurePendingDropLayoutExists(args.screenId);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800746 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800747 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700748 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700749 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700750 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800751 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700752 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700753 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800754 }
Michael Jurka27614d22012-04-02 06:40:22 -0700755 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
756 // if you turned the screen off and then back while in All Apps, Launcher would not
757 // return to the workspace. Clearing mAddInfo.container here fixes this issue
758 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700759 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800760 }
761
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800762 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700763 protected void onActivityResult(
764 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700765 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700766 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700767 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800768 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700769
Adam Cohenad4e15c2013-10-17 16:21:35 -0700770 Runnable exitSpringLoaded = new Runnable() {
771 @Override
772 public void run() {
773 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
774 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
775 }
776 };
777
Michael Jurka8b805b12012-04-18 14:23:14 -0700778 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700779 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700780 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
781 if (resultCode == RESULT_CANCELED) {
782 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700783 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700784 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700785 } else if (resultCode == RESULT_OK) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700786 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
787 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700788 }
789 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200790 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
791 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
792 mWorkspace.exitOverviewMode(false);
793 }
794 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700795 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200796
Adam Cohened66b2b2012-01-23 17:28:51 -0800797 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
798 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700799
Adam Cohendb364c32014-05-20 14:23:40 -0700800 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800801 // We have special handling for widgets
802 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800803 final int appWidgetId;
804 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
805 : -1;
806 if (widgetId < 0) {
807 appWidgetId = pendingAddWidgetId;
808 } else {
809 appWidgetId = widgetId;
810 }
811
Adam Cohenad4e15c2013-10-17 16:21:35 -0700812 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800813 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700814 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
815 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700816 result = RESULT_CANCELED;
817 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700818 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700819 @Override
820 public void run() {
821 exitSpringLoadedDragModeDelayed(false, 0, null);
822 }
823 };
Adam Cohendb364c32014-05-20 14:23:40 -0700824 if (workspaceLocked) {
825 // No need to remove the empty screen if we're mid-binding, as the
826 // the bind will not add the empty screen.
827 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
828 } else {
829 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
830 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
831 }
Winson Chung5aaab772012-04-27 15:24:02 -0700832 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700833 if (!workspaceLocked) {
834 mPendingAddInfo.screenId = ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
835 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
836
837 dropLayout.setDropPending(true);
838 final Runnable onComplete = new Runnable() {
839 @Override
840 public void run() {
841 completeTwoStageWidgetDrop(resultCode, appWidgetId);
842 dropLayout.setDropPending(false);
843 }
844 };
845 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
846 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
847 } else {
848 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
849 mPendingAddInfo);
850 sPendingAddItem = args;
851 }
Winson Chung5aaab772012-04-27 15:24:02 -0700852 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800853 return;
854 }
855
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800856 // The pattern used here is that a user PICKs a specific application,
857 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700858
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800859 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
860 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700861 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700862 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
863 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800864 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700865 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800866 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700867 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700868 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
869 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800870 }
Adam Cohen00074722013-10-11 17:46:09 -0700871 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700872 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700873 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800874 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800875 mDragLayer.clearAnimatedView();
Adam Cohened66b2b2012-01-23 17:28:51 -0800876 }
877
Adam Cohendb364c32014-05-20 14:23:40 -0700878 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
879 appWidgetId, ItemInfo info) {
880 PendingAddArguments args = new PendingAddArguments();
881 args.requestCode = requestCode;
882 args.intent = data;
883 args.container = info.container;
884 args.screenId = info.screenId;
885 args.cellX = info.cellX;
886 args.cellY = info.cellY;
887 args.appWidgetId = appWidgetId;
888 return args;
889 }
890
891 /**
892 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
893 *
894 * @param screenId the screen id to check
895 * @return the new screen, or screenId if it exists
896 */
897 private long ensurePendingDropLayoutExists(long screenId) {
898 CellLayout dropLayout =
899 (CellLayout) mWorkspace.getScreenWithId(screenId);
900 if (dropLayout == null) {
901 // it's possible that the add screen was removed because it was
902 // empty and a re-bind occurred
903 mWorkspace.addExtraEmptyScreen();
904 return mWorkspace.commitExtraEmptyScreen();
905 } else {
906 return screenId;
907 }
908 }
909
Adam Cohened66b2b2012-01-23 17:28:51 -0800910 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700911 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700912 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800913 Runnable onCompleteRunnable = null;
914 int animationType = 0;
915
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700916 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800917 if (resultCode == RESULT_OK) {
918 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
919 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700920 mPendingAddWidgetInfo);
921 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800922 onCompleteRunnable = new Runnable() {
923 @Override
924 public void run() {
925 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700926 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700927 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
928 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800929 }
930 };
931 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800932 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800933 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800934 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700935 if (mDragLayer.getAnimatedView() != null) {
936 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
937 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
938 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700939 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700940 // The animated view may be null in the case of a rotation during widget configuration
941 onCompleteRunnable.run();
942 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800943 }
944
945 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700946 protected void onStop() {
947 super.onStop();
948 FirstFrameAnimatorHelper.setIsVisible(false);
949 }
950
951 @Override
952 protected void onStart() {
953 super.onStart();
954 FirstFrameAnimatorHelper.setIsVisible(true);
955 }
956
957 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800958 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200959 long startTime = 0;
960 if (DEBUG_RESUME_TIME) {
961 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400962 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200963 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800964 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700965
Winson Chung4a2afa32012-07-19 14:53:05 -0700966 // Restore the previous launcher state
967 if (mOnResumeState == State.WORKSPACE) {
968 showWorkspace(false);
969 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
Winson Chung07e045c2013-11-06 15:49:51 -0800970 showAllApps(false, mAppsCustomizeContent.getContentType(), false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700971 }
972 mOnResumeState = State.NONE;
973
Craig Mautner360310b2012-10-26 15:13:08 -0700974 // Background was set to gradient in onPause(), restore to black if in all apps.
975 setWorkspaceBackground(mState == State.WORKSPACE);
976
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800977 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700978 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700979 setWorkspaceLoading(true);
Derek Prothro7aff3992013-12-10 14:00:37 -0500980 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400981 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700982 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800983 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700984 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200985 // We might have postponed some bind calls until onResume (see waitUntilResume) --
986 // execute them here
987 long startTimeCallbacks = 0;
988 if (DEBUG_RESUME_TIME) {
989 startTimeCallbacks = System.currentTimeMillis();
990 }
991
992 if (mAppsCustomizeContent != null) {
993 mAppsCustomizeContent.setBulkBind(true);
994 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700995 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
996 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +0200997 }
998 if (mAppsCustomizeContent != null) {
999 mAppsCustomizeContent.setBulkBind(false);
1000 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001001 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001002 if (DEBUG_RESUME_TIME) {
1003 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1004 (System.currentTimeMillis() - startTimeCallbacks));
1005 }
Michael Jurka447bf842013-05-15 14:52:15 +02001006 }
Michael Jurka54554252013-08-01 12:52:23 +02001007 if (mOnResumeCallbacks.size() > 0) {
1008 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1009 mOnResumeCallbacks.get(i).run();
1010 }
1011 mOnResumeCallbacks.clear();
1012 }
Winson Chunge4e50662012-01-23 14:45:13 -08001013
1014 // Reset the pressed state of icons that were locked in the press state while activities
1015 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001016 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001017 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001018 mWaitingForResume.setStayPressed(false);
1019 }
Winson Chunge4e50662012-01-23 14:45:13 -08001020 if (mAppsCustomizeContent != null) {
1021 // Resets the previous all apps icon press state
1022 mAppsCustomizeContent.resetDrawableState();
1023 }
Winson Chung82963d52013-10-09 11:20:57 -07001024
Adam Cohen06dff352012-06-01 17:17:08 -07001025 // It is possible that widgets can receive updates while launcher is not in the foreground.
1026 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1027 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1028 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001029 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001030
Winson Chung780fe592013-09-26 14:48:44 -07001031 // Process any items that were added while Launcher was away.
1032 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1033
Winson Chung5841efa2013-09-30 18:06:44 -07001034 // Update the voice search button proxy
1035 updateVoiceButtonProxyVisible(false);
1036
Adam Cohenf9426d52012-06-04 17:26:21 -07001037 // Again, as with the above scenario, it's possible that one or more of the global icons
1038 // were updated in the wrong orientation.
1039 updateGlobalIcons();
Michael Jurka447bf842013-05-15 14:52:15 +02001040 if (DEBUG_RESUME_TIME) {
1041 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1042 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001043
1044 if (mWorkspace.getCustomContentCallbacks() != null) {
1045 // If we are resuming and the custom content is the current page, we call onShow().
1046 // It is also poassible that onShow will instead be called slightly after first layout
1047 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1048 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001049 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001050 }
1051 }
Adam Cohenedaaa302013-10-01 17:33:27 -07001052 mWorkspace.updateInteractionForState();
Adam Cohen53805212013-10-01 10:39:23 -07001053 mWorkspace.onResume();
Adam Cohen06dff352012-06-01 17:17:08 -07001054 }
1055
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001056 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001057 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001058 // Ensure that items added to Launcher are queued until Launcher returns
1059 InstallShortcutReceiver.enableInstallQueue();
1060
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001061 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001062 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001063 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001064 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001065
1066 // We call onHide() aggressively. The custom content callbacks should be able to
1067 // debounce excess onHide calls.
1068 if (mWorkspace.getCustomContentCallbacks() != null) {
1069 mWorkspace.getCustomContentCallbacks().onHide();
1070 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001071 }
Romain Guycbb89e42009-06-08 15:52:54 -07001072
Adam Cohenbffe7452013-07-22 18:21:45 -07001073 QSBScroller mQsbScroller = new QSBScroller() {
1074 int scrollY = 0;
1075
1076 @Override
1077 public void setScrollY(int scroll) {
1078 scrollY = scroll;
1079
1080 if (mWorkspace.isOnOrMovingToCustomContent()) {
1081 mSearchDropTargetBar.setTranslationY(- scrollY);
Mark Brophyd7dc6812013-09-20 17:27:32 +01001082 getQsbBar().setTranslationY(-scrollY);
Adam Cohenbffe7452013-07-22 18:21:45 -07001083 }
1084 }
1085 };
1086
1087 public void resetQSBScroll() {
1088 mSearchDropTargetBar.animate().translationY(0).start();
Mark Brophyd7dc6812013-09-20 17:27:32 +01001089 getQsbBar().animate().translationY(0).start();
Adam Cohenbffe7452013-07-22 18:21:45 -07001090 }
1091
1092 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001093 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1094 // by a onResume or by scrolling otherwise.
1095 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001096
1097 // Custom content is completely hidden
1098 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001099
1100 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1101 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001102
1103 // Indicates whether the user is allowed to scroll away from the custom content.
1104 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001105 }
1106
Jorim Jaggid017f882014-01-14 17:08:48 -08001107 protected boolean hasSettings() {
1108 return false;
1109 }
1110
Adam Cohenbffe7452013-07-22 18:21:45 -07001111 public interface QSBScroller {
1112 public void setScrollY(int scrollY);
1113 }
1114
Winson Chung98ca0f72013-07-29 12:58:51 -07001115 public QSBScroller addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001116 CustomContentCallbacks callbacks, String description) {
1117 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohenbffe7452013-07-22 18:21:45 -07001118 return mQsbScroller;
Adam Cohen66a01fd2013-06-11 12:48:00 -07001119 }
1120
Adam Cohenedb40762013-07-18 16:45:45 -07001121 // The custom content needs to offset its content to account for the QSB
1122 public int getTopOffsetForCustomContent() {
1123 return mWorkspace.getPaddingTop();
1124 }
1125
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001126 @Override
1127 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001128 // Flag the loader to stop early before switching
1129 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -07001130 if (mAppsCustomizeContent != null) {
1131 mAppsCustomizeContent.surrender();
1132 }
Romain Guy13c2e7b2010-03-10 19:45:00 -08001133 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001134 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001135
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001136 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001137 @Override
1138 public void onWindowFocusChanged(boolean hasFocus) {
1139 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001140 mHasFocus = hasFocus;
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001141 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001142
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001143 private boolean acceptFilter() {
1144 final InputMethodManager inputManager = (InputMethodManager)
1145 getSystemService(Context.INPUT_METHOD_SERVICE);
1146 return !inputManager.isFullscreenMode();
1147 }
1148
1149 @Override
1150 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001151 final int uniChar = event.getUnicodeChar();
1152 final boolean handled = super.onKeyDown(keyCode, event);
1153 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1154 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001155 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1156 keyCode, event);
1157 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001158 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001159 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001160 // showSearchDialog()
1161 // If there are multiple keystrokes before the search dialog takes focus,
1162 // onSearchRequested() will be called for every keystroke,
1163 // but it is idempotent, so it's fine.
1164 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001165 }
1166 }
1167
Joe Onorato8a9625e2010-01-28 15:55:35 -08001168 // Eat the long press event so the keyboard doesn't come up.
1169 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1170 return true;
1171 }
1172
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001173 return handled;
1174 }
1175
Karl Rosaen138a0412009-04-23 19:00:21 -07001176 private String getTypedText() {
1177 return mDefaultKeySsb.toString();
1178 }
1179
1180 private void clearTypedText() {
1181 mDefaultKeySsb.clear();
1182 mDefaultKeySsb.clearSpans();
1183 Selection.setSelection(mDefaultKeySsb, 0);
1184 }
1185
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001186 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001187 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1188 * State
1189 */
1190 private static State intToState(int stateOrdinal) {
1191 State state = State.WORKSPACE;
1192 final State[] stateValues = State.values();
1193 for (int i = 0; i < stateValues.length; i++) {
1194 if (stateValues[i].ordinal() == stateOrdinal) {
1195 state = stateValues[i];
1196 break;
1197 }
1198 }
1199 return state;
1200 }
1201
1202 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001203 * Restores the previous state, if it exists.
1204 *
1205 * @param savedState The previous state.
1206 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001207 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001208 private void restoreState(Bundle savedState) {
1209 if (savedState == null) {
1210 return;
1211 }
1212
Michael Jurka883f55b2010-10-21 15:47:14 -07001213 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -07001214 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -07001215 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001216 }
1217
Adam Cohen21cd0022013-10-09 18:57:02 -07001218 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1219 PagedView.INVALID_RESTORE_PAGE);
1220 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001221 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001222 }
1223
Winson Chung3d503fb2011-07-13 17:25:49 -07001224 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001225 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001226
Winson Chung3d503fb2011-07-13 17:25:49 -07001227 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1228 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001229 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001230 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1231 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001232 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1233 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
1234 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001235 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001236 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001237 mRestoring = true;
1238 }
1239
1240 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
1241 if (renameFolder) {
1242 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001243 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001244 mRestoring = true;
1245 }
Winson Chunga12a2502010-12-20 14:41:35 -08001246
Winson Chung785d2eb2011-04-14 16:08:02 -07001247 // Restore the AppsCustomize tab
1248 if (mAppsCustomizeTabHost != null) {
1249 String curTab = savedState.getString("apps_customize_currentTab");
1250 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001251 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -07001252 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -07001253 mAppsCustomizeContent.loadAssociatedPages(
1254 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -07001255 }
1256
Winson Chung5afbf7b2011-07-25 11:53:08 -07001257 int currentIndex = savedState.getInt("apps_customize_currentIndex");
1258 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001259 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001260 mItemIdToViewId = (HashMap<Integer, Integer>)
1261 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001262 }
1263
1264 /**
1265 * Finds all the views we need and configure them properly.
1266 */
1267 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001268 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001269
Craig Mautner360310b2012-10-26 15:13:08 -07001270 mLauncherView = findViewById(R.id.launcher);
Winson Chung4c98d922011-05-31 16:50:48 -07001271 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1272 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001273 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001274 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001275
John Spurlock77e1f472013-09-11 10:09:51 -04001276 mLauncherView.setSystemUiVisibility(
1277 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001278 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001279
Winson Chung4c98d922011-05-31 16:50:48 -07001280 // Setup the drag layer
1281 mDragLayer.setup(this, dragController);
1282
Winson Chung3d503fb2011-07-13 17:25:49 -07001283 // Setup the hotseat
1284 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1285 if (mHotseat != null) {
1286 mHotseat.setup(this);
Winson Chung11a1a532013-09-13 11:14:45 -07001287 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001288 }
1289
Jorim Jaggid017f882014-01-14 17:08:48 -08001290 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Adam Cohen61f560d2013-09-30 15:58:20 -07001291 View widgetButton = findViewById(R.id.widget_button);
1292 widgetButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001293 @Override
1294 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001295 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001296 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001297 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001298 }
1299 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001300 widgetButton.setOnTouchListener(getHapticFeedbackTouchListener());
1301
1302 View wallpaperButton = findViewById(R.id.wallpaper_button);
1303 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001304 @Override
1305 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001306 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001307 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001308 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001309 }
1310 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001311 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1312
1313 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001314 if (hasSettings()) {
1315 settingsButton.setOnClickListener(new OnClickListener() {
1316 @Override
1317 public void onClick(View arg0) {
1318 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001319 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001320 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001321 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001322 });
1323 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1324 } else {
1325 settingsButton.setVisibility(View.GONE);
1326 FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) widgetButton.getLayoutParams();
1327 lp.gravity = Gravity.END | Gravity.TOP;
1328 widgetButton.requestLayout();
1329 }
1330
Adam Cohendbdff6b2013-09-18 19:09:15 -07001331 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001332
Winson Chung4c98d922011-05-31 16:50:48 -07001333 // Setup the workspace
1334 mWorkspace.setHapticFeedbackEnabled(false);
1335 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001336 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001337 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001338
Winson Chungf0ea4d32011-06-06 14:27:16 -07001339 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001340 mSearchDropTargetBar = (SearchDropTargetBar)
1341 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001342
Winson Chungf0ea4d32011-06-06 14:27:16 -07001343 // Setup AppsCustomize
Craig Mautner360310b2012-10-26 15:13:08 -07001344 mAppsCustomizeTabHost = (AppsCustomizeTabHost) findViewById(R.id.apps_customize_pane);
Winson Chungf0ea4d32011-06-06 14:27:16 -07001345 mAppsCustomizeContent = (AppsCustomizePagedView)
1346 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
1347 mAppsCustomizeContent.setup(this, dragController);
Craig Mautner360310b2012-10-26 15:13:08 -07001348
Winson Chung3d503fb2011-07-13 17:25:49 -07001349 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001350 dragController.setDragScoller(mWorkspace);
1351 dragController.setScrollView(mDragLayer);
1352 dragController.setMoveTarget(mWorkspace);
1353 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001354 if (mSearchDropTargetBar != null) {
1355 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -08001356 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001357
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001358 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001359 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001360 mWeightWatcher = new WeightWatcher(this);
1361 mWeightWatcher.setAlpha(0.5f);
1362 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001363 new FrameLayout.LayoutParams(
1364 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001365 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001366 Gravity.BOTTOM)
1367 );
Adam Cohen39a06042013-07-19 14:30:12 -07001368
1369 boolean show = shouldShowWeightWatcher();
1370 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001371 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001372 }
1373
1374 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001375 * Sets the all apps button. This method is called from {@link Hotseat}.
1376 */
1377 public void setAllAppsButton(View allAppsButton) {
1378 mAllAppsButton = allAppsButton;
1379 }
1380
1381 public View getAllAppsButton() {
1382 return mAllAppsButton;
1383 }
1384
1385 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001386 * Creates a view representing a shortcut.
1387 *
1388 * @param info The data structure describing the shortcut.
1389 *
1390 * @return A View inflated from R.layout.application.
1391 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001392 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001393 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -07001394 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001395 }
1396
1397 /**
1398 * Creates a view representing a shortcut inflated from the specified resource.
1399 *
1400 * @param layoutResId The id of the XML layout used to create the shortcut.
1401 * @param parent The group the shortcut belongs to.
1402 * @param info The data structure describing the shortcut.
1403 *
1404 * @return A View inflated from layoutResId.
1405 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001406 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -08001407 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07001408 favorite.applyFromShortcutInfo(info, mIconCache, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001409 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001410 return favorite;
1411 }
1412
1413 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001414 * Add a shortcut to the workspace.
1415 *
1416 * @param data The intent describing the shortcut.
1417 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001418 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001419 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001420 int cellY) {
1421 int[] cellXY = mTmpAddItemCellCoordinates;
1422 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001423 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001424
Michael Jurkad3ef3062010-11-23 16:23:58 -08001425 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001426
Adam Cohen558baaf2011-08-15 15:22:57 -07001427 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -08001428 if (info == null) {
1429 return;
1430 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001431 final View view = createShortcut(info);
1432
Adam Cohenfbba09b2011-07-18 21:43:05 -07001433 // First we check if we already know the exact location where we want to add this item.
1434 if (cellX >= 0 && cellY >= 0) {
1435 cellXY[0] = cellX;
1436 cellXY[1] = cellY;
1437 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001438
1439 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001440 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001441 true, null,null)) {
1442 return;
1443 }
1444 DragObject dragObject = new DragObject();
1445 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001446 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1447 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001448 return;
1449 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001450 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001451 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001452 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001453 foundCellSpan = (result != null);
1454 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001455 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001456 }
1457
1458 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001459 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001460 return;
1461 }
1462
Adam Cohendcd297f2013-06-18 13:13:40 -07001463 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001464
1465 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001466 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001467 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001468 }
1469 }
1470
Adam Cohen2f093b62012-04-30 18:59:53 -07001471 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1472 int minHeight) {
1473 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001474 // We want to account for the extra amount of padding that we are adding to the widget
1475 // to ensure that it gets the full amount of space that it has requested
1476 int requiredWidth = minWidth + padding.left + padding.right;
1477 int requiredHeight = minHeight + padding.top + padding.bottom;
Winson Chung66700732013-08-20 16:56:15 -07001478 return CellLayout.rectToCell(requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001479 }
1480
Adam Cohen2f093b62012-04-30 18:59:53 -07001481 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1482 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001483 }
1484
Adam Cohen2f093b62012-04-30 18:59:53 -07001485 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1486 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001487 }
1488
Adam Cohen2f093b62012-04-30 18:59:53 -07001489 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1490 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001491 }
1492
Adam Cohen2f093b62012-04-30 18:59:53 -07001493 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1494 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001495 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001496 }
1497
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001498 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001499 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001500 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001501 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001502 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001503 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001504 private void completeAddAppWidget(final int appWidgetId, long container, long screenId,
Adam Cohened66b2b2012-01-23 17:28:51 -08001505 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1506 if (appWidgetInfo == null) {
1507 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1508 }
Romain Guycbb89e42009-06-08 15:52:54 -07001509
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001510 // Calculate the grid spans needed to fit this widget
Adam Cohendcd297f2013-06-18 13:13:40 -07001511 CellLayout layout = getCellLayout(container, screenId);
Adam Cohen09353862011-07-14 16:10:03 -07001512
Adam Cohen2f093b62012-04-30 18:59:53 -07001513 int[] minSpanXY = getMinSpanForWidget(this, appWidgetInfo);
1514 int[] spanXY = getSpanForWidget(this, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001515
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001516 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001517 // We have saved the position to which the widget was dragged-- this really only matters
1518 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001519 int[] cellXY = mTmpAddItemCellCoordinates;
1520 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001521 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001522 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001523 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1524 cellXY[0] = mPendingAddInfo.cellX;
1525 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001526 spanXY[0] = mPendingAddInfo.spanX;
1527 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001528 foundCellSpan = true;
1529 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001530 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001531 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001532 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1533 spanXY[1], cellXY, finalSpan);
1534 spanXY[0] = finalSpan[0];
1535 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001536 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001537 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001538 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001539 }
1540
Michael Jurka0280c3b2010-09-17 15:00:07 -07001541 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001542 if (appWidgetId != -1) {
1543 // Deleting an app widget ID is a void call but writes to disk before returning
1544 // to the caller...
Michael Jurka43467462013-11-14 12:03:58 +01001545 new AsyncTask<Void, Void, Void>() {
1546 public Void doInBackground(Void ... args) {
Winson Chungf7640c82011-02-28 13:47:29 -08001547 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Michael Jurka43467462013-11-14 12:03:58 +01001548 return null;
Winson Chungf7640c82011-02-28 13:47:29 -08001549 }
Michael Jurka43467462013-11-14 12:03:58 +01001550 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Winson Chungf7640c82011-02-28 13:47:29 -08001551 }
Winson Chung93eef082012-03-23 15:59:27 -07001552 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001553 return;
1554 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001555
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001556 // Build Launcher-specific widget info and save to database
Winson Chung11a49372012-04-27 15:12:38 -07001557 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId,
1558 appWidgetInfo.provider);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001559 launcherInfo.spanX = spanXY[0];
1560 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001561 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1562 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001563
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001564 LauncherModel.addItemToDatabase(this, launcherInfo,
Adam Cohendcd297f2013-06-18 13:13:40 -07001565 container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001566
1567 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001568 if (hostView == null) {
1569 // Perform actual inflation because we're live
1570 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1571 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1572 } else {
1573 // The AppWidgetHostView has already been inflated and instantiated
1574 launcherInfo.hostView = hostView;
1575 }
Romain Guycbb89e42009-06-08 15:52:54 -07001576
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001577 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001578 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001579 launcherInfo.notifyWidgetSizeChanged(this);
1580
Adam Cohendcd297f2013-06-18 13:13:40 -07001581 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001582 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001583
1584 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001585 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001586 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001587 }
Romain Guycbb89e42009-06-08 15:52:54 -07001588
Adam Cohended9f8d2010-11-03 13:25:16 -07001589 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1590 @Override
1591 public void onReceive(Context context, Intent intent) {
1592 final String action = intent.getAction();
1593 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1594 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001595 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001596 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001597
Winson Chungc100e8e2011-08-09 16:02:43 -07001598 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001599 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001600 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001601 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001602 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001603 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1604 mUserPresent = true;
1605 updateRunning();
Dan Sandlerd5024042014-01-09 15:01:33 -05001606 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1607 mModel.resetLoadedState(false, true);
1608 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1609 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1610 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1611 mModel.resetLoadedState(false, true);
1612 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1613 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1614 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001615 } else if (LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED.equals(action)
1616 || LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
1617 getModel().forceReload();
Adam Cohended9f8d2010-11-03 13:25:16 -07001618 }
1619 }
1620 };
1621
1622 @Override
1623 public void onAttachedToWindow() {
1624 super.onAttachedToWindow();
1625
1626 // Listen for broadcasts related to user-presence
1627 final IntentFilter filter = new IntentFilter();
1628 filter.addAction(Intent.ACTION_SCREEN_OFF);
1629 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001630 // For handling managed profiles
1631 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED);
1632 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED);
Dan Sandlerd5024042014-01-09 15:01:33 -05001633 if (ENABLE_DEBUG_INTENTS) {
1634 filter.addAction(DebugIntents.DELETE_DATABASE);
1635 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1636 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001637 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001638 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001639 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001640 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001641 mVisible = true;
1642 }
1643
Adam Cohen0b395352014-06-09 22:54:36 +00001644 /**
1645 * Sets up transparent navigation and status bars in LMP.
1646 * This method is a no-op for other platform versions.
1647 */
1648 @TargetApi(19)
1649 private void setupTransparentSystemBarsForLmp() {
1650 // TODO(sansid): use the APIs directly when compiling against L sdk.
1651 // Currently we use reflection to access the flags and the API to set the transparency
1652 // on the System bars.
1653 if (Utilities.isLmp()) {
1654 try {
1655 getWindow().getAttributes().systemUiVisibility |=
1656 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1657 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1658 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1659 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1660 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1661 Field drawsSysBackgroundsField = WindowManager.LayoutParams.class.getField(
1662 "FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS");
1663 getWindow().addFlags(drawsSysBackgroundsField.getInt(null));
1664
1665 Method setStatusBarColorMethod =
1666 Window.class.getDeclaredMethod("setStatusBarColor", int.class);
1667 Method setNavigationBarColorMethod =
1668 Window.class.getDeclaredMethod("setNavigationBarColor", int.class);
1669 setStatusBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1670 setNavigationBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1671 } catch (NoSuchFieldException e) {
1672 Log.w(TAG, "NoSuchFieldException while setting up transparent bars");
1673 } catch (NoSuchMethodException ex) {
1674 Log.w(TAG, "NoSuchMethodException while setting up transparent bars");
1675 } catch (IllegalAccessException e) {
1676 Log.w(TAG, "IllegalAccessException while setting up transparent bars");
1677 } catch (IllegalArgumentException e) {
1678 Log.w(TAG, "IllegalArgumentException while setting up transparent bars");
1679 } catch (InvocationTargetException e) {
1680 Log.w(TAG, "InvocationTargetException while setting up transparent bars");
1681 } finally {}
1682 }
1683 }
1684
Adam Cohended9f8d2010-11-03 13:25:16 -07001685 @Override
1686 public void onDetachedFromWindow() {
1687 super.onDetachedFromWindow();
1688 mVisible = false;
1689
Adam Cohend113e0c2010-11-11 10:48:05 -08001690 if (mAttached) {
1691 unregisterReceiver(mReceiver);
1692 mAttached = false;
1693 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001694 updateRunning();
1695 }
1696
1697 public void onWindowVisibilityChanged(int visibility) {
1698 mVisible = visibility == View.VISIBLE;
1699 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001700 // The following code used to be in onResume, but it turns out onResume is called when
1701 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1702 // is a more appropriate event to handle
1703 if (mVisible) {
1704 mAppsCustomizeTabHost.onWindowVisible();
1705 if (!mWorkspaceLoading) {
1706 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001707 // We want to let Launcher draw itself at least once before we force it to build
1708 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001709 // apps is nice and speedy.
1710 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001711 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001712 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001713 if (mStarted) return;
1714 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001715 // We delay the layer building a bit in order to give
1716 // other message processing a time to run. In particular
1717 // this avoids a delay in hiding the IME if it was
1718 // currently shown, because doing that may involve
1719 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001720 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001721 final ViewTreeObserver.OnDrawListener listener = this;
1722 mWorkspace.post(new Runnable() {
1723 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001724 if (mWorkspace != null &&
1725 mWorkspace.getViewTreeObserver() != null) {
1726 mWorkspace.getViewTreeObserver().
1727 removeOnDrawListener(listener);
1728 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001729 }
1730 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001731 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001732 }
1733 });
1734 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001735 // When Launcher comes back to foreground, a different Activity might be responsible for
1736 // the app market intent, so refresh the icon
Winson Chungd64a6662013-09-30 11:06:59 -07001737 if (!DISABLE_MARKET_BUTTON) {
1738 updateAppMarketIcon();
1739 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001740 clearTypedText();
1741 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001742 }
1743
1744 private void sendAdvanceMessage(long delay) {
1745 mHandler.removeMessages(ADVANCE_MSG);
1746 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1747 mHandler.sendMessageDelayed(msg, delay);
1748 mAutoAdvanceSentTime = System.currentTimeMillis();
1749 }
1750
1751 private void updateRunning() {
1752 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1753 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1754 mAutoAdvanceRunning = autoAdvanceRunning;
1755 if (autoAdvanceRunning) {
1756 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1757 sendAdvanceMessage(delay);
1758 } else {
1759 if (!mWidgetsToAdvance.isEmpty()) {
1760 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1761 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1762 }
1763 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001764 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001765 }
1766 }
1767 }
1768
1769 private final Handler mHandler = new Handler() {
1770 @Override
1771 public void handleMessage(Message msg) {
1772 if (msg.what == ADVANCE_MSG) {
1773 int i = 0;
1774 for (View key: mWidgetsToAdvance.keySet()) {
1775 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1776 final int delay = mAdvanceStagger * i;
1777 if (v instanceof Advanceable) {
1778 postDelayed(new Runnable() {
1779 public void run() {
1780 ((Advanceable) v).advance();
1781 }
1782 }, delay);
1783 }
1784 i++;
1785 }
1786 sendAdvanceMessage(mAdvanceInterval);
1787 }
1788 }
1789 };
1790
1791 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001792 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001793 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1794 if (v instanceof Advanceable) {
1795 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001796 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001797 updateRunning();
1798 }
1799 }
1800
1801 void removeWidgetToAutoAdvance(View hostView) {
1802 if (mWidgetsToAdvance.containsKey(hostView)) {
1803 mWidgetsToAdvance.remove(hostView);
1804 updateRunning();
1805 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001806 }
1807
Joe Onorato9c1289c2009-08-17 11:03:03 -04001808 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001809 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001810 launcherInfo.hostView = null;
1811 }
1812
Winson Chung93eef082012-03-23 15:59:27 -07001813 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1814 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1815 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001816 }
1817
Winson Chunga6945242014-01-08 14:04:34 -08001818 public DragLayer getDragLayer() {
1819 return mDragLayer;
1820 }
1821
1822 public Workspace getWorkspace() {
1823 return mWorkspace;
1824 }
1825
1826 public Hotseat getHotseat() {
1827 return mHotseat;
1828 }
1829
Jorim Jaggid017f882014-01-14 17:08:48 -08001830 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001831 return mOverviewPanel;
1832 }
1833
1834 public SearchDropTargetBar getSearchBar() {
1835 return mSearchDropTargetBar;
1836 }
1837
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001838 public LauncherAppWidgetHost getAppWidgetHost() {
1839 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001840 }
Romain Guycbb89e42009-06-08 15:52:54 -07001841
Winson Chunga9abd0e2010-10-27 17:18:37 -07001842 public LauncherModel getModel() {
1843 return mModel;
1844 }
1845
Winson Chunga6945242014-01-08 14:04:34 -08001846 public LauncherClings getLauncherClings() {
1847 return mLauncherClings;
1848 }
1849
1850 protected SharedPreferences getSharedPrefs() {
1851 return mSharedPrefs;
1852 }
1853
Bjorn Bringertc459e522013-06-07 19:36:01 +01001854 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001855 getWindow().closeAllPanels();
1856
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001857 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001858 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001859 }
1860
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001861 @Override
1862 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001863 long startTime = 0;
1864 if (DEBUG_RESUME_TIME) {
1865 startTime = System.currentTimeMillis();
1866 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001867 super.onNewIntent(intent);
1868
1869 // Close the menu
1870 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001871 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001872 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001873
Adam Cohened307df2013-10-02 09:37:31 -07001874 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1875 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1876 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001877
Adam Cohen6fecd412013-10-02 17:41:50 -07001878 if (mWorkspace == null) {
1879 // Can be cases where mWorkspace is null, this prevents a NPE
1880 return;
1881 }
1882 Folder openFolder = mWorkspace.getOpenFolder();
1883 // In all these cases, only animate if we're already on home
1884 mWorkspace.exitWidgetResizeMode();
1885 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Coppa120b8e2013-11-12 16:26:04 +00001886 openFolder == null && shouldMoveToDefaultScreenOnHomeIntent()) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001887 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001888 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001889
Adam Cohen6fecd412013-10-02 17:41:50 -07001890 closeFolder();
1891 exitSpringLoadedDragMode();
1892
1893 // If we are already on home, then just animate back to the workspace,
1894 // otherwise, just wait until onResume to set the state back to Workspace
1895 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001896 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001897 } else {
1898 mOnResumeState = State.WORKSPACE;
1899 }
1900
1901 final View v = getWindow().peekDecorView();
1902 if (v != null && v.getWindowToken() != null) {
1903 InputMethodManager imm = (InputMethodManager)getSystemService(
1904 INPUT_METHOD_SERVICE);
1905 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1906 }
1907
1908 // Reset the apps customize page
Winson Chunge7e97e62013-12-02 17:02:50 -08001909 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001910 mAppsCustomizeTabHost.reset();
1911 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001912
1913 onHomeIntent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001914 }
Adam Cohened307df2013-10-02 09:37:31 -07001915
Michael Jurka447bf842013-05-15 14:52:15 +02001916 if (DEBUG_RESUME_TIME) {
1917 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1918 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001919 }
1920
Adam Coppa120b8e2013-11-12 16:26:04 +00001921 /**
1922 * Override point for subclasses to prevent movement to the default screen when the home
1923 * button is pressed. Used (for example) in GEL, to prevent movement during a search.
1924 */
1925 protected boolean shouldMoveToDefaultScreenOnHomeIntent() {
1926 return true;
1927 }
1928
1929 /**
1930 * Override point for subclasses to provide custom behaviour for when a home intent is fired.
1931 */
1932 protected void onHomeIntent() {
1933 // Do nothing
1934 }
1935
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001936 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001937 public void onRestoreInstanceState(Bundle state) {
1938 super.onRestoreInstanceState(state);
1939 for (int page: mSynchronouslyBoundPages) {
1940 mWorkspace.restoreInstanceStateForChild(page);
1941 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001942 }
1943
1944 @Override
1945 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001946 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001947 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1948 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001949 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001950 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001951
Michael Jurka883f55b2010-10-21 15:47:14 -07001952 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001953 // We close any open folder since it will not be re-opened, and we need to make sure
1954 // this state is reflected.
1955 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001956
Adam Cohendcd297f2013-06-18 13:13:40 -07001957 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001958 mWaitingForResult) {
1959 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001960 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001961 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1962 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001963 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1964 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1965 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001966 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001967 }
1968
1969 if (mFolderInfo != null && mWaitingForResult) {
1970 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1971 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1972 }
Michael Jurka946ad472010-07-09 18:05:18 -07001973
Winson Chung785d2eb2011-04-14 16:08:02 -07001974 // Save the current AppsCustomize tab
1975 if (mAppsCustomizeTabHost != null) {
Winson Chung07e045c2013-11-06 15:49:51 -08001976 AppsCustomizePagedView.ContentType type = mAppsCustomizeContent.getContentType();
1977 String currentTabTag = mAppsCustomizeTabHost.getTabTagForContentType(type);
Winson Chung785d2eb2011-04-14 16:08:02 -07001978 if (currentTabTag != null) {
1979 outState.putString("apps_customize_currentTab", currentTabTag);
1980 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001981 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1982 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001983 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001984 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001985 }
1986
1987 @Override
1988 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001989 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001990
Winson Chunge7a03942011-08-05 15:05:12 -07001991 // Remove all pending runnables
1992 mHandler.removeMessages(ADVANCE_MSG);
1993 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001994 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001995
Winson Chungcd2b0142011-06-08 16:02:26 -07001996 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001997 LauncherAppState app = (LauncherAppState.getInstance());
Winson Chungcd2b0142011-06-08 16:02:26 -07001998 mModel.stopLoader();
1999 app.setLauncher(null);
2000
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002001 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002002 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002003 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002004 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002005 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002006 mAppWidgetHost = null;
2007
2008 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002009
2010 TextKeyListener.getInstance().release();
2011
Winson Chung81b52252012-08-27 15:34:29 -07002012 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
2013 // to prevent leaking Launcher activities on orientation change.
2014 if (mModel != null) {
2015 mModel.unbindItemInfosAndClearQueuedBindRunnables();
2016 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002017
2018 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002019 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002020
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002021 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002022 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002023 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002024 mWorkspace = null;
2025 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002026
Michael Jurka2ecf9952012-06-18 12:52:28 -07002027 LauncherAnimUtils.onDestroyActivity();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002028 }
2029
Adam Cohena9cf38f2011-05-02 15:36:58 -07002030 public DragController getDragController() {
2031 return mDragController;
2032 }
2033
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002034 @Override
2035 public void startActivityForResult(Intent intent, int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002036 if (requestCode >= 0) {
2037 setWaitingForResult(true);
2038 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002039 super.startActivityForResult(intent, requestCode);
2040 }
2041
Winson Chung70d72102011-08-12 11:24:35 -07002042 /**
2043 * Indicates that we want global search for this activity by setting the globalSearch
2044 * argument for {@link #startSearch} to true.
2045 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002046 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002047 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002048 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002049
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002050 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07002051
Karl Rosaen138a0412009-04-23 19:00:21 -07002052 if (initialQuery == null) {
2053 // Use any text typed in the launcher as the initial query
2054 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002055 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002056 if (appSearchData == null) {
2057 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002058 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002059 }
Winson Chungadf0c182012-08-23 14:59:07 -07002060 Rect sourceBounds = new Rect();
2061 if (mSearchDropTargetBar != null) {
2062 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2063 }
Romain Guycbb89e42009-06-08 15:52:54 -07002064
Bjorn Bringertc459e522013-06-07 19:36:01 +01002065 startSearch(initialQuery, selectInitialQuery,
2066 appSearchData, sourceBounds);
2067 }
2068
2069 public void startSearch(String initialQuery,
2070 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Michael Jurkaa33411c2012-06-14 16:18:21 -07002071 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002072 appSearchData, sourceBounds);
Michael Jurkaa33411c2012-06-14 16:18:21 -07002073 }
2074
2075 /**
2076 * Starts the global search activity. This code is a copied from SearchManager
2077 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002078 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002079 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002080 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002081 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2082 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2083 if (globalSearchActivity == null) {
2084 Log.w(TAG, "No global search activity found.");
2085 return;
2086 }
2087 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2088 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2089 intent.setComponent(globalSearchActivity);
2090 // Make sure that we have a Bundle to put source in
2091 if (appSearchData == null) {
2092 appSearchData = new Bundle();
2093 } else {
2094 appSearchData = new Bundle(appSearchData);
2095 }
2096 // Set source to package name of app that starts global search, if not set already.
2097 if (!appSearchData.containsKey("source")) {
2098 appSearchData.putString("source", getPackageName());
2099 }
2100 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2101 if (!TextUtils.isEmpty(initialQuery)) {
2102 intent.putExtra(SearchManager.QUERY, initialQuery);
2103 }
2104 if (selectInitialQuery) {
2105 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2106 }
2107 intent.setSourceBounds(sourceBounds);
2108 try {
2109 startActivity(intent);
2110 } catch (ActivityNotFoundException ex) {
2111 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2112 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002113 }
2114
Yura4f93ec62014-02-04 14:15:21 +00002115 public boolean isOnCustomContent() {
2116 return mWorkspace.isOnOrMovingToCustomContent();
2117 }
2118
Winson Chung70d72102011-08-12 11:24:35 -07002119 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002120 public boolean onPrepareOptionsMenu(Menu menu) {
2121 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002122 if (!isOnCustomContent()) {
2123 // Close any open folders
2124 closeFolder();
2125 // Stop resizing any widgets
2126 mWorkspace.exitWidgetResizeMode();
2127 if (!mWorkspace.isInOverviewMode()) {
2128 // Show the overview mode
2129 showOverviewMode(true);
2130 } else {
2131 showWorkspace(true);
2132 }
Winson Chunge0298742014-01-17 12:03:00 -08002133 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002134 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002135 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002136
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002137 @Override
2138 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002139 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002140 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002141 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002142 }
2143
Joe Onorato9c1289c2009-08-17 11:03:03 -04002144 public boolean isWorkspaceLocked() {
2145 return mWorkspaceLoading || mWaitingForResult;
2146 }
2147
Adam Cohen517a7f52014-03-01 12:12:59 -08002148 public boolean isWorkspaceLoading() {
2149 return mWorkspaceLoading;
2150 }
2151
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002152 private void setWorkspaceLoading(boolean value) {
2153 boolean isLocked = isWorkspaceLocked();
2154 mWorkspaceLoading = value;
2155 if (isLocked != isWorkspaceLocked()) {
2156 onWorkspaceLockedChanged();
2157 }
2158 }
2159
2160 private void setWaitingForResult(boolean value) {
2161 boolean isLocked = isWorkspaceLocked();
2162 mWaitingForResult = value;
2163 if (isLocked != isWorkspaceLocked()) {
2164 onWorkspaceLockedChanged();
2165 }
2166 }
2167
2168 protected void onWorkspaceLockedChanged() { }
2169
Michael Jurka0280c3b2010-09-17 15:00:07 -07002170 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002171 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002172 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002173 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2174 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002175 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002176 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002177 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002178
Adam Cohenad4e15c2013-10-17 16:21:35 -07002179 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2180 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo) {
2181 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2182 }
2183
2184 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2185 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo, int
2186 delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002187 if (appWidgetInfo.configure != null) {
2188 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002189 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002190
Bjorn Bringert7984c942009-12-09 15:38:25 +00002191 // Launch over to configure widget, if needed
2192 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002193 intent.setComponent(appWidgetInfo.configure);
Bjorn Bringert7984c942009-12-09 15:38:25 +00002194 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Michael Jurkaa805e1a2013-08-22 15:00:33 +02002195 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002196 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002197 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002198 Runnable onComplete = new Runnable() {
2199 @Override
2200 public void run() {
2201 // Exit spring loaded mode if necessary after adding the widget
2202 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2203 null);
2204 }
2205 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002206 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002207 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002208 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002209 }
2210 }
Romain Guycbb89e42009-06-08 15:52:54 -07002211
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002212 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002213 // Close any folders that may be open.
2214 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002215 mWorkspace.moveToCustomContentScreen(animate);
2216 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002217 /**
2218 * Process a shortcut drop.
2219 *
2220 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002221 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002222 * @param cell The cell it should be added to, optional
2223 * @param position The location on the screen where it was dropped, optional
2224 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002225 void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
Winson Chung3d503fb2011-07-13 17:25:49 -07002226 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002227 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002228 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002229 mPendingAddInfo.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002230 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002231
2232 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002233 mPendingAddInfo.cellX = cell[0];
2234 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002235 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002236
2237 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2238 createShortcutIntent.setComponent(componentName);
2239 processShortcut(createShortcutIntent);
2240 }
2241
Adam Cohenfbba09b2011-07-18 21:43:05 -07002242 /**
2243 * Process a widget drop.
2244 *
2245 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002246 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002247 * @param cell The cell it should be added to, optional
2248 * @param position The location on the screen where it was dropped, optional
2249 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002250 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
Adam Cohend41fbf52012-02-16 23:53:59 -08002251 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002252 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002253 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002254 mPendingAddInfo.screenId = info.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002255 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08002256 mPendingAddInfo.minSpanX = info.minSpanX;
2257 mPendingAddInfo.minSpanY = info.minSpanY;
2258
Adam Cohenfbba09b2011-07-18 21:43:05 -07002259 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002260 mPendingAddInfo.cellX = cell[0];
2261 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002262 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002263 if (span != null) {
2264 mPendingAddInfo.spanX = span[0];
2265 mPendingAddInfo.spanY = span[1];
2266 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002267
Adam Cohened66b2b2012-01-23 17:28:51 -08002268 AppWidgetHostView hostView = info.boundWidget;
2269 int appWidgetId;
2270 if (hostView != null) {
2271 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002272 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08002273 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002274 // In this case, we either need to start an activity to get permission to bind
2275 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002276 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002277 Bundle options = info.bindOptions;
2278
2279 boolean success = false;
2280 if (options != null) {
2281 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
2282 info.componentName, options);
2283 } else {
2284 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
2285 info.componentName);
2286 }
2287 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002288 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002289 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002290 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002291 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2292 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2293 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Adam Cohendd70d662012-10-04 16:53:44 -07002294 // TODO: we need to make sure that this accounts for the options bundle.
2295 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002296 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2297 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002298 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002299 }
2300
Joe Onoratodeb98af2010-02-19 14:59:39 -08002301 void processShortcut(Intent intent) {
Kenny Guyed131872014-04-30 03:02:21 +01002302 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_SHORTCUT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002303 }
2304
Winson Chung24ab2f12010-09-16 14:10:47 -07002305 void processWallpaper(Intent intent) {
2306 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
2307 }
2308
Adam Cohendcd297f2013-06-18 13:13:40 -07002309 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002310 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002311 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002312 folderInfo.title = getText(R.string.folder_name);
2313
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002314 // Update the model
Adam Cohendcd297f2013-06-18 13:13:40 -07002315 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, cellX, cellY,
Winson Chung3d503fb2011-07-13 17:25:49 -07002316 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002317 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002318
2319 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002320 FolderIcon newFolder =
2321 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002322 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002323 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002324 // Force measure the new folder icon
2325 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2326 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002327 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002328 }
Romain Guycbb89e42009-06-08 15:52:54 -07002329
Joe Onorato9c1289c2009-08-17 11:03:03 -04002330 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002331 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002332 }
2333
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002334 protected ComponentName getWallpaperPickerComponent() {
Michael Jurka7ad868b2013-12-12 15:04:25 +01002335 return new ComponentName(getPackageName(), LauncherWallpaperPickerActivity.class.getName());
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002336 }
2337
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002338 /**
2339 * Registers various content observers. The current implementation registers
2340 * only a favorites observer to keep track of the favorites applications.
2341 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002342 private void registerContentObservers() {
2343 ContentResolver resolver = getContentResolver();
2344 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
2345 true, mWidgetObserver);
2346 }
2347
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002348 @Override
2349 public boolean dispatchKeyEvent(KeyEvent event) {
2350 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2351 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002352 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002353 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002354 case KeyEvent.KEYCODE_VOLUME_DOWN:
Michael Jurka0a457bf2012-11-19 14:05:05 -08002355 if (isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002356 dumpState();
2357 return true;
2358 }
2359 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002360 }
2361 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2362 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002363 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002364 return true;
2365 }
2366 }
2367
2368 return super.dispatchKeyEvent(event);
2369 }
2370
Joe Onorato88ec0992009-11-19 13:16:06 -08002371 @Override
2372 public void onBackPressed() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002373 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07002374 if (mAppsCustomizeContent.getContentType() ==
2375 AppsCustomizePagedView.ContentType.Applications) {
2376 showWorkspace(true);
2377 } else {
2378 showOverviewMode(true);
2379 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07002380 } else if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002381 mWorkspace.exitOverviewMode(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002382 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002383 Folder openFolder = mWorkspace.getOpenFolder();
2384 if (openFolder.isEditingName()) {
2385 openFolder.dismissEditingName();
2386 } else {
2387 closeFolder();
2388 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002389 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002390 mWorkspace.exitWidgetResizeMode();
2391
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002392 // Back button is a no-op here, but give at least some feedback for the button press
2393 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002394 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002395 }
2396
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002397 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002398 * Re-listen when widgets are reset.
2399 */
2400 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002401 if (mAppWidgetHost != null) {
2402 mAppWidgetHost.startListening();
2403 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002404 }
2405
2406 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002407 * Launches the intent referred by the clicked shortcut.
2408 *
2409 * @param v The view representing the clicked shortcut.
2410 */
2411 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002412 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2413 // view has detached (it's possible for this to happen if the view is removed mid touch).
2414 if (v.getWindowToken() == null) {
2415 return;
2416 }
2417
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002418 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002419 return;
2420 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002421
Adam Cohen1697b792013-09-17 19:08:21 -07002422 if (v instanceof Workspace) {
2423 if (mWorkspace.isInOverviewMode()) {
2424 mWorkspace.exitOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002425 }
2426 return;
2427 }
2428
2429 if (v instanceof CellLayout) {
2430 if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002431 mWorkspace.exitOverviewMode(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002432 }
2433 }
2434
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002435 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002436 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002437 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002438 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002439 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002440 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002441 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002442 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002443 onClickAllAppsButton(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002444 }
2445 }
2446
Michael Jurka0e260592010-06-30 17:07:39 -07002447 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002448 return false;
2449 }
2450
Michael Jurkaaf442092010-06-10 17:01:57 -07002451 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002452 * Event handler for the search button
2453 *
2454 * @param v The view that was clicked.
2455 */
2456 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002457 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2458
Amith Yamasania135ba82011-08-09 17:42:01 -07002459 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002460 }
2461
2462 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002463 * Event handler for the voice button
2464 *
2465 * @param v The view that was clicked.
2466 */
2467 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002468 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002469
Bjorn Bringertc459e522013-06-07 19:36:01 +01002470 startVoice();
2471 }
2472
2473 public void startVoice() {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002474 try {
2475 final SearchManager searchManager =
2476 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2477 ComponentName activityName = searchManager.getGlobalSearchActivity();
2478 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002479 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002480 if (activityName != null) {
2481 intent.setPackage(activityName.getPackageName());
2482 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002483 startActivity(null, intent, "onClickVoiceButton");
Michael Jurkaae65ee32012-04-30 11:45:54 -07002484 } catch (ActivityNotFoundException e) {
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 startActivitySafely(null, intent, "onClickVoiceButton");
2488 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002489 }
2490
2491 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002492 * Event handler for the "grid" button that appears on the home screen, which
2493 * enters all apps mode.
2494 *
2495 * @param v The view that was clicked.
2496 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002497 protected void onClickAllAppsButton(View v) {
2498 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
2499 if (isAllAppsVisible()) {
2500 showWorkspace(true);
2501 } else {
2502 showAllApps(true, AppsCustomizePagedView.ContentType.Applications, false);
2503 }
2504 }
2505
2506 /**
Mohammadinamul Sheik3b1a54a2014-03-18 11:28:19 -07002507 * Event handler for a paged view icon click.
2508 * @param v The view that was clicked.
2509 * @param appInfo The {link AppInfo} of the view.
2510 */
2511 public void onClickPagedViewIcon(View v, AppInfo appInfo) {
2512 if (LOGD) Log.d(TAG, "onClickPagedViewIcon");
2513 startActivitySafely(v, appInfo.intent, appInfo);
2514 getStats().recordLaunch(appInfo.intent);
2515 }
2516
2517 /**
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002518 * Event handler for an app shortcut click.
2519 *
2520 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2521 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002522 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002523 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2524 Object tag = v.getTag();
2525 if (!(tag instanceof ShortcutInfo)) {
2526 throw new IllegalArgumentException("Input must be a Shortcut");
2527 }
2528
2529 // Open shortcut
2530 final ShortcutInfo shortcut = (ShortcutInfo) tag;
2531 final Intent intent = shortcut.intent;
2532
2533 // Check for special shortcuts
2534 if (intent.getComponent() != null) {
2535 final String shortcutClass = intent.getComponent().getClassName();
2536
2537 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2538 MemoryDumpActivity.startDump(this);
2539 return;
2540 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2541 toggleShowWeightWatcher();
2542 return;
2543 }
2544 }
2545
Chris Wren40c5ed32014-06-24 18:24:23 -04002546 // Check for abandoned promise
2547 if (shortcut.isAbandoned() && v instanceof BubbleTextView) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002548 AlertDialog.Builder builder = new AlertDialog.Builder(this);
2549 builder.setTitle(R.string.abandoned_promises_title);
Chris Wren803a4be2014-07-01 16:52:49 -04002550 builder.setMessage(R.string.abandoned_promise_explanation);
Chris Wren40c5ed32014-06-24 18:24:23 -04002551 builder.setPositiveButton(R.string.abandoned_search,
2552 new DialogInterface.OnClickListener() {
2553 public void onClick(DialogInterface dialog, int id) {
2554 startAppShortcutActivity(v);
2555 }
2556 }
2557 );
Chris Wren40c5ed32014-06-24 18:24:23 -04002558 builder.setNeutralButton(R.string.abandoned_clean_this,
2559 new DialogInterface.OnClickListener() {
2560 public void onClick(DialogInterface dialog, int id) {
2561 final BubbleTextView bubble = (BubbleTextView) v;
2562 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2563 mWorkspace.removeAbandonedPromise(bubble, user);
2564 }
2565 });
2566 builder.create().show();
2567 return;
2568 }
2569
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002570 // Start activities
Chris Wren40c5ed32014-06-24 18:24:23 -04002571 startAppShortcutActivity(v);
2572 }
2573
2574 private void startAppShortcutActivity(View v) {
2575 Object tag = v.getTag();
2576 if (!(tag instanceof ShortcutInfo)) {
2577 throw new IllegalArgumentException("Input must be a Shortcut");
2578 }
2579 final ShortcutInfo shortcut = (ShortcutInfo) tag;
2580 final Intent intent = shortcut.intent;
2581
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002582 int[] pos = new int[2];
2583 v.getLocationOnScreen(pos);
2584 intent.setSourceBounds(new Rect(pos[0], pos[1],
2585 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
2586
2587 boolean success = startActivitySafely(v, intent, tag);
2588
2589 mStats.recordLaunch(intent, shortcut);
2590
2591 if (success && v instanceof BubbleTextView) {
2592 mWaitingForResume = (BubbleTextView) v;
2593 mWaitingForResume.setStayPressed(true);
2594 }
2595 }
2596
2597 /**
2598 * Event handler for a folder icon click.
2599 *
2600 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2601 */
2602 protected void onClickFolderIcon(View v) {
2603 if (LOGD) Log.d(TAG, "onClickFolder");
2604 if (!(v instanceof FolderIcon)){
2605 throw new IllegalArgumentException("Input must be a FolderIcon");
2606 }
2607
2608 FolderIcon folderIcon = (FolderIcon) v;
2609 final FolderInfo info = folderIcon.getFolderInfo();
2610 Folder openFolder = mWorkspace.getFolderForTag(info);
2611
2612 // If the folder info reports that the associated folder is open, then verify that
2613 // it is actually opened. There have been a few instances where this gets out of sync.
2614 if (info.opened && openFolder == null) {
2615 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2616 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2617 info.opened = false;
2618 }
2619
2620 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2621 // Close any open folder
2622 closeFolder();
2623 // Open the requested folder
2624 openFolder(folderIcon);
2625 } else {
2626 // Find the open folder...
2627 int folderScreen;
2628 if (openFolder != null) {
2629 folderScreen = mWorkspace.getPageForView(openFolder);
2630 // .. and close it
2631 closeFolder(openFolder);
2632 if (folderScreen != mWorkspace.getCurrentPage()) {
2633 // Close any folder open on the current screen
2634 closeFolder();
2635 // Pull the folder onto this screen
2636 openFolder(folderIcon);
2637 }
2638 }
2639 }
Michael Jurka5130e402011-10-13 04:55:35 -07002640 }
2641
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002642 /**
2643 * Event handler for the (Add) Widgets button that appears after a long press
2644 * on the home screen.
2645 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002646 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002647 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002648 showAllApps(true, AppsCustomizePagedView.ContentType.Widgets, true);
2649 }
2650
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002651 /**
2652 * Event handler for the wallpaper picker button that appears after a long press
2653 * on the home screen.
2654 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002655 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002656 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
2657 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
2658 pickWallpaper.setComponent(getWallpaperPickerComponent());
2659 startActivityForResult(pickWallpaper, REQUEST_PICK_WALLPAPER);
2660 }
2661
2662 /**
2663 * Event handler for a click on the settings button that appears after a long press
2664 * on the home screen.
2665 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002666 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002667 if (LOGD) Log.d(TAG, "onClickSettingsButton");
2668 }
2669
Michael Jurka5130e402011-10-13 04:55:35 -07002670 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002671 // Provide the same haptic feedback that the system offers for virtual keys.
2672 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002673 }
2674
Adam Cohen61f560d2013-09-30 15:58:20 -07002675 public void performHapticFeedbackOnTouchDown(View v) {
2676 // Provide the same haptic feedback that the system offers for virtual keys.
2677 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2678 }
2679
2680 public View.OnTouchListener getHapticFeedbackTouchListener() {
2681 if (mHapticFeedbackTouchListener == null) {
2682 mHapticFeedbackTouchListener = new View.OnTouchListener() {
2683 @Override
2684 public boolean onTouch(View v, MotionEvent event) {
2685 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2686 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2687 }
2688 return false;
2689 }
2690 };
2691 }
2692 return mHapticFeedbackTouchListener;
2693 }
2694
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002695 public void onClickAppMarketButton(View v) {
Winson Chungd64a6662013-09-30 11:06:59 -07002696 if (!DISABLE_MARKET_BUTTON) {
2697 if (mAppMarketIntent != null) {
2698 startActivitySafely(v, mAppMarketIntent, "app market");
2699 } else {
2700 Log.e(TAG, "Invalid app market intent.");
2701 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002702 }
2703 }
2704
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002705 public void onDragStarted(View view) {}
2706
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002707 /**
2708 * Called when the user stops interacting with the launcher.
2709 * This implies that the user is now on the homescreen and is not doing housekeeping.
2710 */
2711 protected void onInteractionEnd() {}
2712
2713 /**
2714 * Called when the user starts interacting with the launcher.
2715 * The possible interactions are:
2716 * - open all apps
2717 * - reorder an app shortcut, or a widget
2718 * - open the overview mode.
2719 * This is a good time to stop doing things that only make sense
2720 * when the user is on the homescreen and not doing housekeeping.
2721 */
2722 protected void onInteractionBegin() {}
2723
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002724 void startApplicationDetailsActivity(ComponentName componentName) {
2725 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002726 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
2727 Uri.fromParts("package", packageName, null));
Adrian Roos850f9132014-01-13 17:44:52 -08002728 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK |
2729 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung3b1b36b2012-04-24 18:51:14 -07002730 startActivitySafely(null, intent, "startApplicationDetailsActivity");
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002731 }
2732
Michael Jurka1e2f4652013-07-08 18:03:46 -07002733 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002734 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2735 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002736 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002737 // System applications cannot be installed. For now, show a toast explaining that.
2738 // We may give them the option of disabling apps this way.
2739 int messageId = R.string.uninstall_system_app_text;
2740 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002741 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002742 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002743 String packageName = componentName.getPackageName();
2744 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002745 Intent intent = new Intent(
2746 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002747 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2748 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002749 if (user != null) {
2750 user.addToIntent(intent, Intent.EXTRA_USER);
2751 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002752 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002753 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002754 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002755 }
2756
Michael Jurka86a720e2012-05-09 11:23:23 -07002757 boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002758 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002759 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002760 // Only launch using the new animation if the shortcut has not opted out (this is a
2761 // private contract between launcher and may be ignored in the future).
2762 boolean useLaunchAnimation = (v != null) &&
2763 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002764 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2765 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002766
Kenny Guy1317e2d2014-05-08 18:52:50 +01002767 UserHandleCompat user = null;
2768 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2769 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2770 user = userManager.getUserForSerialNumber(serialNumber);
2771 }
2772
2773 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002774 if (useLaunchAnimation) {
Winson Chungc7450e32012-04-17 17:34:08 -07002775 ActivityOptions opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
2776 v.getMeasuredWidth(), v.getMeasuredHeight());
Kenny Guy1317e2d2014-05-08 18:52:50 +01002777 optsBundle = opts.toBundle();
2778 }
Adam Cohen6ea3b112014-06-11 11:38:49 -07002779 if (useLaunchAnimation && Utilities.isLmp()) {
2780 ActivityOptions opts = ActivityOptions.makeCustomAnimation(this, R.anim.task_open_enter, R.anim.no_anim);
2781 optsBundle = opts.toBundle();
2782 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002783
2784 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2785 // Could be launching some bookkeeping activity
2786 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002787 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002788 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002789 launcherApps.startActivityForProfile(intent.getComponent(), user,
2790 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002791 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002792 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002793 } catch (SecurityException e) {
2794 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002795 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002796 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002797 "or use the exported attribute for this activity. "
2798 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002799 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002800 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002801 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002802
Michael Jurka86a720e2012-05-09 11:23:23 -07002803 boolean startActivitySafely(View v, Intent intent, Object tag) {
2804 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002805 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2806 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2807 return false;
2808 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002809 try {
2810 success = startActivity(v, intent, tag);
2811 } catch (ActivityNotFoundException e) {
2812 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2813 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2814 }
2815 return success;
2816 }
2817
Adam Cohen268c4752012-06-06 17:47:33 -07002818 /**
2819 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2820 * in the DragLayer in the exact absolute location of the original FolderIcon.
2821 */
2822 private void copyFolderIconToImage(FolderIcon fi) {
2823 final int width = fi.getMeasuredWidth();
2824 final int height = fi.getMeasuredHeight();
2825
2826 // Lazy load ImageView, Bitmap and Canvas
2827 if (mFolderIconImageView == null) {
2828 mFolderIconImageView = new ImageView(this);
2829 }
2830 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2831 mFolderIconBitmap.getHeight() != height) {
2832 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2833 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2834 }
2835
2836 DragLayer.LayoutParams lp;
2837 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2838 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2839 } else {
2840 lp = new DragLayer.LayoutParams(width, height);
2841 }
2842
Adam Cohen307fe232012-08-16 17:55:58 -07002843 // The layout from which the folder is being opened may be scaled, adjust the starting
2844 // view size by this scale factor.
2845 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002846 lp.customPosition = true;
2847 lp.x = mRectForFolderAnimation.left;
2848 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002849 lp.width = (int) (scale * width);
2850 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002851
2852 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2853 fi.draw(mFolderIconCanvas);
2854 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002855 if (fi.getFolder() != null) {
2856 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2857 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002858 }
Adam Cohen268c4752012-06-06 17:47:33 -07002859 // Just in case this image view is still in the drag layer from a previous animation,
2860 // we remove it and re-add it.
2861 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2862 mDragLayer.removeView(mFolderIconImageView);
2863 }
2864 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002865 if (fi.getFolder() != null) {
2866 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002867 }
Adam Cohen268c4752012-06-06 17:47:33 -07002868 }
2869
Adam Cohen2801caf2011-05-13 20:57:39 -07002870 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002871 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002872 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2873 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2874 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2875
Adam Cohenc51934b2011-07-26 21:07:43 -07002876 FolderInfo info = (FolderInfo) fi.getTag();
2877 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2878 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002879 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2880 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002881 }
2882
Adam Cohen268c4752012-06-06 17:47:33 -07002883 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2884 copyFolderIconToImage(fi);
2885 fi.setVisibility(View.INVISIBLE);
2886
Michael Jurka2ecf9952012-06-18 12:52:28 -07002887 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002888 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002889 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
2890 oa.start();
2891 }
2892
Adam Cohen268c4752012-06-06 17:47:33 -07002893 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002894 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002895 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2896 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2897 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2898
Adam Cohen268c4752012-06-06 17:47:33 -07002899 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002900
Adam Cohen268c4752012-06-06 17:47:33 -07002901 // We remove and re-draw the FolderIcon in-case it has changed
2902 mDragLayer.removeView(mFolderIconImageView);
2903 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07002904 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002905 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002906 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002907 oa.addListener(new AnimatorListenerAdapter() {
2908 @Override
2909 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002910 if (cl != null) {
2911 cl.clearFolderLeaveBehind();
2912 // Remove the ImageView copy of the FolderIcon and make the original visible.
2913 mDragLayer.removeView(mFolderIconImageView);
2914 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002915 }
2916 }
2917 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002918 oa.start();
2919 }
2920
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002921 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002922 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002923 * is animated relative to the specified View. If the View is null, no animation
2924 * is played.
2925 *
2926 * @param folderInfo The FolderInfo describing the folder to open.
2927 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002928 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002929 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07002930 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002931
Adam Cohena9cf38f2011-05-02 15:36:58 -07002932 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002933
Adam Cohen4554ee12011-08-03 16:13:21 -07002934 // Just verify that the folder hasn't already been added to the DragLayer.
2935 // There was a one-off crash where the folder had a parent already.
2936 if (folder.getParent() == null) {
2937 mDragLayer.addView(folder);
2938 mDragController.addDropTarget((DropTarget) folder);
2939 } else {
2940 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2941 folder.getParent() + ").");
2942 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002943 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002944 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07002945
2946 // Notify the accessibility manager that this folder "window" has appeared and occluded
2947 // the workspace items
2948 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
2949 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07002950 }
2951
2952 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08002953 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07002954 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002955 if (folder.isEditingName()) {
2956 folder.dismissEditingName();
2957 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002958 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002959
2960 // Dismiss the folder cling
Winson Chunga6945242014-01-08 14:04:34 -08002961 mLauncherClings.dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002962 }
2963 }
2964
2965 void closeFolder(Folder folder) {
2966 folder.getInfo().opened = false;
2967
2968 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2969 if (parent != null) {
2970 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2971 shrinkAndFadeInFolderIcon(fi);
2972 }
2973 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07002974
2975 // Notify the accessibility manager that this folder "window" has disappeard and no
2976 // longer occludeds the workspace items
2977 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002978 }
2979
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002980 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07002981 if (!isDraggingEnabled()) return false;
2982 if (isWorkspaceLocked()) return false;
2983 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002984
Adam Cohen1697b792013-09-17 19:08:21 -07002985 if (v instanceof Workspace) {
2986 if (!mWorkspace.isInOverviewMode()) {
Adam Cohen93c97562013-09-26 13:48:01 -07002987 if (mWorkspace.enterOverviewMode()) {
2988 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2989 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
2990 return true;
2991 } else {
2992 return false;
2993 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07002994 } else {
2995 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07002996 }
Adam Cohen1697b792013-09-17 19:08:21 -07002997 }
2998
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002999 CellLayout.CellInfo longClickCellInfo = null;
3000 View itemUnderLongClick = null;
3001 if (v.getTag() instanceof ItemInfo) {
3002 ItemInfo info = (ItemInfo) v.getTag();
3003 longClickCellInfo = new CellLayout.CellInfo(v, info);;
3004 itemUnderLongClick = longClickCellInfo.cell;
3005 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003006 }
3007
Winson Chung3d503fb2011-07-13 17:25:49 -07003008 // The hotseat touch handling does not go through Workspace, and we always allow long press
3009 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003010 final boolean inHotseat = isHotseatLayout(v);
3011 boolean allowLongPress = inHotseat || mWorkspace.allowLongPress();
Winson Chung3d503fb2011-07-13 17:25:49 -07003012 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003013 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003014 // User long pressed on empty space
3015 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3016 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003017 if (mWorkspace.isInOverviewMode()) {
3018 mWorkspace.startReordering(v);
3019 } else {
3020 mWorkspace.enterOverviewMode();
Adam Cohendedbd962013-07-11 14:21:49 -07003021 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003022 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003023 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3024 mHotseat.getOrderInHotseat(
3025 longClickCellInfo.cellX,
3026 longClickCellInfo.cellY));
3027 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003028 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003029 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003030 }
3031 }
3032 }
3033 return true;
3034 }
3035
Winson Chung3d503fb2011-07-13 17:25:49 -07003036 boolean isHotseatLayout(View layout) {
3037 return mHotseat != null && layout != null &&
3038 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3039 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003040
Winson Chung3d503fb2011-07-13 17:25:49 -07003041 /**
3042 * Returns the CellLayout of the specified container at the specified screen.
3043 */
Adam Cohendcd297f2013-06-18 13:13:40 -07003044 CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003045 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3046 if (mHotseat != null) {
3047 return mHotseat.getLayout();
3048 } else {
3049 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003050 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003051 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -07003052 return (CellLayout) mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003053 }
3054 }
3055
Daniel Sandler843e8602010-06-07 14:59:01 -04003056 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003057 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003058 }
3059
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003060 /**
3061 * Helper method for the cameraZoomIn/cameraZoomOut animations
3062 * @param view The view being animated
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003063 * @param scaleFactor The scale factor used for the zoom
3064 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07003065 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003066 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07003067 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003068 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05003069
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);
3180
Winson Chungf0ea4d32011-06-06 14:27:16 -07003181 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08003182 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003183 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07003184 final int startDelay =
3185 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07003186
Michael Jurkab3e22d92011-10-31 15:58:33 -07003187 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -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 Cohen6c5891a2014-07-09 23:53:15 -07003200 if (!material) {
3201 toView.setScaleX(scale);
3202 toView.setScaleY(scale);
3203 final LauncherViewPropertyAnimator scaleAnim =
3204 new LauncherViewPropertyAnimator(toView);
3205 scaleAnim.
3206 scaleX(1f).scaleY(1f).
3207 setDuration(duration).
3208 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08003209
Adam Cohen6c5891a2014-07-09 23:53:15 -07003210 toView.setVisibility(View.VISIBLE);
3211 toView.setAlpha(0f);
3212 final ObjectAnimator alphaAnim = LauncherAnimUtils
3213 .ofFloat(toView, "alpha", 0f, 1f)
3214 .setDuration(fadeDuration);
3215 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
3216 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
3217 @Override
3218 public void onAnimationUpdate(ValueAnimator animation) {
3219 if (animation == null) {
3220 throw new RuntimeException("animation is null");
3221 }
3222 float t = (Float) animation.getAnimatedValue();
3223 dispatchOnLauncherTransitionStep(fromView, t);
3224 dispatchOnLauncherTransitionStep(toView, t);
Michael Jurka059798a2012-09-04 09:20:16 -07003225 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003226 });
Adam Cohenf16e5712011-01-13 13:31:45 -08003227
Adam Cohen6c5891a2014-07-09 23:53:15 -07003228 // toView should appear right at the end of the workspace shrink
3229 // animation
3230 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
3231 mStateAnimation.play(scaleAnim).after(startDelay);
3232 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003233
Adam Cohen6c5891a2014-07-09 23:53:15 -07003234 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3235 @Override
3236 public void onAnimationStart(Animator animation) {
3237 // Prepare the position
3238 toView.setTranslationX(0.0f);
3239 toView.setTranslationY(0.0f);
3240 toView.setVisibility(View.VISIBLE);
3241 toView.bringToFront();
Winson Chungadf0c182012-08-23 14:59:07 -07003242 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003243 @Override
3244 public void onAnimationEnd(Animator animation) {
3245 dispatchOnLauncherTransitionEnd(fromView, animated, false);
3246 dispatchOnLauncherTransitionEnd(toView, animated, false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003247
Adam Cohen6c5891a2014-07-09 23:53:15 -07003248 // Hide the search bar
3249 if (mSearchDropTargetBar != null) {
3250 mSearchDropTargetBar.hideSearchBar(false);
3251 }
3252 }
3253 });
3254 } else {
3255 int width = toView.getMeasuredWidth();
3256 int height = toView.getMeasuredHeight();
3257 float revealRadius = (float) Math.sqrt((width * width) / 4 + height * height);
3258
3259 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
3260
3261 AppsCustomizePagedView content = (AppsCustomizePagedView)
3262 toView.findViewById(R.id.apps_customize_pane_content);
3263
3264 View page = content.getPageAt(content.getCurrentPage());
3265 View revealView = content;
3266
3267 float yDrift = height / 2f - 400;
3268
3269 LauncherViewPropertyAnimator panelAlphaAndDrift =
3270 new LauncherViewPropertyAnimator(revealView);
3271 revealView.setTranslationY(yDrift);
3272 revealView.setAlpha(0.3f);
3273 panelAlphaAndDrift.alpha(1)
3274 .translationY(0)
3275 .setDuration(revealDuration)
3276 .setInterpolator(new LogDecelerateInterpolator(100, 0));
3277
3278 mStateAnimation.play(panelAlphaAndDrift);
3279
3280 if (page instanceof CellLayout) {
3281 CellLayout cellLayout = (CellLayout) page;
3282 cellLayout.enableHardwareLayer(true);
3283
3284 View iconsView = cellLayout.getShortcutsAndWidgets();
3285 iconsView.setAlpha(0f);
3286
3287 LauncherViewPropertyAnimator iconsAlpha =
3288 new LauncherViewPropertyAnimator(iconsView);
3289 iconsAlpha.alpha(1f)
3290 .setDuration(revealDuration - 100)
3291 .setInterpolator(new LogDecelerateInterpolator(100, 0));
3292 mStateAnimation.play(iconsAlpha);
3293 }
3294
3295 View pageIndicators = toView.findViewById(R.id.apps_customize_page_indicator);
3296 pageIndicators.setAlpha(0f);
3297 final LauncherViewPropertyAnimator indicatorsAlpha =
3298 new LauncherViewPropertyAnimator(pageIndicators);
3299 indicatorsAlpha.alpha(1f);
3300 indicatorsAlpha.setDuration(revealDuration);
3301 mStateAnimation.play(indicatorsAlpha);
3302
3303 width = revealView.getMeasuredWidth();
3304
3305 ValueAnimator reveal =
3306 ViewAnimationUtils.createCircularReveal(revealView, width / 2,
3307 height / 2 + 100, 0f, revealRadius);
3308 reveal.setDuration(revealDuration);
3309 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
3310
3311 toView.setTranslationX(0);
3312 toView.setTranslationY(0);
3313 toView.setAlpha(1f);
3314 // toView should appear right at the end of the workspace shrink
3315 // animation
3316 mStateAnimation.play(reveal);
3317
3318 reveal.addListener(new AnimatorListenerAdapter() {
3319 @Override
3320 public void onAnimationStart(Animator animation) {
3321 // Prepare the position
3322 toView.bringToFront();
3323 toView.setVisibility(View.VISIBLE);
3324 }
3325 });
3326
3327 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3328 @Override
3329 public void onAnimationEnd(Animator animation) {
3330 dispatchOnLauncherTransitionEnd(fromView, animated, false);
3331 dispatchOnLauncherTransitionEnd(toView, animated, false);
3332
3333 // Hide the search bar
3334 if (mSearchDropTargetBar != null) {
3335 mSearchDropTargetBar.hideSearchBar(false);
3336 }
3337 }
3338 });
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003339 }
Michael Jurka1899a362011-11-03 13:50:45 -07003340
3341 boolean delayAnim = false;
Adam Cohen6c5891a2014-07-09 23:53:15 -07003342 if (workspaceAnim != null) {
3343 mStateAnimation.play(workspaceAnim);
3344 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003345 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
3346 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003347
3348 // If any of the objects being animated haven't been measured/laid out
3349 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08003350 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003351 (mWorkspace.getMeasuredWidth() == 0) ||
3352 (toView.getMeasuredWidth() == 0)) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003353 delayAnim = true;
Michael Jurka1899a362011-11-03 13:50:45 -07003354 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003355
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003356 final AnimatorSet stateAnimation = mStateAnimation;
3357 final Runnable startAnimRunnable = new Runnable() {
3358 public void run() {
3359 // Check that mStateAnimation hasn't changed while
3360 // we waited for a layout/draw pass
3361 if (mStateAnimation != stateAnimation)
3362 return;
3363 setPivotsForZoom(toView, scale);
3364 dispatchOnLauncherTransitionStart(fromView, animated, false);
3365 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003366 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003367 }
3368 };
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003369 if (delayAnim) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003370 final ViewTreeObserver observer = toView.getViewTreeObserver();
3371 observer.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
3372 public void onGlobalLayout() {
3373 startAnimRunnable.run();
3374 toView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
3375 }
3376 });
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003377 } else {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003378 startAnimRunnable.run();
Michael Jurka1899a362011-11-03 13:50:45 -07003379 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003380 } else {
3381 toView.setTranslationX(0.0f);
3382 toView.setTranslationY(0.0f);
3383 toView.setScaleX(1.0f);
3384 toView.setScaleY(1.0f);
3385 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07003386 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07003387
Daniel Sandlere4f98912013-06-25 15:13:26 -04003388 if (!springLoaded && !LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungc7d2b602012-05-16 17:02:20 -07003389 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07003390 if (mSearchDropTargetBar != null) {
3391 mSearchDropTargetBar.hideSearchBar(false);
3392 }
Michael Jurkaabded662011-03-04 12:06:57 -08003393 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003394 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003395 dispatchOnLauncherTransitionStart(fromView, animated, false);
3396 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003397 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003398 dispatchOnLauncherTransitionStart(toView, animated, false);
3399 dispatchOnLauncherTransitionEnd(toView, animated, false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003400 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003401 }
3402
3403 /**
3404 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07003405 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003406 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003407 */
Adam Cohened307df2013-10-02 09:37:31 -07003408 private void hideAppsCustomizeHelper(Workspace.State toState, final boolean animated,
Adam Cohened66b2b2012-01-23 17:28:51 -08003409 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08003410
Michael Jurkab3e22d92011-10-31 15:58:33 -07003411 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003412 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003413 mStateAnimation.cancel();
3414 mStateAnimation = null;
3415 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003416
3417 boolean material = Utilities.isLmp();
3418
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003419 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003420
Winson Chungf0ea4d32011-06-06 14:27:16 -07003421 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003422 final int fadeOutDuration = res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
3423 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeRevealTime);
3424
Winson Chungf0ea4d32011-06-06 14:27:16 -07003425 final float scaleFactor = (float)
3426 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
3427 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08003428 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003429 Animator workspaceAnim = null;
Adam Cohened307df2013-10-02 09:37:31 -07003430 if (toState == Workspace.State.NORMAL) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003431 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
3432 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohened307df2013-10-02 09:37:31 -07003433 toState, animated, stagger, -1);
3434 } else if (toState == Workspace.State.SPRING_LOADED ||
3435 toState == Workspace.State.OVERVIEW) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003436 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohened307df2013-10-02 09:37:31 -07003437 toState, animated);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003438 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003439
Michael Jurkab3e22d92011-10-31 15:58:33 -07003440 setPivotsForZoom(fromView, scaleFactor);
Winson Chung4afe9b32011-07-27 17:46:20 -07003441 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003442 if (animated) {
Adam Cohen6c5891a2014-07-09 23:53:15 -07003443 if (!material) {
3444 final LauncherViewPropertyAnimator scaleAnim =
3445 new LauncherViewPropertyAnimator(fromView);
3446 scaleAnim.
3447 scaleX(scaleFactor).scaleY(scaleFactor).
3448 setDuration(duration).
3449 setInterpolator(new Workspace.ZoomInInterpolator());
Michael Jurka159b4cc2012-01-17 03:00:35 -08003450
Adam Cohen6c5891a2014-07-09 23:53:15 -07003451 final ObjectAnimator alphaAnim = LauncherAnimUtils
3452 .ofFloat(fromView, "alpha", 1f, 0f)
3453 .setDuration(fadeOutDuration);
3454 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
3455 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
3456 @Override
3457 public void onAnimationUpdate(ValueAnimator animation) {
3458 float t = 1f - (Float) animation.getAnimatedValue();
3459 dispatchOnLauncherTransitionStep(fromView, t);
3460 dispatchOnLauncherTransitionStep(toView, t);
3461 }
3462 });
3463
3464 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
3465
3466 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
3467 dispatchOnLauncherTransitionPrepare(toView, animated, true);
3468 mAppsCustomizeContent.stopScrolling();
3469
3470 mStateAnimation.playTogether(scaleAnim, alphaAnim);
3471 } else {
3472 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
3473
3474 int width = fromView.getMeasuredWidth();
3475 int height = fromView.getMeasuredHeight();
3476 float revealRadius = (float) Math.sqrt((width * width) / 4 + height * height);
3477
3478 AppsCustomizePagedView content = (AppsCustomizePagedView)
3479 fromView.findViewById(R.id.apps_customize_pane_content);
3480
3481 final View page = content.getPageAt(content.getNextPage());
3482 View revealView = page;
3483
3484 float yDrift = height / 2f - 400;
3485
3486 LauncherViewPropertyAnimator panelAlphaAndDrift =
3487 new LauncherViewPropertyAnimator(revealView);
3488 revealView.setTranslationY(0);
3489 revealView.setAlpha(1);
3490 panelAlphaAndDrift.alpha(0)
3491 .translationY(yDrift)
3492 .setDuration(revealDuration)
3493 .setInterpolator(new LogDecelerateInterpolator(100, 0));
3494
3495 mStateAnimation.play(panelAlphaAndDrift);
3496
3497 if (page instanceof CellLayout) {
3498 final CellLayout cellLayout = (CellLayout) page;
3499 cellLayout.enableHardwareLayer(true);
3500
3501 final View iconsView = cellLayout.getShortcutsAndWidgets();
3502
3503 LauncherViewPropertyAnimator iconsAlpha =
3504 new LauncherViewPropertyAnimator(iconsView);
3505 iconsAlpha.alpha(0f)
3506 .setDuration(revealDuration - 100)
3507 .setInterpolator(new LogDecelerateInterpolator(100, 0));
3508
3509 mStateAnimation.play(iconsAlpha);
3510
3511 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3512 @Override
3513 public void onAnimationEnd(Animator animation) {
3514 cellLayout.setTranslationY(0);
3515 cellLayout.setAlpha(1f);
3516 iconsView.setAlpha(1f);
3517 }
3518 });
Winson Chung70442722012-02-10 15:43:22 -08003519 }
Michael Jurka159b4cc2012-01-17 03:00:35 -08003520
Adam Cohen6c5891a2014-07-09 23:53:15 -07003521 View pageIndicators = fromView.findViewById(R.id.apps_customize_page_indicator);
3522 final LauncherViewPropertyAnimator indicatorsAlpha =
3523 new LauncherViewPropertyAnimator(pageIndicators);
3524 indicatorsAlpha.alpha(0f);
3525 indicatorsAlpha.setDuration(revealDuration);
3526 indicatorsAlpha.setInterpolator(new DecelerateInterpolator(1.5f));
3527 mStateAnimation.play(indicatorsAlpha);
Michael Jurkabed61d22012-02-14 22:51:29 -08003528
Adam Cohen6c5891a2014-07-09 23:53:15 -07003529 width = revealView.getMeasuredWidth();
3530
3531 ValueAnimator reveal =
3532 ViewAnimationUtils.createCircularReveal(revealView, width / 2,
3533 height / 2 + 100, revealRadius, 0f);
3534 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
3535 reveal.setDuration(revealDuration);
3536
3537 reveal.addListener(new AnimatorListenerAdapter() {
3538 @Override
3539 public void onAnimationEnd(Animator animation) {
3540 fromView.setVisibility(View.GONE);
3541 }
3542 });
3543
3544 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
3545 dispatchOnLauncherTransitionPrepare(toView, animated, true);
3546 mAppsCustomizeContent.stopScrolling();
3547
3548 mStateAnimation.play(reveal);
3549 }
3550 if (workspaceAnim != null) {
3551 mStateAnimation.play(workspaceAnim);
3552 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003553
3554 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07003555 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08003556 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003557 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08003558 dispatchOnLauncherTransitionEnd(fromView, animated, true);
3559 dispatchOnLauncherTransitionEnd(toView, animated, true);
Adam Cohened66b2b2012-01-23 17:28:51 -08003560 if (onCompleteRunnable != null) {
3561 onCompleteRunnable.run();
3562 }
Chet Haasebc2f0822012-10-26 17:59:53 -07003563 mAppsCustomizeContent.updateCurrentPageScroll();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003564 }
3565 });
3566
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003567 dispatchOnLauncherTransitionStart(fromView, animated, true);
3568 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003569 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003570 } else {
3571 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003572 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003573 dispatchOnLauncherTransitionStart(fromView, animated, true);
3574 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003575 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003576 dispatchOnLauncherTransitionStart(toView, animated, true);
3577 dispatchOnLauncherTransitionEnd(toView, animated, true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003578 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003579 }
3580
Michael Jurkae326f182011-11-21 14:05:46 -08003581 @Override
3582 public void onTrimMemory(int level) {
3583 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07003584 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08003585 mAppsCustomizeTabHost.onTrimMemory();
3586 }
3587 }
3588
Adam Cohened307df2013-10-02 09:37:31 -07003589 protected void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08003590 showWorkspace(animated, null);
3591 }
3592
Adam Cohened307df2013-10-02 09:37:31 -07003593 protected void showWorkspace() {
3594 showWorkspace(true);
3595 }
3596
Adam Cohened66b2b2012-01-23 17:28:51 -08003597 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Adam Cohene25c5d12014-06-18 10:34:58 -07003598 if (mState != State.WORKSPACE || mWorkspace.getState() != Workspace.State.NORMAL) {
Winson Chung2d75f122013-09-23 16:53:31 -07003599 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003600 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened307df2013-10-02 09:37:31 -07003601 hideAppsCustomizeHelper(Workspace.State.NORMAL, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003602
Winson Chungc7d2b602012-05-16 17:02:20 -07003603 // Show the search bar (only animate if we were showing the drop target bar in spring
3604 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003605 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003606 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003607 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003608
Michael Jurkab3e22d92011-10-31 15:58:33 -07003609 // Set focus to the AppsCustomize button
3610 if (mAllAppsButton != null) {
3611 mAllAppsButton.requestFocus();
3612 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003613 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003614
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003615 // Change the state *after* we've called all the transition code
3616 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003617
Winson Chung5fb63472011-02-02 17:03:37 -08003618 // Resume the auto-advance of widgets
3619 mUserPresent = true;
3620 updateRunning();
3621
alanv1d4fde62012-10-17 13:15:47 -07003622 // Send an accessibility event to announce the context change
3623 getWindow().getDecorView()
3624 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003625
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003626 onWorkspaceShown(animated);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003627 }
3628
Adam Cohened307df2013-10-02 09:37:31 -07003629 void showOverviewMode(boolean animated) {
3630 mWorkspace.setVisibility(View.VISIBLE);
3631 hideAppsCustomizeHelper(Workspace.State.OVERVIEW, animated, false, null);
3632 mState = State.WORKSPACE;
3633 onWorkspaceShown(animated);
3634 }
3635
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003636 public void onWorkspaceShown(boolean animated) {
Joe Onorato00acb122009-08-04 16:04:30 -04003637 }
3638
Winson Chung82963d52013-10-09 11:20:57 -07003639 void showAllApps(boolean animated, AppsCustomizePagedView.ContentType contentType,
3640 boolean resetPageToZero) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003641 if (mState != State.WORKSPACE) return;
3642
Winson Chung82963d52013-10-09 11:20:57 -07003643 if (resetPageToZero) {
3644 mAppsCustomizeTabHost.reset();
3645 }
Winson Chungc58497e2013-09-03 17:48:37 -07003646 showAppsCustomizeHelper(animated, false, contentType);
Adam Cohendcc5e712014-06-23 15:38:55 -04003647 mAppsCustomizeTabHost.post(new Runnable() {
3648 @Override
3649 public void run() {
3650 // We post this in-case the all apps view isn't yet constructed.
3651 mAppsCustomizeTabHost.requestFocus();
3652 }
3653 });
Michael Jurkab3e22d92011-10-31 15:58:33 -07003654
Michael Jurkab3e22d92011-10-31 15:58:33 -07003655 // Change the state *after* we've called all the transition code
3656 mState = State.APPS_CUSTOMIZE;
3657
3658 // Pause the auto-advance of widgets until we are out of AllApps
3659 mUserPresent = false;
3660 updateRunning();
3661 closeFolder();
3662
3663 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003664 getWindow().getDecorView()
3665 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003666 }
3667
Adam Cohen7777d962011-08-18 18:58:38 -07003668 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003669 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07003670 hideAppsCustomizeHelper(Workspace.State.SPRING_LOADED, true, true, null);
Winson Chungc07918d2011-07-01 15:35:26 -07003671 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07003672 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003673 }
Adam Cohen7777d962011-08-18 18:58:38 -07003674
Adam Cohenad4e15c2013-10-17 16:21:35 -07003675 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003676 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07003677 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
3678
Winson Chunge7a03942011-08-05 15:05:12 -07003679 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003680 @Override
3681 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003682 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003683 // Before we show workspace, hide all apps again because
3684 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3685 // clean up our state transition functions
3686 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003687 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003688 } else {
3689 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003690 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003691 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003692 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003693 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003694
Michael Jurkad3ef3062010-11-23 16:23:58 -08003695 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07003696 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003697 final boolean animated = true;
3698 final boolean springLoaded = true;
3699 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07003700 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07003701 }
3702 // Otherwise, we are not in spring loaded mode, so don't do anything.
3703 }
3704
Michael Jurkab3e22d92011-10-31 15:58:33 -07003705 void lockAllApps() {
3706 // TODO
3707 }
3708
3709 void unlockAllApps() {
3710 // TODO
3711 }
3712
Winson Chungf0ea4d32011-06-06 14:27:16 -07003713 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003714 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003715 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003716 void showHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003717 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003718 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003719 if (mHotseat.getAlpha() != 1f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003720 int duration = 0;
3721 if (mSearchDropTargetBar != null) {
3722 duration = mSearchDropTargetBar.getTransitionInDuration();
3723 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003724 mHotseat.animate().alpha(1f).setDuration(duration);
3725 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003726 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003727 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003728 }
3729 }
3730 }
3731
3732 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003733 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003734 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003735 void hideHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003736 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003737 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003738 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003739 int duration = 0;
3740 if (mSearchDropTargetBar != null) {
3741 duration = mSearchDropTargetBar.getTransitionOutDuration();
3742 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003743 mHotseat.animate().alpha(0f).setDuration(duration);
3744 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003745 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003746 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003747 }
Winson Chungb26f3d62011-06-02 10:49:29 -07003748 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003749 }
3750
Patrick Dubroy5f445422011-02-18 14:35:21 -08003751 /**
3752 * Add an item from all apps or customize onto the given workspace screen.
3753 * If layout is null, add to the current screen.
3754 */
3755 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003756 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07003757 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07003758 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003759 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003760
Winson Chungdff8ebb2011-09-08 17:25:31 -07003761 /** Maps the current orientation to an index for referencing orientation correct global icons */
3762 private int getCurrentOrientationIndexForGlobalIcons() {
3763 // default - 0, landscape - 1
3764 switch (getResources().getConfiguration().orientation) {
3765 case Configuration.ORIENTATION_LANDSCAPE:
3766 return 1;
3767 default:
3768 return 0;
3769 }
3770 }
3771
Michael Jurkaae65ee32012-04-30 11:45:54 -07003772 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07003773 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003774 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07003775 // Look for the toolbar icon specified in the activity meta-data
3776 Bundle metaData = packageManager.getActivityInfo(
3777 activityName, PackageManager.GET_META_DATA).metaData;
3778 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07003779 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003780 if (iconResId != 0) {
3781 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003782 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003783 }
3784 }
3785 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07003786 // This can happen if the activity defines an invalid drawable
3787 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
3788 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01003789 } catch (Resources.NotFoundException nfe) {
3790 // This can happen if the activity defines an invalid drawable
3791 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
3792 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003793 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003794 return null;
3795 }
3796
3797 // if successful in getting icon, return it; otherwise, set button to use default drawable
3798 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003799 int buttonId, ComponentName activityName, int fallbackDrawableId,
3800 String toolbarResourceName) {
3801 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07003802 Resources r = getResources();
3803 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3804 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003805
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003806 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003807 // If we were unable to find the icon via the meta-data, use a generic one
3808 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07003809 toolbarIcon = r.getDrawable(fallbackDrawableId);
3810 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003811 if (button != null) {
3812 button.setCompoundDrawables(toolbarIcon, null, null, null);
3813 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003814 return null;
3815 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07003816 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003817 if (button != null) {
3818 button.setCompoundDrawables(toolbarIcon, null, null, null);
3819 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003820 return toolbarIcon.getConstantState();
3821 }
3822 }
3823
3824 // if successful in getting icon, return it; otherwise, set button to use default drawable
3825 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003826 int buttonId, ComponentName activityName, int fallbackDrawableId,
3827 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003828 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07003829 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003830
Michael Jurka19e0fc52011-07-22 18:00:21 -07003831 if (button != null) {
3832 // If we were unable to find the icon via the meta-data, use a
3833 // generic one
3834 if (toolbarIcon == null) {
3835 button.setImageResource(fallbackDrawableId);
3836 } else {
3837 button.setImageDrawable(toolbarIcon);
3838 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003839 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003840
3841 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3842
Michael Jurka0423dcf2010-10-05 14:56:18 -07003843 }
3844
Winson Chung1b884092012-06-08 17:13:02 -07003845 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003846 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003847 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003848 }
3849
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003850 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003851 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003852 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003853 }
3854
Winson Chungbb185bd2011-11-21 12:31:42 -08003855 private void invalidatePressedFocusedStates(View container, View button) {
3856 if (container instanceof HolographicLinearLayout) {
3857 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3858 layout.invalidatePressedFocusedStates();
3859 } else if (button instanceof HolographicImageView) {
3860 HolographicImageView view = (HolographicImageView) button;
3861 view.invalidatePressedFocusedStates();
3862 }
3863 }
3864
Cristina Stancu476493b2013-08-07 17:20:14 +01003865 public View getQsbBar() {
Adam Cohen24ce0b32014-01-14 16:18:14 -08003866 if (mQsb == null) {
3867 mQsb = mInflater.inflate(R.layout.qsb, mSearchDropTargetBar, false);
3868 mSearchDropTargetBar.addView(mQsb);
Cristina Stancu476493b2013-08-07 17:20:14 +01003869 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003870 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003871 }
3872
3873 protected boolean updateGlobalSearchIcon() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003874 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003875 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003876 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003877 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003878
Winson Chung1cad91e2011-05-25 17:41:01 -07003879 final SearchManager searchManager =
3880 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3881 ComponentName activityName = searchManager.getGlobalSearchActivity();
3882 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003883 int coi = getCurrentOrientationIndexForGlobalIcons();
3884 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003885 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3886 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3887 if (sGlobalSearchIcon[coi] == null) {
3888 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3889 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3890 TOOLBAR_ICON_METADATA_NAME);
3891 }
3892
Winson Chungc51db6a2011-10-05 11:44:49 -07003893 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3894 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003895 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003896 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003897 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003898 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003899 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3900 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04003901 if (searchButton != null) searchButton.setVisibility(View.GONE);
3902 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003903 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003904 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003905 }
3906 }
3907
Cristina Stancu476493b2013-08-07 17:20:14 +01003908 protected void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003909 final View searchButtonContainer = findViewById(R.id.search_button_container);
3910 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003911 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003912 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003913 }
3914
Cristina Stancu476493b2013-08-07 17:20:14 +01003915 protected boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07003916 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003917 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003918
Winson Chungc51db6a2011-10-05 11:44:49 -07003919 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003920 final SearchManager searchManager =
3921 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3922 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3923
3924 ComponentName activityName = null;
3925 if (globalSearchActivity != null) {
3926 // Check if the global search activity handles voice search
3927 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3928 intent.setPackage(globalSearchActivity.getPackageName());
3929 activityName = intent.resolveActivity(getPackageManager());
3930 }
3931
3932 if (activityName == null) {
3933 // Fallback: check if an activity other than the global search activity
3934 // resolves this
3935 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3936 activityName = intent.resolveActivity(getPackageManager());
3937 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003938 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003939 int coi = getCurrentOrientationIndexForGlobalIcons();
3940 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003941 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3942 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3943 if (sVoiceSearchIcon[coi] == null) {
3944 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3945 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3946 TOOLBAR_ICON_METADATA_NAME);
3947 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003948 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003949 voiceButton.setVisibility(View.VISIBLE);
Winson Chung5841efa2013-09-30 18:06:44 -07003950 updateVoiceButtonProxyVisible(false);
Winson Chungbb185bd2011-11-21 12:31:42 -08003951 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003952 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003953 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07003954 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04003955 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003956 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003957 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003958 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003959 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003960
Cristina Stancu476493b2013-08-07 17:20:14 +01003961 protected void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003962 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3963 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003964 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003965 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003966 }
3967
Winson Chung5841efa2013-09-30 18:06:44 -07003968 public void updateVoiceButtonProxyVisible(boolean forceDisableVoiceButtonProxy) {
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003969 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
3970 if (voiceButtonProxy != null) {
Winson Chung5841efa2013-09-30 18:06:44 -07003971 boolean visible = !forceDisableVoiceButtonProxy &&
3972 mWorkspace.shouldVoiceButtonProxyBeVisible();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003973 voiceButtonProxy.setVisibility(visible ? View.VISIBLE : View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003974 voiceButtonProxy.bringToFront();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003975 }
3976 }
Winson Chung5841efa2013-09-30 18:06:44 -07003977
3978 /**
3979 * This is an overrid eot disable the voice button proxy. If disabled is true, then the voice button proxy
3980 * will be hidden regardless of what shouldVoiceButtonProxyBeVisible() returns.
3981 */
3982 public void disableVoiceButtonProxy(boolean disabled) {
3983 updateVoiceButtonProxyVisible(disabled);
3984 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003985 /**
Winson Chungeb66b142011-06-16 13:14:22 -07003986 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003987 */
3988 private void updateAppMarketIcon() {
Winson Chungd64a6662013-09-30 11:06:59 -07003989 if (!DISABLE_MARKET_BUTTON) {
3990 final View marketButton = findViewById(R.id.market_button);
3991 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3992 // Find the app market activity by resolving an intent.
3993 // (If multiple app markets are installed, it will return the ResolverActivity.)
3994 ComponentName activityName = intent.resolveActivity(getPackageManager());
3995 if (activityName != null) {
3996 int coi = getCurrentOrientationIndexForGlobalIcons();
3997 mAppMarketIntent = intent;
3998 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
3999 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
4000 TOOLBAR_ICON_METADATA_NAME);
4001 marketButton.setVisibility(View.VISIBLE);
4002 } else {
4003 // We should hide and disable the view so that we don't try and restore the visibility
4004 // of it when we swap between drag & normal states from IconDropTarget subclasses.
4005 marketButton.setVisibility(View.GONE);
4006 marketButton.setEnabled(false);
4007 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07004008 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07004009 }
4010
Michael Jurkae7bf83b2010-12-14 18:02:21 -08004011 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chungd64a6662013-09-30 11:06:59 -07004012 if (!DISABLE_MARKET_BUTTON) {
4013 // Ensure that the new drawable we are creating has the approprate toolbar icon bounds
4014 Resources r = getResources();
4015 Drawable marketIconDrawable = d.newDrawable(r);
4016 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
4017 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
4018 marketIconDrawable.setBounds(0, 0, w, h);
Winson Chung1b884092012-06-08 17:13:02 -07004019
Winson Chungd64a6662013-09-30 11:06:59 -07004020 updateTextButtonWithDrawable(R.id.market_button, marketIconDrawable);
4021 }
Michael Jurka4ef207b2010-11-29 17:05:45 -08004022 }
4023
Michael Jurkad7c28052012-04-27 15:43:36 -07004024 @Override
4025 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07004026 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07004027 final List<CharSequence> text = event.getText();
4028 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07004029 // Populate event with a fake title based on the current state.
4030 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohen6c5891a2014-07-09 23:53:15 -07004031 text.add(mAppsCustomizeTabHost.getContentTag());
alanv1d4fde62012-10-17 13:15:47 -07004032 } else {
4033 text.add(getString(R.string.all_apps_home_button_label));
4034 }
Michael Jurkad7c28052012-04-27 15:43:36 -07004035 return result;
4036 }
4037
Patrick Dubroyceae05d2010-08-30 10:40:53 -07004038 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07004039 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004040 */
4041 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
4042 @Override
4043 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004044 closeSystemDialogs();
4045 }
4046 }
4047
4048 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08004049 * Receives notifications whenever the appwidgets are reset.
4050 */
4051 private class AppWidgetResetObserver extends ContentObserver {
4052 public AppWidgetResetObserver() {
4053 super(new Handler());
4054 }
4055
4056 @Override
4057 public void onChange(boolean selfChange) {
4058 onAppWidgetReset();
4059 }
4060 }
4061
4062 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07004063 * If the activity is currently paused, signal that we need to run the passed Runnable
4064 * in onResume.
4065 *
4066 * This needs to be called from incoming places where resources might have been loaded
4067 * while we are paused. That is becaues the Configuration might be wrong
4068 * when we're not running, and if it comes back to what it was when we
4069 * were paused, we are not restarted.
4070 *
4071 * Implementation of the method from LauncherModel.Callbacks.
4072 *
4073 * @return true if we are currently paused. The caller might be able to
4074 * skip some work in that case since we will come back again.
4075 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004076 private boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004077 if (mPaused) {
4078 Log.i(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02004079 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07004080 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004081 }
4082 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07004083 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07004084 return true;
4085 } else {
4086 return false;
4087 }
4088 }
4089
Michael Jurkac402cd92013-05-20 15:49:32 +02004090 private boolean waitUntilResume(Runnable run) {
4091 return waitUntilResume(run, false);
4092 }
4093
Michael Jurka1e2f4652013-07-08 18:03:46 -07004094 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02004095 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07004096 }
4097
Michael Jurka7607c2f2013-04-03 14:33:19 -07004098 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004099 * If the activity is currently paused, signal that we need to re-run the loader
4100 * in onResume.
4101 *
4102 * This needs to be called from incoming places where resources might have been loaded
4103 * while we are paused. That is becaues the Configuration might be wrong
4104 * when we're not running, and if it comes back to what it was when we
4105 * were paused, we are not restarted.
4106 *
4107 * Implementation of the method from LauncherModel.Callbacks.
4108 *
4109 * @return true if we are currently paused. The caller might be able to
4110 * skip some work in that case since we will come back again.
4111 */
4112 public boolean setLoadOnResume() {
4113 if (mPaused) {
4114 Log.i(TAG, "setLoadOnResume");
4115 mOnResumeNeedsLoad = true;
4116 return true;
4117 } else {
4118 return false;
4119 }
4120 }
4121
4122 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004123 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004124 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04004125 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07004126 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07004127 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07004128 } else {
4129 return SCREEN_COUNT / 2;
4130 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004131 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07004132
Joe Onorato9c1289c2009-08-17 11:03:03 -04004133 /**
4134 * Refreshes the shortcuts shown on the workspace.
4135 *
4136 * Implementation of the method from LauncherModel.Callbacks.
4137 */
4138 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004139 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08004140
Michael Jurka7607c2f2013-04-03 14:33:19 -07004141 // If we're starting binding all over again, clear any bind calls we'd postponed in
4142 // the past (see waitUntilResume) -- we don't need them since we're starting binding
4143 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07004144 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07004145
Winson Chungd64d1762013-08-20 14:37:16 -07004146 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07004147 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07004148 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07004149
Michael Jurka05bf6442011-11-30 20:28:53 -08004150 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07004151 if (mHotseat != null) {
4152 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004153 }
4154 }
4155
Adam Cohendcd297f2013-06-18 13:13:40 -07004156 @Override
4157 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07004158 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07004159
Adam Cohen5084cba2013-09-03 12:01:16 -07004160 // If there are no screens, we need to have an empty screen
4161 if (orderedScreenIds.size() == 0) {
4162 mWorkspace.addExtraEmptyScreen();
4163 }
Winson Chung0e6a7132013-08-23 12:55:10 -07004164
4165 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06004166 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05004167 if (hasCustomContentToLeft()) {
4168 mWorkspace.createCustomContentContainer();
4169 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07004170 }
Winson Chung64359a52013-07-08 17:17:08 -07004171 }
4172
4173 @Override
4174 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Winson Chunga90303b2013-11-15 13:05:06 -08004175 // Log to disk
4176 Launcher.addDumpLog(TAG, "11683562 - bindAddScreens()", true);
4177 Launcher.addDumpLog(TAG, "11683562 - orderedScreenIds: " +
4178 TextUtils.join(", ", orderedScreenIds), true);
Adam Cohendcd297f2013-06-18 13:13:40 -07004179 int count = orderedScreenIds.size();
4180 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07004181 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07004182 }
Adam Cohendcd297f2013-06-18 13:13:40 -07004183 }
4184
Adam Cohen39a06042013-07-19 14:30:12 -07004185 private boolean shouldShowWeightWatcher() {
4186 String spKey = LauncherAppState.getSharedPreferencesKey();
4187 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b802013-08-15 15:44:26 -07004188 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07004189
4190 return show;
4191 }
4192
4193 private void toggleShowWeightWatcher() {
4194 String spKey = LauncherAppState.getSharedPreferencesKey();
4195 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
4196 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
4197
4198 show = !show;
4199
4200 SharedPreferences.Editor editor = sp.edit();
4201 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
4202 editor.commit();
4203
4204 if (mWeightWatcher != null) {
4205 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
4206 }
4207 }
4208
Winson Chungd64d1762013-08-20 14:37:16 -07004209 public void bindAppsAdded(final ArrayList<Long> newScreens,
4210 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07004211 final ArrayList<ItemInfo> addAnimated,
4212 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004213 Runnable r = new Runnable() {
4214 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07004215 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07004216 }
4217 };
4218 if (waitUntilResume(r)) {
4219 return;
4220 }
4221
Winson Chungd64d1762013-08-20 14:37:16 -07004222 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08004223 if (newScreens != null) {
4224 bindAddScreens(newScreens);
4225 }
Winson Chungd64d1762013-08-20 14:37:16 -07004226
4227 // We add the items without animation on non-visible pages, and with
4228 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08004229 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004230 bindItems(addNotAnimated, 0,
4231 addNotAnimated.size(), false);
4232 }
Adam Cohen76a47a12014-02-05 11:47:43 -08004233 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004234 bindItems(addAnimated, 0,
4235 addAnimated.size(), true);
4236 }
Winson Chungc58497e2013-09-03 17:48:37 -07004237
Winson Chung87412982013-10-03 18:34:14 -07004238 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07004239 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07004240
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004241 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004242 addedApps != null && mAppsCustomizeContent != null) {
4243 mAppsCustomizeContent.addApps(addedApps);
4244 }
Winson Chungd64d1762013-08-20 14:37:16 -07004245 }
4246
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004247 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004248 * Bind the items start-end from the list.
4249 *
4250 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004251 */
Winson Chung64359a52013-07-08 17:17:08 -07004252 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
4253 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07004254 Runnable r = new Runnable() {
4255 public void run() {
4256 bindItems(shortcuts, start, end, forceAnimateIcons);
4257 }
4258 };
4259 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004260 return;
4261 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004262
Winson Chungf0c6ae02012-03-21 16:10:31 -07004263 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07004264 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
4265 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07004266 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004267 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07004268 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004269 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04004270 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07004271
4272 // Short circuit if we are loading dock items for a configuration which has no dock
4273 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
4274 mHotseat == null) {
4275 continue;
4276 }
4277
Joe Onorato9c1289c2009-08-17 11:03:03 -04004278 switch (item.itemType) {
4279 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
4280 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07004281 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004282 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07004283
Winson Chung64359a52013-07-08 17:17:08 -07004284 /*
4285 * TODO: FIX collision case
4286 */
Winson Chungce376632013-07-11 16:12:41 -07004287 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
4288 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
4289 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07004290 View v = cl.getChildAt(item.cellX, item.cellY);
4291 Object tag = v.getTag();
4292 String desc = "Collision while binding workspace item: " + item
4293 + ". Collides with " + tag;
4294 if (LauncherAppState.isDogfoodBuild()) {
4295 throw (new RuntimeException(desc));
4296 } else {
4297 Log.d(TAG, desc);
4298 }
Winson Chungce376632013-07-11 16:12:41 -07004299 }
Winson Chung64359a52013-07-08 17:17:08 -07004300 }
4301
Adam Cohendcd297f2013-06-18 13:13:40 -07004302 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
4303 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07004304 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07004305 // Animate all the applications up now
4306 shortcut.setAlpha(0f);
4307 shortcut.setScaleX(0f);
4308 shortcut.setScaleY(0f);
4309 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07004310 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004311 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004312 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07004313 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07004314 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07004315 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07004316 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07004317 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
4318 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004319 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07004320 default:
4321 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04004322 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004323 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004324
Winson Chung997a9232013-07-24 15:33:46 -07004325 if (animateIcons) {
4326 // Animate to the correct page
4327 if (newShortcutsScreenId > -1) {
4328 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07004329 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07004330 final Runnable startBounceAnimRunnable = new Runnable() {
4331 public void run() {
4332 anim.playTogether(bounceAnims);
4333 anim.start();
4334 }
4335 };
Winson Chung997a9232013-07-24 15:33:46 -07004336 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07004337 // We post the animation slightly delayed to prevent slowdowns
4338 // when we are loading right after we return to launcher.
4339 mWorkspace.postDelayed(new Runnable() {
4340 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00004341 if (mWorkspace != null) {
4342 mWorkspace.snapToPage(newScreenIndex);
4343 mWorkspace.postDelayed(startBounceAnimRunnable,
4344 NEW_APPS_ANIMATION_DELAY);
4345 }
Winson Chung94d67682013-09-25 16:29:40 -07004346 }
4347 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07004348 } else {
4349 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07004350 }
4351 }
Winson Chung64359a52013-07-08 17:17:08 -07004352 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004353 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004354 }
4355
Joe Onorato9c1289c2009-08-17 11:03:03 -04004356 /**
4357 * Implementation of the method from LauncherModel.Callbacks.
4358 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004359 public void bindFolders(final HashMap<Long, FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07004360 Runnable r = new Runnable() {
4361 public void run() {
4362 bindFolders(folders);
4363 }
4364 };
4365 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004366 return;
4367 }
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004368 sFolders.clear();
4369 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004370 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004371
4372 /**
4373 * Add the views for a widget to the workspace.
4374 *
4375 * Implementation of the method from LauncherModel.Callbacks.
4376 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004377 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004378 Runnable r = new Runnable() {
4379 public void run() {
4380 bindAppWidget(item);
4381 }
4382 };
4383 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004384 return;
4385 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004386
Daniel Sandler843e8602010-06-07 14:59:01 -04004387 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4388 if (DEBUG_WIDGETS) {
4389 Log.d(TAG, "bindAppWidget: " + item);
4390 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004391 final Workspace workspace = mWorkspace;
4392
Sunny Goyal651077b2014-06-30 14:15:31 -07004393 final AppWidgetProviderInfo appWidgetInfo;
4394 if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
4395 final int appWidgetId = item.appWidgetId;
4396 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4397 if (DEBUG_WIDGETS) {
4398 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
4399 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004400
Sunny Goyal651077b2014-06-30 14:15:31 -07004401 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
4402 } else {
4403 appWidgetInfo = null;
4404 item.hostView = new LauncherAppWidgetHostView(this, false);
4405 item.hostView.updateAppWidget(null);
4406 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004407
Joe Onorato9c1289c2009-08-17 11:03:03 -04004408 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004409 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004410
Adam Cohendcd297f2013-06-18 13:13:40 -07004411 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004412 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07004413 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4414
Joe Onorato9c1289c2009-08-17 11:03:03 -04004415 workspace.requestLayout();
4416
Daniel Sandler843e8602010-06-07 14:59:01 -04004417 if (DEBUG_WIDGETS) {
4418 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4419 + (SystemClock.uptimeMillis()-start) + "ms");
4420 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004421 }
4422
Adam Cohen1462de32012-07-24 22:34:36 -07004423 public void onPageBoundSynchronously(int page) {
4424 mSynchronouslyBoundPages.add(page);
4425 }
4426
Joe Onorato9c1289c2009-08-17 11:03:03 -04004427 /**
4428 * Callback saying that there aren't any more items to bind.
4429 *
4430 * Implementation of the method from LauncherModel.Callbacks.
4431 */
Adam Cohene25af792013-06-06 23:08:25 -07004432 public void finishBindingItems(final boolean upgradePath) {
Winson Chungd64d1762013-08-20 14:37:16 -07004433 Runnable r = new Runnable() {
4434 public void run() {
4435 finishBindingItems(upgradePath);
4436 }
4437 };
4438 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004439 return;
4440 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004441 if (mSavedState != null) {
4442 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004443 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004444 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004445 mSavedState = null;
4446 }
4447
Adam Cohen1462de32012-07-24 22:34:36 -07004448 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004449
Winson Chungc51db6a2011-10-05 11:44:49 -07004450 // Update the market app icon as necessary (the other icons will be managed in response to
4451 // package changes in bindSearchablesChanged()
Winson Chungd64a6662013-09-30 11:06:59 -07004452 if (!DISABLE_MARKET_BUTTON) {
4453 updateAppMarketIcon();
4454 }
Michael Jurkac1f5d262011-09-30 19:32:27 -07004455
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004456 setWorkspaceLoading(false);
Adam Cohendb364c32014-05-20 14:23:40 -07004457
4458 // If we received the result of any pending adds while the loader was running (e.g. the
4459 // widget configuration forced an orientation change), process them now.
4460 if (sPendingAddItem != null) {
4461 final long screenId = completeAdd(sPendingAddItem);
4462
4463 // TODO: this moves the user to the page where the pending item was added. Ideally,
4464 // the screen would be guaranteed to exist after bind, and the page would be set through
4465 // the workspace restore process.
4466 mWorkspace.post(new Runnable() {
4467 @Override
4468 public void run() {
4469 mWorkspace.snapToScreenId(screenId);
4470 }
4471 });
4472 sPendingAddItem = null;
4473 }
4474
Adam Cohene25af792013-06-06 23:08:25 -07004475 if (upgradePath) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004476 mWorkspace.getUniqueComponents(true, null);
4477 mIntentsOnWorkspaceFromUpgradePath = mWorkspace.getUniqueComponents(true, null);
Adam Cohene25af792013-06-06 23:08:25 -07004478 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004479 }
4480
Winson Chunga0b7e862013-09-05 16:03:15 -07004481 public boolean isAllAppsButtonRank(int rank) {
4482 if (mHotseat != null) {
4483 return mHotseat.isAllAppsButtonRank(rank);
4484 }
4485 return false;
4486 }
4487
Winson Chunga2413752012-04-03 14:22:34 -07004488 private boolean canRunNewAppsAnimation() {
4489 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4490 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4491 }
4492
Winson Chungc9168342013-06-26 14:54:55 -07004493 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4494 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4495 PropertyValuesHolder.ofFloat("alpha", 1f),
4496 PropertyValuesHolder.ofFloat("scaleX", 1f),
4497 PropertyValuesHolder.ofFloat("scaleY", 1f));
4498 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4499 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
4500 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
4501 return bounceAnim;
4502 }
4503
Adam Cohen27772732013-11-11 14:00:56 +00004504 public boolean useVerticalBarLayout() {
4505 return LauncherAppState.getInstance().getDynamicGrid().
4506 getDeviceProfile().isVerticalBarLayout();
4507 }
4508
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004509 protected Rect getSearchBarBounds() {
4510 return LauncherAppState.getInstance().getDynamicGrid().
4511 getDeviceProfile().getSearchBarBounds();
4512 }
4513
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004514 @Override
4515 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07004516 boolean searchVisible = updateGlobalSearchIcon();
4517 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07004518 if (mSearchDropTargetBar != null) {
4519 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
4520 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004521 }
4522
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004523 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004524 * Add the icons for all apps.
4525 *
4526 * Implementation of the method from LauncherModel.Callbacks.
4527 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004528 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004529 if (LauncherAppState.isDisableAllApps()) {
Winson Chungc58497e2013-09-03 17:48:37 -07004530 if (mIntentsOnWorkspaceFromUpgradePath != null) {
4531 if (LauncherModel.UPGRADE_USE_MORE_APPS_FOLDER) {
4532 getHotseat().addAllAppsFolder(mIconCache, apps,
4533 mIntentsOnWorkspaceFromUpgradePath, Launcher.this, mWorkspace);
4534 }
4535 mIntentsOnWorkspaceFromUpgradePath = null;
Daniel Sandler8707e0f2013-08-15 15:54:18 -07004536 }
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004537 if (mAppsCustomizeContent != null) {
4538 mAppsCustomizeContent.onPackagesUpdated(
4539 LauncherModel.getSortedWidgetsAndShortcuts(this));
4540 }
Winson Chungc58497e2013-09-03 17:48:37 -07004541 } else {
Winson Chungad7db6e2013-10-08 14:01:06 -07004542 if (mAppsCustomizeContent != null) {
Winson Chungc58497e2013-09-03 17:48:37 -07004543 mAppsCustomizeContent.setApps(apps);
Winson Chung6e1c0d32013-10-25 15:24:24 -07004544 mAppsCustomizeContent.onPackagesUpdated(
4545 LauncherModel.getSortedWidgetsAndShortcuts(this));
Winson Chungc58497e2013-09-03 17:48:37 -07004546 }
Winson Chung785d2eb2011-04-14 16:08:02 -07004547 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004548 }
4549
4550 /**
4551 * A package was updated.
4552 *
4553 * Implementation of the method from LauncherModel.Callbacks.
4554 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004555 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004556 Runnable r = new Runnable() {
4557 public void run() {
4558 bindAppsUpdated(apps);
4559 }
4560 };
4561 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004562 return;
4563 }
4564
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004565 if (mWorkspace != null) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004566 mWorkspace.updateShortcutsAndWidgets(apps);
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004567 }
Winson Chungc58497e2013-09-03 17:48:37 -07004568
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004569 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004570 mAppsCustomizeContent != null) {
4571 mAppsCustomizeContent.updateApps(apps);
4572 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004573 }
4574
4575 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004576 * Update the state of a package, typically related to install state.
4577 *
4578 * Implementation of the method from LauncherModel.Callbacks.
4579 */
4580 public void updatePackageState(String pkgName, int state) {
4581 if (mWorkspace != null) {
4582 mWorkspace.updatePackageState(pkgName, state);
4583 }
4584 }
4585
4586 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004587 * A package was uninstalled. We take both the super set of packageNames
4588 * in addition to specific applications to remove, the reason being that
4589 * this can be called when a package is updated as well. In that scenario,
4590 * we only remove specific components from the workspace, where as
4591 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004592 *
4593 * Implementation of the method from LauncherModel.Callbacks.
4594 */
Winson Chung83892cc2013-05-01 16:53:33 -07004595 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Kenny Guyed131872014-04-30 03:02:21 +01004596 final ArrayList<AppInfo> appInfos, final UserHandleCompat user) {
Winson Chungd64d1762013-08-20 14:37:16 -07004597 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004598 public void run() {
Kenny Guyed131872014-04-30 03:02:21 +01004599 bindComponentsRemoved(packageNames, appInfos, user);
Winson Chung83892cc2013-05-01 16:53:33 -07004600 }
Winson Chungd64d1762013-08-20 14:37:16 -07004601 };
4602 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004603 return;
4604 }
4605
Winson Chungdf95eb12013-10-16 14:57:07 -07004606 if (!packageNames.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004607 mWorkspace.removeItemsByPackageName(packageNames, user);
Winson Chungdf95eb12013-10-16 14:57:07 -07004608 }
4609 if (!appInfos.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004610 mWorkspace.removeItemsByApplicationInfo(appInfos, user);
Joe Onorato36115782010-06-17 13:28:48 -04004611 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004612
Winson Chunga1820962011-10-03 16:31:06 -07004613 // Notify the drag controller
Winson Chungdf95eb12013-10-16 14:57:07 -07004614 mDragController.onAppsRemoved(packageNames, appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004615
Winson Chungdf95eb12013-10-16 14:57:07 -07004616 // Update AllApps
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004617 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004618 mAppsCustomizeContent != null) {
4619 mAppsCustomizeContent.removeApps(appInfos);
4620 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004621 }
Joe Onoratobe386092009-11-17 17:32:16 -08004622
4623 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07004624 * A number of packages were updated.
4625 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004626 private ArrayList<Object> mWidgetsAndShortcuts;
4627 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004628 public void run() {
Michael Jurkac402cd92013-05-20 15:49:32 +02004629 bindPackagesUpdated(mWidgetsAndShortcuts);
4630 mWidgetsAndShortcuts = null;
Winson Chung83892cc2013-05-01 16:53:33 -07004631 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004632 };
Michael Jurkac402cd92013-05-20 15:49:32 +02004633 public void bindPackagesUpdated(final ArrayList<Object> widgetsAndShortcuts) {
4634 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
4635 mWidgetsAndShortcuts = widgetsAndShortcuts;
Winson Chung83892cc2013-05-01 16:53:33 -07004636 return;
4637 }
4638
Winson Chung64359a52013-07-08 17:17:08 -07004639 // Update the widgets pane
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004640 if (mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004641 mAppsCustomizeContent.onPackagesUpdated(widgetsAndShortcuts);
Winson Chung785d2eb2011-04-14 16:08:02 -07004642 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004643 }
4644
Winson Chung400438b2011-01-16 17:53:48 -08004645 private int mapConfigurationOriActivityInfoOri(int configOri) {
4646 final Display d = getWindowManager().getDefaultDisplay();
4647 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4648 switch (d.getRotation()) {
4649 case Surface.ROTATION_0:
4650 case Surface.ROTATION_180:
4651 // We are currently in the same basic orientation as the natural orientation
4652 naturalOri = configOri;
4653 break;
4654 case Surface.ROTATION_90:
4655 case Surface.ROTATION_270:
4656 // We are currently in the other basic orientation to the natural orientation
4657 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4658 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4659 break;
4660 }
4661
4662 int[] oriMap = {
4663 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4664 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4665 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4666 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4667 };
4668 // Since the map starts at portrait, we need to offset if this device's natural orientation
4669 // is landscape.
4670 int indexOffset = 0;
4671 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4672 indexOffset = 1;
4673 }
4674 return oriMap[(d.getRotation() + indexOffset) % 4];
4675 }
Adam Cohen446e9402011-09-15 18:21:21 -07004676
Winson Chung4b919f82012-05-01 10:44:08 -07004677 public boolean isRotationEnabled() {
Michael Jurka0a457bf2012-11-19 14:05:05 -08004678 boolean enableRotation = sForceEnableRotation ||
Winson Chung4b919f82012-05-01 10:44:08 -07004679 getResources().getBoolean(R.bool.allow_rotation);
4680 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08004681 }
Winson Chung4b919f82012-05-01 10:44:08 -07004682 public void lockScreenOrientation() {
4683 if (isRotationEnabled()) {
4684 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4685 .getConfiguration().orientation));
4686 }
4687 }
4688 public void unlockScreenOrientation(boolean immediate) {
4689 if (isRotationEnabled()) {
4690 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004691 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004692 } else {
4693 mHandler.postDelayed(new Runnable() {
4694 public void run() {
4695 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4696 }
4697 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004698 }
Winson Chung4b919f82012-05-01 10:44:08 -07004699 }
Winson Chung400438b2011-01-16 17:53:48 -08004700 }
4701
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004702 /**
4703 * Called when the SearchBar hint should be changed.
4704 *
4705 * @param hint the hint to be displayed in the search bar.
4706 */
4707 protected void onSearchBarHintChanged(String hint) {
Winson Chunga6945242014-01-08 14:04:34 -08004708 mLauncherClings.updateSearchBarHint(hint);
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004709 }
4710
Winson Chunge43a1e72014-01-15 10:33:02 -08004711 protected boolean isLauncherPreinstalled() {
4712 PackageManager pm = getPackageManager();
4713 try {
4714 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4715 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4716 return true;
4717 } else {
4718 return false;
4719 }
4720 } catch (NameNotFoundException e) {
4721 e.printStackTrace();
4722 return false;
4723 }
4724 }
4725
Adam Cohenea90f832014-05-21 15:03:34 -07004726 /**
4727 * This method indicates whether or not we should suggest default wallpaper dimensions
4728 * when our wallpaper cropper was not yet used to set a wallpaper.
4729 */
4730 protected boolean overrideWallpaperDimensions() {
4731 return true;
4732 }
4733
Adam Cohen5eed5d82014-05-19 13:12:13 -07004734 protected boolean shouldClingFocusHotseatApp() {
4735 return false;
4736 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004737 protected String getFirstRunClingSearchBarHint() {
4738 return "";
4739 }
4740 protected String getFirstRunCustomContentHint() {
4741 return "";
4742 }
Winson Chung3a6e7f32013-10-09 15:50:52 -07004743 protected int getFirstRunFocusedHotseatAppDrawableId() {
4744 return -1;
4745 }
4746 protected ComponentName getFirstRunFocusedHotseatAppComponentName() {
4747 return null;
4748 }
4749 protected int getFirstRunFocusedHotseatAppRank() {
4750 return -1;
4751 }
4752 protected String getFirstRunFocusedHotseatAppBubbleTitle() {
4753 return "";
4754 }
4755 protected String getFirstRunFocusedHotseatAppBubbleDescription() {
4756 return "";
4757 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004758
Winson Chungaf40f202013-09-18 18:26:31 -07004759 public void dismissFirstRunCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004760 mLauncherClings.dismissFirstRunCling(v);
4761 }
4762 public void dismissMigrationClingCopyApps(View v) {
4763 mLauncherClings.dismissMigrationClingCopyApps(v);
4764 }
4765 public void dismissMigrationClingUseDefault(View v) {
4766 mLauncherClings.dismissMigrationClingUseDefault(v);
4767 }
4768 public void dismissMigrationWorkspaceCling(View v) {
4769 mLauncherClings.dismissMigrationWorkspaceCling(v);
Winson Chungaf40f202013-09-18 18:26:31 -07004770 }
Winson Chung82f55532011-08-09 14:14:23 -07004771 public void dismissWorkspaceCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004772 mLauncherClings.dismissWorkspaceCling(v);
Winson Chung7d7541e2011-09-16 20:14:36 -07004773 }
4774 public void dismissFolderCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004775 mLauncherClings.dismissFolderCling(v);
Winson Chung82f55532011-08-09 14:14:23 -07004776 }
Adam Cohen6268f2d2014-05-16 16:42:35 -07004777 public void markFolderClingDismissedIfNecessary() {
4778 mLauncherClings.markFolderClingDismissedIfNecessary();
4779 }
Adam Cohen432609a2014-03-13 17:03:22 -07004780
4781 /**
4782 * To be overridden by subclasses to indicate that there is an activity to launch
4783 * before showing the standard launcher experience.
4784 */
4785 protected boolean hasFirstRunActivity() {
4786 return false;
4787 }
4788
4789 /**
4790 * To be overridden by subclasses to launch any first run activity
4791 */
4792 protected Intent getFirstRunActivity() {
4793 return null;
4794 }
4795
Winson Chunga6945242014-01-08 14:04:34 -08004796 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004797 return !ActivityManager.isRunningInTestHarness() &&
4798 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004799 }
4800
Adam Cohen4a9423d2014-03-28 14:22:31 -07004801 protected boolean hasRunFirstRunActivity() {
4802 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4803 }
4804
Adam Cohen432609a2014-03-13 17:03:22 -07004805 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004806 if (shouldRunFirstRunActivity() &&
4807 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004808 Intent firstRunIntent = getFirstRunActivity();
4809 if (firstRunIntent != null) {
4810 startActivity(firstRunIntent);
4811 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004812 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004813 }
4814 }
Adam Cohen432609a2014-03-13 17:03:22 -07004815 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004816 }
4817
4818 private void markFirstRunActivityShown() {
4819 SharedPreferences.Editor editor = mSharedPrefs.edit();
4820 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4821 editor.apply();
4822 }
4823
Adam Cohen432609a2014-03-13 17:03:22 -07004824 /**
4825 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4826 * screen that must be displayed and dismissed.
4827 */
4828 protected boolean hasDismissableIntroScreen() {
4829 return false;
4830 }
4831
4832 /**
4833 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4834 */
4835 protected View getIntroScreen() {
4836 return null;
4837 }
4838
4839 /**
4840 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4841 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4842 */
4843 private boolean shouldShowIntroScreen() {
4844 return hasDismissableIntroScreen() &&
4845 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4846 }
4847
4848 protected void showIntroScreen() {
4849 View introScreen = getIntroScreen();
4850 changeWallpaperVisiblity(false);
4851 if (introScreen != null) {
4852 mDragLayer.showOverlayView(introScreen);
4853 }
4854 }
4855
4856 public void dismissIntroScreen() {
4857 markIntroScreenDismissed();
4858 if (showFirstRunActivity()) {
4859 // We delay hiding the intro view until the first run activity is showing. This
4860 // avoids a blip.
4861 mWorkspace.postDelayed(new Runnable() {
4862 @Override
4863 public void run() {
4864 mDragLayer.dismissOverlayView();
4865 }
4866 }, ACTIVITY_START_DELAY);
4867 } else {
4868 mDragLayer.dismissOverlayView();
4869 }
4870 changeWallpaperVisiblity(true);
4871 }
4872
4873 private void markIntroScreenDismissed() {
4874 SharedPreferences.Editor editor = mSharedPrefs.edit();
4875 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4876 editor.apply();
4877 }
4878
Winson Chunga6945242014-01-08 14:04:34 -08004879 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004880 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4881 if (mHotseat != null) mHotseat.setAlpha(1f);
4882 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
4883 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004884 }
4885
4886 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004887 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4888 if (mHotseat != null) mHotseat.setAlpha(0f);
4889 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
4890 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004891 }
4892
Mathew Inwood72fbec12013-11-19 15:45:07 +00004893 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Kenny Guyed131872014-04-30 03:02:21 +01004894 // Called from search suggestion, not supported in other profiles.
4895 final UserHandleCompat myUser = UserHandleCompat.myUserHandle();
4896 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
4897 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(appLaunchIntent,
4898 myUser);
4899 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004900 return null;
4901 }
Kenny Guyed131872014-04-30 03:02:21 +01004902 return new AppInfo(this, activityInfo, myUser, mIconCache, null);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004903 }
4904
4905 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4906 Bitmap icon) {
Kenny Guyed131872014-04-30 03:02:21 +01004907 // Called from search suggestion, not supported in other profiles.
4908 return createShortcutDragInfo(shortcutIntent, caption, icon,
4909 UserHandleCompat.myUserHandle());
4910 }
4911
4912 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4913 Bitmap icon, UserHandleCompat user) {
Kenny Guyc2bd8102014-06-30 12:30:31 +01004914 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
4915 String contentDescription = userManager.getBadgedLabelForUser(caption.toString(), user);
4916 return new ShortcutInfo(shortcutIntent, caption, contentDescription, icon, user);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004917 }
4918
Mathew Inwoodb90860a2014-04-11 17:17:39 +01004919 protected void moveWorkspaceToDefaultScreen() {
4920 mWorkspace.moveToDefaultScreen(false);
4921 }
4922
Mathew Inwood72fbec12013-11-19 15:45:07 +00004923 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4924 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004925 mWorkspace.onExternalDragStartedWithItem(dragView);
4926 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004927 }
4928
Anjali Koppalf5d29132014-02-28 13:33:27 -08004929 @Override
4930 public void onPageSwitch(View newPage, int newPageIndex) {
4931 }
4932
Winson Chung80baf5a2010-08-09 16:03:15 -07004933 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004934 * Prints out out state for debugging.
4935 */
4936 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004937 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004938 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004939 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4940 Log.d(TAG, "mRestoring=" + mRestoring);
4941 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4942 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004943 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004944 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004945
Winson Chung785d2eb2011-04-14 16:08:02 -07004946 if (mAppsCustomizeContent != null) {
4947 mAppsCustomizeContent.dumpState();
4948 }
Daniel Sandler325dc232013-06-05 22:57:57 -04004949 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004950 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004951
4952 @Override
4953 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4954 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004955 synchronized (sDumpLogs) {
4956 writer.println(" ");
4957 writer.println("Debug logs: ");
4958 for (int i = 0; i < sDumpLogs.size(); i++) {
4959 writer.println(" " + sDumpLogs.get(i));
4960 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004961 }
4962 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004963
4964 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004965 if (DEBUG_DUMP_LOG) {
4966 synchronized (sDumpLogs) {
4967 Log.d(TAG, "");
4968 Log.d(TAG, "*********************");
4969 Log.d(TAG, "Launcher debug logs: ");
4970 for (int i = 0; i < sDumpLogs.size(); i++) {
4971 Log.d(TAG, " " + sDumpLogs.get(i));
4972 }
4973 Log.d(TAG, "*********************");
4974 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004975 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004976 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004977 }
4978
4979 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004980 addDumpLog(tag, log, null, debugLog);
4981 }
4982
4983 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004984 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004985 if (e != null) {
4986 Log.d(tag, log, e);
4987 } else {
4988 Log.d(tag, log);
4989 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004990 }
Winson Chungede41292013-09-19 16:27:36 -07004991 if (DEBUG_DUMP_LOG) {
4992 sDateStamp.setTime(System.currentTimeMillis());
4993 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004994 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4995 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004996 }
Winson Chungede41292013-09-19 16:27:36 -07004997 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004998 }
4999
Winson Chungede41292013-09-19 16:27:36 -07005000 public void dumpLogsToLocalData() {
5001 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01005002 new AsyncTask<Void, Void, Void>() {
5003 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07005004 boolean success = false;
5005 sDateStamp.setTime(sRunStart);
5006 String FILENAME = sDateStamp.getMonth() + "-"
5007 + sDateStamp.getDay() + "_"
5008 + sDateStamp.getHours() + "-"
5009 + sDateStamp.getMinutes() + "_"
5010 + sDateStamp.getSeconds() + ".txt";
5011
5012 FileOutputStream fos = null;
5013 File outFile = null;
5014 try {
5015 outFile = new File(getFilesDir(), FILENAME);
5016 outFile.createNewFile();
5017 fos = new FileOutputStream(outFile);
5018 } catch (Exception e) {
5019 e.printStackTrace();
5020 }
5021 if (fos != null) {
5022 PrintWriter writer = new PrintWriter(fos);
5023
5024 writer.println(" ");
5025 writer.println("Debug logs: ");
5026 synchronized (sDumpLogs) {
5027 for (int i = 0; i < sDumpLogs.size(); i++) {
5028 writer.println(" " + sDumpLogs.get(i));
5029 }
5030 }
5031 writer.close();
5032 }
5033 try {
5034 if (fos != null) {
5035 fos.close();
5036 success = true;
5037 }
5038 } catch (IOException e) {
5039 e.printStackTrace();
5040 }
Michael Jurka43467462013-11-14 12:03:58 +01005041 return null;
Winson Chungede41292013-09-19 16:27:36 -07005042 }
Michael Jurka43467462013-11-14 12:03:58 +01005043 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07005044 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005045 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08005046}
Michael Jurka2763be32011-02-24 11:19:57 -08005047
Michael Jurkaabded662011-03-04 12:06:57 -08005048interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08005049 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07005050 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08005051 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08005052 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08005053 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08005054}
Dan Sandlerd5024042014-01-09 15:01:33 -05005055
5056interface DebugIntents {
5057 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
5058 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00005059}