blob: 718634d422579845d7409628a9e89b83c300ac7f [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
Adam Cohen3ed316a2014-07-23 18:21:20 -0700212 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
213 static final String ACTION_FIRST_LOAD_COMPLETE =
214 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
215
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100216 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700217 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100218 "com.android.launcher.toolbar_search_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700219 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100220 "com.android.launcher.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700221
Adam Cohen39a06042013-07-19 14:30:12 -0700222 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700223 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700224
Winson Chunga6945242014-01-08 14:04:34 -0800225 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
226
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700227 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700228 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700229 private State mState = State.WORKSPACE;
230 private AnimatorSet mStateAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700231
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700232 private boolean mIsSafeModeEnabled;
233
Joe Onorato9c1289c2009-08-17 11:03:03 -0400234 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700235 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
236 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700237 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800238
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800239 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800240 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800241
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000242 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
243 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
244
Winson Chunga2413752012-04-03 14:22:34 -0700245 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700246 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
247 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Winson Chung64359a52013-07-08 17:17:08 -0700248 private static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700249
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800250 private final BroadcastReceiver mCloseSystemDialogsReceiver
251 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800252 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
253
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800254 private LayoutInflater mInflater;
255
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800256 private Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700257 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800258 private View mPageIndicators;
Michael Jurkab737ee62011-11-15 15:57:22 -0800259 private DragLayer mDragLayer;
260 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700261 private View mWeightWatcher;
Winson Chunga6945242014-01-08 14:04:34 -0800262 private LauncherClings mLauncherClings;
Romain Guycbb89e42009-06-08 15:52:54 -0700263
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700264 private AppWidgetManager mAppWidgetManager;
265 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700266
Michael Jurkac9d95c52011-08-29 14:03:34 -0700267 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700268 private AppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800269 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700270
Michael Jurka0280c3b2010-09-17 15:00:07 -0700271 private int[] mTmpAddItemCellCoordinates = new int[2];
272
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800273 private FolderInfo mFolderInfo;
274
Winson Chung3d503fb2011-07-13 17:25:49 -0700275 private Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800276 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700277
Michael Jurka838a4ca2011-02-07 13:33:06 -0800278 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700279
Winson Chungc51db6a2011-10-05 11:44:49 -0700280 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700281 private AppsCustomizeTabHost mAppsCustomizeTabHost;
282 private AppsCustomizePagedView mAppsCustomizeContent;
283 private boolean mAutoAdvanceRunning = false;
Adam Cohen24ce0b32014-01-14 16:18:14 -0800284 private View mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800286 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700287 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
288 // scroll issues (because the workspace may not have been measured yet) and extra work.
289 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
290 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291
292 private SpannableStringBuilder mDefaultKeySsb = null;
293
Joe Onorato9c1289c2009-08-17 11:03:03 -0400294 private boolean mWorkspaceLoading = true;
295
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800296 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800297 private boolean mRestoring;
298 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700299 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800300
Michael Jurka1e2f4652013-07-08 18:03:46 -0700301 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700302 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
303
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800304 private Bundle mSavedInstanceState;
305
Joe Onorato9c1289c2009-08-17 11:03:03 -0400306 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800307 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800308 private boolean mUserPresent = true;
309 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700310 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800311 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400312
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700313 private static LocaleConfiguration sLocaleConfiguration = null;
314
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700315 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700316
Adam Cohen61f560d2013-09-30 15:58:20 -0700317 private View.OnTouchListener mHapticFeedbackTouchListener;
318
Adam Cohended9f8d2010-11-03 13:25:16 -0700319 // Related to the auto-advancing of widgets
320 private final int ADVANCE_MSG = 1;
321 private final int mAdvanceInterval = 20000;
322 private final int mAdvanceStagger = 250;
323 private long mAutoAdvanceSentTime;
324 private long mAutoAdvanceTimeLeft = -1;
325 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
326 new HashMap<View, AppWidgetProviderInfo>();
327
Winson Chung400438b2011-01-16 17:53:48 -0800328 // Determines how long to wait after a rotation before restoring the screen orientation to
329 // match the sensor state.
330 private final int mRestoreScreenOrientationDelay = 500;
331
Michael Jurka4ef207b2010-11-29 17:05:45 -0800332 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700333 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
334 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
335 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800336
Winson Chungd64a6662013-09-30 11:06:59 -0700337 private Intent mAppMarketIntent = null;
338 private static final boolean DISABLE_MARKET_BUTTON = true;
339
Craig Mautner360310b2012-10-26 15:13:08 -0700340 private Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700341
Adam Cohen1462de32012-07-24 22:34:36 -0700342 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700343 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700344
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700345 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700346 static Date sDateStamp = new Date();
347 static DateFormat sDateFormat =
348 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
349 static long sRunStart = System.currentTimeMillis();
350 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700351
Winson Chung46353de2012-02-16 14:05:10 -0800352 // We only want to get the SharedPreferences once since it does an FS stat each time we get
353 // it from the context.
354 private SharedPreferences mSharedPrefs;
355
Adam Cohene25af792013-06-06 23:08:25 -0700356 private static ArrayList<ComponentName> mIntentsOnWorkspaceFromUpgradePath = null;
357
Winson Chungf0c6ae02012-03-21 16:10:31 -0700358 // Holds the page that we need to animate to, and the icon views that we need to animate up
359 // when we scroll to that page on resume.
Adam Cohen268c4752012-06-06 17:47:33 -0700360 private ImageView mFolderIconImageView;
361 private Bitmap mFolderIconBitmap;
362 private Canvas mFolderIconCanvas;
363 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700364
Michael Jurkaddd62e92011-02-16 17:49:14 -0800365 private BubbleTextView mWaitingForResume;
366
Michael Jurkac1f5d262011-09-30 19:32:27 -0700367 private Runnable mBuildLayersRunnable = new Runnable() {
368 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700369 if (mWorkspace != null) {
370 mWorkspace.buildPageHardwareLayers();
371 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700372 }
373 };
374
Adam Cohendb364c32014-05-20 14:23:40 -0700375 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800376
Michael Jurka7267fa52013-09-26 15:29:57 -0700377 public static boolean sForceEnableRotation = isPropertyEnabled(FORCE_ENABLE_ROTATION_PROPERTY);
Michael Jurka0a457bf2012-11-19 14:05:05 -0800378
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800379 private static class PendingAddArguments {
380 int requestCode;
381 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700382 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700383 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800384 int cellX;
385 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700386 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800387 }
388
Daniel Sandlerff02d492013-08-05 02:12:05 -0400389 private Stats mStats;
390
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800391 static boolean isPropertyEnabled(String propertyName) {
Michael Jurka0a457bf2012-11-19 14:05:05 -0800392 return Log.isLoggable(propertyName, Log.VERBOSE);
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700393 }
394
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800395 @Override
396 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700397 if (DEBUG_STRICT_MODE) {
398 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
399 .detectDiskReads()
400 .detectDiskWrites()
401 .detectNetwork() // or .detectAll() for all detectable problems
402 .penaltyLog()
403 .build());
404 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
405 .detectLeakedSqlLiteObjects()
406 .detectLeakedClosableObjects()
407 .penaltyLog()
408 .penaltyDeath()
409 .build());
410 }
411
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800412 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400413
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400414 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400415 LauncherAppState app = LauncherAppState.getInstance();
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700416 LauncherAppState.getLauncherProvider().setLauncherProviderChangeListener(this);
Winson Chung5f8afe62013-08-12 16:19:28 -0700417 // Determine the dynamic grid properties
418 Point smallestSize = new Point();
419 Point largestSize = new Point();
420 Point realSize = new Point();
421 Display display = getWindowManager().getDefaultDisplay();
422 display.getCurrentSizeRange(smallestSize, largestSize);
423 display.getRealSize(realSize);
Winson Chung892c74d2013-08-22 16:15:50 -0700424 DisplayMetrics dm = new DisplayMetrics();
425 display.getMetrics(dm);
Winson Chung6e1c0d32013-10-25 15:24:24 -0700426
Winson Chung5f8afe62013-08-12 16:19:28 -0700427 // Lazy-initialize the dynamic grid
428 DeviceProfile grid = app.initDynamicGrid(this,
429 Math.min(smallestSize.x, smallestSize.y),
430 Math.min(largestSize.x, largestSize.y),
Winson Chung892c74d2013-08-22 16:15:50 -0700431 realSize.x, realSize.y,
432 dm.widthPixels, dm.heightPixels);
Winson Chung5f8afe62013-08-12 16:19:28 -0700433
434 // the LauncherApplication should call this, but in case of Instrumentation it might not be present yet
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400435 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700436 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700437 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800438 mModel = app.setLauncher(this);
439 mIconCache = app.getIconCache();
Winson Chunge5467dc2013-10-14 17:03:04 -0700440 mIconCache.flushInvalidIcons(grid);
Joe Onorato41a12d22009-10-31 18:30:00 -0400441 mDragController = new DragController(this);
Winson Chunga6945242014-01-08 14:04:34 -0800442 mLauncherClings = new LauncherClings(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800443 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700444
Daniel Sandlerff02d492013-08-05 02:12:05 -0400445 mStats = new Stats(this);
446
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700447 mAppWidgetManager = AppWidgetManager.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700448
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700449 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
450 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700451
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700452 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
453 // this also ensures that any synchronous binding below doesn't re-trigger another
454 // LauncherModel load.
455 mPaused = false;
456
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800457 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200458 android.os.Debug.startMethodTracing(
459 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800460 }
461
Adam Cohen53805212013-10-01 10:39:23 -0700462
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800463 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800464 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700465
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800466 setupViews();
Cristina Stancu476493b2013-08-07 17:20:14 +0100467 grid.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800468
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800469 registerContentObservers();
470
Joe Onorato7c312c12009-08-13 21:36:53 -0700471 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700472
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800473 mSavedState = savedInstanceState;
474 restoreState(mSavedState);
475
476 if (PROFILE_STARTUP) {
477 android.os.Debug.stopMethodTracing();
478 }
479
480 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700481 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700482 // If the user leaves launcher, then we should just load items asynchronously when
483 // they return.
Derek Prothro7aff3992013-12-10 14:00:37 -0500484 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700485 } else {
486 // We only load the page synchronously if the user rotates (or triggers a
487 // configuration change) while launcher is in the foreground
Winson Chung9b9fb962013-11-15 15:39:34 -0800488 mModel.startLoader(true, mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700489 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800490 }
491
492 // For handling default keys
493 mDefaultKeySsb = new SpannableStringBuilder();
494 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800495
496 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
497 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800498
Adam Cohenf9426d52012-06-04 17:26:21 -0700499 updateGlobalIcons();
500
501 // On large interfaces, we want the screen to auto-rotate based on the current orientation
502 unlockScreenOrientation(true);
Winson Chungaf40f202013-09-18 18:26:31 -0700503
Adam Cohen432609a2014-03-13 17:03:22 -0700504 if (shouldShowIntroScreen()) {
505 showIntroScreen();
506 } else {
507 showFirstRunActivity();
508 }
509
Winson Chunge43a1e72014-01-15 10:33:02 -0800510 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
511 // on the device, then we always show the first run cling experience (or if there is no
512 // launcher2). Otherwise, we prompt the user upon started for migration
Winson Chunge43a1e72014-01-15 10:33:02 -0800513 if (mLauncherClings.shouldShowFirstRunOrMigrationClings()) {
514 if (mModel.canMigrateFromOldLauncherDb(this)) {
515 mLauncherClings.showMigrationCling();
516 } else {
517 mLauncherClings.showFirstRunCling();
518 }
Winson Chunga6945242014-01-08 14:04:34 -0800519 } else {
Winson Chunge43a1e72014-01-15 10:33:02 -0800520 mLauncherClings.removeFirstRunAndMigrationClings();
Winson Chunga6945242014-01-08 14:04:34 -0800521 }
Adam Cohenf9426d52012-06-04 17:26:21 -0700522 }
523
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700524 @Override
525 public void onLauncherProviderChange() { }
526
Winson Chung98ca0f72013-07-29 12:58:51 -0700527 /** To be overriden by subclasses to hint to Launcher that we have custom content */
528 protected boolean hasCustomContentToLeft() {
529 return false;
530 }
531
Dave Hawkeya8881582013-09-17 15:55:33 -0600532 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500533 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600534 * {@link #addToCustomContentPage}. This will only be invoked if
535 * {@link #hasCustomContentToLeft()} is {@code true}.
536 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500537 protected void populateCustomContentContainer() {
Dave Hawkeya8881582013-09-17 15:55:33 -0600538 }
539
540 /**
541 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
542 * ensure the custom content page is added or removed if necessary.
543 */
544 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600545 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600546 // Not bound yet, wait for bindScreens to be called.
547 return;
548 }
549
550 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
551 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500552 mWorkspace.createCustomContentContainer();
553 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600554 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
555 mWorkspace.removeCustomContentPage();
556 }
557 }
558
Adam Cohenf9426d52012-06-04 17:26:21 -0700559 private void updateGlobalIcons() {
Winson Chungc51db6a2011-10-05 11:44:49 -0700560 boolean searchVisible = false;
561 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800562 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700563 int coi = getCurrentOrientationIndexForGlobalIcons();
564 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
565 sAppMarketIcon[coi] == null) {
Winson Chungd64a6662013-09-30 11:06:59 -0700566 if (!DISABLE_MARKET_BUTTON) {
567 updateAppMarketIcon();
568 }
Winson Chungc51db6a2011-10-05 11:44:49 -0700569 searchVisible = updateGlobalSearchIcon();
570 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700571 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700572 if (sGlobalSearchIcon[coi] != null) {
573 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700574 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700575 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700576 if (sVoiceSearchIcon[coi] != null) {
577 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700578 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700579 }
Winson Chungd64a6662013-09-30 11:06:59 -0700580 if (!DISABLE_MARKET_BUTTON && sAppMarketIcon[coi] != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -0700581 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800582 }
Winson Chungadf0c182012-08-23 14:59:07 -0700583 if (mSearchDropTargetBar != null) {
584 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
585 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800586 }
Romain Guycbb89e42009-06-08 15:52:54 -0700587
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800588 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700589 if (sLocaleConfiguration == null) {
590 new AsyncTask<Void, Void, LocaleConfiguration>() {
591 @Override
592 protected LocaleConfiguration doInBackground(Void... unused) {
593 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
594 readConfiguration(Launcher.this, localeConfiguration);
595 return localeConfiguration;
596 }
597
598 @Override
599 protected void onPostExecute(LocaleConfiguration result) {
600 sLocaleConfiguration = result;
601 checkForLocaleChange(); // recursive, but now with a locale configuration
602 }
603 }.execute();
604 return;
605 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700606
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800607 final Configuration configuration = getResources().getConfiguration();
608
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700609 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800610 final String locale = configuration.locale.toString();
611
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700612 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800613 final int mcc = configuration.mcc;
614
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700615 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800616 final int mnc = configuration.mnc;
617
Romain Guy84f296c2009-11-04 15:00:44 -0800618 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800619
Romain Guy84f296c2009-11-04 15:00:44 -0800620 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700621 sLocaleConfiguration.locale = locale;
622 sLocaleConfiguration.mcc = mcc;
623 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700624
Joe Onorato0589f0f2010-02-08 13:44:00 -0800625 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700626
627 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
Michael Jurka43467462013-11-14 12:03:58 +0100628 new AsyncTask<Void, Void, Void>() {
629 public Void doInBackground(Void ... args) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700630 writeConfiguration(Launcher.this, localeConfiguration);
Michael Jurka43467462013-11-14 12:03:58 +0100631 return null;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700632 }
Michael Jurka43467462013-11-14 12:03:58 +0100633 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Romain Guy98d01652009-06-30 16:21:04 -0700634 }
635 }
636
637 private static class LocaleConfiguration {
638 public String locale;
639 public int mcc = -1;
640 public int mnc = -1;
641 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700642
Romain Guy98d01652009-06-30 16:21:04 -0700643 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
644 DataInputStream in = null;
645 try {
646 in = new DataInputStream(context.openFileInput(PREFERENCES));
647 configuration.locale = in.readUTF();
648 configuration.mcc = in.readInt();
649 configuration.mnc = in.readInt();
650 } catch (FileNotFoundException e) {
651 // Ignore
652 } catch (IOException e) {
653 // Ignore
654 } finally {
655 if (in != null) {
656 try {
657 in.close();
658 } catch (IOException e) {
659 // Ignore
660 }
661 }
662 }
663 }
664
665 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
666 DataOutputStream out = null;
667 try {
668 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
669 out.writeUTF(configuration.locale);
670 out.writeInt(configuration.mcc);
671 out.writeInt(configuration.mnc);
672 out.flush();
673 } catch (FileNotFoundException e) {
674 // Ignore
675 } catch (IOException e) {
676 //noinspection ResultOfMethodCallIgnored
677 context.getFileStreamPath(PREFERENCES).delete();
678 } finally {
679 if (out != null) {
680 try {
681 out.close();
682 } catch (IOException e) {
683 // Ignore
684 }
685 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800686 }
687 }
688
Anton Hanssona2f665f2013-09-26 12:18:32 +0100689 public Stats getStats() {
690 return mStats;
691 }
692
Bjorn Bringertc459e522013-06-07 19:36:01 +0100693 public LayoutInflater getInflater() {
694 return mInflater;
695 }
696
Winson Chung36a62fe2012-05-06 18:04:42 -0700697 boolean isDraggingEnabled() {
698 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
699 // that is subsequently removed from the workspace in startBinding().
700 return !mModel.isLoadingWorkspace();
701 }
702
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800703 static int getScreen() {
704 synchronized (sLock) {
705 return sScreen;
706 }
707 }
708
709 static void setScreen(int screen) {
710 synchronized (sLock) {
711 sScreen = screen;
712 }
713 }
714
Winson Chung557d6ed2011-07-08 15:34:52 -0700715 /**
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000716 * Copied from View -- the View version of the method isn't called
717 * anywhere else in our process and only exists for API level 17+,
718 * so it's ok to keep our own version with no API requirement.
719 */
720 public static int generateViewId() {
721 for (;;) {
722 final int result = sNextGeneratedId.get();
723 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
724 int newValue = result + 1;
725 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
726 if (sNextGeneratedId.compareAndSet(result, newValue)) {
727 return result;
728 }
729 }
730 }
731
732 public int getViewIdForItem(ItemInfo info) {
733 // This cast is safe given the > 2B range for int.
734 int itemId = (int) info.id;
735 if (mItemIdToViewId.containsKey(itemId)) {
736 return mItemIdToViewId.get(itemId);
737 }
738 int viewId = generateViewId();
739 mItemIdToViewId.put(itemId, viewId);
740 return viewId;
741 }
742
743 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700744 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
745 * a configuration step, this allows the proper animations to run after other transitions.
746 */
Adam Cohendb364c32014-05-20 14:23:40 -0700747 private long completeAdd(PendingAddArguments args) {
748
749 long screenId = ensurePendingDropLayoutExists(args.screenId);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800750 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800751 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700752 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700753 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700754 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800755 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700756 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700757 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800758 }
Michael Jurka27614d22012-04-02 06:40:22 -0700759 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
760 // if you turned the screen off and then back while in All Apps, Launcher would not
761 // return to the workspace. Clearing mAddInfo.container here fixes this issue
762 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700763 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800764 }
765
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800766 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700767 protected void onActivityResult(
768 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700769 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700770 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700771 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800772 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700773
Adam Cohenad4e15c2013-10-17 16:21:35 -0700774 Runnable exitSpringLoaded = new Runnable() {
775 @Override
776 public void run() {
777 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
778 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
779 }
780 };
781
Michael Jurka8b805b12012-04-18 14:23:14 -0700782 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700783 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700784 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
785 if (resultCode == RESULT_CANCELED) {
786 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700787 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700788 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700789 } else if (resultCode == RESULT_OK) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700790 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
791 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700792 }
793 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200794 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
795 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
796 mWorkspace.exitOverviewMode(false);
797 }
798 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700799 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200800
Adam Cohened66b2b2012-01-23 17:28:51 -0800801 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
802 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700803
Adam Cohendb364c32014-05-20 14:23:40 -0700804 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800805 // We have special handling for widgets
806 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800807 final int appWidgetId;
808 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
809 : -1;
810 if (widgetId < 0) {
811 appWidgetId = pendingAddWidgetId;
812 } else {
813 appWidgetId = widgetId;
814 }
815
Adam Cohenad4e15c2013-10-17 16:21:35 -0700816 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800817 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700818 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
819 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700820 result = RESULT_CANCELED;
821 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700822 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700823 @Override
824 public void run() {
825 exitSpringLoadedDragModeDelayed(false, 0, null);
826 }
827 };
Adam Cohendb364c32014-05-20 14:23:40 -0700828 if (workspaceLocked) {
829 // No need to remove the empty screen if we're mid-binding, as the
830 // the bind will not add the empty screen.
831 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
832 } else {
833 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
834 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
835 }
Winson Chung5aaab772012-04-27 15:24:02 -0700836 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700837 if (!workspaceLocked) {
838 mPendingAddInfo.screenId = ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
839 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
840
841 dropLayout.setDropPending(true);
842 final Runnable onComplete = new Runnable() {
843 @Override
844 public void run() {
845 completeTwoStageWidgetDrop(resultCode, appWidgetId);
846 dropLayout.setDropPending(false);
847 }
848 };
849 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
850 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
851 } else {
852 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
853 mPendingAddInfo);
854 sPendingAddItem = args;
855 }
Winson Chung5aaab772012-04-27 15:24:02 -0700856 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800857 return;
858 }
859
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800860 // The pattern used here is that a user PICKs a specific application,
861 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700862
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800863 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
864 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700865 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700866 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
867 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800868 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700869 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800870 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700871 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700872 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
873 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800874 }
Adam Cohen00074722013-10-11 17:46:09 -0700875 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700876 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700877 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800878 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800879 mDragLayer.clearAnimatedView();
Adam Cohened66b2b2012-01-23 17:28:51 -0800880 }
881
Adam Cohendb364c32014-05-20 14:23:40 -0700882 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
883 appWidgetId, ItemInfo info) {
884 PendingAddArguments args = new PendingAddArguments();
885 args.requestCode = requestCode;
886 args.intent = data;
887 args.container = info.container;
888 args.screenId = info.screenId;
889 args.cellX = info.cellX;
890 args.cellY = info.cellY;
891 args.appWidgetId = appWidgetId;
892 return args;
893 }
894
895 /**
896 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
897 *
898 * @param screenId the screen id to check
899 * @return the new screen, or screenId if it exists
900 */
901 private long ensurePendingDropLayoutExists(long screenId) {
902 CellLayout dropLayout =
903 (CellLayout) mWorkspace.getScreenWithId(screenId);
904 if (dropLayout == null) {
905 // it's possible that the add screen was removed because it was
906 // empty and a re-bind occurred
907 mWorkspace.addExtraEmptyScreen();
908 return mWorkspace.commitExtraEmptyScreen();
909 } else {
910 return screenId;
911 }
912 }
913
Adam Cohened66b2b2012-01-23 17:28:51 -0800914 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700915 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700916 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800917 Runnable onCompleteRunnable = null;
918 int animationType = 0;
919
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700920 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800921 if (resultCode == RESULT_OK) {
922 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
923 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700924 mPendingAddWidgetInfo);
925 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800926 onCompleteRunnable = new Runnable() {
927 @Override
928 public void run() {
929 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700930 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700931 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
932 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800933 }
934 };
935 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800936 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800937 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800938 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700939 if (mDragLayer.getAnimatedView() != null) {
940 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
941 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
942 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700943 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700944 // The animated view may be null in the case of a rotation during widget configuration
945 onCompleteRunnable.run();
946 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800947 }
948
949 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700950 protected void onStop() {
951 super.onStop();
952 FirstFrameAnimatorHelper.setIsVisible(false);
953 }
954
955 @Override
956 protected void onStart() {
957 super.onStart();
958 FirstFrameAnimatorHelper.setIsVisible(true);
959 }
960
961 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800962 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200963 long startTime = 0;
964 if (DEBUG_RESUME_TIME) {
965 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400966 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200967 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800968 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700969
Winson Chung4a2afa32012-07-19 14:53:05 -0700970 // Restore the previous launcher state
971 if (mOnResumeState == State.WORKSPACE) {
972 showWorkspace(false);
973 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
Winson Chung07e045c62013-11-06 15:49:51 -0800974 showAllApps(false, mAppsCustomizeContent.getContentType(), false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700975 }
976 mOnResumeState = State.NONE;
977
Craig Mautner360310b2012-10-26 15:13:08 -0700978 // Background was set to gradient in onPause(), restore to black if in all apps.
979 setWorkspaceBackground(mState == State.WORKSPACE);
980
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800981 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700982 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700983 setWorkspaceLoading(true);
Derek Prothro7aff3992013-12-10 14:00:37 -0500984 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400985 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700986 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800987 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700988 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200989 // We might have postponed some bind calls until onResume (see waitUntilResume) --
990 // execute them here
991 long startTimeCallbacks = 0;
992 if (DEBUG_RESUME_TIME) {
993 startTimeCallbacks = System.currentTimeMillis();
994 }
995
996 if (mAppsCustomizeContent != null) {
997 mAppsCustomizeContent.setBulkBind(true);
998 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700999 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1000 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001001 }
1002 if (mAppsCustomizeContent != null) {
1003 mAppsCustomizeContent.setBulkBind(false);
1004 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001005 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001006 if (DEBUG_RESUME_TIME) {
1007 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1008 (System.currentTimeMillis() - startTimeCallbacks));
1009 }
Michael Jurka447bf842013-05-15 14:52:15 +02001010 }
Michael Jurka54554252013-08-01 12:52:23 +02001011 if (mOnResumeCallbacks.size() > 0) {
1012 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1013 mOnResumeCallbacks.get(i).run();
1014 }
1015 mOnResumeCallbacks.clear();
1016 }
Winson Chunge4e50662012-01-23 14:45:13 -08001017
1018 // Reset the pressed state of icons that were locked in the press state while activities
1019 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001020 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001021 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001022 mWaitingForResume.setStayPressed(false);
1023 }
Winson Chunge4e50662012-01-23 14:45:13 -08001024 if (mAppsCustomizeContent != null) {
1025 // Resets the previous all apps icon press state
1026 mAppsCustomizeContent.resetDrawableState();
1027 }
Winson Chung82963d52013-10-09 11:20:57 -07001028
Adam Cohen06dff352012-06-01 17:17:08 -07001029 // It is possible that widgets can receive updates while launcher is not in the foreground.
1030 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1031 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1032 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001033 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001034
Winson Chung780fe592013-09-26 14:48:44 -07001035 // Process any items that were added while Launcher was away.
1036 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1037
Winson Chung5841efa2013-09-30 18:06:44 -07001038 // Update the voice search button proxy
1039 updateVoiceButtonProxyVisible(false);
1040
Adam Cohenf9426d52012-06-04 17:26:21 -07001041 // Again, as with the above scenario, it's possible that one or more of the global icons
1042 // were updated in the wrong orientation.
1043 updateGlobalIcons();
Michael Jurka447bf842013-05-15 14:52:15 +02001044 if (DEBUG_RESUME_TIME) {
1045 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1046 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001047
1048 if (mWorkspace.getCustomContentCallbacks() != null) {
1049 // If we are resuming and the custom content is the current page, we call onShow().
1050 // It is also poassible that onShow will instead be called slightly after first layout
1051 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1052 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001053 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001054 }
1055 }
Adam Cohenedaaa302013-10-01 17:33:27 -07001056 mWorkspace.updateInteractionForState();
Adam Cohen53805212013-10-01 10:39:23 -07001057 mWorkspace.onResume();
Adam Cohen06dff352012-06-01 17:17:08 -07001058 }
1059
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001060 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001061 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001062 // Ensure that items added to Launcher are queued until Launcher returns
1063 InstallShortcutReceiver.enableInstallQueue();
1064
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001065 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001066 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001067 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001068 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001069
1070 // We call onHide() aggressively. The custom content callbacks should be able to
1071 // debounce excess onHide calls.
1072 if (mWorkspace.getCustomContentCallbacks() != null) {
1073 mWorkspace.getCustomContentCallbacks().onHide();
1074 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001075 }
Romain Guycbb89e42009-06-08 15:52:54 -07001076
Adam Cohenbffe7452013-07-22 18:21:45 -07001077 QSBScroller mQsbScroller = new QSBScroller() {
1078 int scrollY = 0;
1079
1080 @Override
1081 public void setScrollY(int scroll) {
1082 scrollY = scroll;
1083
1084 if (mWorkspace.isOnOrMovingToCustomContent()) {
1085 mSearchDropTargetBar.setTranslationY(- scrollY);
Mark Brophyd7dc6812013-09-20 17:27:32 +01001086 getQsbBar().setTranslationY(-scrollY);
Adam Cohenbffe7452013-07-22 18:21:45 -07001087 }
1088 }
1089 };
1090
1091 public void resetQSBScroll() {
1092 mSearchDropTargetBar.animate().translationY(0).start();
Mark Brophyd7dc6812013-09-20 17:27:32 +01001093 getQsbBar().animate().translationY(0).start();
Adam Cohenbffe7452013-07-22 18:21:45 -07001094 }
1095
1096 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001097 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1098 // by a onResume or by scrolling otherwise.
1099 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001100
1101 // Custom content is completely hidden
1102 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001103
1104 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1105 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001106
1107 // Indicates whether the user is allowed to scroll away from the custom content.
1108 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001109 }
1110
Jorim Jaggid017f882014-01-14 17:08:48 -08001111 protected boolean hasSettings() {
1112 return false;
1113 }
1114
Adam Cohenbffe7452013-07-22 18:21:45 -07001115 public interface QSBScroller {
1116 public void setScrollY(int scrollY);
1117 }
1118
Winson Chung98ca0f72013-07-29 12:58:51 -07001119 public QSBScroller addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001120 CustomContentCallbacks callbacks, String description) {
1121 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohenbffe7452013-07-22 18:21:45 -07001122 return mQsbScroller;
Adam Cohen66a01fd2013-06-11 12:48:00 -07001123 }
1124
Adam Cohenedb40762013-07-18 16:45:45 -07001125 // The custom content needs to offset its content to account for the QSB
1126 public int getTopOffsetForCustomContent() {
1127 return mWorkspace.getPaddingTop();
1128 }
1129
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001130 @Override
1131 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001132 // Flag the loader to stop early before switching
1133 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -07001134 if (mAppsCustomizeContent != null) {
1135 mAppsCustomizeContent.surrender();
1136 }
Romain Guy13c2e7b2010-03-10 19:45:00 -08001137 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001138 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001139
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001140 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001141 @Override
1142 public void onWindowFocusChanged(boolean hasFocus) {
1143 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001144 mHasFocus = hasFocus;
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001145 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001146
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001147 private boolean acceptFilter() {
1148 final InputMethodManager inputManager = (InputMethodManager)
1149 getSystemService(Context.INPUT_METHOD_SERVICE);
1150 return !inputManager.isFullscreenMode();
1151 }
1152
1153 @Override
1154 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001155 final int uniChar = event.getUnicodeChar();
1156 final boolean handled = super.onKeyDown(keyCode, event);
1157 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1158 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001159 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1160 keyCode, event);
1161 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001162 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001163 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001164 // showSearchDialog()
1165 // If there are multiple keystrokes before the search dialog takes focus,
1166 // onSearchRequested() will be called for every keystroke,
1167 // but it is idempotent, so it's fine.
1168 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001169 }
1170 }
1171
Joe Onorato8a9625e2010-01-28 15:55:35 -08001172 // Eat the long press event so the keyboard doesn't come up.
1173 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1174 return true;
1175 }
1176
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001177 return handled;
1178 }
1179
Karl Rosaen138a0412009-04-23 19:00:21 -07001180 private String getTypedText() {
1181 return mDefaultKeySsb.toString();
1182 }
1183
1184 private void clearTypedText() {
1185 mDefaultKeySsb.clear();
1186 mDefaultKeySsb.clearSpans();
1187 Selection.setSelection(mDefaultKeySsb, 0);
1188 }
1189
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001190 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001191 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1192 * State
1193 */
1194 private static State intToState(int stateOrdinal) {
1195 State state = State.WORKSPACE;
1196 final State[] stateValues = State.values();
1197 for (int i = 0; i < stateValues.length; i++) {
1198 if (stateValues[i].ordinal() == stateOrdinal) {
1199 state = stateValues[i];
1200 break;
1201 }
1202 }
1203 return state;
1204 }
1205
1206 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001207 * Restores the previous state, if it exists.
1208 *
1209 * @param savedState The previous state.
1210 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001211 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001212 private void restoreState(Bundle savedState) {
1213 if (savedState == null) {
1214 return;
1215 }
1216
Michael Jurka883f55b2010-10-21 15:47:14 -07001217 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -07001218 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -07001219 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001220 }
1221
Adam Cohen21cd0022013-10-09 18:57:02 -07001222 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1223 PagedView.INVALID_RESTORE_PAGE);
1224 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001225 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001226 }
1227
Winson Chung3d503fb2011-07-13 17:25:49 -07001228 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001229 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001230
Winson Chung3d503fb2011-07-13 17:25:49 -07001231 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1232 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001233 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001234 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1235 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001236 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1237 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
1238 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001239 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001240 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001241 mRestoring = true;
1242 }
1243
1244 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
1245 if (renameFolder) {
1246 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001247 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001248 mRestoring = true;
1249 }
Winson Chunga12a2502010-12-20 14:41:35 -08001250
Winson Chung785d2eb2011-04-14 16:08:02 -07001251 // Restore the AppsCustomize tab
1252 if (mAppsCustomizeTabHost != null) {
1253 String curTab = savedState.getString("apps_customize_currentTab");
1254 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001255 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -07001256 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -07001257 mAppsCustomizeContent.loadAssociatedPages(
1258 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -07001259 }
1260
Winson Chung5afbf7b2011-07-25 11:53:08 -07001261 int currentIndex = savedState.getInt("apps_customize_currentIndex");
1262 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001263 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001264 mItemIdToViewId = (HashMap<Integer, Integer>)
1265 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001266 }
1267
1268 /**
1269 * Finds all the views we need and configure them properly.
1270 */
1271 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001272 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001273
Craig Mautner360310b2012-10-26 15:13:08 -07001274 mLauncherView = findViewById(R.id.launcher);
Winson Chung4c98d922011-05-31 16:50:48 -07001275 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1276 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001277 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001278 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001279
John Spurlock77e1f472013-09-11 10:09:51 -04001280 mLauncherView.setSystemUiVisibility(
1281 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001282 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001283
Winson Chung4c98d922011-05-31 16:50:48 -07001284 // Setup the drag layer
1285 mDragLayer.setup(this, dragController);
1286
Winson Chung3d503fb2011-07-13 17:25:49 -07001287 // Setup the hotseat
1288 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1289 if (mHotseat != null) {
1290 mHotseat.setup(this);
Winson Chung11a1a532013-09-13 11:14:45 -07001291 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001292 }
1293
Jorim Jaggid017f882014-01-14 17:08:48 -08001294 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Adam Cohen61f560d2013-09-30 15:58:20 -07001295 View widgetButton = findViewById(R.id.widget_button);
1296 widgetButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001297 @Override
1298 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001299 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001300 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001301 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001302 }
1303 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001304 widgetButton.setOnTouchListener(getHapticFeedbackTouchListener());
1305
1306 View wallpaperButton = findViewById(R.id.wallpaper_button);
1307 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001308 @Override
1309 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001310 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001311 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001312 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001313 }
1314 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001315 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1316
1317 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001318 if (hasSettings()) {
1319 settingsButton.setOnClickListener(new OnClickListener() {
1320 @Override
1321 public void onClick(View arg0) {
1322 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001323 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001324 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001325 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001326 });
1327 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1328 } else {
1329 settingsButton.setVisibility(View.GONE);
1330 FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) widgetButton.getLayoutParams();
1331 lp.gravity = Gravity.END | Gravity.TOP;
1332 widgetButton.requestLayout();
1333 }
1334
Adam Cohendbdff6b2013-09-18 19:09:15 -07001335 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001336
Winson Chung4c98d922011-05-31 16:50:48 -07001337 // Setup the workspace
1338 mWorkspace.setHapticFeedbackEnabled(false);
1339 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001340 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001341 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001342
Winson Chungf0ea4d32011-06-06 14:27:16 -07001343 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001344 mSearchDropTargetBar = (SearchDropTargetBar)
1345 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001346
Winson Chungf0ea4d32011-06-06 14:27:16 -07001347 // Setup AppsCustomize
Craig Mautner360310b2012-10-26 15:13:08 -07001348 mAppsCustomizeTabHost = (AppsCustomizeTabHost) findViewById(R.id.apps_customize_pane);
Winson Chungf0ea4d32011-06-06 14:27:16 -07001349 mAppsCustomizeContent = (AppsCustomizePagedView)
1350 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
1351 mAppsCustomizeContent.setup(this, dragController);
Craig Mautner360310b2012-10-26 15:13:08 -07001352
Winson Chung3d503fb2011-07-13 17:25:49 -07001353 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001354 dragController.setDragScoller(mWorkspace);
1355 dragController.setScrollView(mDragLayer);
1356 dragController.setMoveTarget(mWorkspace);
1357 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001358 if (mSearchDropTargetBar != null) {
1359 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -08001360 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001361
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001362 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001363 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001364 mWeightWatcher = new WeightWatcher(this);
1365 mWeightWatcher.setAlpha(0.5f);
1366 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001367 new FrameLayout.LayoutParams(
1368 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001369 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001370 Gravity.BOTTOM)
1371 );
Adam Cohen39a06042013-07-19 14:30:12 -07001372
1373 boolean show = shouldShowWeightWatcher();
1374 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001375 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001376 }
1377
1378 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001379 * Sets the all apps button. This method is called from {@link Hotseat}.
1380 */
1381 public void setAllAppsButton(View allAppsButton) {
1382 mAllAppsButton = allAppsButton;
1383 }
1384
1385 public View getAllAppsButton() {
1386 return mAllAppsButton;
1387 }
1388
1389 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001390 * Creates a view representing a shortcut.
1391 *
1392 * @param info The data structure describing the shortcut.
1393 *
1394 * @return A View inflated from R.layout.application.
1395 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001396 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001397 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -07001398 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001399 }
1400
1401 /**
1402 * Creates a view representing a shortcut inflated from the specified resource.
1403 *
1404 * @param layoutResId The id of the XML layout used to create the shortcut.
1405 * @param parent The group the shortcut belongs to.
1406 * @param info The data structure describing the shortcut.
1407 *
1408 * @return A View inflated from layoutResId.
1409 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001410 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -08001411 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07001412 favorite.applyFromShortcutInfo(info, mIconCache, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001413 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001414 return favorite;
1415 }
1416
1417 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001418 * Add a shortcut to the workspace.
1419 *
1420 * @param data The intent describing the shortcut.
1421 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001422 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001423 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001424 int cellY) {
1425 int[] cellXY = mTmpAddItemCellCoordinates;
1426 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001427 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001428
Michael Jurkad3ef3062010-11-23 16:23:58 -08001429 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001430
Adam Cohen558baaf2011-08-15 15:22:57 -07001431 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -08001432 if (info == null) {
1433 return;
1434 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001435 final View view = createShortcut(info);
1436
Adam Cohenfbba09b2011-07-18 21:43:05 -07001437 // First we check if we already know the exact location where we want to add this item.
1438 if (cellX >= 0 && cellY >= 0) {
1439 cellXY[0] = cellX;
1440 cellXY[1] = cellY;
1441 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001442
1443 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001444 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001445 true, null,null)) {
1446 return;
1447 }
1448 DragObject dragObject = new DragObject();
1449 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001450 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1451 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001452 return;
1453 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001454 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001455 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001456 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001457 foundCellSpan = (result != null);
1458 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001459 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001460 }
1461
1462 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001463 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001464 return;
1465 }
1466
Adam Cohendcd297f2013-06-18 13:13:40 -07001467 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001468
1469 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001470 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001471 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001472 }
1473 }
1474
Adam Cohen2f093b62012-04-30 18:59:53 -07001475 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1476 int minHeight) {
1477 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001478 // We want to account for the extra amount of padding that we are adding to the widget
1479 // to ensure that it gets the full amount of space that it has requested
1480 int requiredWidth = minWidth + padding.left + padding.right;
1481 int requiredHeight = minHeight + padding.top + padding.bottom;
Winson Chung66700732013-08-20 16:56:15 -07001482 return CellLayout.rectToCell(requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001483 }
1484
Adam Cohen2f093b62012-04-30 18:59:53 -07001485 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1486 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001487 }
1488
Adam Cohen2f093b62012-04-30 18:59:53 -07001489 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1490 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001491 }
1492
Adam Cohen2f093b62012-04-30 18:59:53 -07001493 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1494 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001495 }
1496
Adam Cohen2f093b62012-04-30 18:59:53 -07001497 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1498 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001499 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001500 }
1501
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001502 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001503 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001504 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001505 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001506 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001507 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001508 private void completeAddAppWidget(final int appWidgetId, long container, long screenId,
Adam Cohened66b2b2012-01-23 17:28:51 -08001509 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1510 if (appWidgetInfo == null) {
1511 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1512 }
Romain Guycbb89e42009-06-08 15:52:54 -07001513
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001514 // Calculate the grid spans needed to fit this widget
Adam Cohendcd297f2013-06-18 13:13:40 -07001515 CellLayout layout = getCellLayout(container, screenId);
Adam Cohen09353862011-07-14 16:10:03 -07001516
Adam Cohen2f093b62012-04-30 18:59:53 -07001517 int[] minSpanXY = getMinSpanForWidget(this, appWidgetInfo);
1518 int[] spanXY = getSpanForWidget(this, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001519
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001520 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001521 // We have saved the position to which the widget was dragged-- this really only matters
1522 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001523 int[] cellXY = mTmpAddItemCellCoordinates;
1524 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001525 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001526 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001527 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1528 cellXY[0] = mPendingAddInfo.cellX;
1529 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001530 spanXY[0] = mPendingAddInfo.spanX;
1531 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001532 foundCellSpan = true;
1533 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001534 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001535 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001536 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1537 spanXY[1], cellXY, finalSpan);
1538 spanXY[0] = finalSpan[0];
1539 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001540 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001541 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001542 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001543 }
1544
Michael Jurka0280c3b2010-09-17 15:00:07 -07001545 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001546 if (appWidgetId != -1) {
1547 // Deleting an app widget ID is a void call but writes to disk before returning
1548 // to the caller...
Michael Jurka43467462013-11-14 12:03:58 +01001549 new AsyncTask<Void, Void, Void>() {
1550 public Void doInBackground(Void ... args) {
Winson Chungf7640c82011-02-28 13:47:29 -08001551 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Michael Jurka43467462013-11-14 12:03:58 +01001552 return null;
Winson Chungf7640c82011-02-28 13:47:29 -08001553 }
Michael Jurka43467462013-11-14 12:03:58 +01001554 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Winson Chungf7640c82011-02-28 13:47:29 -08001555 }
Winson Chung93eef082012-03-23 15:59:27 -07001556 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001557 return;
1558 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001559
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001560 // Build Launcher-specific widget info and save to database
Winson Chung11a49372012-04-27 15:12:38 -07001561 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId,
1562 appWidgetInfo.provider);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001563 launcherInfo.spanX = spanXY[0];
1564 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001565 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1566 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001567
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001568 LauncherModel.addItemToDatabase(this, launcherInfo,
Adam Cohendcd297f2013-06-18 13:13:40 -07001569 container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001570
1571 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001572 if (hostView == null) {
1573 // Perform actual inflation because we're live
1574 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1575 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1576 } else {
1577 // The AppWidgetHostView has already been inflated and instantiated
1578 launcherInfo.hostView = hostView;
1579 }
Romain Guycbb89e42009-06-08 15:52:54 -07001580
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001581 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001582 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001583 launcherInfo.notifyWidgetSizeChanged(this);
1584
Adam Cohendcd297f2013-06-18 13:13:40 -07001585 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001586 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001587
1588 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001589 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001590 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001591 }
Romain Guycbb89e42009-06-08 15:52:54 -07001592
Adam Cohended9f8d2010-11-03 13:25:16 -07001593 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1594 @Override
1595 public void onReceive(Context context, Intent intent) {
1596 final String action = intent.getAction();
1597 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1598 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001599 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001600 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001601
Winson Chungc100e8e2011-08-09 16:02:43 -07001602 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001603 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001604 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001605 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001606 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001607 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1608 mUserPresent = true;
1609 updateRunning();
Dan Sandlerd5024042014-01-09 15:01:33 -05001610 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1611 mModel.resetLoadedState(false, true);
1612 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1613 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1614 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1615 mModel.resetLoadedState(false, true);
1616 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1617 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1618 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001619 } else if (LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED.equals(action)
1620 || LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
1621 getModel().forceReload();
Adam Cohended9f8d2010-11-03 13:25:16 -07001622 }
1623 }
1624 };
1625
1626 @Override
1627 public void onAttachedToWindow() {
1628 super.onAttachedToWindow();
1629
1630 // Listen for broadcasts related to user-presence
1631 final IntentFilter filter = new IntentFilter();
1632 filter.addAction(Intent.ACTION_SCREEN_OFF);
1633 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001634 // For handling managed profiles
1635 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED);
1636 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED);
Dan Sandlerd5024042014-01-09 15:01:33 -05001637 if (ENABLE_DEBUG_INTENTS) {
1638 filter.addAction(DebugIntents.DELETE_DATABASE);
1639 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1640 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001641 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001642 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001643 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001644 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001645 mVisible = true;
1646 }
1647
Adam Cohen0b395352014-06-09 22:54:36 +00001648 /**
1649 * Sets up transparent navigation and status bars in LMP.
1650 * This method is a no-op for other platform versions.
1651 */
1652 @TargetApi(19)
1653 private void setupTransparentSystemBarsForLmp() {
1654 // TODO(sansid): use the APIs directly when compiling against L sdk.
1655 // Currently we use reflection to access the flags and the API to set the transparency
1656 // on the System bars.
1657 if (Utilities.isLmp()) {
1658 try {
1659 getWindow().getAttributes().systemUiVisibility |=
1660 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1661 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1662 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1663 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1664 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1665 Field drawsSysBackgroundsField = WindowManager.LayoutParams.class.getField(
1666 "FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS");
1667 getWindow().addFlags(drawsSysBackgroundsField.getInt(null));
1668
1669 Method setStatusBarColorMethod =
1670 Window.class.getDeclaredMethod("setStatusBarColor", int.class);
1671 Method setNavigationBarColorMethod =
1672 Window.class.getDeclaredMethod("setNavigationBarColor", int.class);
1673 setStatusBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1674 setNavigationBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1675 } catch (NoSuchFieldException e) {
1676 Log.w(TAG, "NoSuchFieldException while setting up transparent bars");
1677 } catch (NoSuchMethodException ex) {
1678 Log.w(TAG, "NoSuchMethodException while setting up transparent bars");
1679 } catch (IllegalAccessException e) {
1680 Log.w(TAG, "IllegalAccessException while setting up transparent bars");
1681 } catch (IllegalArgumentException e) {
1682 Log.w(TAG, "IllegalArgumentException while setting up transparent bars");
1683 } catch (InvocationTargetException e) {
1684 Log.w(TAG, "InvocationTargetException while setting up transparent bars");
1685 } finally {}
1686 }
1687 }
1688
Adam Cohended9f8d2010-11-03 13:25:16 -07001689 @Override
1690 public void onDetachedFromWindow() {
1691 super.onDetachedFromWindow();
1692 mVisible = false;
1693
Adam Cohend113e0c2010-11-11 10:48:05 -08001694 if (mAttached) {
1695 unregisterReceiver(mReceiver);
1696 mAttached = false;
1697 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001698 updateRunning();
1699 }
1700
1701 public void onWindowVisibilityChanged(int visibility) {
1702 mVisible = visibility == View.VISIBLE;
1703 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001704 // The following code used to be in onResume, but it turns out onResume is called when
1705 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1706 // is a more appropriate event to handle
1707 if (mVisible) {
1708 mAppsCustomizeTabHost.onWindowVisible();
1709 if (!mWorkspaceLoading) {
1710 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001711 // We want to let Launcher draw itself at least once before we force it to build
1712 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001713 // apps is nice and speedy.
1714 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001715 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001716 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001717 if (mStarted) return;
1718 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001719 // We delay the layer building a bit in order to give
1720 // other message processing a time to run. In particular
1721 // this avoids a delay in hiding the IME if it was
1722 // currently shown, because doing that may involve
1723 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001724 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001725 final ViewTreeObserver.OnDrawListener listener = this;
1726 mWorkspace.post(new Runnable() {
1727 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001728 if (mWorkspace != null &&
1729 mWorkspace.getViewTreeObserver() != null) {
1730 mWorkspace.getViewTreeObserver().
1731 removeOnDrawListener(listener);
1732 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001733 }
1734 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001735 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001736 }
1737 });
1738 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001739 // When Launcher comes back to foreground, a different Activity might be responsible for
1740 // the app market intent, so refresh the icon
Winson Chungd64a6662013-09-30 11:06:59 -07001741 if (!DISABLE_MARKET_BUTTON) {
1742 updateAppMarketIcon();
1743 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001744 clearTypedText();
1745 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001746 }
1747
1748 private void sendAdvanceMessage(long delay) {
1749 mHandler.removeMessages(ADVANCE_MSG);
1750 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1751 mHandler.sendMessageDelayed(msg, delay);
1752 mAutoAdvanceSentTime = System.currentTimeMillis();
1753 }
1754
1755 private void updateRunning() {
1756 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1757 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1758 mAutoAdvanceRunning = autoAdvanceRunning;
1759 if (autoAdvanceRunning) {
1760 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1761 sendAdvanceMessage(delay);
1762 } else {
1763 if (!mWidgetsToAdvance.isEmpty()) {
1764 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1765 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1766 }
1767 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001768 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001769 }
1770 }
1771 }
1772
1773 private final Handler mHandler = new Handler() {
1774 @Override
1775 public void handleMessage(Message msg) {
1776 if (msg.what == ADVANCE_MSG) {
1777 int i = 0;
1778 for (View key: mWidgetsToAdvance.keySet()) {
1779 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1780 final int delay = mAdvanceStagger * i;
1781 if (v instanceof Advanceable) {
1782 postDelayed(new Runnable() {
1783 public void run() {
1784 ((Advanceable) v).advance();
1785 }
1786 }, delay);
1787 }
1788 i++;
1789 }
1790 sendAdvanceMessage(mAdvanceInterval);
1791 }
1792 }
1793 };
1794
1795 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001796 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001797 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1798 if (v instanceof Advanceable) {
1799 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001800 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001801 updateRunning();
1802 }
1803 }
1804
1805 void removeWidgetToAutoAdvance(View hostView) {
1806 if (mWidgetsToAdvance.containsKey(hostView)) {
1807 mWidgetsToAdvance.remove(hostView);
1808 updateRunning();
1809 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001810 }
1811
Joe Onorato9c1289c2009-08-17 11:03:03 -04001812 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001813 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001814 launcherInfo.hostView = null;
1815 }
1816
Winson Chung93eef082012-03-23 15:59:27 -07001817 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1818 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1819 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001820 }
1821
Winson Chunga6945242014-01-08 14:04:34 -08001822 public DragLayer getDragLayer() {
1823 return mDragLayer;
1824 }
1825
1826 public Workspace getWorkspace() {
1827 return mWorkspace;
1828 }
1829
1830 public Hotseat getHotseat() {
1831 return mHotseat;
1832 }
1833
Jorim Jaggid017f882014-01-14 17:08:48 -08001834 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001835 return mOverviewPanel;
1836 }
1837
1838 public SearchDropTargetBar getSearchBar() {
1839 return mSearchDropTargetBar;
1840 }
1841
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001842 public LauncherAppWidgetHost getAppWidgetHost() {
1843 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001844 }
Romain Guycbb89e42009-06-08 15:52:54 -07001845
Winson Chunga9abd0e2010-10-27 17:18:37 -07001846 public LauncherModel getModel() {
1847 return mModel;
1848 }
1849
Winson Chunga6945242014-01-08 14:04:34 -08001850 public LauncherClings getLauncherClings() {
1851 return mLauncherClings;
1852 }
1853
1854 protected SharedPreferences getSharedPrefs() {
1855 return mSharedPrefs;
1856 }
1857
Bjorn Bringertc459e522013-06-07 19:36:01 +01001858 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001859 getWindow().closeAllPanels();
1860
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001861 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001862 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001863 }
1864
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001865 @Override
1866 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001867 long startTime = 0;
1868 if (DEBUG_RESUME_TIME) {
1869 startTime = System.currentTimeMillis();
1870 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001871 super.onNewIntent(intent);
1872
1873 // Close the menu
1874 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001875 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001876 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001877
Adam Cohened307df2013-10-02 09:37:31 -07001878 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1879 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1880 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001881
Adam Cohen6fecd412013-10-02 17:41:50 -07001882 if (mWorkspace == null) {
1883 // Can be cases where mWorkspace is null, this prevents a NPE
1884 return;
1885 }
1886 Folder openFolder = mWorkspace.getOpenFolder();
1887 // In all these cases, only animate if we're already on home
1888 mWorkspace.exitWidgetResizeMode();
1889 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Coppa120b8e2013-11-12 16:26:04 +00001890 openFolder == null && shouldMoveToDefaultScreenOnHomeIntent()) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001891 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001892 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001893
Adam Cohen6fecd412013-10-02 17:41:50 -07001894 closeFolder();
1895 exitSpringLoadedDragMode();
1896
1897 // If we are already on home, then just animate back to the workspace,
1898 // otherwise, just wait until onResume to set the state back to Workspace
1899 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001900 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001901 } else {
1902 mOnResumeState = State.WORKSPACE;
1903 }
1904
1905 final View v = getWindow().peekDecorView();
1906 if (v != null && v.getWindowToken() != null) {
1907 InputMethodManager imm = (InputMethodManager)getSystemService(
1908 INPUT_METHOD_SERVICE);
1909 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1910 }
1911
1912 // Reset the apps customize page
Winson Chunge7e97e62013-12-02 17:02:50 -08001913 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001914 mAppsCustomizeTabHost.reset();
1915 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001916
1917 onHomeIntent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001918 }
Adam Cohened307df2013-10-02 09:37:31 -07001919
Michael Jurka447bf842013-05-15 14:52:15 +02001920 if (DEBUG_RESUME_TIME) {
1921 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1922 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001923 }
1924
Adam Coppa120b8e2013-11-12 16:26:04 +00001925 /**
1926 * Override point for subclasses to prevent movement to the default screen when the home
1927 * button is pressed. Used (for example) in GEL, to prevent movement during a search.
1928 */
1929 protected boolean shouldMoveToDefaultScreenOnHomeIntent() {
1930 return true;
1931 }
1932
1933 /**
1934 * Override point for subclasses to provide custom behaviour for when a home intent is fired.
1935 */
1936 protected void onHomeIntent() {
1937 // Do nothing
1938 }
1939
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001940 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001941 public void onRestoreInstanceState(Bundle state) {
1942 super.onRestoreInstanceState(state);
1943 for (int page: mSynchronouslyBoundPages) {
1944 mWorkspace.restoreInstanceStateForChild(page);
1945 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001946 }
1947
1948 @Override
1949 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001950 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001951 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1952 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001953 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001954 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001955
Michael Jurka883f55b2010-10-21 15:47:14 -07001956 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001957 // We close any open folder since it will not be re-opened, and we need to make sure
1958 // this state is reflected.
1959 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001960
Adam Cohendcd297f2013-06-18 13:13:40 -07001961 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001962 mWaitingForResult) {
1963 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001964 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001965 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1966 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001967 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1968 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1969 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001970 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001971 }
1972
1973 if (mFolderInfo != null && mWaitingForResult) {
1974 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1975 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1976 }
Michael Jurka946ad472010-07-09 18:05:18 -07001977
Winson Chung785d2eb2011-04-14 16:08:02 -07001978 // Save the current AppsCustomize tab
1979 if (mAppsCustomizeTabHost != null) {
Winson Chung07e045c62013-11-06 15:49:51 -08001980 AppsCustomizePagedView.ContentType type = mAppsCustomizeContent.getContentType();
1981 String currentTabTag = mAppsCustomizeTabHost.getTabTagForContentType(type);
Winson Chung785d2eb2011-04-14 16:08:02 -07001982 if (currentTabTag != null) {
1983 outState.putString("apps_customize_currentTab", currentTabTag);
1984 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001985 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1986 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001987 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001988 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001989 }
1990
1991 @Override
1992 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001993 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001994
Winson Chunge7a03942011-08-05 15:05:12 -07001995 // Remove all pending runnables
1996 mHandler.removeMessages(ADVANCE_MSG);
1997 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001998 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001999
Winson Chungcd2b0142011-06-08 16:02:26 -07002000 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002001 LauncherAppState app = (LauncherAppState.getInstance());
Winson Chungcd2b0142011-06-08 16:02:26 -07002002 mModel.stopLoader();
2003 app.setLauncher(null);
2004
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002005 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002006 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002007 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002008 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002009 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002010 mAppWidgetHost = null;
2011
2012 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002013
2014 TextKeyListener.getInstance().release();
2015
Winson Chung81b52252012-08-27 15:34:29 -07002016 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
2017 // to prevent leaking Launcher activities on orientation change.
2018 if (mModel != null) {
2019 mModel.unbindItemInfosAndClearQueuedBindRunnables();
2020 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002021
2022 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002023 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002024
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002025 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002026 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002027 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002028 mWorkspace = null;
2029 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002030
Michael Jurka2ecf9952012-06-18 12:52:28 -07002031 LauncherAnimUtils.onDestroyActivity();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002032 }
2033
Adam Cohena9cf38f2011-05-02 15:36:58 -07002034 public DragController getDragController() {
2035 return mDragController;
2036 }
2037
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002038 @Override
2039 public void startActivityForResult(Intent intent, int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002040 if (requestCode >= 0) {
2041 setWaitingForResult(true);
2042 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002043 super.startActivityForResult(intent, requestCode);
2044 }
2045
Winson Chung70d72102011-08-12 11:24:35 -07002046 /**
2047 * Indicates that we want global search for this activity by setting the globalSearch
2048 * argument for {@link #startSearch} to true.
2049 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002050 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002051 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002052 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002053
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002054 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07002055
Karl Rosaen138a0412009-04-23 19:00:21 -07002056 if (initialQuery == null) {
2057 // Use any text typed in the launcher as the initial query
2058 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002059 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002060 if (appSearchData == null) {
2061 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002062 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002063 }
Winson Chungadf0c182012-08-23 14:59:07 -07002064 Rect sourceBounds = new Rect();
2065 if (mSearchDropTargetBar != null) {
2066 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2067 }
Romain Guycbb89e42009-06-08 15:52:54 -07002068
Bjorn Bringertc459e522013-06-07 19:36:01 +01002069 startSearch(initialQuery, selectInitialQuery,
2070 appSearchData, sourceBounds);
2071 }
2072
2073 public void startSearch(String initialQuery,
2074 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Michael Jurkaa33411c2012-06-14 16:18:21 -07002075 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002076 appSearchData, sourceBounds);
Michael Jurkaa33411c2012-06-14 16:18:21 -07002077 }
2078
2079 /**
2080 * Starts the global search activity. This code is a copied from SearchManager
2081 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002082 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002083 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002084 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002085 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2086 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2087 if (globalSearchActivity == null) {
2088 Log.w(TAG, "No global search activity found.");
2089 return;
2090 }
2091 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2092 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2093 intent.setComponent(globalSearchActivity);
2094 // Make sure that we have a Bundle to put source in
2095 if (appSearchData == null) {
2096 appSearchData = new Bundle();
2097 } else {
2098 appSearchData = new Bundle(appSearchData);
2099 }
2100 // Set source to package name of app that starts global search, if not set already.
2101 if (!appSearchData.containsKey("source")) {
2102 appSearchData.putString("source", getPackageName());
2103 }
2104 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2105 if (!TextUtils.isEmpty(initialQuery)) {
2106 intent.putExtra(SearchManager.QUERY, initialQuery);
2107 }
2108 if (selectInitialQuery) {
2109 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2110 }
2111 intent.setSourceBounds(sourceBounds);
2112 try {
2113 startActivity(intent);
2114 } catch (ActivityNotFoundException ex) {
2115 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2116 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002117 }
2118
Yura4f93ec62014-02-04 14:15:21 +00002119 public boolean isOnCustomContent() {
2120 return mWorkspace.isOnOrMovingToCustomContent();
2121 }
2122
Winson Chung70d72102011-08-12 11:24:35 -07002123 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002124 public boolean onPrepareOptionsMenu(Menu menu) {
2125 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002126 if (!isOnCustomContent()) {
2127 // Close any open folders
2128 closeFolder();
2129 // Stop resizing any widgets
2130 mWorkspace.exitWidgetResizeMode();
2131 if (!mWorkspace.isInOverviewMode()) {
2132 // Show the overview mode
2133 showOverviewMode(true);
2134 } else {
2135 showWorkspace(true);
2136 }
Winson Chunge0298742014-01-17 12:03:00 -08002137 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002138 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002139 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002140
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002141 @Override
2142 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002143 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002144 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002145 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002146 }
2147
Joe Onorato9c1289c2009-08-17 11:03:03 -04002148 public boolean isWorkspaceLocked() {
2149 return mWorkspaceLoading || mWaitingForResult;
2150 }
2151
Adam Cohen517a7f52014-03-01 12:12:59 -08002152 public boolean isWorkspaceLoading() {
2153 return mWorkspaceLoading;
2154 }
2155
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002156 private void setWorkspaceLoading(boolean value) {
2157 boolean isLocked = isWorkspaceLocked();
2158 mWorkspaceLoading = value;
2159 if (isLocked != isWorkspaceLocked()) {
2160 onWorkspaceLockedChanged();
2161 }
2162 }
2163
2164 private void setWaitingForResult(boolean value) {
2165 boolean isLocked = isWorkspaceLocked();
2166 mWaitingForResult = value;
2167 if (isLocked != isWorkspaceLocked()) {
2168 onWorkspaceLockedChanged();
2169 }
2170 }
2171
2172 protected void onWorkspaceLockedChanged() { }
2173
Michael Jurka0280c3b2010-09-17 15:00:07 -07002174 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002175 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002176 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002177 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2178 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002179 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002180 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002181 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002182
Adam Cohenad4e15c2013-10-17 16:21:35 -07002183 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2184 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo) {
2185 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2186 }
2187
2188 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2189 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo, int
2190 delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002191 if (appWidgetInfo.configure != null) {
2192 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002193 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002194
Bjorn Bringert7984c942009-12-09 15:38:25 +00002195 // Launch over to configure widget, if needed
2196 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002197 intent.setComponent(appWidgetInfo.configure);
Bjorn Bringert7984c942009-12-09 15:38:25 +00002198 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Michael Jurkaa805e1a2013-08-22 15:00:33 +02002199 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002200 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002201 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002202 Runnable onComplete = new Runnable() {
2203 @Override
2204 public void run() {
2205 // Exit spring loaded mode if necessary after adding the widget
2206 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2207 null);
2208 }
2209 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002210 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002211 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002212 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002213 }
2214 }
Romain Guycbb89e42009-06-08 15:52:54 -07002215
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002216 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002217 // Close any folders that may be open.
2218 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002219 mWorkspace.moveToCustomContentScreen(animate);
2220 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002221 /**
2222 * Process a shortcut drop.
2223 *
2224 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002225 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002226 * @param cell The cell it should be added to, optional
2227 * @param position The location on the screen where it was dropped, optional
2228 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002229 void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
Winson Chung3d503fb2011-07-13 17:25:49 -07002230 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002231 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002232 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002233 mPendingAddInfo.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002234 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002235
2236 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002237 mPendingAddInfo.cellX = cell[0];
2238 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002239 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002240
2241 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2242 createShortcutIntent.setComponent(componentName);
2243 processShortcut(createShortcutIntent);
2244 }
2245
Adam Cohenfbba09b2011-07-18 21:43:05 -07002246 /**
2247 * Process a widget drop.
2248 *
2249 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002250 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002251 * @param cell The cell it should be added to, optional
2252 * @param position The location on the screen where it was dropped, optional
2253 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002254 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
Adam Cohend41fbf52012-02-16 23:53:59 -08002255 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002256 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002257 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002258 mPendingAddInfo.screenId = info.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002259 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08002260 mPendingAddInfo.minSpanX = info.minSpanX;
2261 mPendingAddInfo.minSpanY = info.minSpanY;
2262
Adam Cohenfbba09b2011-07-18 21:43:05 -07002263 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002264 mPendingAddInfo.cellX = cell[0];
2265 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002266 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002267 if (span != null) {
2268 mPendingAddInfo.spanX = span[0];
2269 mPendingAddInfo.spanY = span[1];
2270 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002271
Adam Cohened66b2b2012-01-23 17:28:51 -08002272 AppWidgetHostView hostView = info.boundWidget;
2273 int appWidgetId;
2274 if (hostView != null) {
2275 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002276 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08002277 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002278 // In this case, we either need to start an activity to get permission to bind
2279 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002280 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002281 Bundle options = info.bindOptions;
2282
2283 boolean success = false;
2284 if (options != null) {
2285 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
2286 info.componentName, options);
2287 } else {
2288 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
2289 info.componentName);
2290 }
2291 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002292 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002293 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002294 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002295 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2296 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2297 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Adam Cohendd70d662012-10-04 16:53:44 -07002298 // TODO: we need to make sure that this accounts for the options bundle.
2299 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002300 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2301 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002302 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002303 }
2304
Joe Onoratodeb98af2010-02-19 14:59:39 -08002305 void processShortcut(Intent intent) {
Kenny Guyed131872014-04-30 03:02:21 +01002306 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_SHORTCUT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002307 }
2308
Winson Chung24ab2f12010-09-16 14:10:47 -07002309 void processWallpaper(Intent intent) {
2310 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
2311 }
2312
Adam Cohendcd297f2013-06-18 13:13:40 -07002313 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002314 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002315 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002316 folderInfo.title = getText(R.string.folder_name);
2317
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002318 // Update the model
Adam Cohendcd297f2013-06-18 13:13:40 -07002319 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, cellX, cellY,
Winson Chung3d503fb2011-07-13 17:25:49 -07002320 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002321 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002322
2323 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002324 FolderIcon newFolder =
2325 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002326 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002327 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002328 // Force measure the new folder icon
2329 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2330 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002331 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002332 }
Romain Guycbb89e42009-06-08 15:52:54 -07002333
Joe Onorato9c1289c2009-08-17 11:03:03 -04002334 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002335 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002336 }
2337
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002338 protected ComponentName getWallpaperPickerComponent() {
Michael Jurka7ad868b2013-12-12 15:04:25 +01002339 return new ComponentName(getPackageName(), LauncherWallpaperPickerActivity.class.getName());
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002340 }
2341
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002342 /**
2343 * Registers various content observers. The current implementation registers
2344 * only a favorites observer to keep track of the favorites applications.
2345 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002346 private void registerContentObservers() {
2347 ContentResolver resolver = getContentResolver();
2348 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
2349 true, mWidgetObserver);
2350 }
2351
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002352 @Override
2353 public boolean dispatchKeyEvent(KeyEvent event) {
2354 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2355 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002356 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002357 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002358 case KeyEvent.KEYCODE_VOLUME_DOWN:
Michael Jurka0a457bf2012-11-19 14:05:05 -08002359 if (isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002360 dumpState();
2361 return true;
2362 }
2363 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002364 }
2365 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2366 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002367 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002368 return true;
2369 }
2370 }
2371
2372 return super.dispatchKeyEvent(event);
2373 }
2374
Joe Onorato88ec0992009-11-19 13:16:06 -08002375 @Override
2376 public void onBackPressed() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002377 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07002378 if (mAppsCustomizeContent.getContentType() ==
2379 AppsCustomizePagedView.ContentType.Applications) {
2380 showWorkspace(true);
2381 } else {
2382 showOverviewMode(true);
2383 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07002384 } else if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002385 mWorkspace.exitOverviewMode(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002386 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002387 Folder openFolder = mWorkspace.getOpenFolder();
2388 if (openFolder.isEditingName()) {
2389 openFolder.dismissEditingName();
2390 } else {
2391 closeFolder();
2392 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002393 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002394 mWorkspace.exitWidgetResizeMode();
2395
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002396 // Back button is a no-op here, but give at least some feedback for the button press
2397 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002398 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002399 }
2400
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002401 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002402 * Re-listen when widgets are reset.
2403 */
2404 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002405 if (mAppWidgetHost != null) {
2406 mAppWidgetHost.startListening();
2407 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002408 }
2409
2410 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002411 * Launches the intent referred by the clicked shortcut.
2412 *
2413 * @param v The view representing the clicked shortcut.
2414 */
2415 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002416 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2417 // view has detached (it's possible for this to happen if the view is removed mid touch).
2418 if (v.getWindowToken() == null) {
2419 return;
2420 }
2421
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002422 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002423 return;
2424 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002425
Adam Cohen1697b792013-09-17 19:08:21 -07002426 if (v instanceof Workspace) {
2427 if (mWorkspace.isInOverviewMode()) {
2428 mWorkspace.exitOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002429 }
2430 return;
2431 }
2432
2433 if (v instanceof CellLayout) {
2434 if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002435 mWorkspace.exitOverviewMode(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002436 }
2437 }
2438
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002439 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002440 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002441 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002442 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002443 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002444 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002445 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002446 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002447 onClickAllAppsButton(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002448 }
2449 }
2450
Michael Jurka0e260592010-06-30 17:07:39 -07002451 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002452 return false;
2453 }
2454
Michael Jurkaaf442092010-06-10 17:01:57 -07002455 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002456 * Event handler for the search button
2457 *
2458 * @param v The view that was clicked.
2459 */
2460 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002461 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2462
Amith Yamasania135ba82011-08-09 17:42:01 -07002463 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002464 }
2465
2466 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002467 * Event handler for the voice button
2468 *
2469 * @param v The view that was clicked.
2470 */
2471 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002472 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002473
Bjorn Bringertc459e522013-06-07 19:36:01 +01002474 startVoice();
2475 }
2476
2477 public void startVoice() {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002478 try {
2479 final SearchManager searchManager =
2480 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2481 ComponentName activityName = searchManager.getGlobalSearchActivity();
2482 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002483 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002484 if (activityName != null) {
2485 intent.setPackage(activityName.getPackageName());
2486 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002487 startActivity(null, intent, "onClickVoiceButton");
Michael Jurkaae65ee32012-04-30 11:45:54 -07002488 } catch (ActivityNotFoundException e) {
2489 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002490 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002491 startActivitySafely(null, intent, "onClickVoiceButton");
2492 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002493 }
2494
2495 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002496 * Event handler for the "grid" button that appears on the home screen, which
2497 * enters all apps mode.
2498 *
2499 * @param v The view that was clicked.
2500 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002501 protected void onClickAllAppsButton(View v) {
2502 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
2503 if (isAllAppsVisible()) {
2504 showWorkspace(true);
2505 } else {
2506 showAllApps(true, AppsCustomizePagedView.ContentType.Applications, false);
2507 }
2508 }
2509
2510 /**
Mohammadinamul Sheik3b1a54a2014-03-18 11:28:19 -07002511 * Event handler for a paged view icon click.
2512 * @param v The view that was clicked.
2513 * @param appInfo The {link AppInfo} of the view.
2514 */
2515 public void onClickPagedViewIcon(View v, AppInfo appInfo) {
2516 if (LOGD) Log.d(TAG, "onClickPagedViewIcon");
2517 startActivitySafely(v, appInfo.intent, appInfo);
2518 getStats().recordLaunch(appInfo.intent);
2519 }
2520
2521 /**
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002522 * Event handler for an app shortcut click.
2523 *
2524 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2525 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002526 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002527 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2528 Object tag = v.getTag();
2529 if (!(tag instanceof ShortcutInfo)) {
2530 throw new IllegalArgumentException("Input must be a Shortcut");
2531 }
2532
2533 // Open shortcut
2534 final ShortcutInfo shortcut = (ShortcutInfo) tag;
2535 final Intent intent = shortcut.intent;
2536
2537 // Check for special shortcuts
2538 if (intent.getComponent() != null) {
2539 final String shortcutClass = intent.getComponent().getClassName();
2540
2541 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2542 MemoryDumpActivity.startDump(this);
2543 return;
2544 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2545 toggleShowWeightWatcher();
2546 return;
2547 }
2548 }
2549
Chris Wren40c5ed32014-06-24 18:24:23 -04002550 // Check for abandoned promise
2551 if (shortcut.isAbandoned() && v instanceof BubbleTextView) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002552 AlertDialog.Builder builder = new AlertDialog.Builder(this);
2553 builder.setTitle(R.string.abandoned_promises_title);
Chris Wren803a4be2014-07-01 16:52:49 -04002554 builder.setMessage(R.string.abandoned_promise_explanation);
Chris Wren40c5ed32014-06-24 18:24:23 -04002555 builder.setPositiveButton(R.string.abandoned_search,
2556 new DialogInterface.OnClickListener() {
2557 public void onClick(DialogInterface dialog, int id) {
2558 startAppShortcutActivity(v);
2559 }
2560 }
2561 );
Chris Wren40c5ed32014-06-24 18:24:23 -04002562 builder.setNeutralButton(R.string.abandoned_clean_this,
2563 new DialogInterface.OnClickListener() {
2564 public void onClick(DialogInterface dialog, int id) {
2565 final BubbleTextView bubble = (BubbleTextView) v;
2566 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2567 mWorkspace.removeAbandonedPromise(bubble, user);
2568 }
2569 });
2570 builder.create().show();
2571 return;
2572 }
2573
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002574 // Start activities
Chris Wren40c5ed32014-06-24 18:24:23 -04002575 startAppShortcutActivity(v);
2576 }
2577
2578 private void startAppShortcutActivity(View v) {
2579 Object tag = v.getTag();
2580 if (!(tag instanceof ShortcutInfo)) {
2581 throw new IllegalArgumentException("Input must be a Shortcut");
2582 }
2583 final ShortcutInfo shortcut = (ShortcutInfo) tag;
2584 final Intent intent = shortcut.intent;
2585
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002586 int[] pos = new int[2];
2587 v.getLocationOnScreen(pos);
2588 intent.setSourceBounds(new Rect(pos[0], pos[1],
2589 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
2590
2591 boolean success = startActivitySafely(v, intent, tag);
2592
2593 mStats.recordLaunch(intent, shortcut);
2594
2595 if (success && v instanceof BubbleTextView) {
2596 mWaitingForResume = (BubbleTextView) v;
2597 mWaitingForResume.setStayPressed(true);
2598 }
2599 }
2600
2601 /**
2602 * Event handler for a folder icon click.
2603 *
2604 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2605 */
2606 protected void onClickFolderIcon(View v) {
2607 if (LOGD) Log.d(TAG, "onClickFolder");
2608 if (!(v instanceof FolderIcon)){
2609 throw new IllegalArgumentException("Input must be a FolderIcon");
2610 }
2611
2612 FolderIcon folderIcon = (FolderIcon) v;
2613 final FolderInfo info = folderIcon.getFolderInfo();
2614 Folder openFolder = mWorkspace.getFolderForTag(info);
2615
2616 // If the folder info reports that the associated folder is open, then verify that
2617 // it is actually opened. There have been a few instances where this gets out of sync.
2618 if (info.opened && openFolder == null) {
2619 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2620 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2621 info.opened = false;
2622 }
2623
2624 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2625 // Close any open folder
2626 closeFolder();
2627 // Open the requested folder
2628 openFolder(folderIcon);
2629 } else {
2630 // Find the open folder...
2631 int folderScreen;
2632 if (openFolder != null) {
2633 folderScreen = mWorkspace.getPageForView(openFolder);
2634 // .. and close it
2635 closeFolder(openFolder);
2636 if (folderScreen != mWorkspace.getCurrentPage()) {
2637 // Close any folder open on the current screen
2638 closeFolder();
2639 // Pull the folder onto this screen
2640 openFolder(folderIcon);
2641 }
2642 }
2643 }
Michael Jurka5130e402011-10-13 04:55:35 -07002644 }
2645
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002646 /**
2647 * Event handler for the (Add) Widgets button that appears after a long press
2648 * on the home screen.
2649 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002650 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002651 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002652 showAllApps(true, AppsCustomizePagedView.ContentType.Widgets, true);
2653 }
2654
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002655 /**
2656 * Event handler for the wallpaper picker button that appears after a long press
2657 * on the home screen.
2658 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002659 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002660 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
2661 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
2662 pickWallpaper.setComponent(getWallpaperPickerComponent());
2663 startActivityForResult(pickWallpaper, REQUEST_PICK_WALLPAPER);
2664 }
2665
2666 /**
2667 * Event handler for a click on the settings button that appears after a long press
2668 * on the home screen.
2669 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002670 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002671 if (LOGD) Log.d(TAG, "onClickSettingsButton");
2672 }
2673
Michael Jurka5130e402011-10-13 04:55:35 -07002674 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002675 // Provide the same haptic feedback that the system offers for virtual keys.
2676 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002677 }
2678
Adam Cohen61f560d2013-09-30 15:58:20 -07002679 public void performHapticFeedbackOnTouchDown(View v) {
2680 // Provide the same haptic feedback that the system offers for virtual keys.
2681 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2682 }
2683
2684 public View.OnTouchListener getHapticFeedbackTouchListener() {
2685 if (mHapticFeedbackTouchListener == null) {
2686 mHapticFeedbackTouchListener = new View.OnTouchListener() {
2687 @Override
2688 public boolean onTouch(View v, MotionEvent event) {
2689 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2690 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2691 }
2692 return false;
2693 }
2694 };
2695 }
2696 return mHapticFeedbackTouchListener;
2697 }
2698
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002699 public void onClickAppMarketButton(View v) {
Winson Chungd64a6662013-09-30 11:06:59 -07002700 if (!DISABLE_MARKET_BUTTON) {
2701 if (mAppMarketIntent != null) {
2702 startActivitySafely(v, mAppMarketIntent, "app market");
2703 } else {
2704 Log.e(TAG, "Invalid app market intent.");
2705 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002706 }
2707 }
2708
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002709 public void onDragStarted(View view) {}
2710
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002711 /**
2712 * Called when the user stops interacting with the launcher.
2713 * This implies that the user is now on the homescreen and is not doing housekeeping.
2714 */
2715 protected void onInteractionEnd() {}
2716
2717 /**
2718 * Called when the user starts interacting with the launcher.
2719 * The possible interactions are:
2720 * - open all apps
2721 * - reorder an app shortcut, or a widget
2722 * - open the overview mode.
2723 * This is a good time to stop doing things that only make sense
2724 * when the user is on the homescreen and not doing housekeeping.
2725 */
2726 protected void onInteractionBegin() {}
2727
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002728 void startApplicationDetailsActivity(ComponentName componentName) {
2729 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002730 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
2731 Uri.fromParts("package", packageName, null));
Adrian Roos850f9132014-01-13 17:44:52 -08002732 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK |
2733 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung3b1b36b2012-04-24 18:51:14 -07002734 startActivitySafely(null, intent, "startApplicationDetailsActivity");
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002735 }
2736
Michael Jurka1e2f4652013-07-08 18:03:46 -07002737 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002738 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2739 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002740 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002741 // System applications cannot be installed. For now, show a toast explaining that.
2742 // We may give them the option of disabling apps this way.
2743 int messageId = R.string.uninstall_system_app_text;
2744 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002745 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002746 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002747 String packageName = componentName.getPackageName();
2748 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002749 Intent intent = new Intent(
2750 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002751 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2752 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002753 if (user != null) {
2754 user.addToIntent(intent, Intent.EXTRA_USER);
2755 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002756 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002757 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002758 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002759 }
2760
Michael Jurka86a720e2012-05-09 11:23:23 -07002761 boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002762 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002763 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002764 // Only launch using the new animation if the shortcut has not opted out (this is a
2765 // private contract between launcher and may be ignored in the future).
2766 boolean useLaunchAnimation = (v != null) &&
2767 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002768 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2769 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002770
Kenny Guy1317e2d2014-05-08 18:52:50 +01002771 UserHandleCompat user = null;
2772 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2773 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2774 user = userManager.getUserForSerialNumber(serialNumber);
2775 }
2776
2777 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002778 if (useLaunchAnimation) {
Winson Chungc7450e32012-04-17 17:34:08 -07002779 ActivityOptions opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
2780 v.getMeasuredWidth(), v.getMeasuredHeight());
Kenny Guy1317e2d2014-05-08 18:52:50 +01002781 optsBundle = opts.toBundle();
2782 }
Adam Cohen6ea3b112014-06-11 11:38:49 -07002783 if (useLaunchAnimation && Utilities.isLmp()) {
2784 ActivityOptions opts = ActivityOptions.makeCustomAnimation(this, R.anim.task_open_enter, R.anim.no_anim);
2785 optsBundle = opts.toBundle();
2786 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002787
2788 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2789 // Could be launching some bookkeeping activity
2790 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002791 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002792 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002793 launcherApps.startActivityForProfile(intent.getComponent(), user,
2794 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002795 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002796 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002797 } catch (SecurityException e) {
2798 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002799 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002800 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002801 "or use the exported attribute for this activity. "
2802 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002803 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002804 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002805 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002806
Michael Jurka86a720e2012-05-09 11:23:23 -07002807 boolean startActivitySafely(View v, Intent intent, Object tag) {
2808 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002809 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2810 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2811 return false;
2812 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002813 try {
2814 success = startActivity(v, intent, tag);
2815 } catch (ActivityNotFoundException e) {
2816 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2817 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2818 }
2819 return success;
2820 }
2821
Adam Cohen268c4752012-06-06 17:47:33 -07002822 /**
2823 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2824 * in the DragLayer in the exact absolute location of the original FolderIcon.
2825 */
2826 private void copyFolderIconToImage(FolderIcon fi) {
2827 final int width = fi.getMeasuredWidth();
2828 final int height = fi.getMeasuredHeight();
2829
2830 // Lazy load ImageView, Bitmap and Canvas
2831 if (mFolderIconImageView == null) {
2832 mFolderIconImageView = new ImageView(this);
2833 }
2834 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2835 mFolderIconBitmap.getHeight() != height) {
2836 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2837 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2838 }
2839
2840 DragLayer.LayoutParams lp;
2841 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2842 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2843 } else {
2844 lp = new DragLayer.LayoutParams(width, height);
2845 }
2846
Adam Cohen307fe232012-08-16 17:55:58 -07002847 // The layout from which the folder is being opened may be scaled, adjust the starting
2848 // view size by this scale factor.
2849 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002850 lp.customPosition = true;
2851 lp.x = mRectForFolderAnimation.left;
2852 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002853 lp.width = (int) (scale * width);
2854 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002855
2856 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2857 fi.draw(mFolderIconCanvas);
2858 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002859 if (fi.getFolder() != null) {
2860 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2861 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002862 }
Adam Cohen268c4752012-06-06 17:47:33 -07002863 // Just in case this image view is still in the drag layer from a previous animation,
2864 // we remove it and re-add it.
2865 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2866 mDragLayer.removeView(mFolderIconImageView);
2867 }
2868 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002869 if (fi.getFolder() != null) {
2870 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002871 }
Adam Cohen268c4752012-06-06 17:47:33 -07002872 }
2873
Adam Cohen2801caf2011-05-13 20:57:39 -07002874 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002875 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002876 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2877 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2878 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2879
Adam Cohenc51934b2011-07-26 21:07:43 -07002880 FolderInfo info = (FolderInfo) fi.getTag();
2881 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2882 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002883 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2884 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002885 }
2886
Adam Cohen268c4752012-06-06 17:47:33 -07002887 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2888 copyFolderIconToImage(fi);
2889 fi.setVisibility(View.INVISIBLE);
2890
Michael Jurka2ecf9952012-06-18 12:52:28 -07002891 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002892 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002893 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
2894 oa.start();
2895 }
2896
Adam Cohen268c4752012-06-06 17:47:33 -07002897 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002898 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002899 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2900 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2901 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2902
Adam Cohen268c4752012-06-06 17:47:33 -07002903 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002904
Adam Cohen268c4752012-06-06 17:47:33 -07002905 // We remove and re-draw the FolderIcon in-case it has changed
2906 mDragLayer.removeView(mFolderIconImageView);
2907 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07002908 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002909 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002910 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002911 oa.addListener(new AnimatorListenerAdapter() {
2912 @Override
2913 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002914 if (cl != null) {
2915 cl.clearFolderLeaveBehind();
2916 // Remove the ImageView copy of the FolderIcon and make the original visible.
2917 mDragLayer.removeView(mFolderIconImageView);
2918 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002919 }
2920 }
2921 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002922 oa.start();
2923 }
2924
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002925 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002926 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002927 * is animated relative to the specified View. If the View is null, no animation
2928 * is played.
2929 *
2930 * @param folderInfo The FolderInfo describing the folder to open.
2931 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002932 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002933 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07002934 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002935
Adam Cohena9cf38f2011-05-02 15:36:58 -07002936 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002937
Adam Cohen4554ee12011-08-03 16:13:21 -07002938 // Just verify that the folder hasn't already been added to the DragLayer.
2939 // There was a one-off crash where the folder had a parent already.
2940 if (folder.getParent() == null) {
2941 mDragLayer.addView(folder);
2942 mDragController.addDropTarget((DropTarget) folder);
2943 } else {
2944 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2945 folder.getParent() + ").");
2946 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002947 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002948 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07002949
2950 // Notify the accessibility manager that this folder "window" has appeared and occluded
2951 // the workspace items
2952 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
2953 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07002954 }
2955
2956 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08002957 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07002958 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002959 if (folder.isEditingName()) {
2960 folder.dismissEditingName();
2961 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002962 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002963
2964 // Dismiss the folder cling
Winson Chunga6945242014-01-08 14:04:34 -08002965 mLauncherClings.dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002966 }
2967 }
2968
2969 void closeFolder(Folder folder) {
2970 folder.getInfo().opened = false;
2971
2972 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2973 if (parent != null) {
2974 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2975 shrinkAndFadeInFolderIcon(fi);
2976 }
2977 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07002978
2979 // Notify the accessibility manager that this folder "window" has disappeard and no
2980 // longer occludeds the workspace items
2981 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002982 }
2983
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002984 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07002985 if (!isDraggingEnabled()) return false;
2986 if (isWorkspaceLocked()) return false;
2987 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002988
Adam Cohen1697b792013-09-17 19:08:21 -07002989 if (v instanceof Workspace) {
2990 if (!mWorkspace.isInOverviewMode()) {
Adam Cohen93c97562013-09-26 13:48:01 -07002991 if (mWorkspace.enterOverviewMode()) {
2992 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2993 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
2994 return true;
2995 } else {
2996 return false;
2997 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07002998 } else {
2999 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003000 }
Adam Cohen1697b792013-09-17 19:08:21 -07003001 }
3002
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003003 CellLayout.CellInfo longClickCellInfo = null;
3004 View itemUnderLongClick = null;
3005 if (v.getTag() instanceof ItemInfo) {
3006 ItemInfo info = (ItemInfo) v.getTag();
3007 longClickCellInfo = new CellLayout.CellInfo(v, info);;
3008 itemUnderLongClick = longClickCellInfo.cell;
3009 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003010 }
3011
Winson Chung3d503fb2011-07-13 17:25:49 -07003012 // The hotseat touch handling does not go through Workspace, and we always allow long press
3013 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003014 final boolean inHotseat = isHotseatLayout(v);
3015 boolean allowLongPress = inHotseat || mWorkspace.allowLongPress();
Winson Chung3d503fb2011-07-13 17:25:49 -07003016 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003017 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003018 // User long pressed on empty space
3019 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3020 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003021 if (mWorkspace.isInOverviewMode()) {
3022 mWorkspace.startReordering(v);
3023 } else {
3024 mWorkspace.enterOverviewMode();
Adam Cohendedbd962013-07-11 14:21:49 -07003025 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003026 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003027 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3028 mHotseat.getOrderInHotseat(
3029 longClickCellInfo.cellX,
3030 longClickCellInfo.cellY));
3031 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003032 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003033 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003034 }
3035 }
3036 }
3037 return true;
3038 }
3039
Winson Chung3d503fb2011-07-13 17:25:49 -07003040 boolean isHotseatLayout(View layout) {
3041 return mHotseat != null && layout != null &&
3042 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3043 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003044
Winson Chung3d503fb2011-07-13 17:25:49 -07003045 /**
3046 * Returns the CellLayout of the specified container at the specified screen.
3047 */
Adam Cohendcd297f2013-06-18 13:13:40 -07003048 CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003049 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3050 if (mHotseat != null) {
3051 return mHotseat.getLayout();
3052 } else {
3053 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003054 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003055 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -07003056 return (CellLayout) mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003057 }
3058 }
3059
Daniel Sandler843e8602010-06-07 14:59:01 -04003060 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003061 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003062 }
3063
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003064 /**
3065 * Helper method for the cameraZoomIn/cameraZoomOut animations
3066 * @param view The view being animated
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003067 * @param scaleFactor The scale factor used for the zoom
3068 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07003069 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003070 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07003071 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003072 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05003073
Craig Mautner360310b2012-10-26 15:13:08 -07003074 private void setWorkspaceBackground(boolean workspace) {
3075 mLauncherView.setBackground(workspace ?
Michael Jurka496fefb2013-05-06 15:39:11 +02003076 mWorkspaceBackgroundDrawable : null);
Craig Mautner360310b2012-10-26 15:13:08 -07003077 }
3078
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003079 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003080 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3081 int curflags = getWindow().getAttributes().flags
3082 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3083 if (wpflags != curflags) {
3084 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3085 }
Craig Mautner360310b2012-10-26 15:13:08 -07003086 setWorkspaceBackground(visible);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003087 }
3088
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003089 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
3090 if (v instanceof LauncherTransitionable) {
3091 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
3092 }
3093 }
3094
Michael Jurkabed61d22012-02-14 22:51:29 -08003095 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
3096 if (v instanceof LauncherTransitionable) {
3097 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
3098 }
Winson Chung70442722012-02-10 15:43:22 -08003099
3100 // Update the workspace transition step as well
3101 dispatchOnLauncherTransitionStep(v, 0f);
3102 }
3103
3104 private void dispatchOnLauncherTransitionStep(View v, float t) {
3105 if (v instanceof LauncherTransitionable) {
3106 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
3107 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003108 }
3109
3110 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
3111 if (v instanceof LauncherTransitionable) {
3112 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
3113 }
Winson Chung70442722012-02-10 15:43:22 -08003114
3115 // Update the workspace transition step as well
3116 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08003117 }
3118
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003119 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07003120 * Things to test when changing the following seven functions.
3121 * - Home from workspace
3122 * - from center screen
3123 * - from other screens
3124 * - Home from all apps
3125 * - from center screen
3126 * - from other screens
3127 * - Back from all apps
3128 * - from center screen
3129 * - from other screens
3130 * - Launch app from workspace and quit
3131 * - with back
3132 * - with home
3133 * - Launch app from all apps and quit
3134 * - with back
3135 * - with home
3136 * - Go to a screen that's not the default, then all
3137 * apps, and launch and app, and go back
3138 * - with back
3139 * -with home
3140 * - On workspace, long press power and go back
3141 * - with back
3142 * - with home
3143 * - On all apps, long press power and go back
3144 * - with back
3145 * - with home
3146 * - On workspace, power off
3147 * - On all apps, power off
3148 * - Launch an app and turn off the screen while in that app
3149 * - Go back with home key
3150 * - Go back with back key TODO: make this not go to workspace
3151 * - From all apps
3152 * - From workspace
3153 * - Enter and exit car mode (becuase it causes an extra configuration changed)
3154 * - From all apps
3155 * - From the center workspace
3156 * - From another workspace
3157 */
3158
3159 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003160 * Zoom the camera out from the workspace to reveal 'toView'.
3161 * Assumes that the view to show is anchored at either the very top or very bottom
3162 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003163 */
Michael Jurkabed61d22012-02-14 22:51:29 -08003164 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Winson Chungc58497e2013-09-03 17:48:37 -07003165 AppsCustomizePagedView.ContentType contentType = mAppsCustomizeContent.getContentType();
3166 showAppsCustomizeHelper(animated, springLoaded, contentType);
3167 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003168
Winson Chungc58497e2013-09-03 17:48:37 -07003169 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded,
3170 final AppsCustomizePagedView.ContentType contentType) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003171 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003172 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003173 mStateAnimation.cancel();
3174 mStateAnimation = null;
3175 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003176
3177 boolean material = Utilities.isLmp();
3178
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003179 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003180
Winson Chungf0ea4d32011-06-06 14:27:16 -07003181 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
3182 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003183 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeRevealTime);
3184
Winson Chungf0ea4d32011-06-06 14:27:16 -07003185 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08003186 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003187 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07003188 final int startDelay =
3189 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07003190
Michael Jurkab3e22d92011-10-31 15:58:33 -07003191 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003192
Adam Cohen6c5891a2014-07-09 23:53:15 -07003193 Workspace.State workspaceState = contentType == AppsCustomizePagedView.ContentType.Widgets ?
3194 Workspace.State.OVERVIEW_HIDDEN : Workspace.State.NORMAL_HIDDEN;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003195 Animator workspaceAnim =
Adam Cohen6c5891a2014-07-09 23:53:15 -07003196 mWorkspace.getChangeStateAnimation(workspaceState, animated);
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08003197 if (!LauncherAppState.isDisableAllApps()
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08003198 || contentType == AppsCustomizePagedView.ContentType.Widgets) {
3199 // Set the content type for the all apps/widgets space
Winson Chungc58497e2013-09-03 17:48:37 -07003200 mAppsCustomizeTabHost.setContentTypeImmediate(contentType);
3201 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003202
3203 if (animated) {
Adam Cohen6c5891a2014-07-09 23:53:15 -07003204 if (!material) {
3205 toView.setScaleX(scale);
3206 toView.setScaleY(scale);
3207 final LauncherViewPropertyAnimator scaleAnim =
3208 new LauncherViewPropertyAnimator(toView);
3209 scaleAnim.
3210 scaleX(1f).scaleY(1f).
3211 setDuration(duration).
3212 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08003213
Adam Cohen6c5891a2014-07-09 23:53:15 -07003214 toView.setVisibility(View.VISIBLE);
3215 toView.setAlpha(0f);
3216 final ObjectAnimator alphaAnim = LauncherAnimUtils
3217 .ofFloat(toView, "alpha", 0f, 1f)
3218 .setDuration(fadeDuration);
3219 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
3220 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
3221 @Override
3222 public void onAnimationUpdate(ValueAnimator animation) {
3223 if (animation == null) {
3224 throw new RuntimeException("animation is null");
3225 }
3226 float t = (Float) animation.getAnimatedValue();
3227 dispatchOnLauncherTransitionStep(fromView, t);
3228 dispatchOnLauncherTransitionStep(toView, t);
Michael Jurka059798a2012-09-04 09:20:16 -07003229 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003230 });
Adam Cohenf16e5712011-01-13 13:31:45 -08003231
Adam Cohen6c5891a2014-07-09 23:53:15 -07003232 // toView should appear right at the end of the workspace shrink
3233 // animation
3234 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
3235 mStateAnimation.play(scaleAnim).after(startDelay);
3236 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003237
Adam Cohen6c5891a2014-07-09 23:53:15 -07003238 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3239 @Override
3240 public void onAnimationStart(Animator animation) {
3241 // Prepare the position
3242 toView.setTranslationX(0.0f);
3243 toView.setTranslationY(0.0f);
3244 toView.setVisibility(View.VISIBLE);
3245 toView.bringToFront();
Winson Chungadf0c182012-08-23 14:59:07 -07003246 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003247 @Override
3248 public void onAnimationEnd(Animator animation) {
3249 dispatchOnLauncherTransitionEnd(fromView, animated, false);
3250 dispatchOnLauncherTransitionEnd(toView, animated, false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003251
Adam Cohen6c5891a2014-07-09 23:53:15 -07003252 // Hide the search bar
3253 if (mSearchDropTargetBar != null) {
3254 mSearchDropTargetBar.hideSearchBar(false);
3255 }
3256 }
3257 });
3258 } else {
3259 int width = toView.getMeasuredWidth();
3260 int height = toView.getMeasuredHeight();
3261 float revealRadius = (float) Math.sqrt((width * width) / 4 + height * height);
3262
3263 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
3264
3265 AppsCustomizePagedView content = (AppsCustomizePagedView)
3266 toView.findViewById(R.id.apps_customize_pane_content);
3267
3268 View page = content.getPageAt(content.getCurrentPage());
3269 View revealView = content;
3270
3271 float yDrift = height / 2f - 400;
3272
3273 LauncherViewPropertyAnimator panelAlphaAndDrift =
3274 new LauncherViewPropertyAnimator(revealView);
3275 revealView.setTranslationY(yDrift);
3276 revealView.setAlpha(0.3f);
3277 panelAlphaAndDrift.alpha(1)
3278 .translationY(0)
3279 .setDuration(revealDuration)
3280 .setInterpolator(new LogDecelerateInterpolator(100, 0));
3281
3282 mStateAnimation.play(panelAlphaAndDrift);
3283
3284 if (page instanceof CellLayout) {
3285 CellLayout cellLayout = (CellLayout) page;
3286 cellLayout.enableHardwareLayer(true);
3287
3288 View iconsView = cellLayout.getShortcutsAndWidgets();
3289 iconsView.setAlpha(0f);
3290
3291 LauncherViewPropertyAnimator iconsAlpha =
3292 new LauncherViewPropertyAnimator(iconsView);
3293 iconsAlpha.alpha(1f)
3294 .setDuration(revealDuration - 100)
3295 .setInterpolator(new LogDecelerateInterpolator(100, 0));
3296 mStateAnimation.play(iconsAlpha);
3297 }
3298
3299 View pageIndicators = toView.findViewById(R.id.apps_customize_page_indicator);
3300 pageIndicators.setAlpha(0f);
3301 final LauncherViewPropertyAnimator indicatorsAlpha =
3302 new LauncherViewPropertyAnimator(pageIndicators);
3303 indicatorsAlpha.alpha(1f);
3304 indicatorsAlpha.setDuration(revealDuration);
3305 mStateAnimation.play(indicatorsAlpha);
3306
3307 width = revealView.getMeasuredWidth();
3308
Nilesh Agrawal300c1502014-07-22 13:20:54 -07003309 Animator reveal =
Adam Cohen6c5891a2014-07-09 23:53:15 -07003310 ViewAnimationUtils.createCircularReveal(revealView, width / 2,
3311 height / 2 + 100, 0f, revealRadius);
3312 reveal.setDuration(revealDuration);
3313 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
3314
3315 toView.setTranslationX(0);
3316 toView.setTranslationY(0);
3317 toView.setAlpha(1f);
3318 // toView should appear right at the end of the workspace shrink
3319 // animation
3320 mStateAnimation.play(reveal);
3321
3322 reveal.addListener(new AnimatorListenerAdapter() {
3323 @Override
3324 public void onAnimationStart(Animator animation) {
3325 // Prepare the position
3326 toView.bringToFront();
3327 toView.setVisibility(View.VISIBLE);
3328 }
3329 });
3330
3331 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3332 @Override
3333 public void onAnimationEnd(Animator animation) {
3334 dispatchOnLauncherTransitionEnd(fromView, animated, false);
3335 dispatchOnLauncherTransitionEnd(toView, animated, false);
3336
3337 // Hide the search bar
3338 if (mSearchDropTargetBar != null) {
3339 mSearchDropTargetBar.hideSearchBar(false);
3340 }
3341 }
3342 });
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003343 }
Michael Jurka1899a362011-11-03 13:50:45 -07003344
3345 boolean delayAnim = false;
Adam Cohen6c5891a2014-07-09 23:53:15 -07003346 if (workspaceAnim != null) {
3347 mStateAnimation.play(workspaceAnim);
3348 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003349 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
3350 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003351
3352 // If any of the objects being animated haven't been measured/laid out
3353 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08003354 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003355 (mWorkspace.getMeasuredWidth() == 0) ||
3356 (toView.getMeasuredWidth() == 0)) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003357 delayAnim = true;
Michael Jurka1899a362011-11-03 13:50:45 -07003358 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003359
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003360 final AnimatorSet stateAnimation = mStateAnimation;
3361 final Runnable startAnimRunnable = new Runnable() {
3362 public void run() {
3363 // Check that mStateAnimation hasn't changed while
3364 // we waited for a layout/draw pass
3365 if (mStateAnimation != stateAnimation)
3366 return;
3367 setPivotsForZoom(toView, scale);
3368 dispatchOnLauncherTransitionStart(fromView, animated, false);
3369 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003370 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003371 }
3372 };
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003373 if (delayAnim) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003374 final ViewTreeObserver observer = toView.getViewTreeObserver();
3375 observer.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
3376 public void onGlobalLayout() {
3377 startAnimRunnable.run();
3378 toView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
3379 }
3380 });
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003381 } else {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003382 startAnimRunnable.run();
Michael Jurka1899a362011-11-03 13:50:45 -07003383 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003384 } else {
3385 toView.setTranslationX(0.0f);
3386 toView.setTranslationY(0.0f);
3387 toView.setScaleX(1.0f);
3388 toView.setScaleY(1.0f);
3389 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07003390 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07003391
Daniel Sandlere4f98912013-06-25 15:13:26 -04003392 if (!springLoaded && !LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungc7d2b602012-05-16 17:02:20 -07003393 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07003394 if (mSearchDropTargetBar != null) {
3395 mSearchDropTargetBar.hideSearchBar(false);
3396 }
Michael Jurkaabded662011-03-04 12:06:57 -08003397 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003398 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003399 dispatchOnLauncherTransitionStart(fromView, animated, false);
3400 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003401 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003402 dispatchOnLauncherTransitionStart(toView, animated, false);
3403 dispatchOnLauncherTransitionEnd(toView, animated, false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003404 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003405 }
3406
3407 /**
3408 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07003409 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003410 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003411 */
Adam Cohened307df2013-10-02 09:37:31 -07003412 private void hideAppsCustomizeHelper(Workspace.State toState, final boolean animated,
Adam Cohened66b2b2012-01-23 17:28:51 -08003413 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08003414
Michael Jurkab3e22d92011-10-31 15:58:33 -07003415 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003416 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003417 mStateAnimation.cancel();
3418 mStateAnimation = null;
3419 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003420
3421 boolean material = Utilities.isLmp();
3422
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003423 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003424
Winson Chungf0ea4d32011-06-06 14:27:16 -07003425 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003426 final int fadeOutDuration = res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
3427 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeRevealTime);
3428
Winson Chungf0ea4d32011-06-06 14:27:16 -07003429 final float scaleFactor = (float)
3430 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
3431 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08003432 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003433 Animator workspaceAnim = null;
Adam Cohened307df2013-10-02 09:37:31 -07003434 if (toState == Workspace.State.NORMAL) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003435 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
3436 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohened307df2013-10-02 09:37:31 -07003437 toState, animated, stagger, -1);
3438 } else if (toState == Workspace.State.SPRING_LOADED ||
3439 toState == Workspace.State.OVERVIEW) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003440 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohened307df2013-10-02 09:37:31 -07003441 toState, animated);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003442 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003443
Michael Jurkab3e22d92011-10-31 15:58:33 -07003444 setPivotsForZoom(fromView, scaleFactor);
Winson Chung4afe9b32011-07-27 17:46:20 -07003445 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003446 if (animated) {
Adam Cohen6c5891a2014-07-09 23:53:15 -07003447 if (!material) {
3448 final LauncherViewPropertyAnimator scaleAnim =
3449 new LauncherViewPropertyAnimator(fromView);
3450 scaleAnim.
3451 scaleX(scaleFactor).scaleY(scaleFactor).
3452 setDuration(duration).
3453 setInterpolator(new Workspace.ZoomInInterpolator());
Michael Jurka159b4cc2012-01-17 03:00:35 -08003454
Adam Cohen6c5891a2014-07-09 23:53:15 -07003455 final ObjectAnimator alphaAnim = LauncherAnimUtils
3456 .ofFloat(fromView, "alpha", 1f, 0f)
3457 .setDuration(fadeOutDuration);
3458 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
3459 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
3460 @Override
3461 public void onAnimationUpdate(ValueAnimator animation) {
3462 float t = 1f - (Float) animation.getAnimatedValue();
3463 dispatchOnLauncherTransitionStep(fromView, t);
3464 dispatchOnLauncherTransitionStep(toView, t);
3465 }
3466 });
3467
3468 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
3469
3470 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
3471 dispatchOnLauncherTransitionPrepare(toView, animated, true);
3472 mAppsCustomizeContent.stopScrolling();
3473
3474 mStateAnimation.playTogether(scaleAnim, alphaAnim);
3475 } else {
3476 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
3477
3478 int width = fromView.getMeasuredWidth();
3479 int height = fromView.getMeasuredHeight();
3480 float revealRadius = (float) Math.sqrt((width * width) / 4 + height * height);
3481
3482 AppsCustomizePagedView content = (AppsCustomizePagedView)
3483 fromView.findViewById(R.id.apps_customize_pane_content);
3484
3485 final View page = content.getPageAt(content.getNextPage());
3486 View revealView = page;
3487
3488 float yDrift = height / 2f - 400;
3489
3490 LauncherViewPropertyAnimator panelAlphaAndDrift =
3491 new LauncherViewPropertyAnimator(revealView);
3492 revealView.setTranslationY(0);
3493 revealView.setAlpha(1);
3494 panelAlphaAndDrift.alpha(0)
3495 .translationY(yDrift)
3496 .setDuration(revealDuration)
3497 .setInterpolator(new LogDecelerateInterpolator(100, 0));
3498
3499 mStateAnimation.play(panelAlphaAndDrift);
3500
3501 if (page instanceof CellLayout) {
3502 final CellLayout cellLayout = (CellLayout) page;
3503 cellLayout.enableHardwareLayer(true);
3504
3505 final View iconsView = cellLayout.getShortcutsAndWidgets();
3506
3507 LauncherViewPropertyAnimator iconsAlpha =
3508 new LauncherViewPropertyAnimator(iconsView);
3509 iconsAlpha.alpha(0f)
3510 .setDuration(revealDuration - 100)
3511 .setInterpolator(new LogDecelerateInterpolator(100, 0));
3512
3513 mStateAnimation.play(iconsAlpha);
3514
3515 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3516 @Override
3517 public void onAnimationEnd(Animator animation) {
3518 cellLayout.setTranslationY(0);
3519 cellLayout.setAlpha(1f);
3520 iconsView.setAlpha(1f);
3521 }
3522 });
Winson Chung70442722012-02-10 15:43:22 -08003523 }
Michael Jurka159b4cc2012-01-17 03:00:35 -08003524
Adam Cohen6c5891a2014-07-09 23:53:15 -07003525 View pageIndicators = fromView.findViewById(R.id.apps_customize_page_indicator);
3526 final LauncherViewPropertyAnimator indicatorsAlpha =
3527 new LauncherViewPropertyAnimator(pageIndicators);
3528 indicatorsAlpha.alpha(0f);
3529 indicatorsAlpha.setDuration(revealDuration);
3530 indicatorsAlpha.setInterpolator(new DecelerateInterpolator(1.5f));
3531 mStateAnimation.play(indicatorsAlpha);
Michael Jurkabed61d22012-02-14 22:51:29 -08003532
Adam Cohen6c5891a2014-07-09 23:53:15 -07003533 width = revealView.getMeasuredWidth();
3534
Nilesh Agrawal300c1502014-07-22 13:20:54 -07003535 Animator reveal =
Adam Cohen6c5891a2014-07-09 23:53:15 -07003536 ViewAnimationUtils.createCircularReveal(revealView, width / 2,
3537 height / 2 + 100, revealRadius, 0f);
3538 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
3539 reveal.setDuration(revealDuration);
3540
3541 reveal.addListener(new AnimatorListenerAdapter() {
3542 @Override
3543 public void onAnimationEnd(Animator animation) {
3544 fromView.setVisibility(View.GONE);
3545 }
3546 });
3547
3548 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
3549 dispatchOnLauncherTransitionPrepare(toView, animated, true);
3550 mAppsCustomizeContent.stopScrolling();
3551
3552 mStateAnimation.play(reveal);
3553 }
3554 if (workspaceAnim != null) {
3555 mStateAnimation.play(workspaceAnim);
3556 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003557
3558 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07003559 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08003560 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003561 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08003562 dispatchOnLauncherTransitionEnd(fromView, animated, true);
3563 dispatchOnLauncherTransitionEnd(toView, animated, true);
Adam Cohened66b2b2012-01-23 17:28:51 -08003564 if (onCompleteRunnable != null) {
3565 onCompleteRunnable.run();
3566 }
Chet Haasebc2f0822012-10-26 17:59:53 -07003567 mAppsCustomizeContent.updateCurrentPageScroll();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003568 }
3569 });
3570
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003571 dispatchOnLauncherTransitionStart(fromView, animated, true);
3572 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003573 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003574 } else {
3575 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003576 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003577 dispatchOnLauncherTransitionStart(fromView, animated, true);
3578 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003579 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003580 dispatchOnLauncherTransitionStart(toView, animated, true);
3581 dispatchOnLauncherTransitionEnd(toView, animated, true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003582 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003583 }
3584
Michael Jurkae326f182011-11-21 14:05:46 -08003585 @Override
3586 public void onTrimMemory(int level) {
3587 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07003588 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08003589 mAppsCustomizeTabHost.onTrimMemory();
3590 }
3591 }
3592
Adam Cohened307df2013-10-02 09:37:31 -07003593 protected void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08003594 showWorkspace(animated, null);
3595 }
3596
Adam Cohened307df2013-10-02 09:37:31 -07003597 protected void showWorkspace() {
3598 showWorkspace(true);
3599 }
3600
Adam Cohened66b2b2012-01-23 17:28:51 -08003601 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Adam Cohene25c5d12014-06-18 10:34:58 -07003602 if (mState != State.WORKSPACE || mWorkspace.getState() != Workspace.State.NORMAL) {
Winson Chung2d75f122013-09-23 16:53:31 -07003603 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003604 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened307df2013-10-02 09:37:31 -07003605 hideAppsCustomizeHelper(Workspace.State.NORMAL, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003606
Winson Chungc7d2b602012-05-16 17:02:20 -07003607 // Show the search bar (only animate if we were showing the drop target bar in spring
3608 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003609 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003610 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003611 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003612
Michael Jurkab3e22d92011-10-31 15:58:33 -07003613 // Set focus to the AppsCustomize button
3614 if (mAllAppsButton != null) {
3615 mAllAppsButton.requestFocus();
3616 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003617 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003618
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003619 // Change the state *after* we've called all the transition code
3620 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003621
Winson Chung5fb63472011-02-02 17:03:37 -08003622 // Resume the auto-advance of widgets
3623 mUserPresent = true;
3624 updateRunning();
3625
alanv1d4fde62012-10-17 13:15:47 -07003626 // Send an accessibility event to announce the context change
3627 getWindow().getDecorView()
3628 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003629
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003630 onWorkspaceShown(animated);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003631 }
3632
Adam Cohened307df2013-10-02 09:37:31 -07003633 void showOverviewMode(boolean animated) {
3634 mWorkspace.setVisibility(View.VISIBLE);
3635 hideAppsCustomizeHelper(Workspace.State.OVERVIEW, animated, false, null);
3636 mState = State.WORKSPACE;
3637 onWorkspaceShown(animated);
3638 }
3639
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003640 public void onWorkspaceShown(boolean animated) {
Joe Onorato00acb122009-08-04 16:04:30 -04003641 }
3642
Winson Chung82963d52013-10-09 11:20:57 -07003643 void showAllApps(boolean animated, AppsCustomizePagedView.ContentType contentType,
3644 boolean resetPageToZero) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003645 if (mState != State.WORKSPACE) return;
3646
Winson Chung82963d52013-10-09 11:20:57 -07003647 if (resetPageToZero) {
3648 mAppsCustomizeTabHost.reset();
3649 }
Winson Chungc58497e2013-09-03 17:48:37 -07003650 showAppsCustomizeHelper(animated, false, contentType);
Adam Cohendcc5e712014-06-23 15:38:55 -04003651 mAppsCustomizeTabHost.post(new Runnable() {
3652 @Override
3653 public void run() {
3654 // We post this in-case the all apps view isn't yet constructed.
3655 mAppsCustomizeTabHost.requestFocus();
3656 }
3657 });
Michael Jurkab3e22d92011-10-31 15:58:33 -07003658
Michael Jurkab3e22d92011-10-31 15:58:33 -07003659 // Change the state *after* we've called all the transition code
3660 mState = State.APPS_CUSTOMIZE;
3661
3662 // Pause the auto-advance of widgets until we are out of AllApps
3663 mUserPresent = false;
3664 updateRunning();
3665 closeFolder();
3666
3667 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003668 getWindow().getDecorView()
3669 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003670 }
3671
Adam Cohen7777d962011-08-18 18:58:38 -07003672 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003673 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07003674 hideAppsCustomizeHelper(Workspace.State.SPRING_LOADED, true, true, null);
Winson Chungc07918d2011-07-01 15:35:26 -07003675 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07003676 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003677 }
Adam Cohen7777d962011-08-18 18:58:38 -07003678
Adam Cohenad4e15c2013-10-17 16:21:35 -07003679 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003680 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07003681 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
3682
Winson Chunge7a03942011-08-05 15:05:12 -07003683 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003684 @Override
3685 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003686 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003687 // Before we show workspace, hide all apps again because
3688 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3689 // clean up our state transition functions
3690 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003691 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003692 } else {
3693 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003694 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003695 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003696 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003697 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003698
Michael Jurkad3ef3062010-11-23 16:23:58 -08003699 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07003700 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003701 final boolean animated = true;
3702 final boolean springLoaded = true;
3703 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07003704 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07003705 }
3706 // Otherwise, we are not in spring loaded mode, so don't do anything.
3707 }
3708
Michael Jurkab3e22d92011-10-31 15:58:33 -07003709 void lockAllApps() {
3710 // TODO
3711 }
3712
3713 void unlockAllApps() {
3714 // TODO
3715 }
3716
Winson Chungf0ea4d32011-06-06 14:27:16 -07003717 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003718 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003719 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003720 void showHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003721 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003722 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003723 if (mHotseat.getAlpha() != 1f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003724 int duration = 0;
3725 if (mSearchDropTargetBar != null) {
3726 duration = mSearchDropTargetBar.getTransitionInDuration();
3727 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003728 mHotseat.animate().alpha(1f).setDuration(duration);
3729 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003730 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003731 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003732 }
3733 }
3734 }
3735
3736 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003737 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003738 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003739 void hideHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003740 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003741 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003742 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003743 int duration = 0;
3744 if (mSearchDropTargetBar != null) {
3745 duration = mSearchDropTargetBar.getTransitionOutDuration();
3746 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003747 mHotseat.animate().alpha(0f).setDuration(duration);
3748 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003749 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003750 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003751 }
Winson Chungb26f3d62011-06-02 10:49:29 -07003752 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003753 }
3754
Patrick Dubroy5f445422011-02-18 14:35:21 -08003755 /**
3756 * Add an item from all apps or customize onto the given workspace screen.
3757 * If layout is null, add to the current screen.
3758 */
3759 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003760 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07003761 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07003762 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003763 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003764
Winson Chungdff8ebb2011-09-08 17:25:31 -07003765 /** Maps the current orientation to an index for referencing orientation correct global icons */
3766 private int getCurrentOrientationIndexForGlobalIcons() {
3767 // default - 0, landscape - 1
3768 switch (getResources().getConfiguration().orientation) {
3769 case Configuration.ORIENTATION_LANDSCAPE:
3770 return 1;
3771 default:
3772 return 0;
3773 }
3774 }
3775
Michael Jurkaae65ee32012-04-30 11:45:54 -07003776 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07003777 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003778 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07003779 // Look for the toolbar icon specified in the activity meta-data
3780 Bundle metaData = packageManager.getActivityInfo(
3781 activityName, PackageManager.GET_META_DATA).metaData;
3782 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07003783 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003784 if (iconResId != 0) {
3785 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003786 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003787 }
3788 }
3789 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07003790 // This can happen if the activity defines an invalid drawable
3791 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
3792 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01003793 } catch (Resources.NotFoundException nfe) {
3794 // This can happen if the activity defines an invalid drawable
3795 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
3796 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003797 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003798 return null;
3799 }
3800
3801 // if successful in getting icon, return it; otherwise, set button to use default drawable
3802 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003803 int buttonId, ComponentName activityName, int fallbackDrawableId,
3804 String toolbarResourceName) {
3805 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07003806 Resources r = getResources();
3807 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3808 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003809
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003810 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003811 // If we were unable to find the icon via the meta-data, use a generic one
3812 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07003813 toolbarIcon = r.getDrawable(fallbackDrawableId);
3814 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003815 if (button != null) {
3816 button.setCompoundDrawables(toolbarIcon, null, null, null);
3817 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003818 return null;
3819 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07003820 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003821 if (button != null) {
3822 button.setCompoundDrawables(toolbarIcon, null, null, null);
3823 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003824 return toolbarIcon.getConstantState();
3825 }
3826 }
3827
3828 // if successful in getting icon, return it; otherwise, set button to use default drawable
3829 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003830 int buttonId, ComponentName activityName, int fallbackDrawableId,
3831 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003832 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07003833 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003834
Michael Jurka19e0fc52011-07-22 18:00:21 -07003835 if (button != null) {
3836 // If we were unable to find the icon via the meta-data, use a
3837 // generic one
3838 if (toolbarIcon == null) {
3839 button.setImageResource(fallbackDrawableId);
3840 } else {
3841 button.setImageDrawable(toolbarIcon);
3842 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003843 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003844
3845 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3846
Michael Jurka0423dcf2010-10-05 14:56:18 -07003847 }
3848
Winson Chung1b884092012-06-08 17:13:02 -07003849 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003850 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003851 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003852 }
3853
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003854 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003855 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003856 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003857 }
3858
Winson Chungbb185bd2011-11-21 12:31:42 -08003859 private void invalidatePressedFocusedStates(View container, View button) {
3860 if (container instanceof HolographicLinearLayout) {
3861 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3862 layout.invalidatePressedFocusedStates();
3863 } else if (button instanceof HolographicImageView) {
3864 HolographicImageView view = (HolographicImageView) button;
3865 view.invalidatePressedFocusedStates();
3866 }
3867 }
3868
Cristina Stancu476493b2013-08-07 17:20:14 +01003869 public View getQsbBar() {
Adam Cohen24ce0b32014-01-14 16:18:14 -08003870 if (mQsb == null) {
3871 mQsb = mInflater.inflate(R.layout.qsb, mSearchDropTargetBar, false);
3872 mSearchDropTargetBar.addView(mQsb);
Cristina Stancu476493b2013-08-07 17:20:14 +01003873 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003874 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003875 }
3876
3877 protected boolean updateGlobalSearchIcon() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003878 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003879 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003880 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003881 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003882
Winson Chung1cad91e2011-05-25 17:41:01 -07003883 final SearchManager searchManager =
3884 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3885 ComponentName activityName = searchManager.getGlobalSearchActivity();
3886 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003887 int coi = getCurrentOrientationIndexForGlobalIcons();
3888 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003889 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3890 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3891 if (sGlobalSearchIcon[coi] == null) {
3892 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3893 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3894 TOOLBAR_ICON_METADATA_NAME);
3895 }
3896
Winson Chungc51db6a2011-10-05 11:44:49 -07003897 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3898 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003899 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003900 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003901 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003902 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003903 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3904 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04003905 if (searchButton != null) searchButton.setVisibility(View.GONE);
3906 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003907 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003908 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003909 }
3910 }
3911
Cristina Stancu476493b2013-08-07 17:20:14 +01003912 protected void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003913 final View searchButtonContainer = findViewById(R.id.search_button_container);
3914 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003915 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003916 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003917 }
3918
Cristina Stancu476493b2013-08-07 17:20:14 +01003919 protected boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07003920 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003921 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003922
Winson Chungc51db6a2011-10-05 11:44:49 -07003923 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003924 final SearchManager searchManager =
3925 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3926 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3927
3928 ComponentName activityName = null;
3929 if (globalSearchActivity != null) {
3930 // Check if the global search activity handles voice search
3931 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3932 intent.setPackage(globalSearchActivity.getPackageName());
3933 activityName = intent.resolveActivity(getPackageManager());
3934 }
3935
3936 if (activityName == null) {
3937 // Fallback: check if an activity other than the global search activity
3938 // resolves this
3939 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3940 activityName = intent.resolveActivity(getPackageManager());
3941 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003942 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003943 int coi = getCurrentOrientationIndexForGlobalIcons();
3944 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003945 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3946 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3947 if (sVoiceSearchIcon[coi] == null) {
3948 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3949 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3950 TOOLBAR_ICON_METADATA_NAME);
3951 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003952 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003953 voiceButton.setVisibility(View.VISIBLE);
Winson Chung5841efa2013-09-30 18:06:44 -07003954 updateVoiceButtonProxyVisible(false);
Winson Chungbb185bd2011-11-21 12:31:42 -08003955 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003956 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003957 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07003958 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04003959 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003960 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003961 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003962 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003963 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003964
Cristina Stancu476493b2013-08-07 17:20:14 +01003965 protected void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003966 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3967 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003968 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003969 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003970 }
3971
Winson Chung5841efa2013-09-30 18:06:44 -07003972 public void updateVoiceButtonProxyVisible(boolean forceDisableVoiceButtonProxy) {
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003973 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
3974 if (voiceButtonProxy != null) {
Winson Chung5841efa2013-09-30 18:06:44 -07003975 boolean visible = !forceDisableVoiceButtonProxy &&
3976 mWorkspace.shouldVoiceButtonProxyBeVisible();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003977 voiceButtonProxy.setVisibility(visible ? View.VISIBLE : View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003978 voiceButtonProxy.bringToFront();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003979 }
3980 }
Winson Chung5841efa2013-09-30 18:06:44 -07003981
3982 /**
3983 * This is an overrid eot disable the voice button proxy. If disabled is true, then the voice button proxy
3984 * will be hidden regardless of what shouldVoiceButtonProxyBeVisible() returns.
3985 */
3986 public void disableVoiceButtonProxy(boolean disabled) {
3987 updateVoiceButtonProxyVisible(disabled);
3988 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003989 /**
Winson Chungeb66b142011-06-16 13:14:22 -07003990 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003991 */
3992 private void updateAppMarketIcon() {
Winson Chungd64a6662013-09-30 11:06:59 -07003993 if (!DISABLE_MARKET_BUTTON) {
3994 final View marketButton = findViewById(R.id.market_button);
3995 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3996 // Find the app market activity by resolving an intent.
3997 // (If multiple app markets are installed, it will return the ResolverActivity.)
3998 ComponentName activityName = intent.resolveActivity(getPackageManager());
3999 if (activityName != null) {
4000 int coi = getCurrentOrientationIndexForGlobalIcons();
4001 mAppMarketIntent = intent;
4002 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
4003 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
4004 TOOLBAR_ICON_METADATA_NAME);
4005 marketButton.setVisibility(View.VISIBLE);
4006 } else {
4007 // We should hide and disable the view so that we don't try and restore the visibility
4008 // of it when we swap between drag & normal states from IconDropTarget subclasses.
4009 marketButton.setVisibility(View.GONE);
4010 marketButton.setEnabled(false);
4011 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07004012 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07004013 }
4014
Michael Jurkae7bf83b2010-12-14 18:02:21 -08004015 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chungd64a6662013-09-30 11:06:59 -07004016 if (!DISABLE_MARKET_BUTTON) {
4017 // Ensure that the new drawable we are creating has the approprate toolbar icon bounds
4018 Resources r = getResources();
4019 Drawable marketIconDrawable = d.newDrawable(r);
4020 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
4021 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
4022 marketIconDrawable.setBounds(0, 0, w, h);
Winson Chung1b884092012-06-08 17:13:02 -07004023
Winson Chungd64a6662013-09-30 11:06:59 -07004024 updateTextButtonWithDrawable(R.id.market_button, marketIconDrawable);
4025 }
Michael Jurka4ef207b2010-11-29 17:05:45 -08004026 }
4027
Michael Jurkad7c28052012-04-27 15:43:36 -07004028 @Override
4029 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07004030 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07004031 final List<CharSequence> text = event.getText();
4032 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07004033 // Populate event with a fake title based on the current state.
4034 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohen6c5891a2014-07-09 23:53:15 -07004035 text.add(mAppsCustomizeTabHost.getContentTag());
alanv1d4fde62012-10-17 13:15:47 -07004036 } else {
4037 text.add(getString(R.string.all_apps_home_button_label));
4038 }
Michael Jurkad7c28052012-04-27 15:43:36 -07004039 return result;
4040 }
4041
Patrick Dubroyceae05d2010-08-30 10:40:53 -07004042 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07004043 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004044 */
4045 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
4046 @Override
4047 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004048 closeSystemDialogs();
4049 }
4050 }
4051
4052 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08004053 * Receives notifications whenever the appwidgets are reset.
4054 */
4055 private class AppWidgetResetObserver extends ContentObserver {
4056 public AppWidgetResetObserver() {
4057 super(new Handler());
4058 }
4059
4060 @Override
4061 public void onChange(boolean selfChange) {
4062 onAppWidgetReset();
4063 }
4064 }
4065
4066 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07004067 * If the activity is currently paused, signal that we need to run the passed Runnable
4068 * in onResume.
4069 *
4070 * This needs to be called from incoming places where resources might have been loaded
4071 * while we are paused. That is becaues the Configuration might be wrong
4072 * when we're not running, and if it comes back to what it was when we
4073 * were paused, we are not restarted.
4074 *
4075 * Implementation of the method from LauncherModel.Callbacks.
4076 *
4077 * @return true if we are currently paused. The caller might be able to
4078 * skip some work in that case since we will come back again.
4079 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004080 private boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004081 if (mPaused) {
4082 Log.i(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02004083 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07004084 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004085 }
4086 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07004087 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07004088 return true;
4089 } else {
4090 return false;
4091 }
4092 }
4093
Michael Jurkac402cd92013-05-20 15:49:32 +02004094 private boolean waitUntilResume(Runnable run) {
4095 return waitUntilResume(run, false);
4096 }
4097
Michael Jurka1e2f4652013-07-08 18:03:46 -07004098 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02004099 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07004100 }
4101
Michael Jurka7607c2f2013-04-03 14:33:19 -07004102 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004103 * If the activity is currently paused, signal that we need to re-run the loader
4104 * in onResume.
4105 *
4106 * This needs to be called from incoming places where resources might have been loaded
4107 * while we are paused. That is becaues the Configuration might be wrong
4108 * when we're not running, and if it comes back to what it was when we
4109 * were paused, we are not restarted.
4110 *
4111 * Implementation of the method from LauncherModel.Callbacks.
4112 *
4113 * @return true if we are currently paused. The caller might be able to
4114 * skip some work in that case since we will come back again.
4115 */
4116 public boolean setLoadOnResume() {
4117 if (mPaused) {
4118 Log.i(TAG, "setLoadOnResume");
4119 mOnResumeNeedsLoad = true;
4120 return true;
4121 } else {
4122 return false;
4123 }
4124 }
4125
4126 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004127 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004128 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04004129 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07004130 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07004131 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07004132 } else {
4133 return SCREEN_COUNT / 2;
4134 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004135 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07004136
Joe Onorato9c1289c2009-08-17 11:03:03 -04004137 /**
4138 * Refreshes the shortcuts shown on the workspace.
4139 *
4140 * Implementation of the method from LauncherModel.Callbacks.
4141 */
4142 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004143 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08004144
Michael Jurka7607c2f2013-04-03 14:33:19 -07004145 // If we're starting binding all over again, clear any bind calls we'd postponed in
4146 // the past (see waitUntilResume) -- we don't need them since we're starting binding
4147 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07004148 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07004149
Winson Chungd64d1762013-08-20 14:37:16 -07004150 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07004151 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07004152 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07004153
Michael Jurka05bf644e2011-11-30 20:28:53 -08004154 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07004155 if (mHotseat != null) {
4156 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004157 }
4158 }
4159
Adam Cohendcd297f2013-06-18 13:13:40 -07004160 @Override
4161 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07004162 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07004163
Adam Cohen5084cba2013-09-03 12:01:16 -07004164 // If there are no screens, we need to have an empty screen
4165 if (orderedScreenIds.size() == 0) {
4166 mWorkspace.addExtraEmptyScreen();
4167 }
Winson Chung0e6a7132013-08-23 12:55:10 -07004168
4169 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06004170 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05004171 if (hasCustomContentToLeft()) {
4172 mWorkspace.createCustomContentContainer();
4173 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07004174 }
Winson Chung64359a52013-07-08 17:17:08 -07004175 }
4176
4177 @Override
4178 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Winson Chunga90303b2013-11-15 13:05:06 -08004179 // Log to disk
4180 Launcher.addDumpLog(TAG, "11683562 - bindAddScreens()", true);
4181 Launcher.addDumpLog(TAG, "11683562 - orderedScreenIds: " +
4182 TextUtils.join(", ", orderedScreenIds), true);
Adam Cohendcd297f2013-06-18 13:13:40 -07004183 int count = orderedScreenIds.size();
4184 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07004185 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07004186 }
Adam Cohendcd297f2013-06-18 13:13:40 -07004187 }
4188
Adam Cohen39a06042013-07-19 14:30:12 -07004189 private boolean shouldShowWeightWatcher() {
4190 String spKey = LauncherAppState.getSharedPreferencesKey();
4191 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07004192 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07004193
4194 return show;
4195 }
4196
4197 private void toggleShowWeightWatcher() {
4198 String spKey = LauncherAppState.getSharedPreferencesKey();
4199 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
4200 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
4201
4202 show = !show;
4203
4204 SharedPreferences.Editor editor = sp.edit();
4205 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
4206 editor.commit();
4207
4208 if (mWeightWatcher != null) {
4209 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
4210 }
4211 }
4212
Winson Chungd64d1762013-08-20 14:37:16 -07004213 public void bindAppsAdded(final ArrayList<Long> newScreens,
4214 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07004215 final ArrayList<ItemInfo> addAnimated,
4216 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004217 Runnable r = new Runnable() {
4218 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07004219 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07004220 }
4221 };
4222 if (waitUntilResume(r)) {
4223 return;
4224 }
4225
Winson Chungd64d1762013-08-20 14:37:16 -07004226 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08004227 if (newScreens != null) {
4228 bindAddScreens(newScreens);
4229 }
Winson Chungd64d1762013-08-20 14:37:16 -07004230
4231 // We add the items without animation on non-visible pages, and with
4232 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08004233 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004234 bindItems(addNotAnimated, 0,
4235 addNotAnimated.size(), false);
4236 }
Adam Cohen76a47a12014-02-05 11:47:43 -08004237 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004238 bindItems(addAnimated, 0,
4239 addAnimated.size(), true);
4240 }
Winson Chungc58497e2013-09-03 17:48:37 -07004241
Winson Chung87412982013-10-03 18:34:14 -07004242 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07004243 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07004244
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004245 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004246 addedApps != null && mAppsCustomizeContent != null) {
4247 mAppsCustomizeContent.addApps(addedApps);
4248 }
Winson Chungd64d1762013-08-20 14:37:16 -07004249 }
4250
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004251 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004252 * Bind the items start-end from the list.
4253 *
4254 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004255 */
Winson Chung64359a52013-07-08 17:17:08 -07004256 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
4257 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07004258 Runnable r = new Runnable() {
4259 public void run() {
4260 bindItems(shortcuts, start, end, forceAnimateIcons);
4261 }
4262 };
4263 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004264 return;
4265 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004266
Winson Chungf0c6ae02012-03-21 16:10:31 -07004267 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07004268 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
4269 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07004270 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004271 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07004272 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004273 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04004274 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07004275
4276 // Short circuit if we are loading dock items for a configuration which has no dock
4277 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
4278 mHotseat == null) {
4279 continue;
4280 }
4281
Joe Onorato9c1289c2009-08-17 11:03:03 -04004282 switch (item.itemType) {
4283 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
4284 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07004285 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004286 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07004287
Winson Chung64359a52013-07-08 17:17:08 -07004288 /*
4289 * TODO: FIX collision case
4290 */
Winson Chungce376632013-07-11 16:12:41 -07004291 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
4292 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
4293 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07004294 View v = cl.getChildAt(item.cellX, item.cellY);
4295 Object tag = v.getTag();
4296 String desc = "Collision while binding workspace item: " + item
4297 + ". Collides with " + tag;
4298 if (LauncherAppState.isDogfoodBuild()) {
4299 throw (new RuntimeException(desc));
4300 } else {
4301 Log.d(TAG, desc);
4302 }
Winson Chungce376632013-07-11 16:12:41 -07004303 }
Winson Chung64359a52013-07-08 17:17:08 -07004304 }
4305
Adam Cohendcd297f2013-06-18 13:13:40 -07004306 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
4307 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07004308 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07004309 // Animate all the applications up now
4310 shortcut.setAlpha(0f);
4311 shortcut.setScaleX(0f);
4312 shortcut.setScaleY(0f);
4313 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07004314 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004315 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004316 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07004317 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07004318 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07004319 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07004320 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07004321 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
4322 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004323 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07004324 default:
4325 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04004326 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004327 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004328
Winson Chung997a9232013-07-24 15:33:46 -07004329 if (animateIcons) {
4330 // Animate to the correct page
4331 if (newShortcutsScreenId > -1) {
4332 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07004333 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07004334 final Runnable startBounceAnimRunnable = new Runnable() {
4335 public void run() {
4336 anim.playTogether(bounceAnims);
4337 anim.start();
4338 }
4339 };
Winson Chung997a9232013-07-24 15:33:46 -07004340 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07004341 // We post the animation slightly delayed to prevent slowdowns
4342 // when we are loading right after we return to launcher.
4343 mWorkspace.postDelayed(new Runnable() {
4344 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00004345 if (mWorkspace != null) {
4346 mWorkspace.snapToPage(newScreenIndex);
4347 mWorkspace.postDelayed(startBounceAnimRunnable,
4348 NEW_APPS_ANIMATION_DELAY);
4349 }
Winson Chung94d67682013-09-25 16:29:40 -07004350 }
4351 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07004352 } else {
4353 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07004354 }
4355 }
Winson Chung64359a52013-07-08 17:17:08 -07004356 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004357 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004358 }
4359
Joe Onorato9c1289c2009-08-17 11:03:03 -04004360 /**
4361 * Implementation of the method from LauncherModel.Callbacks.
4362 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004363 public void bindFolders(final HashMap<Long, FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07004364 Runnable r = new Runnable() {
4365 public void run() {
4366 bindFolders(folders);
4367 }
4368 };
4369 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004370 return;
4371 }
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004372 sFolders.clear();
4373 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004374 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004375
4376 /**
4377 * Add the views for a widget to the workspace.
4378 *
4379 * Implementation of the method from LauncherModel.Callbacks.
4380 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004381 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004382 Runnable r = new Runnable() {
4383 public void run() {
4384 bindAppWidget(item);
4385 }
4386 };
4387 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004388 return;
4389 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004390
Daniel Sandler843e8602010-06-07 14:59:01 -04004391 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4392 if (DEBUG_WIDGETS) {
4393 Log.d(TAG, "bindAppWidget: " + item);
4394 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004395 final Workspace workspace = mWorkspace;
4396
Sunny Goyal651077b2014-06-30 14:15:31 -07004397 final AppWidgetProviderInfo appWidgetInfo;
4398 if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
4399 final int appWidgetId = item.appWidgetId;
4400 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4401 if (DEBUG_WIDGETS) {
4402 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
4403 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004404
Sunny Goyal651077b2014-06-30 14:15:31 -07004405 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
4406 } else {
4407 appWidgetInfo = null;
4408 item.hostView = new LauncherAppWidgetHostView(this, false);
4409 item.hostView.updateAppWidget(null);
4410 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004411
Joe Onorato9c1289c2009-08-17 11:03:03 -04004412 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004413 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004414
Adam Cohendcd297f2013-06-18 13:13:40 -07004415 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004416 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07004417 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4418
Joe Onorato9c1289c2009-08-17 11:03:03 -04004419 workspace.requestLayout();
4420
Daniel Sandler843e8602010-06-07 14:59:01 -04004421 if (DEBUG_WIDGETS) {
4422 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4423 + (SystemClock.uptimeMillis()-start) + "ms");
4424 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004425 }
4426
Adam Cohen1462de32012-07-24 22:34:36 -07004427 public void onPageBoundSynchronously(int page) {
4428 mSynchronouslyBoundPages.add(page);
4429 }
4430
Joe Onorato9c1289c2009-08-17 11:03:03 -04004431 /**
4432 * Callback saying that there aren't any more items to bind.
4433 *
4434 * Implementation of the method from LauncherModel.Callbacks.
4435 */
Adam Cohene25af792013-06-06 23:08:25 -07004436 public void finishBindingItems(final boolean upgradePath) {
Winson Chungd64d1762013-08-20 14:37:16 -07004437 Runnable r = new Runnable() {
4438 public void run() {
4439 finishBindingItems(upgradePath);
4440 }
4441 };
4442 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004443 return;
4444 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004445 if (mSavedState != null) {
4446 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004447 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004448 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004449 mSavedState = null;
4450 }
4451
Adam Cohen1462de32012-07-24 22:34:36 -07004452 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004453
Winson Chungc51db6a2011-10-05 11:44:49 -07004454 // Update the market app icon as necessary (the other icons will be managed in response to
4455 // package changes in bindSearchablesChanged()
Winson Chungd64a6662013-09-30 11:06:59 -07004456 if (!DISABLE_MARKET_BUTTON) {
4457 updateAppMarketIcon();
4458 }
Michael Jurkac1f5d262011-09-30 19:32:27 -07004459
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004460 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004461 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004462
4463 // If we received the result of any pending adds while the loader was running (e.g. the
4464 // widget configuration forced an orientation change), process them now.
4465 if (sPendingAddItem != null) {
4466 final long screenId = completeAdd(sPendingAddItem);
4467
4468 // TODO: this moves the user to the page where the pending item was added. Ideally,
4469 // the screen would be guaranteed to exist after bind, and the page would be set through
4470 // the workspace restore process.
4471 mWorkspace.post(new Runnable() {
4472 @Override
4473 public void run() {
4474 mWorkspace.snapToScreenId(screenId);
4475 }
4476 });
4477 sPendingAddItem = null;
4478 }
4479
Adam Cohene25af792013-06-06 23:08:25 -07004480 if (upgradePath) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004481 mWorkspace.getUniqueComponents(true, null);
4482 mIntentsOnWorkspaceFromUpgradePath = mWorkspace.getUniqueComponents(true, null);
Adam Cohene25af792013-06-06 23:08:25 -07004483 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004484 }
4485
Adam Cohen3ed316a2014-07-23 18:21:20 -07004486 private void sendLoadingCompleteBroadcastIfNecessary() {
4487 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4488 String permission =
4489 getResources().getString(R.string.receive_first_load_broadcast_permission);
4490 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4491 sendBroadcast(intent, permission);
4492 SharedPreferences.Editor editor = mSharedPrefs.edit();
4493 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4494 editor.apply();
4495 }
4496 }
4497
Winson Chunga0b7e862013-09-05 16:03:15 -07004498 public boolean isAllAppsButtonRank(int rank) {
4499 if (mHotseat != null) {
4500 return mHotseat.isAllAppsButtonRank(rank);
4501 }
4502 return false;
4503 }
4504
Winson Chunga2413752012-04-03 14:22:34 -07004505 private boolean canRunNewAppsAnimation() {
4506 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4507 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4508 }
4509
Winson Chungc9168342013-06-26 14:54:55 -07004510 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4511 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4512 PropertyValuesHolder.ofFloat("alpha", 1f),
4513 PropertyValuesHolder.ofFloat("scaleX", 1f),
4514 PropertyValuesHolder.ofFloat("scaleY", 1f));
4515 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4516 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
4517 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
4518 return bounceAnim;
4519 }
4520
Adam Cohen27772732013-11-11 14:00:56 +00004521 public boolean useVerticalBarLayout() {
4522 return LauncherAppState.getInstance().getDynamicGrid().
4523 getDeviceProfile().isVerticalBarLayout();
4524 }
4525
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004526 protected Rect getSearchBarBounds() {
4527 return LauncherAppState.getInstance().getDynamicGrid().
4528 getDeviceProfile().getSearchBarBounds();
4529 }
4530
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004531 @Override
4532 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07004533 boolean searchVisible = updateGlobalSearchIcon();
4534 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07004535 if (mSearchDropTargetBar != null) {
4536 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
4537 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004538 }
4539
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004540 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004541 * Add the icons for all apps.
4542 *
4543 * Implementation of the method from LauncherModel.Callbacks.
4544 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004545 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004546 if (LauncherAppState.isDisableAllApps()) {
Winson Chungc58497e2013-09-03 17:48:37 -07004547 if (mIntentsOnWorkspaceFromUpgradePath != null) {
4548 if (LauncherModel.UPGRADE_USE_MORE_APPS_FOLDER) {
4549 getHotseat().addAllAppsFolder(mIconCache, apps,
4550 mIntentsOnWorkspaceFromUpgradePath, Launcher.this, mWorkspace);
4551 }
4552 mIntentsOnWorkspaceFromUpgradePath = null;
Daniel Sandler8707e0f2013-08-15 15:54:18 -07004553 }
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004554 if (mAppsCustomizeContent != null) {
4555 mAppsCustomizeContent.onPackagesUpdated(
4556 LauncherModel.getSortedWidgetsAndShortcuts(this));
4557 }
Winson Chungc58497e2013-09-03 17:48:37 -07004558 } else {
Winson Chungad7db6e2013-10-08 14:01:06 -07004559 if (mAppsCustomizeContent != null) {
Winson Chungc58497e2013-09-03 17:48:37 -07004560 mAppsCustomizeContent.setApps(apps);
Winson Chung6e1c0d32013-10-25 15:24:24 -07004561 mAppsCustomizeContent.onPackagesUpdated(
4562 LauncherModel.getSortedWidgetsAndShortcuts(this));
Winson Chungc58497e2013-09-03 17:48:37 -07004563 }
Winson Chung785d2eb2011-04-14 16:08:02 -07004564 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004565 }
4566
4567 /**
4568 * A package was updated.
4569 *
4570 * Implementation of the method from LauncherModel.Callbacks.
4571 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004572 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004573 Runnable r = new Runnable() {
4574 public void run() {
4575 bindAppsUpdated(apps);
4576 }
4577 };
4578 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004579 return;
4580 }
4581
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004582 if (mWorkspace != null) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004583 mWorkspace.updateShortcutsAndWidgets(apps);
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004584 }
Winson Chungc58497e2013-09-03 17:48:37 -07004585
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004586 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004587 mAppsCustomizeContent != null) {
4588 mAppsCustomizeContent.updateApps(apps);
4589 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004590 }
4591
4592 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004593 * Update the state of a package, typically related to install state.
4594 *
4595 * Implementation of the method from LauncherModel.Callbacks.
4596 */
4597 public void updatePackageState(String pkgName, int state) {
4598 if (mWorkspace != null) {
4599 mWorkspace.updatePackageState(pkgName, state);
4600 }
4601 }
4602
4603 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004604 * A package was uninstalled. We take both the super set of packageNames
4605 * in addition to specific applications to remove, the reason being that
4606 * this can be called when a package is updated as well. In that scenario,
4607 * we only remove specific components from the workspace, where as
4608 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004609 *
4610 * Implementation of the method from LauncherModel.Callbacks.
4611 */
Winson Chung83892cc2013-05-01 16:53:33 -07004612 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Kenny Guyed131872014-04-30 03:02:21 +01004613 final ArrayList<AppInfo> appInfos, final UserHandleCompat user) {
Winson Chungd64d1762013-08-20 14:37:16 -07004614 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004615 public void run() {
Kenny Guyed131872014-04-30 03:02:21 +01004616 bindComponentsRemoved(packageNames, appInfos, user);
Winson Chung83892cc2013-05-01 16:53:33 -07004617 }
Winson Chungd64d1762013-08-20 14:37:16 -07004618 };
4619 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004620 return;
4621 }
4622
Winson Chungdf95eb12013-10-16 14:57:07 -07004623 if (!packageNames.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004624 mWorkspace.removeItemsByPackageName(packageNames, user);
Winson Chungdf95eb12013-10-16 14:57:07 -07004625 }
4626 if (!appInfos.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004627 mWorkspace.removeItemsByApplicationInfo(appInfos, user);
Joe Onorato36115782010-06-17 13:28:48 -04004628 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004629
Winson Chunga1820962011-10-03 16:31:06 -07004630 // Notify the drag controller
Winson Chungdf95eb12013-10-16 14:57:07 -07004631 mDragController.onAppsRemoved(packageNames, appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004632
Winson Chungdf95eb12013-10-16 14:57:07 -07004633 // Update AllApps
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004634 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004635 mAppsCustomizeContent != null) {
4636 mAppsCustomizeContent.removeApps(appInfos);
4637 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004638 }
Joe Onoratobe386092009-11-17 17:32:16 -08004639
4640 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07004641 * A number of packages were updated.
4642 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004643 private ArrayList<Object> mWidgetsAndShortcuts;
4644 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004645 public void run() {
Michael Jurkac402cd92013-05-20 15:49:32 +02004646 bindPackagesUpdated(mWidgetsAndShortcuts);
4647 mWidgetsAndShortcuts = null;
Winson Chung83892cc2013-05-01 16:53:33 -07004648 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004649 };
Michael Jurkac402cd92013-05-20 15:49:32 +02004650 public void bindPackagesUpdated(final ArrayList<Object> widgetsAndShortcuts) {
4651 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
4652 mWidgetsAndShortcuts = widgetsAndShortcuts;
Winson Chung83892cc2013-05-01 16:53:33 -07004653 return;
4654 }
4655
Winson Chung64359a52013-07-08 17:17:08 -07004656 // Update the widgets pane
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004657 if (mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004658 mAppsCustomizeContent.onPackagesUpdated(widgetsAndShortcuts);
Winson Chung785d2eb2011-04-14 16:08:02 -07004659 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004660 }
4661
Winson Chung400438b2011-01-16 17:53:48 -08004662 private int mapConfigurationOriActivityInfoOri(int configOri) {
4663 final Display d = getWindowManager().getDefaultDisplay();
4664 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4665 switch (d.getRotation()) {
4666 case Surface.ROTATION_0:
4667 case Surface.ROTATION_180:
4668 // We are currently in the same basic orientation as the natural orientation
4669 naturalOri = configOri;
4670 break;
4671 case Surface.ROTATION_90:
4672 case Surface.ROTATION_270:
4673 // We are currently in the other basic orientation to the natural orientation
4674 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4675 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4676 break;
4677 }
4678
4679 int[] oriMap = {
4680 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4681 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4682 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4683 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4684 };
4685 // Since the map starts at portrait, we need to offset if this device's natural orientation
4686 // is landscape.
4687 int indexOffset = 0;
4688 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4689 indexOffset = 1;
4690 }
4691 return oriMap[(d.getRotation() + indexOffset) % 4];
4692 }
Adam Cohen446e9402011-09-15 18:21:21 -07004693
Winson Chung4b919f82012-05-01 10:44:08 -07004694 public boolean isRotationEnabled() {
Michael Jurka0a457bf2012-11-19 14:05:05 -08004695 boolean enableRotation = sForceEnableRotation ||
Winson Chung4b919f82012-05-01 10:44:08 -07004696 getResources().getBoolean(R.bool.allow_rotation);
4697 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08004698 }
Winson Chung4b919f82012-05-01 10:44:08 -07004699 public void lockScreenOrientation() {
4700 if (isRotationEnabled()) {
4701 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4702 .getConfiguration().orientation));
4703 }
4704 }
4705 public void unlockScreenOrientation(boolean immediate) {
4706 if (isRotationEnabled()) {
4707 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004708 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004709 } else {
4710 mHandler.postDelayed(new Runnable() {
4711 public void run() {
4712 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4713 }
4714 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004715 }
Winson Chung4b919f82012-05-01 10:44:08 -07004716 }
Winson Chung400438b2011-01-16 17:53:48 -08004717 }
4718
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004719 /**
4720 * Called when the SearchBar hint should be changed.
4721 *
4722 * @param hint the hint to be displayed in the search bar.
4723 */
4724 protected void onSearchBarHintChanged(String hint) {
Winson Chunga6945242014-01-08 14:04:34 -08004725 mLauncherClings.updateSearchBarHint(hint);
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004726 }
4727
Winson Chunge43a1e72014-01-15 10:33:02 -08004728 protected boolean isLauncherPreinstalled() {
4729 PackageManager pm = getPackageManager();
4730 try {
4731 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4732 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4733 return true;
4734 } else {
4735 return false;
4736 }
4737 } catch (NameNotFoundException e) {
4738 e.printStackTrace();
4739 return false;
4740 }
4741 }
4742
Adam Cohenea90f832014-05-21 15:03:34 -07004743 /**
4744 * This method indicates whether or not we should suggest default wallpaper dimensions
4745 * when our wallpaper cropper was not yet used to set a wallpaper.
4746 */
4747 protected boolean overrideWallpaperDimensions() {
4748 return true;
4749 }
4750
Adam Cohen5eed5d82014-05-19 13:12:13 -07004751 protected boolean shouldClingFocusHotseatApp() {
4752 return false;
4753 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004754 protected String getFirstRunClingSearchBarHint() {
4755 return "";
4756 }
4757 protected String getFirstRunCustomContentHint() {
4758 return "";
4759 }
Winson Chung3a6e7f32013-10-09 15:50:52 -07004760 protected int getFirstRunFocusedHotseatAppDrawableId() {
4761 return -1;
4762 }
4763 protected ComponentName getFirstRunFocusedHotseatAppComponentName() {
4764 return null;
4765 }
4766 protected int getFirstRunFocusedHotseatAppRank() {
4767 return -1;
4768 }
4769 protected String getFirstRunFocusedHotseatAppBubbleTitle() {
4770 return "";
4771 }
4772 protected String getFirstRunFocusedHotseatAppBubbleDescription() {
4773 return "";
4774 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004775
Winson Chungaf40f202013-09-18 18:26:31 -07004776 public void dismissFirstRunCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004777 mLauncherClings.dismissFirstRunCling(v);
4778 }
4779 public void dismissMigrationClingCopyApps(View v) {
4780 mLauncherClings.dismissMigrationClingCopyApps(v);
4781 }
4782 public void dismissMigrationClingUseDefault(View v) {
4783 mLauncherClings.dismissMigrationClingUseDefault(v);
4784 }
4785 public void dismissMigrationWorkspaceCling(View v) {
4786 mLauncherClings.dismissMigrationWorkspaceCling(v);
Winson Chungaf40f202013-09-18 18:26:31 -07004787 }
Winson Chung82f55532011-08-09 14:14:23 -07004788 public void dismissWorkspaceCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004789 mLauncherClings.dismissWorkspaceCling(v);
Winson Chung7d7541e2011-09-16 20:14:36 -07004790 }
4791 public void dismissFolderCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004792 mLauncherClings.dismissFolderCling(v);
Winson Chung82f55532011-08-09 14:14:23 -07004793 }
Adam Cohen6268f2d2014-05-16 16:42:35 -07004794 public void markFolderClingDismissedIfNecessary() {
4795 mLauncherClings.markFolderClingDismissedIfNecessary();
4796 }
Adam Cohen432609a2014-03-13 17:03:22 -07004797
4798 /**
4799 * To be overridden by subclasses to indicate that there is an activity to launch
4800 * before showing the standard launcher experience.
4801 */
4802 protected boolean hasFirstRunActivity() {
4803 return false;
4804 }
4805
4806 /**
4807 * To be overridden by subclasses to launch any first run activity
4808 */
4809 protected Intent getFirstRunActivity() {
4810 return null;
4811 }
4812
Winson Chunga6945242014-01-08 14:04:34 -08004813 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004814 return !ActivityManager.isRunningInTestHarness() &&
4815 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004816 }
4817
Adam Cohen4a9423d2014-03-28 14:22:31 -07004818 protected boolean hasRunFirstRunActivity() {
4819 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4820 }
4821
Adam Cohen432609a2014-03-13 17:03:22 -07004822 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004823 if (shouldRunFirstRunActivity() &&
4824 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004825 Intent firstRunIntent = getFirstRunActivity();
4826 if (firstRunIntent != null) {
4827 startActivity(firstRunIntent);
4828 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004829 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004830 }
4831 }
Adam Cohen432609a2014-03-13 17:03:22 -07004832 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004833 }
4834
4835 private void markFirstRunActivityShown() {
4836 SharedPreferences.Editor editor = mSharedPrefs.edit();
4837 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4838 editor.apply();
4839 }
4840
Adam Cohen432609a2014-03-13 17:03:22 -07004841 /**
4842 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4843 * screen that must be displayed and dismissed.
4844 */
4845 protected boolean hasDismissableIntroScreen() {
4846 return false;
4847 }
4848
4849 /**
4850 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4851 */
4852 protected View getIntroScreen() {
4853 return null;
4854 }
4855
4856 /**
4857 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4858 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4859 */
4860 private boolean shouldShowIntroScreen() {
4861 return hasDismissableIntroScreen() &&
4862 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4863 }
4864
4865 protected void showIntroScreen() {
4866 View introScreen = getIntroScreen();
4867 changeWallpaperVisiblity(false);
4868 if (introScreen != null) {
4869 mDragLayer.showOverlayView(introScreen);
4870 }
4871 }
4872
4873 public void dismissIntroScreen() {
4874 markIntroScreenDismissed();
4875 if (showFirstRunActivity()) {
4876 // We delay hiding the intro view until the first run activity is showing. This
4877 // avoids a blip.
4878 mWorkspace.postDelayed(new Runnable() {
4879 @Override
4880 public void run() {
4881 mDragLayer.dismissOverlayView();
4882 }
4883 }, ACTIVITY_START_DELAY);
4884 } else {
4885 mDragLayer.dismissOverlayView();
4886 }
4887 changeWallpaperVisiblity(true);
4888 }
4889
4890 private void markIntroScreenDismissed() {
4891 SharedPreferences.Editor editor = mSharedPrefs.edit();
4892 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4893 editor.apply();
4894 }
4895
Winson Chunga6945242014-01-08 14:04:34 -08004896 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004897 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4898 if (mHotseat != null) mHotseat.setAlpha(1f);
4899 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
4900 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004901 }
4902
4903 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004904 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4905 if (mHotseat != null) mHotseat.setAlpha(0f);
4906 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
4907 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004908 }
4909
Mathew Inwood72fbec12013-11-19 15:45:07 +00004910 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Kenny Guyed131872014-04-30 03:02:21 +01004911 // Called from search suggestion, not supported in other profiles.
4912 final UserHandleCompat myUser = UserHandleCompat.myUserHandle();
4913 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
4914 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(appLaunchIntent,
4915 myUser);
4916 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004917 return null;
4918 }
Kenny Guyed131872014-04-30 03:02:21 +01004919 return new AppInfo(this, activityInfo, myUser, mIconCache, null);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004920 }
4921
4922 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4923 Bitmap icon) {
Kenny Guyed131872014-04-30 03:02:21 +01004924 // Called from search suggestion, not supported in other profiles.
4925 return createShortcutDragInfo(shortcutIntent, caption, icon,
4926 UserHandleCompat.myUserHandle());
4927 }
4928
4929 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4930 Bitmap icon, UserHandleCompat user) {
Kenny Guyc2bd8102014-06-30 12:30:31 +01004931 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
4932 String contentDescription = userManager.getBadgedLabelForUser(caption.toString(), user);
4933 return new ShortcutInfo(shortcutIntent, caption, contentDescription, icon, user);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004934 }
4935
Mathew Inwoodb90860a2014-04-11 17:17:39 +01004936 protected void moveWorkspaceToDefaultScreen() {
4937 mWorkspace.moveToDefaultScreen(false);
4938 }
4939
Mathew Inwood72fbec12013-11-19 15:45:07 +00004940 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4941 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004942 mWorkspace.onExternalDragStartedWithItem(dragView);
4943 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004944 }
4945
Anjali Koppalf5d29132014-02-28 13:33:27 -08004946 @Override
4947 public void onPageSwitch(View newPage, int newPageIndex) {
4948 }
4949
Winson Chung80baf5a2010-08-09 16:03:15 -07004950 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004951 * Prints out out state for debugging.
4952 */
4953 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004954 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004955 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004956 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4957 Log.d(TAG, "mRestoring=" + mRestoring);
4958 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4959 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004960 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004961 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004962
Winson Chung785d2eb2011-04-14 16:08:02 -07004963 if (mAppsCustomizeContent != null) {
4964 mAppsCustomizeContent.dumpState();
4965 }
Daniel Sandler325dc232013-06-05 22:57:57 -04004966 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004967 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004968
4969 @Override
4970 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4971 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004972 synchronized (sDumpLogs) {
4973 writer.println(" ");
4974 writer.println("Debug logs: ");
4975 for (int i = 0; i < sDumpLogs.size(); i++) {
4976 writer.println(" " + sDumpLogs.get(i));
4977 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004978 }
4979 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004980
4981 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004982 if (DEBUG_DUMP_LOG) {
4983 synchronized (sDumpLogs) {
4984 Log.d(TAG, "");
4985 Log.d(TAG, "*********************");
4986 Log.d(TAG, "Launcher debug logs: ");
4987 for (int i = 0; i < sDumpLogs.size(); i++) {
4988 Log.d(TAG, " " + sDumpLogs.get(i));
4989 }
4990 Log.d(TAG, "*********************");
4991 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004992 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004993 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004994 }
4995
4996 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004997 addDumpLog(tag, log, null, debugLog);
4998 }
4999
5000 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07005001 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05005002 if (e != null) {
5003 Log.d(tag, log, e);
5004 } else {
5005 Log.d(tag, log);
5006 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005007 }
Winson Chungede41292013-09-19 16:27:36 -07005008 if (DEBUG_DUMP_LOG) {
5009 sDateStamp.setTime(System.currentTimeMillis());
5010 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05005011 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
5012 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07005013 }
Winson Chungede41292013-09-19 16:27:36 -07005014 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005015 }
5016
Winson Chungede41292013-09-19 16:27:36 -07005017 public void dumpLogsToLocalData() {
5018 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01005019 new AsyncTask<Void, Void, Void>() {
5020 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07005021 boolean success = false;
5022 sDateStamp.setTime(sRunStart);
5023 String FILENAME = sDateStamp.getMonth() + "-"
5024 + sDateStamp.getDay() + "_"
5025 + sDateStamp.getHours() + "-"
5026 + sDateStamp.getMinutes() + "_"
5027 + sDateStamp.getSeconds() + ".txt";
5028
5029 FileOutputStream fos = null;
5030 File outFile = null;
5031 try {
5032 outFile = new File(getFilesDir(), FILENAME);
5033 outFile.createNewFile();
5034 fos = new FileOutputStream(outFile);
5035 } catch (Exception e) {
5036 e.printStackTrace();
5037 }
5038 if (fos != null) {
5039 PrintWriter writer = new PrintWriter(fos);
5040
5041 writer.println(" ");
5042 writer.println("Debug logs: ");
5043 synchronized (sDumpLogs) {
5044 for (int i = 0; i < sDumpLogs.size(); i++) {
5045 writer.println(" " + sDumpLogs.get(i));
5046 }
5047 }
5048 writer.close();
5049 }
5050 try {
5051 if (fos != null) {
5052 fos.close();
5053 success = true;
5054 }
5055 } catch (IOException e) {
5056 e.printStackTrace();
5057 }
Michael Jurka43467462013-11-14 12:03:58 +01005058 return null;
Winson Chungede41292013-09-19 16:27:36 -07005059 }
Michael Jurka43467462013-11-14 12:03:58 +01005060 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07005061 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005062 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08005063}
Michael Jurka2763be32011-02-24 11:19:57 -08005064
Michael Jurkaabded662011-03-04 12:06:57 -08005065interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08005066 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07005067 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08005068 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08005069 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08005070 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08005071}
Dan Sandlerd5024042014-01-09 15:01:33 -05005072
5073interface DebugIntents {
5074 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
5075 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00005076}