blob: 5eedc8a3ab041260f90b49475b55f84b030fd1b4 [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;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080068import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069import android.text.Selection;
70import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070071import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072import android.text.method.TextKeyListener;
Winson Chung892c74d2013-08-22 16:15:50 -070073import android.util.DisplayMetrics;
Joe Onorato7c312c12009-08-13 21:36:53 -070074import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070075import android.view.Display;
76import android.view.Gravity;
77import android.view.HapticFeedbackConstants;
78import android.view.KeyEvent;
79import android.view.LayoutInflater;
80import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070081import android.view.MotionEvent;
82import android.view.Surface;
83import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070084import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080085import android.view.View.OnLongClickListener;
Sunny Goyale755d462014-07-22 13:48:29 -070086import android.view.ViewAnimationUtils;
Adam Cohen96d30a12013-07-16 18:13:21 -070087import android.view.ViewGroup;
88import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080089import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Sunny Goyal651077b2014-06-30 14:15:31 -070090import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070091import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080092import android.view.accessibility.AccessibilityEvent;
Adam Cohencff6af82011-09-13 14:51:53 -070093import android.view.animation.AccelerateDecelerateInterpolator;
Adam Cohen9bfdb762014-07-21 17:44:06 -070094import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080095import android.view.animation.DecelerateInterpolator;
Adam Cohen9bfdb762014-07-21 17:44:06 -070096import android.view.animation.LinearInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080097import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070098import android.widget.Advanceable;
99import android.widget.FrameLayout;
100import android.widget.ImageView;
101import android.widget.TextView;
102import android.widget.Toast;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700103
Sunny Goyal651077b2014-06-30 14:15:31 -0700104import com.android.launcher3.DropTarget.DragObject;
105import com.android.launcher3.PagedView.PageSwitchListener;
Kenny Guyed131872014-04-30 03:02:21 +0100106import com.android.launcher3.compat.LauncherActivityInfoCompat;
107import com.android.launcher3.compat.LauncherAppsCompat;
Sunny Goyale755d462014-07-22 13:48:29 -0700108import com.android.launcher3.compat.PackageInstallerCompat;
109import com.android.launcher3.compat.PackageInstallerCompat.PackageInstallInfo;
Kenny Guyed131872014-04-30 03:02:21 +0100110import com.android.launcher3.compat.UserHandleCompat;
111import com.android.launcher3.compat.UserManagerCompat;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700112
Adam Cohenc0dcf592011-06-01 15:30:43 -0700113import java.io.DataInputStream;
114import java.io.DataOutputStream;
Adam Cohen4caf2982013-08-20 18:54:31 -0700115import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700116import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700117import java.io.FileNotFoundException;
Adam Cohen4caf2982013-08-20 18:54:31 -0700118import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700119import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700120import java.io.PrintWriter;
Adam Cohen0b395352014-06-09 22:54:36 +0000121import java.lang.reflect.Field;
122import java.lang.reflect.InvocationTargetException;
123import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700124import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700125import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700126import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700127import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700128import java.util.HashMap;
Michael Jurkad7c28052012-04-27 15:43:36 -0700129import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000130import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700131
Winson Chunga6945242014-01-08 14:04:34 -0800132
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800133/**
134 * Default launcher application.
135 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100136public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700137 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700138 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800139 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700140 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800141
Daniel Sandlerf061f822013-06-27 13:59:36 -0400142 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400143 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700144 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400145 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700146 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700147
Dan Sandlerd5024042014-01-09 15:01:33 -0500148 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
149
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800150 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700151 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800152 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700153 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700154 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800155
Michael Jurka8b805b12012-04-18 14:23:14 -0700156 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700157 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700158
Mathew Inwood876a8462013-06-14 14:12:41 +0100159 /**
160 * IntentStarter uses request codes starting with this. This must be greater than all activity
161 * request codes used internally.
162 */
163 protected static final int REQUEST_LAST = 100;
164
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800165 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
166
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800167 static final int SCREEN_COUNT = 5;
168 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169
Romain Guy98d01652009-06-30 16:21:04 -0700170 private static final String PREFERENCES = "launcher.preferences";
Michael Jurka0a457bf2012-11-19 14:05:05 -0800171 // To turn on these properties, type
172 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
173 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher_force_rotate";
174 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800175 static final String DISABLE_ALL_APPS_PROPERTY = "launcher_noallapps";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176
Winson Chung2672ff92012-05-04 16:22:30 -0700177 // The Intent extra that defines whether to ignore the launch animation
178 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400179 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700180
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 // Type: int
182 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700183 // Type: int
184 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
187 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800188 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
189 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700190 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800191 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700192 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800193 // Type: boolean
194 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
195 // Type: long
196 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700197 // Type: int
198 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
199 // Type: int
200 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
201 // Type: parcelable
202 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000203 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800204 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000205 // Type: int[]
206 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800207
Adam Cohen432609a2014-03-13 17:03:22 -0700208 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800209 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
210
Adam Cohen3ed316a2014-07-23 18:21:20 -0700211 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
212 static final String ACTION_FIRST_LOAD_COMPLETE =
213 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
214
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100215 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700216 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100217 "com.android.launcher.toolbar_search_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700218 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100219 "com.android.launcher.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700220
Adam Cohen39a06042013-07-19 14:30:12 -0700221 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b802013-08-15 15:44:26 -0700222 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700223
Winson Chunga6945242014-01-08 14:04:34 -0800224 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
225
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700226 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700227 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700228 private State mState = State.WORKSPACE;
229 private AnimatorSet mStateAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700230
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700231 private boolean mIsSafeModeEnabled;
232
Joe Onorato9c1289c2009-08-17 11:03:03 -0400233 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700234 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
235 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700236 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800237
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800238 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800239 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800240
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000241 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
242 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
243
Winson Chunga2413752012-04-03 14:22:34 -0700244 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700245 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
246 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Winson Chung64359a52013-07-08 17:17:08 -0700247 private static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700248
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800249 private final BroadcastReceiver mCloseSystemDialogsReceiver
250 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800251 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
252
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800253 private LayoutInflater mInflater;
254
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800255 private Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700256 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800257 private View mPageIndicators;
Michael Jurkab737ee62011-11-15 15:57:22 -0800258 private DragLayer mDragLayer;
259 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700260 private View mWeightWatcher;
Winson Chunga6945242014-01-08 14:04:34 -0800261 private LauncherClings mLauncherClings;
Romain Guycbb89e42009-06-08 15:52:54 -0700262
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700263 private AppWidgetManager mAppWidgetManager;
264 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700265
Michael Jurkac9d95c52011-08-29 14:03:34 -0700266 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700267 private AppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800268 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700269
Michael Jurka0280c3b2010-09-17 15:00:07 -0700270 private int[] mTmpAddItemCellCoordinates = new int[2];
271
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800272 private FolderInfo mFolderInfo;
273
Winson Chung3d503fb2011-07-13 17:25:49 -0700274 private Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800275 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700276
Michael Jurka838a4ca2011-02-07 13:33:06 -0800277 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700278
Winson Chungc51db6a2011-10-05 11:44:49 -0700279 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700280 private AppsCustomizeTabHost mAppsCustomizeTabHost;
281 private AppsCustomizePagedView mAppsCustomizeContent;
282 private boolean mAutoAdvanceRunning = false;
Adam Cohen24ce0b32014-01-14 16:18:14 -0800283 private View mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800284
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700286 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
287 // scroll issues (because the workspace may not have been measured yet) and extra work.
288 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
289 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800290
291 private SpannableStringBuilder mDefaultKeySsb = null;
292
Joe Onorato9c1289c2009-08-17 11:03:03 -0400293 private boolean mWorkspaceLoading = true;
294
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800295 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800296 private boolean mRestoring;
297 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700298 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800299
Michael Jurka1e2f4652013-07-08 18:03:46 -0700300 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700301 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
302
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800303 private Bundle mSavedInstanceState;
304
Joe Onorato9c1289c2009-08-17 11:03:03 -0400305 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800306 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800307 private boolean mUserPresent = true;
308 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700309 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800310 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400311
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700312 private static LocaleConfiguration sLocaleConfiguration = null;
313
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700314 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700315
Adam Cohen61f560d2013-09-30 15:58:20 -0700316 private View.OnTouchListener mHapticFeedbackTouchListener;
317
Adam Cohended9f8d2010-11-03 13:25:16 -0700318 // Related to the auto-advancing of widgets
319 private final int ADVANCE_MSG = 1;
320 private final int mAdvanceInterval = 20000;
321 private final int mAdvanceStagger = 250;
322 private long mAutoAdvanceSentTime;
323 private long mAutoAdvanceTimeLeft = -1;
324 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
325 new HashMap<View, AppWidgetProviderInfo>();
326
Winson Chung400438b2011-01-16 17:53:48 -0800327 // Determines how long to wait after a rotation before restoring the screen orientation to
328 // match the sensor state.
329 private final int mRestoreScreenOrientationDelay = 500;
330
Michael Jurka4ef207b2010-11-29 17:05:45 -0800331 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700332 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
333 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
334 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800335
Winson Chungd64a6662013-09-30 11:06:59 -0700336 private Intent mAppMarketIntent = null;
337 private static final boolean DISABLE_MARKET_BUTTON = true;
338
Craig Mautner360310b2012-10-26 15:13:08 -0700339 private Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700340
Adam Cohen1462de32012-07-24 22:34:36 -0700341 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700342 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700343
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700344 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700345 static Date sDateStamp = new Date();
346 static DateFormat sDateFormat =
347 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
348 static long sRunStart = System.currentTimeMillis();
349 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700350
Winson Chung46353de2012-02-16 14:05:10 -0800351 // We only want to get the SharedPreferences once since it does an FS stat each time we get
352 // it from the context.
353 private SharedPreferences mSharedPrefs;
354
Adam Cohene25af792013-06-06 23:08:25 -0700355 private static ArrayList<ComponentName> mIntentsOnWorkspaceFromUpgradePath = null;
356
Winson Chungf0c6ae02012-03-21 16:10:31 -0700357 // Holds the page that we need to animate to, and the icon views that we need to animate up
358 // when we scroll to that page on resume.
Adam Cohen268c4752012-06-06 17:47:33 -0700359 private ImageView mFolderIconImageView;
360 private Bitmap mFolderIconBitmap;
361 private Canvas mFolderIconCanvas;
362 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700363
Michael Jurkaddd62e92011-02-16 17:49:14 -0800364 private BubbleTextView mWaitingForResume;
365
Michael Jurkac1f5d262011-09-30 19:32:27 -0700366 private Runnable mBuildLayersRunnable = new Runnable() {
367 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700368 if (mWorkspace != null) {
369 mWorkspace.buildPageHardwareLayers();
370 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700371 }
372 };
373
Adam Cohendb364c32014-05-20 14:23:40 -0700374 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800375
Michael Jurka7267fa52013-09-26 15:29:57 -0700376 public static boolean sForceEnableRotation = isPropertyEnabled(FORCE_ENABLE_ROTATION_PROPERTY);
Michael Jurka0a457bf2012-11-19 14:05:05 -0800377
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800378 private static class PendingAddArguments {
379 int requestCode;
380 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700381 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700382 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800383 int cellX;
384 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700385 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800386 }
387
Daniel Sandlerff02d492013-08-05 02:12:05 -0400388 private Stats mStats;
389
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800390 static boolean isPropertyEnabled(String propertyName) {
Michael Jurka0a457bf2012-11-19 14:05:05 -0800391 return Log.isLoggable(propertyName, Log.VERBOSE);
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700392 }
393
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800394 @Override
395 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700396 if (DEBUG_STRICT_MODE) {
397 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
398 .detectDiskReads()
399 .detectDiskWrites()
400 .detectNetwork() // or .detectAll() for all detectable problems
401 .penaltyLog()
402 .build());
403 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
404 .detectLeakedSqlLiteObjects()
405 .detectLeakedClosableObjects()
406 .penaltyLog()
407 .penaltyDeath()
408 .build());
409 }
410
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800411 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400412
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400413 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400414 LauncherAppState app = LauncherAppState.getInstance();
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700415 LauncherAppState.getLauncherProvider().setLauncherProviderChangeListener(this);
Winson Chung5f8afe62013-08-12 16:19:28 -0700416 // Determine the dynamic grid properties
417 Point smallestSize = new Point();
418 Point largestSize = new Point();
419 Point realSize = new Point();
420 Display display = getWindowManager().getDefaultDisplay();
421 display.getCurrentSizeRange(smallestSize, largestSize);
422 display.getRealSize(realSize);
Winson Chung892c74d2013-08-22 16:15:50 -0700423 DisplayMetrics dm = new DisplayMetrics();
424 display.getMetrics(dm);
Winson Chung6e1c0d32013-10-25 15:24:24 -0700425
Winson Chung5f8afe62013-08-12 16:19:28 -0700426 // Lazy-initialize the dynamic grid
427 DeviceProfile grid = app.initDynamicGrid(this,
428 Math.min(smallestSize.x, smallestSize.y),
429 Math.min(largestSize.x, largestSize.y),
Winson Chung892c74d2013-08-22 16:15:50 -0700430 realSize.x, realSize.y,
431 dm.widthPixels, dm.heightPixels);
Winson Chung5f8afe62013-08-12 16:19:28 -0700432
433 // the LauncherApplication should call this, but in case of Instrumentation it might not be present yet
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400434 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700435 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700436 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800437 mModel = app.setLauncher(this);
438 mIconCache = app.getIconCache();
Winson Chunge5467dc2013-10-14 17:03:04 -0700439 mIconCache.flushInvalidIcons(grid);
Joe Onorato41a12d22009-10-31 18:30:00 -0400440 mDragController = new DragController(this);
Winson Chunga6945242014-01-08 14:04:34 -0800441 mLauncherClings = new LauncherClings(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800442 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700443
Daniel Sandlerff02d492013-08-05 02:12:05 -0400444 mStats = new Stats(this);
445
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700446 mAppWidgetManager = AppWidgetManager.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700447
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700448 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
449 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700450
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700451 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
452 // this also ensures that any synchronous binding below doesn't re-trigger another
453 // LauncherModel load.
454 mPaused = false;
455
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800456 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200457 android.os.Debug.startMethodTracing(
458 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800459 }
460
Adam Cohen53805212013-10-01 10:39:23 -0700461
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800462 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800463 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700464
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465 setupViews();
Cristina Stancu476493b2013-08-07 17:20:14 +0100466 grid.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800467
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800468 registerContentObservers();
469
Joe Onorato7c312c12009-08-13 21:36:53 -0700470 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700471
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800472 mSavedState = savedInstanceState;
473 restoreState(mSavedState);
474
475 if (PROFILE_STARTUP) {
476 android.os.Debug.stopMethodTracing();
477 }
478
479 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700480 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700481 // If the user leaves launcher, then we should just load items asynchronously when
482 // they return.
Derek Prothro7aff3992013-12-10 14:00:37 -0500483 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700484 } else {
485 // We only load the page synchronously if the user rotates (or triggers a
486 // configuration change) while launcher is in the foreground
Winson Chung9b9fb962013-11-15 15:39:34 -0800487 mModel.startLoader(true, mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700488 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800489 }
490
491 // For handling default keys
492 mDefaultKeySsb = new SpannableStringBuilder();
493 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800494
495 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
496 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800497
Adam Cohenf9426d52012-06-04 17:26:21 -0700498 updateGlobalIcons();
499
500 // On large interfaces, we want the screen to auto-rotate based on the current orientation
501 unlockScreenOrientation(true);
Winson Chungaf40f202013-09-18 18:26:31 -0700502
Adam Cohen432609a2014-03-13 17:03:22 -0700503 if (shouldShowIntroScreen()) {
504 showIntroScreen();
505 } else {
506 showFirstRunActivity();
507 }
508
Winson Chunge43a1e72014-01-15 10:33:02 -0800509 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
510 // on the device, then we always show the first run cling experience (or if there is no
511 // launcher2). Otherwise, we prompt the user upon started for migration
Winson Chunge43a1e72014-01-15 10:33:02 -0800512 if (mLauncherClings.shouldShowFirstRunOrMigrationClings()) {
513 if (mModel.canMigrateFromOldLauncherDb(this)) {
514 mLauncherClings.showMigrationCling();
515 } else {
516 mLauncherClings.showFirstRunCling();
517 }
Winson Chunga6945242014-01-08 14:04:34 -0800518 } else {
Winson Chunge43a1e72014-01-15 10:33:02 -0800519 mLauncherClings.removeFirstRunAndMigrationClings();
Winson Chunga6945242014-01-08 14:04:34 -0800520 }
Adam Cohenf9426d52012-06-04 17:26:21 -0700521 }
522
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700523 @Override
524 public void onLauncherProviderChange() { }
525
Winson Chung98ca0f72013-07-29 12:58:51 -0700526 /** To be overriden by subclasses to hint to Launcher that we have custom content */
527 protected boolean hasCustomContentToLeft() {
528 return false;
529 }
530
Dave Hawkeya8881582013-09-17 15:55:33 -0600531 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500532 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600533 * {@link #addToCustomContentPage}. This will only be invoked if
534 * {@link #hasCustomContentToLeft()} is {@code true}.
535 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500536 protected void populateCustomContentContainer() {
Dave Hawkeya8881582013-09-17 15:55:33 -0600537 }
538
539 /**
540 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
541 * ensure the custom content page is added or removed if necessary.
542 */
543 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600544 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600545 // Not bound yet, wait for bindScreens to be called.
546 return;
547 }
548
549 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
550 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500551 mWorkspace.createCustomContentContainer();
552 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600553 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
554 mWorkspace.removeCustomContentPage();
555 }
556 }
557
Adam Cohenf9426d52012-06-04 17:26:21 -0700558 private void updateGlobalIcons() {
Winson Chungc51db6a2011-10-05 11:44:49 -0700559 boolean searchVisible = false;
560 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800561 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700562 int coi = getCurrentOrientationIndexForGlobalIcons();
563 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
564 sAppMarketIcon[coi] == null) {
Winson Chungd64a6662013-09-30 11:06:59 -0700565 if (!DISABLE_MARKET_BUTTON) {
566 updateAppMarketIcon();
567 }
Winson Chungc51db6a2011-10-05 11:44:49 -0700568 searchVisible = updateGlobalSearchIcon();
569 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700570 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700571 if (sGlobalSearchIcon[coi] != null) {
572 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700573 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700574 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700575 if (sVoiceSearchIcon[coi] != null) {
576 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700577 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700578 }
Winson Chungd64a6662013-09-30 11:06:59 -0700579 if (!DISABLE_MARKET_BUTTON && sAppMarketIcon[coi] != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -0700580 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800581 }
Winson Chungadf0c182012-08-23 14:59:07 -0700582 if (mSearchDropTargetBar != null) {
583 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
584 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800585 }
Romain Guycbb89e42009-06-08 15:52:54 -0700586
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800587 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700588 if (sLocaleConfiguration == null) {
589 new AsyncTask<Void, Void, LocaleConfiguration>() {
590 @Override
591 protected LocaleConfiguration doInBackground(Void... unused) {
592 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
593 readConfiguration(Launcher.this, localeConfiguration);
594 return localeConfiguration;
595 }
596
597 @Override
598 protected void onPostExecute(LocaleConfiguration result) {
599 sLocaleConfiguration = result;
600 checkForLocaleChange(); // recursive, but now with a locale configuration
601 }
602 }.execute();
603 return;
604 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700605
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800606 final Configuration configuration = getResources().getConfiguration();
607
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700608 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800609 final String locale = configuration.locale.toString();
610
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700611 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800612 final int mcc = configuration.mcc;
613
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700614 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800615 final int mnc = configuration.mnc;
616
Romain Guy84f296c2009-11-04 15:00:44 -0800617 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800618
Romain Guy84f296c2009-11-04 15:00:44 -0800619 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700620 sLocaleConfiguration.locale = locale;
621 sLocaleConfiguration.mcc = mcc;
622 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700623
Joe Onorato0589f0f2010-02-08 13:44:00 -0800624 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700625
626 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
Michael Jurka43467462013-11-14 12:03:58 +0100627 new AsyncTask<Void, Void, Void>() {
628 public Void doInBackground(Void ... args) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700629 writeConfiguration(Launcher.this, localeConfiguration);
Michael Jurka43467462013-11-14 12:03:58 +0100630 return null;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700631 }
Michael Jurka43467462013-11-14 12:03:58 +0100632 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Romain Guy98d01652009-06-30 16:21:04 -0700633 }
634 }
635
636 private static class LocaleConfiguration {
637 public String locale;
638 public int mcc = -1;
639 public int mnc = -1;
640 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700641
Romain Guy98d01652009-06-30 16:21:04 -0700642 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
643 DataInputStream in = null;
644 try {
645 in = new DataInputStream(context.openFileInput(PREFERENCES));
646 configuration.locale = in.readUTF();
647 configuration.mcc = in.readInt();
648 configuration.mnc = in.readInt();
649 } catch (FileNotFoundException e) {
650 // Ignore
651 } catch (IOException e) {
652 // Ignore
653 } finally {
654 if (in != null) {
655 try {
656 in.close();
657 } catch (IOException e) {
658 // Ignore
659 }
660 }
661 }
662 }
663
664 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
665 DataOutputStream out = null;
666 try {
667 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
668 out.writeUTF(configuration.locale);
669 out.writeInt(configuration.mcc);
670 out.writeInt(configuration.mnc);
671 out.flush();
672 } catch (FileNotFoundException e) {
673 // Ignore
674 } catch (IOException e) {
675 //noinspection ResultOfMethodCallIgnored
676 context.getFileStreamPath(PREFERENCES).delete();
677 } finally {
678 if (out != null) {
679 try {
680 out.close();
681 } catch (IOException e) {
682 // Ignore
683 }
684 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800685 }
686 }
687
Anton Hanssona2f665f2013-09-26 12:18:32 +0100688 public Stats getStats() {
689 return mStats;
690 }
691
Bjorn Bringertc459e522013-06-07 19:36:01 +0100692 public LayoutInflater getInflater() {
693 return mInflater;
694 }
695
Winson Chung36a62fe2012-05-06 18:04:42 -0700696 boolean isDraggingEnabled() {
697 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
698 // that is subsequently removed from the workspace in startBinding().
699 return !mModel.isLoadingWorkspace();
700 }
701
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800702 static int getScreen() {
703 synchronized (sLock) {
704 return sScreen;
705 }
706 }
707
708 static void setScreen(int screen) {
709 synchronized (sLock) {
710 sScreen = screen;
711 }
712 }
713
Winson Chung557d6ed2011-07-08 15:34:52 -0700714 /**
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000715 * Copied from View -- the View version of the method isn't called
716 * anywhere else in our process and only exists for API level 17+,
717 * so it's ok to keep our own version with no API requirement.
718 */
719 public static int generateViewId() {
720 for (;;) {
721 final int result = sNextGeneratedId.get();
722 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
723 int newValue = result + 1;
724 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
725 if (sNextGeneratedId.compareAndSet(result, newValue)) {
726 return result;
727 }
728 }
729 }
730
731 public int getViewIdForItem(ItemInfo info) {
732 // This cast is safe given the > 2B range for int.
733 int itemId = (int) info.id;
734 if (mItemIdToViewId.containsKey(itemId)) {
735 return mItemIdToViewId.get(itemId);
736 }
737 int viewId = generateViewId();
738 mItemIdToViewId.put(itemId, viewId);
739 return viewId;
740 }
741
742 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700743 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
744 * a configuration step, this allows the proper animations to run after other transitions.
745 */
Adam Cohendb364c32014-05-20 14:23:40 -0700746 private long completeAdd(PendingAddArguments args) {
747
748 long screenId = ensurePendingDropLayoutExists(args.screenId);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800749 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800750 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700751 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700752 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700753 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800754 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700755 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700756 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700757 case REQUEST_RECONFIGURE_APPWIDGET:
758 completeRestoreAppWidget(args.appWidgetId);
759 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800760 }
Michael Jurka27614d22012-04-02 06:40:22 -0700761 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
762 // if you turned the screen off and then back while in All Apps, Launcher would not
763 // return to the workspace. Clearing mAddInfo.container here fixes this issue
764 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700765 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800766 }
767
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800768 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700769 protected void onActivityResult(
770 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700771 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700772 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700773 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800774 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700775
Adam Cohenad4e15c2013-10-17 16:21:35 -0700776 Runnable exitSpringLoaded = new Runnable() {
777 @Override
778 public void run() {
779 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
780 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
781 }
782 };
783
Michael Jurka8b805b12012-04-18 14:23:14 -0700784 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700785 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700786 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
787 if (resultCode == RESULT_CANCELED) {
788 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700789 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700790 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700791 } else if (resultCode == RESULT_OK) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700792 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
793 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700794 }
795 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200796 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
797 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
798 mWorkspace.exitOverviewMode(false);
799 }
800 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700801 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200802
Adam Cohened66b2b2012-01-23 17:28:51 -0800803 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
804 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700805
Adam Cohendb364c32014-05-20 14:23:40 -0700806 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800807 // We have special handling for widgets
808 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800809 final int appWidgetId;
810 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
811 : -1;
812 if (widgetId < 0) {
813 appWidgetId = pendingAddWidgetId;
814 } else {
815 appWidgetId = widgetId;
816 }
817
Adam Cohenad4e15c2013-10-17 16:21:35 -0700818 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800819 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700820 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
821 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700822 result = RESULT_CANCELED;
823 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700824 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700825 @Override
826 public void run() {
827 exitSpringLoadedDragModeDelayed(false, 0, null);
828 }
829 };
Adam Cohendb364c32014-05-20 14:23:40 -0700830 if (workspaceLocked) {
831 // No need to remove the empty screen if we're mid-binding, as the
832 // the bind will not add the empty screen.
833 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
834 } else {
835 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
836 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
837 }
Winson Chung5aaab772012-04-27 15:24:02 -0700838 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700839 if (!workspaceLocked) {
840 mPendingAddInfo.screenId = ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
841 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
842
843 dropLayout.setDropPending(true);
844 final Runnable onComplete = new Runnable() {
845 @Override
846 public void run() {
847 completeTwoStageWidgetDrop(resultCode, appWidgetId);
848 dropLayout.setDropPending(false);
849 }
850 };
851 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
852 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
853 } else {
854 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
855 mPendingAddInfo);
856 sPendingAddItem = args;
857 }
Winson Chung5aaab772012-04-27 15:24:02 -0700858 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800859 return;
860 }
861
Sunny Goyalff572272014-07-23 13:58:07 -0700862 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
863 if (resultCode == RESULT_OK) {
864 // Update the widget view.
865 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
866 pendingAddWidgetId, mPendingAddInfo);
867 if (workspaceLocked) {
868 sPendingAddItem = args;
869 } else {
870 completeAdd(args);
871 }
872 }
873 // Leave the widget in the pending state if the user canceled the configure.
874 return;
875 }
876
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800877 // The pattern used here is that a user PICKs a specific application,
878 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700879
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800880 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
881 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700882 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700883 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
884 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800885 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700886 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800887 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700888 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700889 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
890 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800891 }
Adam Cohen00074722013-10-11 17:46:09 -0700892 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700893 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700894 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800895 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800896 mDragLayer.clearAnimatedView();
Adam Cohened66b2b2012-01-23 17:28:51 -0800897 }
898
Adam Cohendb364c32014-05-20 14:23:40 -0700899 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
900 appWidgetId, ItemInfo info) {
901 PendingAddArguments args = new PendingAddArguments();
902 args.requestCode = requestCode;
903 args.intent = data;
904 args.container = info.container;
905 args.screenId = info.screenId;
906 args.cellX = info.cellX;
907 args.cellY = info.cellY;
908 args.appWidgetId = appWidgetId;
909 return args;
910 }
911
912 /**
913 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
914 *
915 * @param screenId the screen id to check
916 * @return the new screen, or screenId if it exists
917 */
918 private long ensurePendingDropLayoutExists(long screenId) {
919 CellLayout dropLayout =
920 (CellLayout) mWorkspace.getScreenWithId(screenId);
921 if (dropLayout == null) {
922 // it's possible that the add screen was removed because it was
923 // empty and a re-bind occurred
924 mWorkspace.addExtraEmptyScreen();
925 return mWorkspace.commitExtraEmptyScreen();
926 } else {
927 return screenId;
928 }
929 }
930
Adam Cohened66b2b2012-01-23 17:28:51 -0800931 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700932 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700933 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800934 Runnable onCompleteRunnable = null;
935 int animationType = 0;
936
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700937 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800938 if (resultCode == RESULT_OK) {
939 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
940 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700941 mPendingAddWidgetInfo);
942 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800943 onCompleteRunnable = new Runnable() {
944 @Override
945 public void run() {
946 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700947 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700948 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
949 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800950 }
951 };
952 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800953 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800954 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800955 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700956 if (mDragLayer.getAnimatedView() != null) {
957 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
958 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
959 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700960 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700961 // The animated view may be null in the case of a rotation during widget configuration
962 onCompleteRunnable.run();
963 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800964 }
965
966 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700967 protected void onStop() {
968 super.onStop();
969 FirstFrameAnimatorHelper.setIsVisible(false);
970 }
971
972 @Override
973 protected void onStart() {
974 super.onStart();
975 FirstFrameAnimatorHelper.setIsVisible(true);
976 }
977
978 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800979 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200980 long startTime = 0;
981 if (DEBUG_RESUME_TIME) {
982 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400983 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200984 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800985 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700986
Winson Chung4a2afa32012-07-19 14:53:05 -0700987 // Restore the previous launcher state
988 if (mOnResumeState == State.WORKSPACE) {
989 showWorkspace(false);
990 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
Winson Chung07e045c2013-11-06 15:49:51 -0800991 showAllApps(false, mAppsCustomizeContent.getContentType(), false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700992 }
993 mOnResumeState = State.NONE;
994
Craig Mautner360310b2012-10-26 15:13:08 -0700995 // Background was set to gradient in onPause(), restore to black if in all apps.
996 setWorkspaceBackground(mState == State.WORKSPACE);
997
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800998 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700999 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001000 setWorkspaceLoading(true);
Derek Prothro7aff3992013-12-10 14:00:37 -05001001 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001002 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001003 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001004 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001005 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001006 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1007 // execute them here
1008 long startTimeCallbacks = 0;
1009 if (DEBUG_RESUME_TIME) {
1010 startTimeCallbacks = System.currentTimeMillis();
1011 }
1012
1013 if (mAppsCustomizeContent != null) {
1014 mAppsCustomizeContent.setBulkBind(true);
1015 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001016 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1017 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001018 }
1019 if (mAppsCustomizeContent != null) {
1020 mAppsCustomizeContent.setBulkBind(false);
1021 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001022 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001023 if (DEBUG_RESUME_TIME) {
1024 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1025 (System.currentTimeMillis() - startTimeCallbacks));
1026 }
Michael Jurka447bf842013-05-15 14:52:15 +02001027 }
Michael Jurka54554252013-08-01 12:52:23 +02001028 if (mOnResumeCallbacks.size() > 0) {
1029 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1030 mOnResumeCallbacks.get(i).run();
1031 }
1032 mOnResumeCallbacks.clear();
1033 }
Winson Chunge4e50662012-01-23 14:45:13 -08001034
1035 // Reset the pressed state of icons that were locked in the press state while activities
1036 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001037 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001038 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001039 mWaitingForResume.setStayPressed(false);
1040 }
Winson Chunge4e50662012-01-23 14:45:13 -08001041 if (mAppsCustomizeContent != null) {
1042 // Resets the previous all apps icon press state
1043 mAppsCustomizeContent.resetDrawableState();
1044 }
Winson Chung82963d52013-10-09 11:20:57 -07001045
Adam Cohen06dff352012-06-01 17:17:08 -07001046 // It is possible that widgets can receive updates while launcher is not in the foreground.
1047 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1048 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1049 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001050 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001051
Winson Chung780fe592013-09-26 14:48:44 -07001052 // Process any items that were added while Launcher was away.
1053 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1054
Winson Chung5841efa2013-09-30 18:06:44 -07001055 // Update the voice search button proxy
1056 updateVoiceButtonProxyVisible(false);
1057
Adam Cohenf9426d52012-06-04 17:26:21 -07001058 // Again, as with the above scenario, it's possible that one or more of the global icons
1059 // were updated in the wrong orientation.
1060 updateGlobalIcons();
Michael Jurka447bf842013-05-15 14:52:15 +02001061 if (DEBUG_RESUME_TIME) {
1062 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1063 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001064
1065 if (mWorkspace.getCustomContentCallbacks() != null) {
1066 // If we are resuming and the custom content is the current page, we call onShow().
1067 // It is also poassible that onShow will instead be called slightly after first layout
1068 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1069 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001070 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001071 }
1072 }
Adam Cohenedaaa302013-10-01 17:33:27 -07001073 mWorkspace.updateInteractionForState();
Adam Cohen53805212013-10-01 10:39:23 -07001074 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001075
1076 PackageInstallerCompat.getInstance(this).onResume();
Adam Cohen06dff352012-06-01 17:17:08 -07001077 }
1078
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001079 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001080 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001081 // Ensure that items added to Launcher are queued until Launcher returns
1082 InstallShortcutReceiver.enableInstallQueue();
Sunny Goyale755d462014-07-22 13:48:29 -07001083 PackageInstallerCompat.getInstance(this).onPause();
Winson Chung997a9232013-07-24 15:33:46 -07001084
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001085 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001086 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001087 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001088 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001089
1090 // We call onHide() aggressively. The custom content callbacks should be able to
1091 // debounce excess onHide calls.
1092 if (mWorkspace.getCustomContentCallbacks() != null) {
1093 mWorkspace.getCustomContentCallbacks().onHide();
1094 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001095 }
Romain Guycbb89e42009-06-08 15:52:54 -07001096
Adam Cohenbffe7452013-07-22 18:21:45 -07001097 QSBScroller mQsbScroller = new QSBScroller() {
1098 int scrollY = 0;
1099
1100 @Override
1101 public void setScrollY(int scroll) {
1102 scrollY = scroll;
1103
1104 if (mWorkspace.isOnOrMovingToCustomContent()) {
1105 mSearchDropTargetBar.setTranslationY(- scrollY);
Mark Brophyd7dc6812013-09-20 17:27:32 +01001106 getQsbBar().setTranslationY(-scrollY);
Adam Cohenbffe7452013-07-22 18:21:45 -07001107 }
1108 }
1109 };
1110
1111 public void resetQSBScroll() {
1112 mSearchDropTargetBar.animate().translationY(0).start();
Mark Brophyd7dc6812013-09-20 17:27:32 +01001113 getQsbBar().animate().translationY(0).start();
Adam Cohenbffe7452013-07-22 18:21:45 -07001114 }
1115
1116 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001117 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1118 // by a onResume or by scrolling otherwise.
1119 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001120
1121 // Custom content is completely hidden
1122 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001123
1124 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1125 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001126
1127 // Indicates whether the user is allowed to scroll away from the custom content.
1128 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001129 }
1130
Jorim Jaggid017f882014-01-14 17:08:48 -08001131 protected boolean hasSettings() {
1132 return false;
1133 }
1134
Adam Cohenbffe7452013-07-22 18:21:45 -07001135 public interface QSBScroller {
1136 public void setScrollY(int scrollY);
1137 }
1138
Winson Chung98ca0f72013-07-29 12:58:51 -07001139 public QSBScroller addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001140 CustomContentCallbacks callbacks, String description) {
1141 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohenbffe7452013-07-22 18:21:45 -07001142 return mQsbScroller;
Adam Cohen66a01fd2013-06-11 12:48:00 -07001143 }
1144
Adam Cohenedb40762013-07-18 16:45:45 -07001145 // The custom content needs to offset its content to account for the QSB
1146 public int getTopOffsetForCustomContent() {
1147 return mWorkspace.getPaddingTop();
1148 }
1149
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001150 @Override
1151 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001152 // Flag the loader to stop early before switching
1153 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -07001154 if (mAppsCustomizeContent != null) {
1155 mAppsCustomizeContent.surrender();
1156 }
Romain Guy13c2e7b2010-03-10 19:45:00 -08001157 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001158 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001159
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001160 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001161 @Override
1162 public void onWindowFocusChanged(boolean hasFocus) {
1163 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001164 mHasFocus = hasFocus;
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001165 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001166
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001167 private boolean acceptFilter() {
1168 final InputMethodManager inputManager = (InputMethodManager)
1169 getSystemService(Context.INPUT_METHOD_SERVICE);
1170 return !inputManager.isFullscreenMode();
1171 }
1172
1173 @Override
1174 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001175 final int uniChar = event.getUnicodeChar();
1176 final boolean handled = super.onKeyDown(keyCode, event);
1177 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1178 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001179 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1180 keyCode, event);
1181 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001182 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001183 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001184 // showSearchDialog()
1185 // If there are multiple keystrokes before the search dialog takes focus,
1186 // onSearchRequested() will be called for every keystroke,
1187 // but it is idempotent, so it's fine.
1188 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001189 }
1190 }
1191
Joe Onorato8a9625e2010-01-28 15:55:35 -08001192 // Eat the long press event so the keyboard doesn't come up.
1193 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1194 return true;
1195 }
1196
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001197 return handled;
1198 }
1199
Karl Rosaen138a0412009-04-23 19:00:21 -07001200 private String getTypedText() {
1201 return mDefaultKeySsb.toString();
1202 }
1203
1204 private void clearTypedText() {
1205 mDefaultKeySsb.clear();
1206 mDefaultKeySsb.clearSpans();
1207 Selection.setSelection(mDefaultKeySsb, 0);
1208 }
1209
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001210 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001211 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1212 * State
1213 */
1214 private static State intToState(int stateOrdinal) {
1215 State state = State.WORKSPACE;
1216 final State[] stateValues = State.values();
1217 for (int i = 0; i < stateValues.length; i++) {
1218 if (stateValues[i].ordinal() == stateOrdinal) {
1219 state = stateValues[i];
1220 break;
1221 }
1222 }
1223 return state;
1224 }
1225
1226 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001227 * Restores the previous state, if it exists.
1228 *
1229 * @param savedState The previous state.
1230 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001231 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001232 private void restoreState(Bundle savedState) {
1233 if (savedState == null) {
1234 return;
1235 }
1236
Michael Jurka883f55b2010-10-21 15:47:14 -07001237 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -07001238 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -07001239 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001240 }
1241
Adam Cohen21cd0022013-10-09 18:57:02 -07001242 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1243 PagedView.INVALID_RESTORE_PAGE);
1244 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001245 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001246 }
1247
Winson Chung3d503fb2011-07-13 17:25:49 -07001248 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001249 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001250
Winson Chung3d503fb2011-07-13 17:25:49 -07001251 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1252 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001253 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001254 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1255 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001256 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1257 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
1258 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001259 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001260 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001261 mRestoring = true;
1262 }
1263
1264 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
1265 if (renameFolder) {
1266 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001267 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001268 mRestoring = true;
1269 }
Winson Chunga12a2502010-12-20 14:41:35 -08001270
Winson Chung785d2eb2011-04-14 16:08:02 -07001271 // Restore the AppsCustomize tab
1272 if (mAppsCustomizeTabHost != null) {
1273 String curTab = savedState.getString("apps_customize_currentTab");
1274 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001275 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -07001276 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -07001277 mAppsCustomizeContent.loadAssociatedPages(
1278 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -07001279 }
1280
Winson Chung5afbf7b2011-07-25 11:53:08 -07001281 int currentIndex = savedState.getInt("apps_customize_currentIndex");
1282 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001283 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001284 mItemIdToViewId = (HashMap<Integer, Integer>)
1285 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001286 }
1287
1288 /**
1289 * Finds all the views we need and configure them properly.
1290 */
1291 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001292 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001293
Craig Mautner360310b2012-10-26 15:13:08 -07001294 mLauncherView = findViewById(R.id.launcher);
Winson Chung4c98d922011-05-31 16:50:48 -07001295 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1296 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001297 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001298 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001299
John Spurlock77e1f472013-09-11 10:09:51 -04001300 mLauncherView.setSystemUiVisibility(
1301 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001302 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001303
Winson Chung4c98d922011-05-31 16:50:48 -07001304 // Setup the drag layer
1305 mDragLayer.setup(this, dragController);
1306
Winson Chung3d503fb2011-07-13 17:25:49 -07001307 // Setup the hotseat
1308 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1309 if (mHotseat != null) {
1310 mHotseat.setup(this);
Winson Chung11a1a532013-09-13 11:14:45 -07001311 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001312 }
1313
Jorim Jaggid017f882014-01-14 17:08:48 -08001314 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Adam Cohen61f560d2013-09-30 15:58:20 -07001315 View widgetButton = findViewById(R.id.widget_button);
1316 widgetButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001317 @Override
1318 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001319 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001320 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001321 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001322 }
1323 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001324 widgetButton.setOnTouchListener(getHapticFeedbackTouchListener());
1325
1326 View wallpaperButton = findViewById(R.id.wallpaper_button);
1327 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001328 @Override
1329 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001330 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001331 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001332 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001333 }
1334 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001335 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1336
1337 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001338 if (hasSettings()) {
1339 settingsButton.setOnClickListener(new OnClickListener() {
1340 @Override
1341 public void onClick(View arg0) {
1342 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001343 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001344 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001345 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001346 });
1347 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1348 } else {
1349 settingsButton.setVisibility(View.GONE);
1350 FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) widgetButton.getLayoutParams();
1351 lp.gravity = Gravity.END | Gravity.TOP;
1352 widgetButton.requestLayout();
1353 }
1354
Adam Cohendbdff6b2013-09-18 19:09:15 -07001355 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001356
Winson Chung4c98d922011-05-31 16:50:48 -07001357 // Setup the workspace
1358 mWorkspace.setHapticFeedbackEnabled(false);
1359 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001360 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001361 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001362
Winson Chungf0ea4d32011-06-06 14:27:16 -07001363 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001364 mSearchDropTargetBar = (SearchDropTargetBar)
1365 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001366
Winson Chungf0ea4d32011-06-06 14:27:16 -07001367 // Setup AppsCustomize
Craig Mautner360310b2012-10-26 15:13:08 -07001368 mAppsCustomizeTabHost = (AppsCustomizeTabHost) findViewById(R.id.apps_customize_pane);
Winson Chungf0ea4d32011-06-06 14:27:16 -07001369 mAppsCustomizeContent = (AppsCustomizePagedView)
1370 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
1371 mAppsCustomizeContent.setup(this, dragController);
Craig Mautner360310b2012-10-26 15:13:08 -07001372
Winson Chung3d503fb2011-07-13 17:25:49 -07001373 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001374 dragController.setDragScoller(mWorkspace);
1375 dragController.setScrollView(mDragLayer);
1376 dragController.setMoveTarget(mWorkspace);
1377 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001378 if (mSearchDropTargetBar != null) {
1379 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -08001380 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001381
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001382 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001383 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001384 mWeightWatcher = new WeightWatcher(this);
1385 mWeightWatcher.setAlpha(0.5f);
1386 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001387 new FrameLayout.LayoutParams(
1388 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001389 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001390 Gravity.BOTTOM)
1391 );
Adam Cohen39a06042013-07-19 14:30:12 -07001392
1393 boolean show = shouldShowWeightWatcher();
1394 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001395 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001396 }
1397
1398 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001399 * Sets the all apps button. This method is called from {@link Hotseat}.
1400 */
1401 public void setAllAppsButton(View allAppsButton) {
1402 mAllAppsButton = allAppsButton;
1403 }
1404
1405 public View getAllAppsButton() {
1406 return mAllAppsButton;
1407 }
1408
1409 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001410 * Creates a view representing a shortcut.
1411 *
1412 * @param info The data structure describing the shortcut.
1413 *
1414 * @return A View inflated from R.layout.application.
1415 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001416 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001417 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -07001418 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001419 }
1420
1421 /**
1422 * Creates a view representing a shortcut inflated from the specified resource.
1423 *
1424 * @param layoutResId The id of the XML layout used to create the shortcut.
1425 * @param parent The group the shortcut belongs to.
1426 * @param info The data structure describing the shortcut.
1427 *
1428 * @return A View inflated from layoutResId.
1429 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001430 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -08001431 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07001432 favorite.applyFromShortcutInfo(info, mIconCache, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001433 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001434 return favorite;
1435 }
1436
1437 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001438 * Add a shortcut to the workspace.
1439 *
1440 * @param data The intent describing the shortcut.
1441 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001442 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001443 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001444 int cellY) {
1445 int[] cellXY = mTmpAddItemCellCoordinates;
1446 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001447 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001448
Michael Jurkad3ef3062010-11-23 16:23:58 -08001449 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001450
Adam Cohen558baaf2011-08-15 15:22:57 -07001451 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -08001452 if (info == null) {
1453 return;
1454 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001455 final View view = createShortcut(info);
1456
Adam Cohenfbba09b2011-07-18 21:43:05 -07001457 // First we check if we already know the exact location where we want to add this item.
1458 if (cellX >= 0 && cellY >= 0) {
1459 cellXY[0] = cellX;
1460 cellXY[1] = cellY;
1461 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001462
1463 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001464 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001465 true, null,null)) {
1466 return;
1467 }
1468 DragObject dragObject = new DragObject();
1469 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001470 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1471 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001472 return;
1473 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001474 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001475 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001476 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001477 foundCellSpan = (result != null);
1478 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001479 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001480 }
1481
1482 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001483 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001484 return;
1485 }
1486
Adam Cohendcd297f2013-06-18 13:13:40 -07001487 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488
1489 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001490 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001491 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001492 }
1493 }
1494
Adam Cohen2f093b62012-04-30 18:59:53 -07001495 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1496 int minHeight) {
1497 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001498 // We want to account for the extra amount of padding that we are adding to the widget
1499 // to ensure that it gets the full amount of space that it has requested
1500 int requiredWidth = minWidth + padding.left + padding.right;
1501 int requiredHeight = minHeight + padding.top + padding.bottom;
Winson Chung66700732013-08-20 16:56:15 -07001502 return CellLayout.rectToCell(requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001503 }
1504
Adam Cohen2f093b62012-04-30 18:59:53 -07001505 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1506 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001507 }
1508
Adam Cohen2f093b62012-04-30 18:59:53 -07001509 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1510 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001511 }
1512
Adam Cohen2f093b62012-04-30 18:59:53 -07001513 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1514 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001515 }
1516
Adam Cohen2f093b62012-04-30 18:59:53 -07001517 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1518 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001519 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001520 }
1521
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001522 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001523 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001524 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001525 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001526 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001527 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001528 private void completeAddAppWidget(final int appWidgetId, long container, long screenId,
Adam Cohened66b2b2012-01-23 17:28:51 -08001529 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1530 if (appWidgetInfo == null) {
1531 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1532 }
Romain Guycbb89e42009-06-08 15:52:54 -07001533
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001534 // Calculate the grid spans needed to fit this widget
Adam Cohendcd297f2013-06-18 13:13:40 -07001535 CellLayout layout = getCellLayout(container, screenId);
Adam Cohen09353862011-07-14 16:10:03 -07001536
Adam Cohen2f093b62012-04-30 18:59:53 -07001537 int[] minSpanXY = getMinSpanForWidget(this, appWidgetInfo);
1538 int[] spanXY = getSpanForWidget(this, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001539
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001540 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001541 // We have saved the position to which the widget was dragged-- this really only matters
1542 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001543 int[] cellXY = mTmpAddItemCellCoordinates;
1544 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001545 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001546 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001547 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1548 cellXY[0] = mPendingAddInfo.cellX;
1549 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001550 spanXY[0] = mPendingAddInfo.spanX;
1551 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001552 foundCellSpan = true;
1553 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001554 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001555 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001556 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1557 spanXY[1], cellXY, finalSpan);
1558 spanXY[0] = finalSpan[0];
1559 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001560 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001561 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001562 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001563 }
1564
Michael Jurka0280c3b2010-09-17 15:00:07 -07001565 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001566 if (appWidgetId != -1) {
1567 // Deleting an app widget ID is a void call but writes to disk before returning
1568 // to the caller...
Michael Jurka43467462013-11-14 12:03:58 +01001569 new AsyncTask<Void, Void, Void>() {
1570 public Void doInBackground(Void ... args) {
Winson Chungf7640c82011-02-28 13:47:29 -08001571 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Michael Jurka43467462013-11-14 12:03:58 +01001572 return null;
Winson Chungf7640c82011-02-28 13:47:29 -08001573 }
Michael Jurka43467462013-11-14 12:03:58 +01001574 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Winson Chungf7640c82011-02-28 13:47:29 -08001575 }
Winson Chung93eef082012-03-23 15:59:27 -07001576 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001577 return;
1578 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001579
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001580 // Build Launcher-specific widget info and save to database
Winson Chung11a49372012-04-27 15:12:38 -07001581 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId,
1582 appWidgetInfo.provider);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001583 launcherInfo.spanX = spanXY[0];
1584 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001585 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1586 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001587
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001588 LauncherModel.addItemToDatabase(this, launcherInfo,
Adam Cohendcd297f2013-06-18 13:13:40 -07001589 container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001590
1591 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001592 if (hostView == null) {
1593 // Perform actual inflation because we're live
1594 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1595 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1596 } else {
1597 // The AppWidgetHostView has already been inflated and instantiated
1598 launcherInfo.hostView = hostView;
1599 }
Romain Guycbb89e42009-06-08 15:52:54 -07001600
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001601 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001602 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001603 launcherInfo.notifyWidgetSizeChanged(this);
1604
Adam Cohendcd297f2013-06-18 13:13:40 -07001605 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001606 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001607
1608 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001609 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001610 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001611 }
Romain Guycbb89e42009-06-08 15:52:54 -07001612
Adam Cohended9f8d2010-11-03 13:25:16 -07001613 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1614 @Override
1615 public void onReceive(Context context, Intent intent) {
1616 final String action = intent.getAction();
1617 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1618 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001619 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001620 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001621
Winson Chungc100e8e2011-08-09 16:02:43 -07001622 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001623 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001624 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001625 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001626 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001627 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1628 mUserPresent = true;
1629 updateRunning();
Dan Sandlerd5024042014-01-09 15:01:33 -05001630 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1631 mModel.resetLoadedState(false, true);
1632 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1633 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1634 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1635 mModel.resetLoadedState(false, true);
1636 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1637 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1638 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001639 } else if (LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED.equals(action)
1640 || LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
1641 getModel().forceReload();
Adam Cohended9f8d2010-11-03 13:25:16 -07001642 }
1643 }
1644 };
1645
1646 @Override
1647 public void onAttachedToWindow() {
1648 super.onAttachedToWindow();
1649
1650 // Listen for broadcasts related to user-presence
1651 final IntentFilter filter = new IntentFilter();
1652 filter.addAction(Intent.ACTION_SCREEN_OFF);
1653 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001654 // For handling managed profiles
1655 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED);
1656 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED);
Dan Sandlerd5024042014-01-09 15:01:33 -05001657 if (ENABLE_DEBUG_INTENTS) {
1658 filter.addAction(DebugIntents.DELETE_DATABASE);
1659 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1660 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001661 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001662 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001663 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001664 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001665 mVisible = true;
1666 }
1667
Adam Cohen0b395352014-06-09 22:54:36 +00001668 /**
1669 * Sets up transparent navigation and status bars in LMP.
1670 * This method is a no-op for other platform versions.
1671 */
1672 @TargetApi(19)
1673 private void setupTransparentSystemBarsForLmp() {
1674 // TODO(sansid): use the APIs directly when compiling against L sdk.
1675 // Currently we use reflection to access the flags and the API to set the transparency
1676 // on the System bars.
1677 if (Utilities.isLmp()) {
1678 try {
1679 getWindow().getAttributes().systemUiVisibility |=
1680 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1681 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1682 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1683 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1684 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1685 Field drawsSysBackgroundsField = WindowManager.LayoutParams.class.getField(
1686 "FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS");
1687 getWindow().addFlags(drawsSysBackgroundsField.getInt(null));
1688
1689 Method setStatusBarColorMethod =
1690 Window.class.getDeclaredMethod("setStatusBarColor", int.class);
1691 Method setNavigationBarColorMethod =
1692 Window.class.getDeclaredMethod("setNavigationBarColor", int.class);
1693 setStatusBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1694 setNavigationBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1695 } catch (NoSuchFieldException e) {
1696 Log.w(TAG, "NoSuchFieldException while setting up transparent bars");
1697 } catch (NoSuchMethodException ex) {
1698 Log.w(TAG, "NoSuchMethodException while setting up transparent bars");
1699 } catch (IllegalAccessException e) {
1700 Log.w(TAG, "IllegalAccessException while setting up transparent bars");
1701 } catch (IllegalArgumentException e) {
1702 Log.w(TAG, "IllegalArgumentException while setting up transparent bars");
1703 } catch (InvocationTargetException e) {
1704 Log.w(TAG, "InvocationTargetException while setting up transparent bars");
1705 } finally {}
1706 }
1707 }
1708
Adam Cohended9f8d2010-11-03 13:25:16 -07001709 @Override
1710 public void onDetachedFromWindow() {
1711 super.onDetachedFromWindow();
1712 mVisible = false;
1713
Adam Cohend113e0c2010-11-11 10:48:05 -08001714 if (mAttached) {
1715 unregisterReceiver(mReceiver);
1716 mAttached = false;
1717 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001718 updateRunning();
1719 }
1720
1721 public void onWindowVisibilityChanged(int visibility) {
1722 mVisible = visibility == View.VISIBLE;
1723 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001724 // The following code used to be in onResume, but it turns out onResume is called when
1725 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1726 // is a more appropriate event to handle
1727 if (mVisible) {
1728 mAppsCustomizeTabHost.onWindowVisible();
1729 if (!mWorkspaceLoading) {
1730 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001731 // We want to let Launcher draw itself at least once before we force it to build
1732 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001733 // apps is nice and speedy.
1734 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001735 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001736 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001737 if (mStarted) return;
1738 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001739 // We delay the layer building a bit in order to give
1740 // other message processing a time to run. In particular
1741 // this avoids a delay in hiding the IME if it was
1742 // currently shown, because doing that may involve
1743 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001744 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001745 final ViewTreeObserver.OnDrawListener listener = this;
1746 mWorkspace.post(new Runnable() {
1747 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001748 if (mWorkspace != null &&
1749 mWorkspace.getViewTreeObserver() != null) {
1750 mWorkspace.getViewTreeObserver().
1751 removeOnDrawListener(listener);
1752 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001753 }
1754 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001755 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001756 }
1757 });
1758 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001759 // When Launcher comes back to foreground, a different Activity might be responsible for
1760 // the app market intent, so refresh the icon
Winson Chungd64a6662013-09-30 11:06:59 -07001761 if (!DISABLE_MARKET_BUTTON) {
1762 updateAppMarketIcon();
1763 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001764 clearTypedText();
1765 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001766 }
1767
1768 private void sendAdvanceMessage(long delay) {
1769 mHandler.removeMessages(ADVANCE_MSG);
1770 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1771 mHandler.sendMessageDelayed(msg, delay);
1772 mAutoAdvanceSentTime = System.currentTimeMillis();
1773 }
1774
1775 private void updateRunning() {
1776 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1777 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1778 mAutoAdvanceRunning = autoAdvanceRunning;
1779 if (autoAdvanceRunning) {
1780 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1781 sendAdvanceMessage(delay);
1782 } else {
1783 if (!mWidgetsToAdvance.isEmpty()) {
1784 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1785 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1786 }
1787 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001788 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001789 }
1790 }
1791 }
1792
1793 private final Handler mHandler = new Handler() {
1794 @Override
1795 public void handleMessage(Message msg) {
1796 if (msg.what == ADVANCE_MSG) {
1797 int i = 0;
1798 for (View key: mWidgetsToAdvance.keySet()) {
1799 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1800 final int delay = mAdvanceStagger * i;
1801 if (v instanceof Advanceable) {
1802 postDelayed(new Runnable() {
1803 public void run() {
1804 ((Advanceable) v).advance();
1805 }
1806 }, delay);
1807 }
1808 i++;
1809 }
1810 sendAdvanceMessage(mAdvanceInterval);
1811 }
1812 }
1813 };
1814
1815 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001816 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001817 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1818 if (v instanceof Advanceable) {
1819 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001820 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001821 updateRunning();
1822 }
1823 }
1824
1825 void removeWidgetToAutoAdvance(View hostView) {
1826 if (mWidgetsToAdvance.containsKey(hostView)) {
1827 mWidgetsToAdvance.remove(hostView);
1828 updateRunning();
1829 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001830 }
1831
Joe Onorato9c1289c2009-08-17 11:03:03 -04001832 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001833 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001834 launcherInfo.hostView = null;
1835 }
1836
Winson Chung93eef082012-03-23 15:59:27 -07001837 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1838 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1839 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001840 }
1841
Winson Chunga6945242014-01-08 14:04:34 -08001842 public DragLayer getDragLayer() {
1843 return mDragLayer;
1844 }
1845
1846 public Workspace getWorkspace() {
1847 return mWorkspace;
1848 }
1849
1850 public Hotseat getHotseat() {
1851 return mHotseat;
1852 }
1853
Jorim Jaggid017f882014-01-14 17:08:48 -08001854 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001855 return mOverviewPanel;
1856 }
1857
1858 public SearchDropTargetBar getSearchBar() {
1859 return mSearchDropTargetBar;
1860 }
1861
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001862 public LauncherAppWidgetHost getAppWidgetHost() {
1863 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001864 }
Romain Guycbb89e42009-06-08 15:52:54 -07001865
Winson Chunga9abd0e2010-10-27 17:18:37 -07001866 public LauncherModel getModel() {
1867 return mModel;
1868 }
1869
Winson Chunga6945242014-01-08 14:04:34 -08001870 public LauncherClings getLauncherClings() {
1871 return mLauncherClings;
1872 }
1873
1874 protected SharedPreferences getSharedPrefs() {
1875 return mSharedPrefs;
1876 }
1877
Bjorn Bringertc459e522013-06-07 19:36:01 +01001878 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001879 getWindow().closeAllPanels();
1880
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001881 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001882 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001883 }
1884
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001885 @Override
1886 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001887 long startTime = 0;
1888 if (DEBUG_RESUME_TIME) {
1889 startTime = System.currentTimeMillis();
1890 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001891 super.onNewIntent(intent);
1892
1893 // Close the menu
1894 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001895 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001896 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001897
Adam Cohened307df2013-10-02 09:37:31 -07001898 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1899 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1900 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001901
Adam Cohen6fecd412013-10-02 17:41:50 -07001902 if (mWorkspace == null) {
1903 // Can be cases where mWorkspace is null, this prevents a NPE
1904 return;
1905 }
1906 Folder openFolder = mWorkspace.getOpenFolder();
1907 // In all these cases, only animate if we're already on home
1908 mWorkspace.exitWidgetResizeMode();
1909 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Coppa120b8e2013-11-12 16:26:04 +00001910 openFolder == null && shouldMoveToDefaultScreenOnHomeIntent()) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001911 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001912 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001913
Adam Cohen6fecd412013-10-02 17:41:50 -07001914 closeFolder();
1915 exitSpringLoadedDragMode();
1916
1917 // If we are already on home, then just animate back to the workspace,
1918 // otherwise, just wait until onResume to set the state back to Workspace
1919 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001920 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001921 } else {
1922 mOnResumeState = State.WORKSPACE;
1923 }
1924
1925 final View v = getWindow().peekDecorView();
1926 if (v != null && v.getWindowToken() != null) {
1927 InputMethodManager imm = (InputMethodManager)getSystemService(
1928 INPUT_METHOD_SERVICE);
1929 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1930 }
1931
1932 // Reset the apps customize page
Winson Chunge7e97e62013-12-02 17:02:50 -08001933 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001934 mAppsCustomizeTabHost.reset();
1935 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001936
1937 onHomeIntent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001938 }
Adam Cohened307df2013-10-02 09:37:31 -07001939
Michael Jurka447bf842013-05-15 14:52:15 +02001940 if (DEBUG_RESUME_TIME) {
1941 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1942 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001943 }
1944
Adam Coppa120b8e2013-11-12 16:26:04 +00001945 /**
1946 * Override point for subclasses to prevent movement to the default screen when the home
1947 * button is pressed. Used (for example) in GEL, to prevent movement during a search.
1948 */
1949 protected boolean shouldMoveToDefaultScreenOnHomeIntent() {
1950 return true;
1951 }
1952
1953 /**
1954 * Override point for subclasses to provide custom behaviour for when a home intent is fired.
1955 */
1956 protected void onHomeIntent() {
1957 // Do nothing
1958 }
1959
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001960 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001961 public void onRestoreInstanceState(Bundle state) {
1962 super.onRestoreInstanceState(state);
1963 for (int page: mSynchronouslyBoundPages) {
1964 mWorkspace.restoreInstanceStateForChild(page);
1965 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001966 }
1967
1968 @Override
1969 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001970 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001971 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1972 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001973 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001974 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001975
Michael Jurka883f55b2010-10-21 15:47:14 -07001976 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001977 // We close any open folder since it will not be re-opened, and we need to make sure
1978 // this state is reflected.
1979 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001980
Adam Cohendcd297f2013-06-18 13:13:40 -07001981 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001982 mWaitingForResult) {
1983 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001984 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001985 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1986 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001987 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1988 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1989 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001990 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001991 }
1992
1993 if (mFolderInfo != null && mWaitingForResult) {
1994 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1995 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1996 }
Michael Jurka946ad472010-07-09 18:05:18 -07001997
Winson Chung785d2eb2011-04-14 16:08:02 -07001998 // Save the current AppsCustomize tab
1999 if (mAppsCustomizeTabHost != null) {
Winson Chung07e045c2013-11-06 15:49:51 -08002000 AppsCustomizePagedView.ContentType type = mAppsCustomizeContent.getContentType();
2001 String currentTabTag = mAppsCustomizeTabHost.getTabTagForContentType(type);
Winson Chung785d2eb2011-04-14 16:08:02 -07002002 if (currentTabTag != null) {
2003 outState.putString("apps_customize_currentTab", currentTabTag);
2004 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07002005 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
2006 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07002007 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00002008 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002009 }
2010
2011 @Override
2012 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002013 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002014
Winson Chunge7a03942011-08-05 15:05:12 -07002015 // Remove all pending runnables
2016 mHandler.removeMessages(ADVANCE_MSG);
2017 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002018 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002019
Winson Chungcd2b0142011-06-08 16:02:26 -07002020 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002021 LauncherAppState app = (LauncherAppState.getInstance());
Winson Chungcd2b0142011-06-08 16:02:26 -07002022 mModel.stopLoader();
2023 app.setLauncher(null);
2024
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002025 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002026 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002027 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002028 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002029 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002030 mAppWidgetHost = null;
2031
2032 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002033
2034 TextKeyListener.getInstance().release();
2035
Winson Chung81b52252012-08-27 15:34:29 -07002036 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
2037 // to prevent leaking Launcher activities on orientation change.
2038 if (mModel != null) {
2039 mModel.unbindItemInfosAndClearQueuedBindRunnables();
2040 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002041
2042 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002043 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002044
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002045 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002046 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002047 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002048 mWorkspace = null;
2049 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002050
Sunny Goyale755d462014-07-22 13:48:29 -07002051 PackageInstallerCompat.getInstance(this).onStop();
Michael Jurka2ecf9952012-06-18 12:52:28 -07002052 LauncherAnimUtils.onDestroyActivity();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002053 }
2054
Adam Cohena9cf38f2011-05-02 15:36:58 -07002055 public DragController getDragController() {
2056 return mDragController;
2057 }
2058
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002059 @Override
2060 public void startActivityForResult(Intent intent, int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002061 if (requestCode >= 0) {
2062 setWaitingForResult(true);
2063 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002064 super.startActivityForResult(intent, requestCode);
2065 }
2066
Winson Chung70d72102011-08-12 11:24:35 -07002067 /**
2068 * Indicates that we want global search for this activity by setting the globalSearch
2069 * argument for {@link #startSearch} to true.
2070 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002071 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002072 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002073 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002074
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002075 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07002076
Karl Rosaen138a0412009-04-23 19:00:21 -07002077 if (initialQuery == null) {
2078 // Use any text typed in the launcher as the initial query
2079 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002080 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002081 if (appSearchData == null) {
2082 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002083 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002084 }
Winson Chungadf0c182012-08-23 14:59:07 -07002085 Rect sourceBounds = new Rect();
2086 if (mSearchDropTargetBar != null) {
2087 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2088 }
Romain Guycbb89e42009-06-08 15:52:54 -07002089
Bjorn Bringertc459e522013-06-07 19:36:01 +01002090 startSearch(initialQuery, selectInitialQuery,
2091 appSearchData, sourceBounds);
2092 }
2093
2094 public void startSearch(String initialQuery,
2095 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Michael Jurkaa33411c2012-06-14 16:18:21 -07002096 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002097 appSearchData, sourceBounds);
Michael Jurkaa33411c2012-06-14 16:18:21 -07002098 }
2099
2100 /**
2101 * Starts the global search activity. This code is a copied from SearchManager
2102 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002103 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002104 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002105 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002106 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2107 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2108 if (globalSearchActivity == null) {
2109 Log.w(TAG, "No global search activity found.");
2110 return;
2111 }
2112 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2113 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2114 intent.setComponent(globalSearchActivity);
2115 // Make sure that we have a Bundle to put source in
2116 if (appSearchData == null) {
2117 appSearchData = new Bundle();
2118 } else {
2119 appSearchData = new Bundle(appSearchData);
2120 }
2121 // Set source to package name of app that starts global search, if not set already.
2122 if (!appSearchData.containsKey("source")) {
2123 appSearchData.putString("source", getPackageName());
2124 }
2125 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2126 if (!TextUtils.isEmpty(initialQuery)) {
2127 intent.putExtra(SearchManager.QUERY, initialQuery);
2128 }
2129 if (selectInitialQuery) {
2130 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2131 }
2132 intent.setSourceBounds(sourceBounds);
2133 try {
2134 startActivity(intent);
2135 } catch (ActivityNotFoundException ex) {
2136 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2137 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002138 }
2139
Yura4f93ec62014-02-04 14:15:21 +00002140 public boolean isOnCustomContent() {
2141 return mWorkspace.isOnOrMovingToCustomContent();
2142 }
2143
Winson Chung70d72102011-08-12 11:24:35 -07002144 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002145 public boolean onPrepareOptionsMenu(Menu menu) {
2146 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002147 if (!isOnCustomContent()) {
2148 // Close any open folders
2149 closeFolder();
2150 // Stop resizing any widgets
2151 mWorkspace.exitWidgetResizeMode();
2152 if (!mWorkspace.isInOverviewMode()) {
2153 // Show the overview mode
2154 showOverviewMode(true);
2155 } else {
2156 showWorkspace(true);
2157 }
Winson Chunge0298742014-01-17 12:03:00 -08002158 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002159 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002160 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002161
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002162 @Override
2163 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002164 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002165 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002166 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002167 }
2168
Joe Onorato9c1289c2009-08-17 11:03:03 -04002169 public boolean isWorkspaceLocked() {
2170 return mWorkspaceLoading || mWaitingForResult;
2171 }
2172
Adam Cohen517a7f52014-03-01 12:12:59 -08002173 public boolean isWorkspaceLoading() {
2174 return mWorkspaceLoading;
2175 }
2176
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002177 private void setWorkspaceLoading(boolean value) {
2178 boolean isLocked = isWorkspaceLocked();
2179 mWorkspaceLoading = value;
2180 if (isLocked != isWorkspaceLocked()) {
2181 onWorkspaceLockedChanged();
2182 }
2183 }
2184
2185 private void setWaitingForResult(boolean value) {
2186 boolean isLocked = isWorkspaceLocked();
2187 mWaitingForResult = value;
2188 if (isLocked != isWorkspaceLocked()) {
2189 onWorkspaceLockedChanged();
2190 }
2191 }
2192
2193 protected void onWorkspaceLockedChanged() { }
2194
Michael Jurka0280c3b2010-09-17 15:00:07 -07002195 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002196 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002197 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002198 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2199 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002200 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002201 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002202 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002203
Adam Cohenad4e15c2013-10-17 16:21:35 -07002204 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2205 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo) {
2206 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2207 }
2208
2209 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2210 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo, int
2211 delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002212 if (appWidgetInfo.configure != null) {
2213 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002214 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002215
Bjorn Bringert7984c942009-12-09 15:38:25 +00002216 // Launch over to configure widget, if needed
2217 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002218 intent.setComponent(appWidgetInfo.configure);
Bjorn Bringert7984c942009-12-09 15:38:25 +00002219 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Michael Jurkaa805e1a2013-08-22 15:00:33 +02002220 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002221 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002222 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002223 Runnable onComplete = new Runnable() {
2224 @Override
2225 public void run() {
2226 // Exit spring loaded mode if necessary after adding the widget
2227 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2228 null);
2229 }
2230 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002231 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002232 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002233 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002234 }
2235 }
Romain Guycbb89e42009-06-08 15:52:54 -07002236
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002237 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002238 // Close any folders that may be open.
2239 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002240 mWorkspace.moveToCustomContentScreen(animate);
2241 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002242 /**
2243 * Process a shortcut drop.
2244 *
2245 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002246 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002247 * @param cell The cell it should be added to, optional
2248 * @param position The location on the screen where it was dropped, optional
2249 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002250 void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
Winson Chung3d503fb2011-07-13 17:25:49 -07002251 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002252 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002253 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002254 mPendingAddInfo.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002255 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002256
2257 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002258 mPendingAddInfo.cellX = cell[0];
2259 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002260 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002261
2262 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2263 createShortcutIntent.setComponent(componentName);
2264 processShortcut(createShortcutIntent);
2265 }
2266
Adam Cohenfbba09b2011-07-18 21:43:05 -07002267 /**
2268 * Process a widget drop.
2269 *
2270 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002271 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002272 * @param cell The cell it should be added to, optional
2273 * @param position The location on the screen where it was dropped, optional
2274 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002275 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
Adam Cohend41fbf52012-02-16 23:53:59 -08002276 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002277 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002278 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002279 mPendingAddInfo.screenId = info.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002280 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08002281 mPendingAddInfo.minSpanX = info.minSpanX;
2282 mPendingAddInfo.minSpanY = info.minSpanY;
2283
Adam Cohenfbba09b2011-07-18 21:43:05 -07002284 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002285 mPendingAddInfo.cellX = cell[0];
2286 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002287 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002288 if (span != null) {
2289 mPendingAddInfo.spanX = span[0];
2290 mPendingAddInfo.spanY = span[1];
2291 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002292
Adam Cohened66b2b2012-01-23 17:28:51 -08002293 AppWidgetHostView hostView = info.boundWidget;
2294 int appWidgetId;
2295 if (hostView != null) {
2296 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002297 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08002298 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002299 // In this case, we either need to start an activity to get permission to bind
2300 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002301 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002302 Bundle options = info.bindOptions;
2303
2304 boolean success = false;
2305 if (options != null) {
2306 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
2307 info.componentName, options);
2308 } else {
2309 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
2310 info.componentName);
2311 }
2312 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002313 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002314 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002315 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002316 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2317 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2318 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Adam Cohendd70d662012-10-04 16:53:44 -07002319 // TODO: we need to make sure that this accounts for the options bundle.
2320 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002321 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2322 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002323 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002324 }
2325
Joe Onoratodeb98af2010-02-19 14:59:39 -08002326 void processShortcut(Intent intent) {
Kenny Guyed131872014-04-30 03:02:21 +01002327 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_SHORTCUT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002328 }
2329
Winson Chung24ab2f12010-09-16 14:10:47 -07002330 void processWallpaper(Intent intent) {
2331 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
2332 }
2333
Adam Cohendcd297f2013-06-18 13:13:40 -07002334 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002335 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002336 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002337 folderInfo.title = getText(R.string.folder_name);
2338
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002339 // Update the model
Adam Cohendcd297f2013-06-18 13:13:40 -07002340 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, cellX, cellY,
Winson Chung3d503fb2011-07-13 17:25:49 -07002341 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002342 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002343
2344 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002345 FolderIcon newFolder =
2346 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002347 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002348 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002349 // Force measure the new folder icon
2350 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2351 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002352 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002353 }
Romain Guycbb89e42009-06-08 15:52:54 -07002354
Joe Onorato9c1289c2009-08-17 11:03:03 -04002355 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002356 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002357 }
2358
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002359 protected ComponentName getWallpaperPickerComponent() {
Michael Jurka7ad868b2013-12-12 15:04:25 +01002360 return new ComponentName(getPackageName(), LauncherWallpaperPickerActivity.class.getName());
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002361 }
2362
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002363 /**
2364 * Registers various content observers. The current implementation registers
2365 * only a favorites observer to keep track of the favorites applications.
2366 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002367 private void registerContentObservers() {
2368 ContentResolver resolver = getContentResolver();
2369 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
2370 true, mWidgetObserver);
2371 }
2372
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002373 @Override
2374 public boolean dispatchKeyEvent(KeyEvent event) {
2375 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2376 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002377 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002378 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002379 case KeyEvent.KEYCODE_VOLUME_DOWN:
Michael Jurka0a457bf2012-11-19 14:05:05 -08002380 if (isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002381 dumpState();
2382 return true;
2383 }
2384 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002385 }
2386 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2387 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002388 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002389 return true;
2390 }
2391 }
2392
2393 return super.dispatchKeyEvent(event);
2394 }
2395
Joe Onorato88ec0992009-11-19 13:16:06 -08002396 @Override
2397 public void onBackPressed() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002398 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07002399 if (mAppsCustomizeContent.getContentType() ==
2400 AppsCustomizePagedView.ContentType.Applications) {
2401 showWorkspace(true);
2402 } else {
2403 showOverviewMode(true);
2404 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07002405 } else if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002406 mWorkspace.exitOverviewMode(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002407 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002408 Folder openFolder = mWorkspace.getOpenFolder();
2409 if (openFolder.isEditingName()) {
2410 openFolder.dismissEditingName();
2411 } else {
2412 closeFolder();
2413 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002414 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002415 mWorkspace.exitWidgetResizeMode();
2416
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002417 // Back button is a no-op here, but give at least some feedback for the button press
2418 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002419 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002420 }
2421
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002422 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002423 * Re-listen when widgets are reset.
2424 */
2425 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002426 if (mAppWidgetHost != null) {
2427 mAppWidgetHost.startListening();
2428 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002429 }
2430
2431 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002432 * Launches the intent referred by the clicked shortcut.
2433 *
2434 * @param v The view representing the clicked shortcut.
2435 */
2436 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002437 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2438 // view has detached (it's possible for this to happen if the view is removed mid touch).
2439 if (v.getWindowToken() == null) {
2440 return;
2441 }
2442
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002443 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002444 return;
2445 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002446
Adam Cohen1697b792013-09-17 19:08:21 -07002447 if (v instanceof Workspace) {
2448 if (mWorkspace.isInOverviewMode()) {
2449 mWorkspace.exitOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002450 }
2451 return;
2452 }
2453
2454 if (v instanceof CellLayout) {
2455 if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002456 mWorkspace.exitOverviewMode(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002457 }
2458 }
2459
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002460 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002461 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002462 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002463 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002464 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002465 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002466 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002467 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002468 onClickAllAppsButton(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002469 } else if (tag instanceof LauncherAppWidgetInfo) {
2470 if (v instanceof PendingAppWidgetHostView) {
2471 onClickPendingWidget((PendingAppWidgetHostView) v);
2472 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002473 }
2474 }
2475
Michael Jurka0e260592010-06-30 17:07:39 -07002476 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002477 return false;
2478 }
2479
Michael Jurkaaf442092010-06-10 17:01:57 -07002480 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002481 * Event handler for the app widget view which has not fully restored.
2482 */
2483 public void onClickPendingWidget(PendingAppWidgetHostView v) {
2484 if (v.isReadyForClickSetup()) {
2485 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
2486 int widgetId = info.appWidgetId;
2487 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2488 if (appWidgetInfo != null) {
2489 mPendingAddWidgetInfo = appWidgetInfo;
2490 mPendingAddInfo.copyFrom(info);
2491 mPendingAddWidgetId = widgetId;
2492
2493 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
2494 intent.setComponent(appWidgetInfo.configure);
2495 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, info.appWidgetId);
2496 Utilities.startActivityForResultSafely(this, intent, REQUEST_RECONFIGURE_APPWIDGET);
2497 }
2498 }
2499 }
2500
2501 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002502 * Event handler for the search button
2503 *
2504 * @param v The view that was clicked.
2505 */
2506 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002507 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2508
Amith Yamasania135ba82011-08-09 17:42:01 -07002509 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002510 }
2511
2512 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002513 * Event handler for the voice button
2514 *
2515 * @param v The view that was clicked.
2516 */
2517 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002518 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002519
Bjorn Bringertc459e522013-06-07 19:36:01 +01002520 startVoice();
2521 }
2522
2523 public void startVoice() {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002524 try {
2525 final SearchManager searchManager =
2526 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2527 ComponentName activityName = searchManager.getGlobalSearchActivity();
2528 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002529 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002530 if (activityName != null) {
2531 intent.setPackage(activityName.getPackageName());
2532 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002533 startActivity(null, intent, "onClickVoiceButton");
Michael Jurkaae65ee32012-04-30 11:45:54 -07002534 } catch (ActivityNotFoundException e) {
2535 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002536 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002537 startActivitySafely(null, intent, "onClickVoiceButton");
2538 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002539 }
2540
2541 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002542 * Event handler for the "grid" button that appears on the home screen, which
2543 * enters all apps mode.
2544 *
2545 * @param v The view that was clicked.
2546 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002547 protected void onClickAllAppsButton(View v) {
2548 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
2549 if (isAllAppsVisible()) {
2550 showWorkspace(true);
2551 } else {
2552 showAllApps(true, AppsCustomizePagedView.ContentType.Applications, false);
2553 }
2554 }
2555
2556 /**
Mohammadinamul Sheik3b1a54a2014-03-18 11:28:19 -07002557 * Event handler for a paged view icon click.
2558 * @param v The view that was clicked.
2559 * @param appInfo The {link AppInfo} of the view.
2560 */
2561 public void onClickPagedViewIcon(View v, AppInfo appInfo) {
2562 if (LOGD) Log.d(TAG, "onClickPagedViewIcon");
2563 startActivitySafely(v, appInfo.intent, appInfo);
2564 getStats().recordLaunch(appInfo.intent);
2565 }
2566
2567 /**
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002568 * Event handler for an app shortcut click.
2569 *
2570 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2571 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002572 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002573 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2574 Object tag = v.getTag();
2575 if (!(tag instanceof ShortcutInfo)) {
2576 throw new IllegalArgumentException("Input must be a Shortcut");
2577 }
2578
2579 // Open shortcut
2580 final ShortcutInfo shortcut = (ShortcutInfo) tag;
2581 final Intent intent = shortcut.intent;
2582
2583 // Check for special shortcuts
2584 if (intent.getComponent() != null) {
2585 final String shortcutClass = intent.getComponent().getClassName();
2586
2587 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2588 MemoryDumpActivity.startDump(this);
2589 return;
2590 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2591 toggleShowWeightWatcher();
2592 return;
2593 }
2594 }
2595
Chris Wren40c5ed32014-06-24 18:24:23 -04002596 // Check for abandoned promise
2597 if (shortcut.isAbandoned() && v instanceof BubbleTextView) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002598 AlertDialog.Builder builder = new AlertDialog.Builder(this);
2599 builder.setTitle(R.string.abandoned_promises_title);
Chris Wren803a4be2014-07-01 16:52:49 -04002600 builder.setMessage(R.string.abandoned_promise_explanation);
Chris Wren40c5ed32014-06-24 18:24:23 -04002601 builder.setPositiveButton(R.string.abandoned_search,
2602 new DialogInterface.OnClickListener() {
2603 public void onClick(DialogInterface dialog, int id) {
2604 startAppShortcutActivity(v);
2605 }
2606 }
2607 );
Chris Wren40c5ed32014-06-24 18:24:23 -04002608 builder.setNeutralButton(R.string.abandoned_clean_this,
2609 new DialogInterface.OnClickListener() {
2610 public void onClick(DialogInterface dialog, int id) {
2611 final BubbleTextView bubble = (BubbleTextView) v;
2612 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2613 mWorkspace.removeAbandonedPromise(bubble, user);
2614 }
2615 });
2616 builder.create().show();
2617 return;
2618 }
2619
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002620 // Start activities
Chris Wren40c5ed32014-06-24 18:24:23 -04002621 startAppShortcutActivity(v);
2622 }
2623
2624 private void startAppShortcutActivity(View v) {
2625 Object tag = v.getTag();
2626 if (!(tag instanceof ShortcutInfo)) {
2627 throw new IllegalArgumentException("Input must be a Shortcut");
2628 }
2629 final ShortcutInfo shortcut = (ShortcutInfo) tag;
2630 final Intent intent = shortcut.intent;
2631
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002632 int[] pos = new int[2];
2633 v.getLocationOnScreen(pos);
2634 intent.setSourceBounds(new Rect(pos[0], pos[1],
2635 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
2636
2637 boolean success = startActivitySafely(v, intent, tag);
2638
2639 mStats.recordLaunch(intent, shortcut);
2640
2641 if (success && v instanceof BubbleTextView) {
2642 mWaitingForResume = (BubbleTextView) v;
2643 mWaitingForResume.setStayPressed(true);
2644 }
2645 }
2646
2647 /**
2648 * Event handler for a folder icon click.
2649 *
2650 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2651 */
2652 protected void onClickFolderIcon(View v) {
2653 if (LOGD) Log.d(TAG, "onClickFolder");
2654 if (!(v instanceof FolderIcon)){
2655 throw new IllegalArgumentException("Input must be a FolderIcon");
2656 }
2657
2658 FolderIcon folderIcon = (FolderIcon) v;
2659 final FolderInfo info = folderIcon.getFolderInfo();
2660 Folder openFolder = mWorkspace.getFolderForTag(info);
2661
2662 // If the folder info reports that the associated folder is open, then verify that
2663 // it is actually opened. There have been a few instances where this gets out of sync.
2664 if (info.opened && openFolder == null) {
2665 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2666 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2667 info.opened = false;
2668 }
2669
2670 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2671 // Close any open folder
2672 closeFolder();
2673 // Open the requested folder
2674 openFolder(folderIcon);
2675 } else {
2676 // Find the open folder...
2677 int folderScreen;
2678 if (openFolder != null) {
2679 folderScreen = mWorkspace.getPageForView(openFolder);
2680 // .. and close it
2681 closeFolder(openFolder);
2682 if (folderScreen != mWorkspace.getCurrentPage()) {
2683 // Close any folder open on the current screen
2684 closeFolder();
2685 // Pull the folder onto this screen
2686 openFolder(folderIcon);
2687 }
2688 }
2689 }
Michael Jurka5130e402011-10-13 04:55:35 -07002690 }
2691
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002692 /**
2693 * Event handler for the (Add) Widgets button that appears after a long press
2694 * on the home screen.
2695 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002696 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002697 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002698 showAllApps(true, AppsCustomizePagedView.ContentType.Widgets, true);
2699 }
2700
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002701 /**
2702 * Event handler for the wallpaper picker button that appears after a long press
2703 * on the home screen.
2704 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002705 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002706 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
2707 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
2708 pickWallpaper.setComponent(getWallpaperPickerComponent());
2709 startActivityForResult(pickWallpaper, REQUEST_PICK_WALLPAPER);
2710 }
2711
2712 /**
2713 * Event handler for a click on the settings button that appears after a long press
2714 * on the home screen.
2715 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002716 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002717 if (LOGD) Log.d(TAG, "onClickSettingsButton");
2718 }
2719
Michael Jurka5130e402011-10-13 04:55:35 -07002720 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002721 // Provide the same haptic feedback that the system offers for virtual keys.
2722 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002723 }
2724
Adam Cohen61f560d2013-09-30 15:58:20 -07002725 public void performHapticFeedbackOnTouchDown(View v) {
2726 // Provide the same haptic feedback that the system offers for virtual keys.
2727 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2728 }
2729
2730 public View.OnTouchListener getHapticFeedbackTouchListener() {
2731 if (mHapticFeedbackTouchListener == null) {
2732 mHapticFeedbackTouchListener = new View.OnTouchListener() {
2733 @Override
2734 public boolean onTouch(View v, MotionEvent event) {
2735 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2736 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2737 }
2738 return false;
2739 }
2740 };
2741 }
2742 return mHapticFeedbackTouchListener;
2743 }
2744
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002745 public void onClickAppMarketButton(View v) {
Winson Chungd64a6662013-09-30 11:06:59 -07002746 if (!DISABLE_MARKET_BUTTON) {
2747 if (mAppMarketIntent != null) {
2748 startActivitySafely(v, mAppMarketIntent, "app market");
2749 } else {
2750 Log.e(TAG, "Invalid app market intent.");
2751 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002752 }
2753 }
2754
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002755 public void onDragStarted(View view) {}
2756
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002757 /**
2758 * Called when the user stops interacting with the launcher.
2759 * This implies that the user is now on the homescreen and is not doing housekeeping.
2760 */
2761 protected void onInteractionEnd() {}
2762
2763 /**
2764 * Called when the user starts interacting with the launcher.
2765 * The possible interactions are:
2766 * - open all apps
2767 * - reorder an app shortcut, or a widget
2768 * - open the overview mode.
2769 * This is a good time to stop doing things that only make sense
2770 * when the user is on the homescreen and not doing housekeeping.
2771 */
2772 protected void onInteractionBegin() {}
2773
Kenny Guyf07af7b2014-07-31 11:39:16 +01002774 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002775 String packageName = componentName.getPackageName();
Kenny Guyf07af7b2014-07-31 11:39:16 +01002776 try {
2777 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2778 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
2779 launcherApps.showAppDetailsForProfile(componentName, user);
2780 } catch (SecurityException e) {
2781 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2782 Log.e(TAG, "Launcher does not have permission to launch settings");
2783 } catch (ActivityNotFoundException e) {
2784 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2785 Log.e(TAG, "Unable to launch settings");
2786 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002787 }
2788
Michael Jurka1e2f4652013-07-08 18:03:46 -07002789 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002790 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2791 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002792 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002793 // System applications cannot be installed. For now, show a toast explaining that.
2794 // We may give them the option of disabling apps this way.
2795 int messageId = R.string.uninstall_system_app_text;
2796 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002797 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002798 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002799 String packageName = componentName.getPackageName();
2800 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002801 Intent intent = new Intent(
2802 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002803 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2804 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002805 if (user != null) {
2806 user.addToIntent(intent, Intent.EXTRA_USER);
2807 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002808 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002809 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002810 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002811 }
2812
Michael Jurka86a720e2012-05-09 11:23:23 -07002813 boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002814 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002815 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002816 // Only launch using the new animation if the shortcut has not opted out (this is a
2817 // private contract between launcher and may be ignored in the future).
2818 boolean useLaunchAnimation = (v != null) &&
2819 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002820 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2821 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002822
Kenny Guy1317e2d2014-05-08 18:52:50 +01002823 UserHandleCompat user = null;
2824 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2825 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2826 user = userManager.getUserForSerialNumber(serialNumber);
2827 }
2828
2829 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002830 if (useLaunchAnimation) {
Adam Cohen4da294d2014-07-28 10:56:19 -07002831 ActivityOptions opts = Utilities.isLmp() ?
2832 ActivityOptions.makeCustomAnimation(this, R.anim.task_open_enter, R.anim.no_anim) :
2833 ActivityOptions.makeScaleUpAnimation(v, 0, 0, v.getMeasuredWidth(), v.getMeasuredHeight());
Adam Cohen6ea3b112014-06-11 11:38:49 -07002834 optsBundle = opts.toBundle();
2835 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002836
2837 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2838 // Could be launching some bookkeeping activity
2839 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002840 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002841 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002842 launcherApps.startActivityForProfile(intent.getComponent(), user,
2843 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002844 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002845 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002846 } catch (SecurityException e) {
2847 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002848 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002849 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002850 "or use the exported attribute for this activity. "
2851 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002852 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002853 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002854 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002855
Michael Jurka86a720e2012-05-09 11:23:23 -07002856 boolean startActivitySafely(View v, Intent intent, Object tag) {
2857 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002858 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2859 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2860 return false;
2861 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002862 try {
2863 success = startActivity(v, intent, tag);
2864 } catch (ActivityNotFoundException e) {
2865 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2866 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2867 }
2868 return success;
2869 }
2870
Adam Cohen268c4752012-06-06 17:47:33 -07002871 /**
2872 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2873 * in the DragLayer in the exact absolute location of the original FolderIcon.
2874 */
2875 private void copyFolderIconToImage(FolderIcon fi) {
2876 final int width = fi.getMeasuredWidth();
2877 final int height = fi.getMeasuredHeight();
2878
2879 // Lazy load ImageView, Bitmap and Canvas
2880 if (mFolderIconImageView == null) {
2881 mFolderIconImageView = new ImageView(this);
2882 }
2883 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2884 mFolderIconBitmap.getHeight() != height) {
2885 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2886 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2887 }
2888
2889 DragLayer.LayoutParams lp;
2890 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2891 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2892 } else {
2893 lp = new DragLayer.LayoutParams(width, height);
2894 }
2895
Adam Cohen307fe232012-08-16 17:55:58 -07002896 // The layout from which the folder is being opened may be scaled, adjust the starting
2897 // view size by this scale factor.
2898 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002899 lp.customPosition = true;
2900 lp.x = mRectForFolderAnimation.left;
2901 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002902 lp.width = (int) (scale * width);
2903 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002904
2905 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2906 fi.draw(mFolderIconCanvas);
2907 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002908 if (fi.getFolder() != null) {
2909 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2910 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002911 }
Adam Cohen268c4752012-06-06 17:47:33 -07002912 // Just in case this image view is still in the drag layer from a previous animation,
2913 // we remove it and re-add it.
2914 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2915 mDragLayer.removeView(mFolderIconImageView);
2916 }
2917 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002918 if (fi.getFolder() != null) {
2919 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002920 }
Adam Cohen268c4752012-06-06 17:47:33 -07002921 }
2922
Adam Cohen2801caf2011-05-13 20:57:39 -07002923 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002924 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002925 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2926 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2927 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2928
Adam Cohenc51934b2011-07-26 21:07:43 -07002929 FolderInfo info = (FolderInfo) fi.getTag();
2930 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2931 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002932 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2933 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002934 }
2935
Adam Cohen268c4752012-06-06 17:47:33 -07002936 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2937 copyFolderIconToImage(fi);
2938 fi.setVisibility(View.INVISIBLE);
2939
Michael Jurka2ecf9952012-06-18 12:52:28 -07002940 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002941 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002942 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
2943 oa.start();
2944 }
2945
Adam Cohen268c4752012-06-06 17:47:33 -07002946 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002947 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002948 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2949 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2950 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2951
Adam Cohen268c4752012-06-06 17:47:33 -07002952 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002953
Adam Cohen268c4752012-06-06 17:47:33 -07002954 // We remove and re-draw the FolderIcon in-case it has changed
2955 mDragLayer.removeView(mFolderIconImageView);
2956 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07002957 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002958 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002959 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002960 oa.addListener(new AnimatorListenerAdapter() {
2961 @Override
2962 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002963 if (cl != null) {
2964 cl.clearFolderLeaveBehind();
2965 // Remove the ImageView copy of the FolderIcon and make the original visible.
2966 mDragLayer.removeView(mFolderIconImageView);
2967 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002968 }
2969 }
2970 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002971 oa.start();
2972 }
2973
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002974 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002975 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002976 * is animated relative to the specified View. If the View is null, no animation
2977 * is played.
2978 *
2979 * @param folderInfo The FolderInfo describing the folder to open.
2980 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002981 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002982 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07002983 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002984
Adam Cohena9cf38f2011-05-02 15:36:58 -07002985 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002986
Adam Cohen4554ee12011-08-03 16:13:21 -07002987 // Just verify that the folder hasn't already been added to the DragLayer.
2988 // There was a one-off crash where the folder had a parent already.
2989 if (folder.getParent() == null) {
2990 mDragLayer.addView(folder);
2991 mDragController.addDropTarget((DropTarget) folder);
2992 } else {
2993 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2994 folder.getParent() + ").");
2995 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002996 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002997 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07002998
2999 // Notify the accessibility manager that this folder "window" has appeared and occluded
3000 // the workspace items
3001 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3002 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003003 }
3004
3005 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003006 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003007 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003008 if (folder.isEditingName()) {
3009 folder.dismissEditingName();
3010 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003011 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07003012
3013 // Dismiss the folder cling
Winson Chunga6945242014-01-08 14:04:34 -08003014 mLauncherClings.dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07003015 }
3016 }
3017
3018 void closeFolder(Folder folder) {
3019 folder.getInfo().opened = false;
3020
3021 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3022 if (parent != null) {
3023 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3024 shrinkAndFadeInFolderIcon(fi);
3025 }
3026 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003027
3028 // Notify the accessibility manager that this folder "window" has disappeard and no
3029 // longer occludeds the workspace items
3030 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003031 }
3032
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003033 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003034 if (!isDraggingEnabled()) return false;
3035 if (isWorkspaceLocked()) return false;
3036 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003037
Adam Cohen1697b792013-09-17 19:08:21 -07003038 if (v instanceof Workspace) {
3039 if (!mWorkspace.isInOverviewMode()) {
Adam Cohen93c97562013-09-26 13:48:01 -07003040 if (mWorkspace.enterOverviewMode()) {
3041 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3042 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3043 return true;
3044 } else {
3045 return false;
3046 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003047 } else {
3048 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003049 }
Adam Cohen1697b792013-09-17 19:08:21 -07003050 }
3051
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003052 CellLayout.CellInfo longClickCellInfo = null;
3053 View itemUnderLongClick = null;
3054 if (v.getTag() instanceof ItemInfo) {
3055 ItemInfo info = (ItemInfo) v.getTag();
3056 longClickCellInfo = new CellLayout.CellInfo(v, info);;
3057 itemUnderLongClick = longClickCellInfo.cell;
3058 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003059 }
3060
Winson Chung3d503fb2011-07-13 17:25:49 -07003061 // The hotseat touch handling does not go through Workspace, and we always allow long press
3062 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003063 final boolean inHotseat = isHotseatLayout(v);
3064 boolean allowLongPress = inHotseat || mWorkspace.allowLongPress();
Winson Chung3d503fb2011-07-13 17:25:49 -07003065 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003066 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003067 // User long pressed on empty space
3068 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3069 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003070 if (mWorkspace.isInOverviewMode()) {
3071 mWorkspace.startReordering(v);
3072 } else {
3073 mWorkspace.enterOverviewMode();
Adam Cohendedbd962013-07-11 14:21:49 -07003074 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003075 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003076 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3077 mHotseat.getOrderInHotseat(
3078 longClickCellInfo.cellX,
3079 longClickCellInfo.cellY));
3080 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003081 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003082 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003083 }
3084 }
3085 }
3086 return true;
3087 }
3088
Winson Chung3d503fb2011-07-13 17:25:49 -07003089 boolean isHotseatLayout(View layout) {
3090 return mHotseat != null && layout != null &&
3091 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3092 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003093
Winson Chung3d503fb2011-07-13 17:25:49 -07003094 /**
3095 * Returns the CellLayout of the specified container at the specified screen.
3096 */
Adam Cohendcd297f2013-06-18 13:13:40 -07003097 CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003098 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3099 if (mHotseat != null) {
3100 return mHotseat.getLayout();
3101 } else {
3102 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003103 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003104 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -07003105 return (CellLayout) mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003106 }
3107 }
3108
Daniel Sandler843e8602010-06-07 14:59:01 -04003109 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003110 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003111 }
3112
Craig Mautner360310b2012-10-26 15:13:08 -07003113 private void setWorkspaceBackground(boolean workspace) {
3114 mLauncherView.setBackground(workspace ?
Michael Jurka496fefb2013-05-06 15:39:11 +02003115 mWorkspaceBackgroundDrawable : null);
Craig Mautner360310b2012-10-26 15:13:08 -07003116 }
3117
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003118 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003119 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3120 int curflags = getWindow().getAttributes().flags
3121 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3122 if (wpflags != curflags) {
3123 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3124 }
Craig Mautner360310b2012-10-26 15:13:08 -07003125 setWorkspaceBackground(visible);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003126 }
3127
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003128 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
3129 if (v instanceof LauncherTransitionable) {
3130 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
3131 }
3132 }
3133
Michael Jurkabed61d22012-02-14 22:51:29 -08003134 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
3135 if (v instanceof LauncherTransitionable) {
3136 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
3137 }
Winson Chung70442722012-02-10 15:43:22 -08003138
3139 // Update the workspace transition step as well
3140 dispatchOnLauncherTransitionStep(v, 0f);
3141 }
3142
3143 private void dispatchOnLauncherTransitionStep(View v, float t) {
3144 if (v instanceof LauncherTransitionable) {
3145 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
3146 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003147 }
3148
3149 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
3150 if (v instanceof LauncherTransitionable) {
3151 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
3152 }
Winson Chung70442722012-02-10 15:43:22 -08003153
3154 // Update the workspace transition step as well
3155 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08003156 }
3157
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003158 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07003159 * Things to test when changing the following seven functions.
3160 * - Home from workspace
3161 * - from center screen
3162 * - from other screens
3163 * - Home from all apps
3164 * - from center screen
3165 * - from other screens
3166 * - Back from all apps
3167 * - from center screen
3168 * - from other screens
3169 * - Launch app from workspace and quit
3170 * - with back
3171 * - with home
3172 * - Launch app from all apps and quit
3173 * - with back
3174 * - with home
3175 * - Go to a screen that's not the default, then all
3176 * apps, and launch and app, and go back
3177 * - with back
3178 * -with home
3179 * - On workspace, long press power and go back
3180 * - with back
3181 * - with home
3182 * - On all apps, long press power and go back
3183 * - with back
3184 * - with home
3185 * - On workspace, power off
3186 * - On all apps, power off
3187 * - Launch an app and turn off the screen while in that app
3188 * - Go back with home key
3189 * - Go back with back key TODO: make this not go to workspace
3190 * - From all apps
3191 * - From workspace
3192 * - Enter and exit car mode (becuase it causes an extra configuration changed)
3193 * - From all apps
3194 * - From the center workspace
3195 * - From another workspace
3196 */
3197
3198 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003199 * Zoom the camera out from the workspace to reveal 'toView'.
3200 * Assumes that the view to show is anchored at either the very top or very bottom
3201 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003202 */
Michael Jurkabed61d22012-02-14 22:51:29 -08003203 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Winson Chungc58497e2013-09-03 17:48:37 -07003204 AppsCustomizePagedView.ContentType contentType = mAppsCustomizeContent.getContentType();
3205 showAppsCustomizeHelper(animated, springLoaded, contentType);
3206 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003207
Winson Chungc58497e2013-09-03 17:48:37 -07003208 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded,
3209 final AppsCustomizePagedView.ContentType contentType) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003210 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003211 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003212 mStateAnimation.cancel();
3213 mStateAnimation = null;
3214 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003215
3216 boolean material = Utilities.isLmp();
3217
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003218 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003219
Winson Chungf0ea4d32011-06-06 14:27:16 -07003220 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
3221 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003222 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeRevealTime);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003223 final int itemsAlphaStagger =
3224 res.getInteger(R.integer.config_appsCustomizeItemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003225
Winson Chungf0ea4d32011-06-06 14:27:16 -07003226 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08003227 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003228 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07003229 final int startDelay =
3230 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07003231
Adam Cohen6c5891a2014-07-09 23:53:15 -07003232 Workspace.State workspaceState = contentType == AppsCustomizePagedView.ContentType.Widgets ?
3233 Workspace.State.OVERVIEW_HIDDEN : Workspace.State.NORMAL_HIDDEN;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003234 Animator workspaceAnim =
Adam Cohen6c5891a2014-07-09 23:53:15 -07003235 mWorkspace.getChangeStateAnimation(workspaceState, animated);
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08003236 if (!LauncherAppState.isDisableAllApps()
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08003237 || contentType == AppsCustomizePagedView.ContentType.Widgets) {
3238 // Set the content type for the all apps/widgets space
Winson Chungc58497e2013-09-03 17:48:37 -07003239 mAppsCustomizeTabHost.setContentTypeImmediate(contentType);
3240 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003241
3242 if (animated) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003243 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Adam Cohen61033d32010-11-15 18:29:44 -08003244
Adam Cohen9bfdb762014-07-21 17:44:06 -07003245 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3246 toView.findViewById(R.id.apps_customize_pane_content);
Adam Cohenf16e5712011-01-13 13:31:45 -08003247
Adam Cohen9bfdb762014-07-21 17:44:06 -07003248 final View page = content.getPageAt(content.getCurrentPage());
3249 final View revealView = toView.findViewById(R.id.fake_page);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003250
Adam Cohen4e243a22014-08-10 18:30:55 -07003251 if (contentType == AppsCustomizePagedView.ContentType.Widgets) {
3252 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel_dark));
3253 } else {
3254 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel));
3255 }
3256
Adam Cohen9bfdb762014-07-21 17:44:06 -07003257 // Hide the real page background, and swap in the fake one
3258 revealView.setVisibility(View.VISIBLE);
3259 content.setPageBackgroundsVisible(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003260
Adam Cohen9bfdb762014-07-21 17:44:06 -07003261 int width = revealView.getMeasuredWidth();
3262 int height = revealView.getMeasuredHeight();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003263
Adam Cohen9bfdb762014-07-21 17:44:06 -07003264 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
3265 float yDrift = height / 2f;
Adam Cohen6c5891a2014-07-09 23:53:15 -07003266
Adam Cohen9bfdb762014-07-21 17:44:06 -07003267 revealView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3268 PropertyValuesHolder panelAlpha = PropertyValuesHolder.ofFloat("alpha", 0.4f, 1f);
3269 PropertyValuesHolder panelDrift =
3270 PropertyValuesHolder.ofFloat("translationY", yDrift, 0f);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003271
Adam Cohen9bfdb762014-07-21 17:44:06 -07003272 ObjectAnimator panelAlphaAndDrift =
3273 ObjectAnimator.ofPropertyValuesHolder(revealView, panelAlpha, panelDrift);
3274 panelAlphaAndDrift.setDuration(revealDuration);
3275 panelAlphaAndDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen6c5891a2014-07-09 23:53:15 -07003276
Adam Cohen9bfdb762014-07-21 17:44:06 -07003277 mStateAnimation.play(panelAlphaAndDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003278
Adam Cohen4e243a22014-08-10 18:30:55 -07003279 if (page != null) {
3280 page.setVisibility(View.VISIBLE);
3281 page.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003282
Adam Cohen4e243a22014-08-10 18:30:55 -07003283 ObjectAnimator pageDrift = ObjectAnimator.ofFloat(page, "translationY", yDrift, 0);
3284 pageDrift.setDuration(revealDuration);
3285 pageDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
3286 mStateAnimation.play(pageDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003287
Adam Cohen4e243a22014-08-10 18:30:55 -07003288 // TODO (adamcohen): remove this 0.01f hack once fw is fixed
3289 // it's there to work around a framework bug (16918357)
3290 page.setAlpha(0.01f);
3291 ObjectAnimator itemsAlpha = ObjectAnimator.ofFloat(page, "alpha", 0.01f, 1f);
3292 itemsAlpha.setDuration(revealDuration);
3293 itemsAlpha.setInterpolator(new AccelerateInterpolator(1.5f));
3294 itemsAlpha.setStartDelay(itemsAlphaStagger);
3295 mStateAnimation.play(itemsAlpha);
3296 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003297
Adam Cohen4e243a22014-08-10 18:30:55 -07003298 View pageIndicators = toView.findViewById(R.id.apps_customize_page_indicator);
3299 pageIndicators.setAlpha(0.01f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003300 ObjectAnimator indicatorsAlpha =
3301 ObjectAnimator.ofFloat(pageIndicators, "alpha", 1f);
3302 indicatorsAlpha.setDuration(revealDuration);
3303 mStateAnimation.play(indicatorsAlpha);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003304
Adam Cohen9bfdb762014-07-21 17:44:06 -07003305 if (material) {
3306 ValueAnimator reveal = (ValueAnimator)
Adam Cohen6c5891a2014-07-09 23:53:15 -07003307 ViewAnimationUtils.createCircularReveal(revealView, width / 2,
Adam Cohen9bfdb762014-07-21 17:44:06 -07003308 height / 2, 0f, revealRadius);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003309 reveal.setDuration(revealDuration);
3310 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen6c5891a2014-07-09 23:53:15 -07003311 mStateAnimation.play(reveal);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003312 }
Michael Jurka1899a362011-11-03 13:50:45 -07003313
Adam Cohen9bfdb762014-07-21 17:44:06 -07003314 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3315 @Override
3316 public void onAnimationEnd(Animator animation) {
3317 dispatchOnLauncherTransitionEnd(fromView, animated, false);
3318 dispatchOnLauncherTransitionEnd(toView, animated, false);
3319
3320 revealView.setVisibility(View.INVISIBLE);
3321 revealView.setLayerType(View.LAYER_TYPE_NONE, null);
Adam Cohen4e243a22014-08-10 18:30:55 -07003322 if (page != null) {
3323 page.setLayerType(View.LAYER_TYPE_NONE, null);
3324 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003325 content.setPageBackgroundsVisible(true);
3326
3327 // Hide the search bar
3328 if (mSearchDropTargetBar != null) {
3329 mSearchDropTargetBar.hideSearchBar(false);
3330 }
3331 }
3332
3333 @Override
3334 public void onAnimationStart(Animator animation) {
3335 // Prepare the position
3336 toView.bringToFront();
3337 toView.setVisibility(View.VISIBLE);
3338 }
3339 });
3340
Michael Jurka1899a362011-11-03 13:50:45 -07003341 boolean delayAnim = false;
Adam Cohen6c5891a2014-07-09 23:53:15 -07003342 if (workspaceAnim != null) {
3343 mStateAnimation.play(workspaceAnim);
3344 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003345 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
3346 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003347
3348 // If any of the objects being animated haven't been measured/laid out
3349 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08003350 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003351 (mWorkspace.getMeasuredWidth() == 0) ||
3352 (toView.getMeasuredWidth() == 0)) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003353 delayAnim = true;
Michael Jurka1899a362011-11-03 13:50:45 -07003354 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003355
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003356 final AnimatorSet stateAnimation = mStateAnimation;
3357 final Runnable startAnimRunnable = new Runnable() {
3358 public void run() {
3359 // Check that mStateAnimation hasn't changed while
3360 // we waited for a layout/draw pass
3361 if (mStateAnimation != stateAnimation)
3362 return;
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003363 dispatchOnLauncherTransitionStart(fromView, animated, false);
3364 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003365 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003366 }
3367 };
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003368 if (delayAnim) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003369 toView.bringToFront();
3370 toView.setVisibility(View.VISIBLE);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003371 final ViewTreeObserver observer = toView.getViewTreeObserver();
3372 observer.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
3373 public void onGlobalLayout() {
3374 startAnimRunnable.run();
3375 toView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
3376 }
3377 });
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003378 } else {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003379 startAnimRunnable.run();
Michael Jurka1899a362011-11-03 13:50:45 -07003380 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003381 } else {
3382 toView.setTranslationX(0.0f);
3383 toView.setTranslationY(0.0f);
3384 toView.setScaleX(1.0f);
3385 toView.setScaleY(1.0f);
3386 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07003387 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07003388
Daniel Sandlere4f98912013-06-25 15:13:26 -04003389 if (!springLoaded && !LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungc7d2b602012-05-16 17:02:20 -07003390 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07003391 if (mSearchDropTargetBar != null) {
3392 mSearchDropTargetBar.hideSearchBar(false);
3393 }
Michael Jurkaabded662011-03-04 12:06:57 -08003394 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003395 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003396 dispatchOnLauncherTransitionStart(fromView, animated, false);
3397 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003398 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003399 dispatchOnLauncherTransitionStart(toView, animated, false);
3400 dispatchOnLauncherTransitionEnd(toView, animated, false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003401 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003402 }
3403
3404 /**
3405 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07003406 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003407 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003408 */
Adam Cohened307df2013-10-02 09:37:31 -07003409 private void hideAppsCustomizeHelper(Workspace.State toState, final boolean animated,
Adam Cohened66b2b2012-01-23 17:28:51 -08003410 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08003411
Michael Jurkab3e22d92011-10-31 15:58:33 -07003412 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003413 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003414 mStateAnimation.cancel();
3415 mStateAnimation = null;
3416 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003417
3418 boolean material = Utilities.isLmp();
3419
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003420 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003421
Winson Chungf0ea4d32011-06-06 14:27:16 -07003422 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003423 final int fadeOutDuration = res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
3424 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeRevealTime);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003425 final int itemsAlphaStagger =
3426 res.getInteger(R.integer.config_appsCustomizeItemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003427
Winson Chungf0ea4d32011-06-06 14:27:16 -07003428 final float scaleFactor = (float)
3429 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
3430 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08003431 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003432 Animator workspaceAnim = null;
Adam Cohened307df2013-10-02 09:37:31 -07003433 if (toState == Workspace.State.NORMAL) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003434 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
3435 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohened307df2013-10-02 09:37:31 -07003436 toState, animated, stagger, -1);
3437 } else if (toState == Workspace.State.SPRING_LOADED ||
3438 toState == Workspace.State.OVERVIEW) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003439 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohened307df2013-10-02 09:37:31 -07003440 toState, animated);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003441 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003442
Winson Chung4afe9b32011-07-27 17:46:20 -07003443 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003444 if (animated) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003445 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurka159b4cc2012-01-17 03:00:35 -08003446
Adam Cohen9bfdb762014-07-21 17:44:06 -07003447 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3448 fromView.findViewById(R.id.apps_customize_pane_content);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003449
Adam Cohen9bfdb762014-07-21 17:44:06 -07003450 final View page = content.getPageAt(content.getNextPage());
3451 final View revealView = fromView.findViewById(R.id.fake_page);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003452
Adam Cohen4e243a22014-08-10 18:30:55 -07003453 AppsCustomizePagedView.ContentType contentType = content.getContentType();
3454 if (contentType == AppsCustomizePagedView.ContentType.Widgets) {
3455 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel_dark));
3456 } else {
3457 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel));
3458 }
3459
Adam Cohen9bfdb762014-07-21 17:44:06 -07003460 int width = revealView.getMeasuredWidth();
3461 int height = revealView.getMeasuredHeight();
3462 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003463
Adam Cohen9bfdb762014-07-21 17:44:06 -07003464 // Hide the real page background, and swap in the fake one
3465 revealView.setVisibility(View.VISIBLE);
3466 content.setPageBackgroundsVisible(false);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003467
Adam Cohen9bfdb762014-07-21 17:44:06 -07003468 float yDrift = height / 2f;
Adam Cohen6c5891a2014-07-09 23:53:15 -07003469
Adam Cohen9bfdb762014-07-21 17:44:06 -07003470 revealView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003471
Adam Cohen9bfdb762014-07-21 17:44:06 -07003472 PropertyValuesHolder panelAlpha = PropertyValuesHolder.ofFloat(View.ALPHA, 1f, 0f);
3473 PropertyValuesHolder panelDrift =
Adam Cohen4e243a22014-08-10 18:30:55 -07003474 PropertyValuesHolder.ofFloat("translationY", 0, yDrift);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003475 ObjectAnimator panelAlphaAndDrift =
3476 ObjectAnimator.ofPropertyValuesHolder(revealView, panelAlpha, panelDrift);
3477 panelAlphaAndDrift.setDuration(revealDuration);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003478
Adam Cohen9bfdb762014-07-21 17:44:06 -07003479 panelAlphaAndDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
3480 panelAlphaAndDrift.setStartDelay(itemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003481
Adam Cohen9bfdb762014-07-21 17:44:06 -07003482 mStateAnimation.play(panelAlphaAndDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003483
Adam Cohen4e243a22014-08-10 18:30:55 -07003484 if (page != null) {
3485 page.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003486
Adam Cohen4e243a22014-08-10 18:30:55 -07003487 ObjectAnimator pageDrift = ObjectAnimator.ofFloat(page, "translationY", 0, yDrift);
3488 pageDrift.setDuration(revealDuration);
3489 pageDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
3490 pageDrift.setStartDelay(itemsAlphaStagger);
3491 mStateAnimation.play(pageDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003492
Adam Cohen4e243a22014-08-10 18:30:55 -07003493 page.setAlpha(1f);
3494 ObjectAnimator itemsAlpha = ObjectAnimator.ofFloat(page, View.ALPHA, 1f, 0f);
3495 itemsAlpha.setDuration(revealDuration);
3496 itemsAlpha.setInterpolator(new LogDecelerateInterpolator(100, 0));
3497 mStateAnimation.play(itemsAlpha);
3498 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003499
Adam Cohen9bfdb762014-07-21 17:44:06 -07003500 View pageIndicators = fromView.findViewById(R.id.apps_customize_page_indicator);
Adam Cohen4e243a22014-08-10 18:30:55 -07003501 pageIndicators.setAlpha(1f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003502 ObjectAnimator indicatorsAlpha =
Adam Cohen4e243a22014-08-10 18:30:55 -07003503 ObjectAnimator.ofFloat(pageIndicators, "alpha", 0f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003504 indicatorsAlpha.setDuration(revealDuration);
3505 indicatorsAlpha.setInterpolator(new DecelerateInterpolator(1.5f));
3506 mStateAnimation.play(indicatorsAlpha);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003507
Adam Cohen9bfdb762014-07-21 17:44:06 -07003508 width = revealView.getMeasuredWidth();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003509
Adam Cohen9bfdb762014-07-21 17:44:06 -07003510 if (material) {
Nilesh Agrawal300c1502014-07-22 13:20:54 -07003511 Animator reveal =
Adam Cohen6c5891a2014-07-09 23:53:15 -07003512 ViewAnimationUtils.createCircularReveal(revealView, width / 2,
3513 height / 2 + 100, revealRadius, 0f);
3514 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
3515 reveal.setDuration(revealDuration);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003516 reveal.setStartDelay(itemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003517
3518 reveal.addListener(new AnimatorListenerAdapter() {
Adam Cohen6c5891a2014-07-09 23:53:15 -07003519 public void onAnimationEnd(Animator animation) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003520 revealView.setVisibility(View.INVISIBLE);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003521 }
3522 });
3523
Adam Cohen6c5891a2014-07-09 23:53:15 -07003524 mStateAnimation.play(reveal);
3525 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003526
3527 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
3528 dispatchOnLauncherTransitionPrepare(toView, animated, true);
3529 mAppsCustomizeContent.stopScrolling();
3530
Adam Cohen6c5891a2014-07-09 23:53:15 -07003531 if (workspaceAnim != null) {
3532 mStateAnimation.play(workspaceAnim);
3533 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003534
3535 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07003536 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08003537 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003538 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08003539 dispatchOnLauncherTransitionEnd(fromView, animated, true);
3540 dispatchOnLauncherTransitionEnd(toView, animated, true);
Adam Cohened66b2b2012-01-23 17:28:51 -08003541 if (onCompleteRunnable != null) {
3542 onCompleteRunnable.run();
3543 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003544
3545 revealView.setLayerType(View.LAYER_TYPE_NONE, null);
Adam Cohen4e243a22014-08-10 18:30:55 -07003546 if (page != null) {
3547 page.setLayerType(View.LAYER_TYPE_NONE, null);
3548 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003549 content.setPageBackgroundsVisible(true);
Chet Haasebc2f0822012-10-26 17:59:53 -07003550 mAppsCustomizeContent.updateCurrentPageScroll();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003551 }
3552 });
3553
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003554 dispatchOnLauncherTransitionStart(fromView, animated, true);
3555 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003556 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003557 } else {
3558 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003559 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003560 dispatchOnLauncherTransitionStart(fromView, animated, true);
3561 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003562 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003563 dispatchOnLauncherTransitionStart(toView, animated, true);
3564 dispatchOnLauncherTransitionEnd(toView, animated, true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003565 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003566 }
3567
Michael Jurkae326f182011-11-21 14:05:46 -08003568 @Override
3569 public void onTrimMemory(int level) {
3570 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07003571 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08003572 mAppsCustomizeTabHost.onTrimMemory();
3573 }
3574 }
3575
Adam Cohened307df2013-10-02 09:37:31 -07003576 protected void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08003577 showWorkspace(animated, null);
3578 }
3579
Adam Cohened307df2013-10-02 09:37:31 -07003580 protected void showWorkspace() {
3581 showWorkspace(true);
3582 }
3583
Adam Cohened66b2b2012-01-23 17:28:51 -08003584 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Adam Cohene25c5d12014-06-18 10:34:58 -07003585 if (mState != State.WORKSPACE || mWorkspace.getState() != Workspace.State.NORMAL) {
Winson Chung2d75f122013-09-23 16:53:31 -07003586 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003587 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened307df2013-10-02 09:37:31 -07003588 hideAppsCustomizeHelper(Workspace.State.NORMAL, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003589
Winson Chungc7d2b602012-05-16 17:02:20 -07003590 // Show the search bar (only animate if we were showing the drop target bar in spring
3591 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003592 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003593 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003594 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003595
Michael Jurkab3e22d92011-10-31 15:58:33 -07003596 // Set focus to the AppsCustomize button
3597 if (mAllAppsButton != null) {
3598 mAllAppsButton.requestFocus();
3599 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003600 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003601
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003602 // Change the state *after* we've called all the transition code
3603 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003604
Winson Chung5fb63472011-02-02 17:03:37 -08003605 // Resume the auto-advance of widgets
3606 mUserPresent = true;
3607 updateRunning();
3608
alanv1d4fde62012-10-17 13:15:47 -07003609 // Send an accessibility event to announce the context change
3610 getWindow().getDecorView()
3611 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003612
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003613 onWorkspaceShown(animated);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003614 }
3615
Adam Cohened307df2013-10-02 09:37:31 -07003616 void showOverviewMode(boolean animated) {
3617 mWorkspace.setVisibility(View.VISIBLE);
3618 hideAppsCustomizeHelper(Workspace.State.OVERVIEW, animated, false, null);
3619 mState = State.WORKSPACE;
3620 onWorkspaceShown(animated);
3621 }
3622
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003623 public void onWorkspaceShown(boolean animated) {
Joe Onorato00acb122009-08-04 16:04:30 -04003624 }
3625
Winson Chung82963d52013-10-09 11:20:57 -07003626 void showAllApps(boolean animated, AppsCustomizePagedView.ContentType contentType,
3627 boolean resetPageToZero) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003628 if (mState != State.WORKSPACE) return;
3629
Winson Chung82963d52013-10-09 11:20:57 -07003630 if (resetPageToZero) {
3631 mAppsCustomizeTabHost.reset();
3632 }
Winson Chungc58497e2013-09-03 17:48:37 -07003633 showAppsCustomizeHelper(animated, false, contentType);
Adam Cohendcc5e712014-06-23 15:38:55 -04003634 mAppsCustomizeTabHost.post(new Runnable() {
3635 @Override
3636 public void run() {
3637 // We post this in-case the all apps view isn't yet constructed.
3638 mAppsCustomizeTabHost.requestFocus();
3639 }
3640 });
Michael Jurkab3e22d92011-10-31 15:58:33 -07003641
Michael Jurkab3e22d92011-10-31 15:58:33 -07003642 // Change the state *after* we've called all the transition code
3643 mState = State.APPS_CUSTOMIZE;
3644
3645 // Pause the auto-advance of widgets until we are out of AllApps
3646 mUserPresent = false;
3647 updateRunning();
3648 closeFolder();
3649
3650 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003651 getWindow().getDecorView()
3652 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003653 }
3654
Adam Cohen7777d962011-08-18 18:58:38 -07003655 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003656 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07003657 hideAppsCustomizeHelper(Workspace.State.SPRING_LOADED, true, true, null);
Winson Chungc07918d2011-07-01 15:35:26 -07003658 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07003659 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003660 }
Adam Cohen7777d962011-08-18 18:58:38 -07003661
Adam Cohenad4e15c2013-10-17 16:21:35 -07003662 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003663 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07003664 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
3665
Winson Chunge7a03942011-08-05 15:05:12 -07003666 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003667 @Override
3668 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003669 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003670 // Before we show workspace, hide all apps again because
3671 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3672 // clean up our state transition functions
3673 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003674 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003675 } else {
3676 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003677 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003678 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003679 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003680 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003681
Michael Jurkad3ef3062010-11-23 16:23:58 -08003682 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07003683 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003684 final boolean animated = true;
3685 final boolean springLoaded = true;
3686 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07003687 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07003688 }
3689 // Otherwise, we are not in spring loaded mode, so don't do anything.
3690 }
3691
Michael Jurkab3e22d92011-10-31 15:58:33 -07003692 void lockAllApps() {
3693 // TODO
3694 }
3695
3696 void unlockAllApps() {
3697 // TODO
3698 }
3699
Winson Chungf0ea4d32011-06-06 14:27:16 -07003700 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003701 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003702 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003703 void showHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003704 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003705 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003706 if (mHotseat.getAlpha() != 1f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003707 int duration = 0;
3708 if (mSearchDropTargetBar != null) {
3709 duration = mSearchDropTargetBar.getTransitionInDuration();
3710 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003711 mHotseat.animate().alpha(1f).setDuration(duration);
3712 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003713 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003714 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003715 }
3716 }
3717 }
3718
3719 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003720 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003721 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003722 void hideHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003723 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003724 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003725 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003726 int duration = 0;
3727 if (mSearchDropTargetBar != null) {
3728 duration = mSearchDropTargetBar.getTransitionOutDuration();
3729 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003730 mHotseat.animate().alpha(0f).setDuration(duration);
3731 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003732 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003733 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003734 }
Winson Chungb26f3d62011-06-02 10:49:29 -07003735 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003736 }
3737
Patrick Dubroy5f445422011-02-18 14:35:21 -08003738 /**
3739 * Add an item from all apps or customize onto the given workspace screen.
3740 * If layout is null, add to the current screen.
3741 */
3742 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003743 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07003744 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07003745 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003746 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003747
Winson Chungdff8ebb2011-09-08 17:25:31 -07003748 /** Maps the current orientation to an index for referencing orientation correct global icons */
3749 private int getCurrentOrientationIndexForGlobalIcons() {
3750 // default - 0, landscape - 1
3751 switch (getResources().getConfiguration().orientation) {
3752 case Configuration.ORIENTATION_LANDSCAPE:
3753 return 1;
3754 default:
3755 return 0;
3756 }
3757 }
3758
Michael Jurkaae65ee32012-04-30 11:45:54 -07003759 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07003760 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003761 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07003762 // Look for the toolbar icon specified in the activity meta-data
3763 Bundle metaData = packageManager.getActivityInfo(
3764 activityName, PackageManager.GET_META_DATA).metaData;
3765 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07003766 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003767 if (iconResId != 0) {
3768 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003769 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003770 }
3771 }
3772 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07003773 // This can happen if the activity defines an invalid drawable
3774 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
3775 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01003776 } catch (Resources.NotFoundException nfe) {
3777 // This can happen if the activity defines an invalid drawable
3778 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
3779 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003780 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003781 return null;
3782 }
3783
3784 // if successful in getting icon, return it; otherwise, set button to use default drawable
3785 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003786 int buttonId, ComponentName activityName, int fallbackDrawableId,
3787 String toolbarResourceName) {
3788 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07003789 Resources r = getResources();
3790 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3791 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003792
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003793 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003794 // If we were unable to find the icon via the meta-data, use a generic one
3795 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07003796 toolbarIcon = r.getDrawable(fallbackDrawableId);
3797 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003798 if (button != null) {
3799 button.setCompoundDrawables(toolbarIcon, null, null, null);
3800 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003801 return null;
3802 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07003803 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003804 if (button != null) {
3805 button.setCompoundDrawables(toolbarIcon, null, null, null);
3806 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003807 return toolbarIcon.getConstantState();
3808 }
3809 }
3810
3811 // if successful in getting icon, return it; otherwise, set button to use default drawable
3812 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003813 int buttonId, ComponentName activityName, int fallbackDrawableId,
3814 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003815 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07003816 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003817
Michael Jurka19e0fc52011-07-22 18:00:21 -07003818 if (button != null) {
3819 // If we were unable to find the icon via the meta-data, use a
3820 // generic one
3821 if (toolbarIcon == null) {
3822 button.setImageResource(fallbackDrawableId);
3823 } else {
3824 button.setImageDrawable(toolbarIcon);
3825 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003826 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003827
3828 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3829
Michael Jurka0423dcf2010-10-05 14:56:18 -07003830 }
3831
Winson Chung1b884092012-06-08 17:13:02 -07003832 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003833 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003834 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003835 }
3836
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003837 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003838 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003839 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003840 }
3841
Winson Chungbb185bd2011-11-21 12:31:42 -08003842 private void invalidatePressedFocusedStates(View container, View button) {
3843 if (container instanceof HolographicLinearLayout) {
3844 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3845 layout.invalidatePressedFocusedStates();
3846 } else if (button instanceof HolographicImageView) {
3847 HolographicImageView view = (HolographicImageView) button;
3848 view.invalidatePressedFocusedStates();
3849 }
3850 }
3851
Cristina Stancu476493b2013-08-07 17:20:14 +01003852 public View getQsbBar() {
Adam Cohen24ce0b32014-01-14 16:18:14 -08003853 if (mQsb == null) {
3854 mQsb = mInflater.inflate(R.layout.qsb, mSearchDropTargetBar, false);
3855 mSearchDropTargetBar.addView(mQsb);
Cristina Stancu476493b2013-08-07 17:20:14 +01003856 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003857 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003858 }
3859
3860 protected boolean updateGlobalSearchIcon() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003861 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003862 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003863 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003864 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003865
Winson Chung1cad91e2011-05-25 17:41:01 -07003866 final SearchManager searchManager =
3867 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3868 ComponentName activityName = searchManager.getGlobalSearchActivity();
3869 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003870 int coi = getCurrentOrientationIndexForGlobalIcons();
3871 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003872 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3873 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3874 if (sGlobalSearchIcon[coi] == null) {
3875 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3876 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3877 TOOLBAR_ICON_METADATA_NAME);
3878 }
3879
Winson Chungc51db6a2011-10-05 11:44:49 -07003880 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3881 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003882 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003883 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003884 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003885 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003886 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3887 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04003888 if (searchButton != null) searchButton.setVisibility(View.GONE);
3889 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003890 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003891 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003892 }
3893 }
3894
Cristina Stancu476493b2013-08-07 17:20:14 +01003895 protected void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003896 final View searchButtonContainer = findViewById(R.id.search_button_container);
3897 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003898 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003899 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003900 }
3901
Cristina Stancu476493b2013-08-07 17:20:14 +01003902 protected boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07003903 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003904 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003905
Winson Chungc51db6a2011-10-05 11:44:49 -07003906 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003907 final SearchManager searchManager =
3908 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3909 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3910
3911 ComponentName activityName = null;
3912 if (globalSearchActivity != null) {
3913 // Check if the global search activity handles voice search
3914 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3915 intent.setPackage(globalSearchActivity.getPackageName());
3916 activityName = intent.resolveActivity(getPackageManager());
3917 }
3918
3919 if (activityName == null) {
3920 // Fallback: check if an activity other than the global search activity
3921 // resolves this
3922 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3923 activityName = intent.resolveActivity(getPackageManager());
3924 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003925 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003926 int coi = getCurrentOrientationIndexForGlobalIcons();
3927 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003928 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3929 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3930 if (sVoiceSearchIcon[coi] == null) {
3931 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3932 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3933 TOOLBAR_ICON_METADATA_NAME);
3934 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003935 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003936 voiceButton.setVisibility(View.VISIBLE);
Winson Chung5841efa2013-09-30 18:06:44 -07003937 updateVoiceButtonProxyVisible(false);
Winson Chungbb185bd2011-11-21 12:31:42 -08003938 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003939 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003940 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07003941 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04003942 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003943 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003944 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003945 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003946 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003947
Cristina Stancu476493b2013-08-07 17:20:14 +01003948 protected void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003949 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3950 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003951 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003952 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003953 }
3954
Winson Chung5841efa2013-09-30 18:06:44 -07003955 public void updateVoiceButtonProxyVisible(boolean forceDisableVoiceButtonProxy) {
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003956 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
3957 if (voiceButtonProxy != null) {
Winson Chung5841efa2013-09-30 18:06:44 -07003958 boolean visible = !forceDisableVoiceButtonProxy &&
3959 mWorkspace.shouldVoiceButtonProxyBeVisible();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003960 voiceButtonProxy.setVisibility(visible ? View.VISIBLE : View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003961 voiceButtonProxy.bringToFront();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003962 }
3963 }
Winson Chung5841efa2013-09-30 18:06:44 -07003964
3965 /**
3966 * This is an overrid eot disable the voice button proxy. If disabled is true, then the voice button proxy
3967 * will be hidden regardless of what shouldVoiceButtonProxyBeVisible() returns.
3968 */
3969 public void disableVoiceButtonProxy(boolean disabled) {
3970 updateVoiceButtonProxyVisible(disabled);
3971 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003972 /**
Winson Chungeb66b142011-06-16 13:14:22 -07003973 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003974 */
3975 private void updateAppMarketIcon() {
Winson Chungd64a6662013-09-30 11:06:59 -07003976 if (!DISABLE_MARKET_BUTTON) {
3977 final View marketButton = findViewById(R.id.market_button);
3978 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3979 // Find the app market activity by resolving an intent.
3980 // (If multiple app markets are installed, it will return the ResolverActivity.)
3981 ComponentName activityName = intent.resolveActivity(getPackageManager());
3982 if (activityName != null) {
3983 int coi = getCurrentOrientationIndexForGlobalIcons();
3984 mAppMarketIntent = intent;
3985 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
3986 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
3987 TOOLBAR_ICON_METADATA_NAME);
3988 marketButton.setVisibility(View.VISIBLE);
3989 } else {
3990 // We should hide and disable the view so that we don't try and restore the visibility
3991 // of it when we swap between drag & normal states from IconDropTarget subclasses.
3992 marketButton.setVisibility(View.GONE);
3993 marketButton.setEnabled(false);
3994 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003995 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003996 }
3997
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003998 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chungd64a6662013-09-30 11:06:59 -07003999 if (!DISABLE_MARKET_BUTTON) {
4000 // Ensure that the new drawable we are creating has the approprate toolbar icon bounds
4001 Resources r = getResources();
4002 Drawable marketIconDrawable = d.newDrawable(r);
4003 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
4004 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
4005 marketIconDrawable.setBounds(0, 0, w, h);
Winson Chung1b884092012-06-08 17:13:02 -07004006
Winson Chungd64a6662013-09-30 11:06:59 -07004007 updateTextButtonWithDrawable(R.id.market_button, marketIconDrawable);
4008 }
Michael Jurka4ef207b2010-11-29 17:05:45 -08004009 }
4010
Michael Jurkad7c28052012-04-27 15:43:36 -07004011 @Override
4012 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07004013 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07004014 final List<CharSequence> text = event.getText();
4015 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07004016 // Populate event with a fake title based on the current state.
4017 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohen6c5891a2014-07-09 23:53:15 -07004018 text.add(mAppsCustomizeTabHost.getContentTag());
alanv1d4fde62012-10-17 13:15:47 -07004019 } else {
4020 text.add(getString(R.string.all_apps_home_button_label));
4021 }
Michael Jurkad7c28052012-04-27 15:43:36 -07004022 return result;
4023 }
4024
Patrick Dubroyceae05d2010-08-30 10:40:53 -07004025 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07004026 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004027 */
4028 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
4029 @Override
4030 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004031 closeSystemDialogs();
4032 }
4033 }
4034
4035 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08004036 * Receives notifications whenever the appwidgets are reset.
4037 */
4038 private class AppWidgetResetObserver extends ContentObserver {
4039 public AppWidgetResetObserver() {
4040 super(new Handler());
4041 }
4042
4043 @Override
4044 public void onChange(boolean selfChange) {
4045 onAppWidgetReset();
4046 }
4047 }
4048
4049 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07004050 * If the activity is currently paused, signal that we need to run the passed Runnable
4051 * in onResume.
4052 *
4053 * This needs to be called from incoming places where resources might have been loaded
4054 * while we are paused. That is becaues the Configuration might be wrong
4055 * when we're not running, and if it comes back to what it was when we
4056 * were paused, we are not restarted.
4057 *
4058 * Implementation of the method from LauncherModel.Callbacks.
4059 *
4060 * @return true if we are currently paused. The caller might be able to
4061 * skip some work in that case since we will come back again.
4062 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004063 private boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004064 if (mPaused) {
4065 Log.i(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02004066 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07004067 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004068 }
4069 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07004070 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07004071 return true;
4072 } else {
4073 return false;
4074 }
4075 }
4076
Michael Jurkac402cd92013-05-20 15:49:32 +02004077 private boolean waitUntilResume(Runnable run) {
4078 return waitUntilResume(run, false);
4079 }
4080
Michael Jurka1e2f4652013-07-08 18:03:46 -07004081 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02004082 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07004083 }
4084
Michael Jurka7607c2f2013-04-03 14:33:19 -07004085 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004086 * If the activity is currently paused, signal that we need to re-run the loader
4087 * in onResume.
4088 *
4089 * This needs to be called from incoming places where resources might have been loaded
4090 * while we are paused. That is becaues the Configuration might be wrong
4091 * when we're not running, and if it comes back to what it was when we
4092 * were paused, we are not restarted.
4093 *
4094 * Implementation of the method from LauncherModel.Callbacks.
4095 *
4096 * @return true if we are currently paused. The caller might be able to
4097 * skip some work in that case since we will come back again.
4098 */
4099 public boolean setLoadOnResume() {
4100 if (mPaused) {
4101 Log.i(TAG, "setLoadOnResume");
4102 mOnResumeNeedsLoad = true;
4103 return true;
4104 } else {
4105 return false;
4106 }
4107 }
4108
4109 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004110 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004111 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04004112 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07004113 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07004114 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07004115 } else {
4116 return SCREEN_COUNT / 2;
4117 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004118 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07004119
Joe Onorato9c1289c2009-08-17 11:03:03 -04004120 /**
4121 * Refreshes the shortcuts shown on the workspace.
4122 *
4123 * Implementation of the method from LauncherModel.Callbacks.
4124 */
4125 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004126 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08004127
Michael Jurka7607c2f2013-04-03 14:33:19 -07004128 // If we're starting binding all over again, clear any bind calls we'd postponed in
4129 // the past (see waitUntilResume) -- we don't need them since we're starting binding
4130 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07004131 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07004132
Winson Chungd64d1762013-08-20 14:37:16 -07004133 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07004134 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07004135 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07004136
Michael Jurka05bf6442011-11-30 20:28:53 -08004137 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07004138 if (mHotseat != null) {
4139 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004140 }
4141 }
4142
Adam Cohendcd297f2013-06-18 13:13:40 -07004143 @Override
4144 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07004145 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07004146
Adam Cohen5084cba2013-09-03 12:01:16 -07004147 // If there are no screens, we need to have an empty screen
4148 if (orderedScreenIds.size() == 0) {
4149 mWorkspace.addExtraEmptyScreen();
4150 }
Winson Chung0e6a7132013-08-23 12:55:10 -07004151
4152 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06004153 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05004154 if (hasCustomContentToLeft()) {
4155 mWorkspace.createCustomContentContainer();
4156 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07004157 }
Winson Chung64359a52013-07-08 17:17:08 -07004158 }
4159
4160 @Override
4161 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Winson Chunga90303b2013-11-15 13:05:06 -08004162 // Log to disk
4163 Launcher.addDumpLog(TAG, "11683562 - bindAddScreens()", true);
4164 Launcher.addDumpLog(TAG, "11683562 - orderedScreenIds: " +
4165 TextUtils.join(", ", orderedScreenIds), true);
Adam Cohendcd297f2013-06-18 13:13:40 -07004166 int count = orderedScreenIds.size();
4167 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07004168 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07004169 }
Adam Cohendcd297f2013-06-18 13:13:40 -07004170 }
4171
Adam Cohen39a06042013-07-19 14:30:12 -07004172 private boolean shouldShowWeightWatcher() {
4173 String spKey = LauncherAppState.getSharedPreferencesKey();
4174 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b802013-08-15 15:44:26 -07004175 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07004176
4177 return show;
4178 }
4179
4180 private void toggleShowWeightWatcher() {
4181 String spKey = LauncherAppState.getSharedPreferencesKey();
4182 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
4183 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
4184
4185 show = !show;
4186
4187 SharedPreferences.Editor editor = sp.edit();
4188 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
4189 editor.commit();
4190
4191 if (mWeightWatcher != null) {
4192 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
4193 }
4194 }
4195
Winson Chungd64d1762013-08-20 14:37:16 -07004196 public void bindAppsAdded(final ArrayList<Long> newScreens,
4197 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07004198 final ArrayList<ItemInfo> addAnimated,
4199 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004200 Runnable r = new Runnable() {
4201 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07004202 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07004203 }
4204 };
4205 if (waitUntilResume(r)) {
4206 return;
4207 }
4208
Winson Chungd64d1762013-08-20 14:37:16 -07004209 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08004210 if (newScreens != null) {
4211 bindAddScreens(newScreens);
4212 }
Winson Chungd64d1762013-08-20 14:37:16 -07004213
4214 // We add the items without animation on non-visible pages, and with
4215 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08004216 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004217 bindItems(addNotAnimated, 0,
4218 addNotAnimated.size(), false);
4219 }
Adam Cohen76a47a12014-02-05 11:47:43 -08004220 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004221 bindItems(addAnimated, 0,
4222 addAnimated.size(), true);
4223 }
Winson Chungc58497e2013-09-03 17:48:37 -07004224
Winson Chung87412982013-10-03 18:34:14 -07004225 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07004226 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07004227
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004228 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004229 addedApps != null && mAppsCustomizeContent != null) {
4230 mAppsCustomizeContent.addApps(addedApps);
4231 }
Winson Chungd64d1762013-08-20 14:37:16 -07004232 }
4233
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004234 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004235 * Bind the items start-end from the list.
4236 *
4237 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004238 */
Winson Chung64359a52013-07-08 17:17:08 -07004239 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
4240 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07004241 Runnable r = new Runnable() {
4242 public void run() {
4243 bindItems(shortcuts, start, end, forceAnimateIcons);
4244 }
4245 };
4246 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004247 return;
4248 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004249
Winson Chungf0c6ae02012-03-21 16:10:31 -07004250 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07004251 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
4252 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07004253 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004254 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07004255 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004256 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04004257 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07004258
4259 // Short circuit if we are loading dock items for a configuration which has no dock
4260 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
4261 mHotseat == null) {
4262 continue;
4263 }
4264
Joe Onorato9c1289c2009-08-17 11:03:03 -04004265 switch (item.itemType) {
4266 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
4267 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07004268 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004269 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07004270
Winson Chung64359a52013-07-08 17:17:08 -07004271 /*
4272 * TODO: FIX collision case
4273 */
Winson Chungce376632013-07-11 16:12:41 -07004274 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
4275 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
4276 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07004277 View v = cl.getChildAt(item.cellX, item.cellY);
4278 Object tag = v.getTag();
4279 String desc = "Collision while binding workspace item: " + item
4280 + ". Collides with " + tag;
4281 if (LauncherAppState.isDogfoodBuild()) {
4282 throw (new RuntimeException(desc));
4283 } else {
4284 Log.d(TAG, desc);
4285 }
Winson Chungce376632013-07-11 16:12:41 -07004286 }
Winson Chung64359a52013-07-08 17:17:08 -07004287 }
4288
Adam Cohendcd297f2013-06-18 13:13:40 -07004289 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
4290 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07004291 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07004292 // Animate all the applications up now
4293 shortcut.setAlpha(0f);
4294 shortcut.setScaleX(0f);
4295 shortcut.setScaleY(0f);
4296 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07004297 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004298 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004299 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07004300 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07004301 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07004302 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07004303 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07004304 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
4305 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004306 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07004307 default:
4308 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04004309 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004310 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004311
Winson Chung997a9232013-07-24 15:33:46 -07004312 if (animateIcons) {
4313 // Animate to the correct page
4314 if (newShortcutsScreenId > -1) {
4315 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07004316 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07004317 final Runnable startBounceAnimRunnable = new Runnable() {
4318 public void run() {
4319 anim.playTogether(bounceAnims);
4320 anim.start();
4321 }
4322 };
Winson Chung997a9232013-07-24 15:33:46 -07004323 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07004324 // We post the animation slightly delayed to prevent slowdowns
4325 // when we are loading right after we return to launcher.
4326 mWorkspace.postDelayed(new Runnable() {
4327 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00004328 if (mWorkspace != null) {
4329 mWorkspace.snapToPage(newScreenIndex);
4330 mWorkspace.postDelayed(startBounceAnimRunnable,
4331 NEW_APPS_ANIMATION_DELAY);
4332 }
Winson Chung94d67682013-09-25 16:29:40 -07004333 }
4334 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07004335 } else {
4336 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07004337 }
4338 }
Winson Chung64359a52013-07-08 17:17:08 -07004339 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004340 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004341 }
4342
Joe Onorato9c1289c2009-08-17 11:03:03 -04004343 /**
4344 * Implementation of the method from LauncherModel.Callbacks.
4345 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004346 public void bindFolders(final HashMap<Long, FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07004347 Runnable r = new Runnable() {
4348 public void run() {
4349 bindFolders(folders);
4350 }
4351 };
4352 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004353 return;
4354 }
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004355 sFolders.clear();
4356 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004357 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004358
4359 /**
4360 * Add the views for a widget to the workspace.
4361 *
4362 * Implementation of the method from LauncherModel.Callbacks.
4363 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004364 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004365 Runnable r = new Runnable() {
4366 public void run() {
4367 bindAppWidget(item);
4368 }
4369 };
4370 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004371 return;
4372 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004373
Daniel Sandler843e8602010-06-07 14:59:01 -04004374 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4375 if (DEBUG_WIDGETS) {
4376 Log.d(TAG, "bindAppWidget: " + item);
4377 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004378 final Workspace workspace = mWorkspace;
4379
Sunny Goyalff572272014-07-23 13:58:07 -07004380 AppWidgetProviderInfo appWidgetInfo;
4381 if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0) &&
4382 ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
4383
4384 appWidgetInfo = mModel.findAppWidgetProviderInfoWithComponent(this, item.providerName);
4385 if (appWidgetInfo == null) {
4386 if (DEBUG_WIDGETS) {
4387 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4388 + " belongs to component " + item.providerName
4389 + ", as the povider is null");
4390 }
4391 LauncherModel.deleteItemFromDatabase(this, item);
4392 return;
4393 }
4394 // Note: This assumes that the id remap broadcast is received before this step.
4395 // If that is not the case, the id remap will be ignored and user may see the
4396 // click to setup view.
4397 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(appWidgetInfo, null, null);
4398 pendingInfo.spanX = item.spanX;
4399 pendingInfo.spanY = item.spanY;
4400 pendingInfo.minSpanX = item.minSpanX;
4401 pendingInfo.minSpanY = item.minSpanY;
4402 Bundle options =
4403 AppsCustomizePagedView.getDefaultOptionsForWidget(this, pendingInfo);
4404
4405 boolean success = false;
4406 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
4407 if (options != null) {
4408 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(newWidgetId,
4409 appWidgetInfo.provider, options);
4410 } else {
4411 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(newWidgetId,
4412 appWidgetInfo.provider);
4413 }
4414
4415 // TODO consider showing a permission dialog when the widget is clicked.
4416 if (!success) {
4417 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4418 if (DEBUG_WIDGETS) {
4419 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4420 + " belongs to component " + item.providerName
4421 + ", as the launcher is unable to bing a new widget id");
4422 }
4423 LauncherModel.deleteItemFromDatabase(this, item);
4424 return;
4425 }
4426
4427 item.appWidgetId = newWidgetId;
4428
4429 // If the widget has a configure activity, it is still needs to set it up, otherwise
4430 // the widget is ready to go.
4431 item.restoreStatus = (appWidgetInfo.configure == null)
4432 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4433 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4434
4435 LauncherModel.updateItemInDatabase(this, item);
4436 }
4437
Sunny Goyal651077b2014-06-30 14:15:31 -07004438 if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
4439 final int appWidgetId = item.appWidgetId;
4440 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4441 if (DEBUG_WIDGETS) {
4442 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
4443 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004444
Sunny Goyal651077b2014-06-30 14:15:31 -07004445 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
4446 } else {
4447 appWidgetInfo = null;
Sunny Goyalff572272014-07-23 13:58:07 -07004448 item.hostView = new PendingAppWidgetHostView(this, item.restoreStatus);
Sunny Goyal651077b2014-06-30 14:15:31 -07004449 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004450 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004451 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004452
Joe Onorato9c1289c2009-08-17 11:03:03 -04004453 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004454 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004455
Adam Cohendcd297f2013-06-18 13:13:40 -07004456 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004457 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07004458 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4459
Joe Onorato9c1289c2009-08-17 11:03:03 -04004460 workspace.requestLayout();
4461
Daniel Sandler843e8602010-06-07 14:59:01 -04004462 if (DEBUG_WIDGETS) {
4463 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4464 + (SystemClock.uptimeMillis()-start) + "ms");
4465 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004466 }
4467
Sunny Goyalff572272014-07-23 13:58:07 -07004468 /**
4469 * Restores a pending widget.
4470 *
4471 * @param appWidgetId The app widget id
4472 * @param cellInfo The position on screen where to create the widget.
4473 */
4474 private void completeRestoreAppWidget(final int appWidgetId) {
4475 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4476 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4477 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4478 return;
4479 }
4480
4481 PendingAppWidgetHostView pendingView = (PendingAppWidgetHostView) view;
4482 pendingView.setStatus(LauncherAppWidgetInfo.RESTORE_COMPLETED);
4483
4484 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) pendingView.getTag();
4485 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4486
4487 mWorkspace.reinflateWidgetsIfNecessary();
4488 LauncherModel.updateItemInDatabase(this, info);
4489 }
4490
Adam Cohen1462de32012-07-24 22:34:36 -07004491 public void onPageBoundSynchronously(int page) {
4492 mSynchronouslyBoundPages.add(page);
4493 }
4494
Joe Onorato9c1289c2009-08-17 11:03:03 -04004495 /**
4496 * Callback saying that there aren't any more items to bind.
4497 *
4498 * Implementation of the method from LauncherModel.Callbacks.
4499 */
Adam Cohene25af792013-06-06 23:08:25 -07004500 public void finishBindingItems(final boolean upgradePath) {
Winson Chungd64d1762013-08-20 14:37:16 -07004501 Runnable r = new Runnable() {
4502 public void run() {
4503 finishBindingItems(upgradePath);
4504 }
4505 };
4506 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004507 return;
4508 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004509 if (mSavedState != null) {
4510 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004511 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004512 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004513 mSavedState = null;
4514 }
4515
Adam Cohen1462de32012-07-24 22:34:36 -07004516 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004517
Winson Chungc51db6a2011-10-05 11:44:49 -07004518 // Update the market app icon as necessary (the other icons will be managed in response to
4519 // package changes in bindSearchablesChanged()
Winson Chungd64a6662013-09-30 11:06:59 -07004520 if (!DISABLE_MARKET_BUTTON) {
4521 updateAppMarketIcon();
4522 }
Michael Jurkac1f5d262011-09-30 19:32:27 -07004523
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004524 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004525 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004526
4527 // If we received the result of any pending adds while the loader was running (e.g. the
4528 // widget configuration forced an orientation change), process them now.
4529 if (sPendingAddItem != null) {
4530 final long screenId = completeAdd(sPendingAddItem);
4531
4532 // TODO: this moves the user to the page where the pending item was added. Ideally,
4533 // the screen would be guaranteed to exist after bind, and the page would be set through
4534 // the workspace restore process.
4535 mWorkspace.post(new Runnable() {
4536 @Override
4537 public void run() {
4538 mWorkspace.snapToScreenId(screenId);
4539 }
4540 });
4541 sPendingAddItem = null;
4542 }
4543
Adam Cohene25af792013-06-06 23:08:25 -07004544 if (upgradePath) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004545 mWorkspace.getUniqueComponents(true, null);
4546 mIntentsOnWorkspaceFromUpgradePath = mWorkspace.getUniqueComponents(true, null);
Adam Cohene25af792013-06-06 23:08:25 -07004547 }
Sunny Goyale755d462014-07-22 13:48:29 -07004548 PackageInstallerCompat.getInstance(this).onFinishBind();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004549 }
4550
Adam Cohen3ed316a2014-07-23 18:21:20 -07004551 private void sendLoadingCompleteBroadcastIfNecessary() {
4552 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4553 String permission =
4554 getResources().getString(R.string.receive_first_load_broadcast_permission);
4555 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4556 sendBroadcast(intent, permission);
4557 SharedPreferences.Editor editor = mSharedPrefs.edit();
4558 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4559 editor.apply();
4560 }
4561 }
4562
Winson Chunga0b7e862013-09-05 16:03:15 -07004563 public boolean isAllAppsButtonRank(int rank) {
4564 if (mHotseat != null) {
4565 return mHotseat.isAllAppsButtonRank(rank);
4566 }
4567 return false;
4568 }
4569
Winson Chunga2413752012-04-03 14:22:34 -07004570 private boolean canRunNewAppsAnimation() {
4571 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4572 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4573 }
4574
Winson Chungc9168342013-06-26 14:54:55 -07004575 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4576 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4577 PropertyValuesHolder.ofFloat("alpha", 1f),
4578 PropertyValuesHolder.ofFloat("scaleX", 1f),
4579 PropertyValuesHolder.ofFloat("scaleY", 1f));
4580 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4581 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
4582 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
4583 return bounceAnim;
4584 }
4585
Adam Cohen27772732013-11-11 14:00:56 +00004586 public boolean useVerticalBarLayout() {
4587 return LauncherAppState.getInstance().getDynamicGrid().
4588 getDeviceProfile().isVerticalBarLayout();
4589 }
4590
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004591 protected Rect getSearchBarBounds() {
4592 return LauncherAppState.getInstance().getDynamicGrid().
4593 getDeviceProfile().getSearchBarBounds();
4594 }
4595
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004596 @Override
4597 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07004598 boolean searchVisible = updateGlobalSearchIcon();
4599 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07004600 if (mSearchDropTargetBar != null) {
4601 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
4602 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004603 }
4604
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004605 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004606 * Add the icons for all apps.
4607 *
4608 * Implementation of the method from LauncherModel.Callbacks.
4609 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004610 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004611 if (LauncherAppState.isDisableAllApps()) {
Winson Chungc58497e2013-09-03 17:48:37 -07004612 if (mIntentsOnWorkspaceFromUpgradePath != null) {
4613 if (LauncherModel.UPGRADE_USE_MORE_APPS_FOLDER) {
4614 getHotseat().addAllAppsFolder(mIconCache, apps,
4615 mIntentsOnWorkspaceFromUpgradePath, Launcher.this, mWorkspace);
4616 }
4617 mIntentsOnWorkspaceFromUpgradePath = null;
Daniel Sandler8707e0f2013-08-15 15:54:18 -07004618 }
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004619 if (mAppsCustomizeContent != null) {
4620 mAppsCustomizeContent.onPackagesUpdated(
4621 LauncherModel.getSortedWidgetsAndShortcuts(this));
4622 }
Winson Chungc58497e2013-09-03 17:48:37 -07004623 } else {
Winson Chungad7db6e2013-10-08 14:01:06 -07004624 if (mAppsCustomizeContent != null) {
Winson Chungc58497e2013-09-03 17:48:37 -07004625 mAppsCustomizeContent.setApps(apps);
Winson Chung6e1c0d32013-10-25 15:24:24 -07004626 mAppsCustomizeContent.onPackagesUpdated(
4627 LauncherModel.getSortedWidgetsAndShortcuts(this));
Winson Chungc58497e2013-09-03 17:48:37 -07004628 }
Winson Chung785d2eb2011-04-14 16:08:02 -07004629 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004630 }
4631
4632 /**
4633 * A package was updated.
4634 *
4635 * Implementation of the method from LauncherModel.Callbacks.
4636 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004637 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004638 Runnable r = new Runnable() {
4639 public void run() {
4640 bindAppsUpdated(apps);
4641 }
4642 };
4643 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004644 return;
4645 }
4646
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004647 if (mWorkspace != null) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004648 mWorkspace.updateShortcutsAndWidgets(apps);
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004649 }
Winson Chungc58497e2013-09-03 17:48:37 -07004650
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004651 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004652 mAppsCustomizeContent != null) {
4653 mAppsCustomizeContent.updateApps(apps);
4654 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004655 }
4656
4657 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004658 * Update the state of a package, typically related to install state.
4659 *
4660 * Implementation of the method from LauncherModel.Callbacks.
4661 */
Sunny Goyale755d462014-07-22 13:48:29 -07004662 @Override
4663 public void updatePackageState(ArrayList<PackageInstallInfo> installInfo) {
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004664 if (mWorkspace != null) {
Sunny Goyale755d462014-07-22 13:48:29 -07004665 mWorkspace.updatePackageState(installInfo);
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004666 }
4667 }
4668
4669 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004670 * A package was uninstalled. We take both the super set of packageNames
4671 * in addition to specific applications to remove, the reason being that
4672 * this can be called when a package is updated as well. In that scenario,
4673 * we only remove specific components from the workspace, where as
4674 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004675 *
4676 * Implementation of the method from LauncherModel.Callbacks.
4677 */
Winson Chung83892cc2013-05-01 16:53:33 -07004678 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Kenny Guyed131872014-04-30 03:02:21 +01004679 final ArrayList<AppInfo> appInfos, final UserHandleCompat user) {
Winson Chungd64d1762013-08-20 14:37:16 -07004680 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004681 public void run() {
Kenny Guyed131872014-04-30 03:02:21 +01004682 bindComponentsRemoved(packageNames, appInfos, user);
Winson Chung83892cc2013-05-01 16:53:33 -07004683 }
Winson Chungd64d1762013-08-20 14:37:16 -07004684 };
4685 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004686 return;
4687 }
4688
Winson Chungdf95eb12013-10-16 14:57:07 -07004689 if (!packageNames.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004690 mWorkspace.removeItemsByPackageName(packageNames, user);
Winson Chungdf95eb12013-10-16 14:57:07 -07004691 }
4692 if (!appInfos.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004693 mWorkspace.removeItemsByApplicationInfo(appInfos, user);
Joe Onorato36115782010-06-17 13:28:48 -04004694 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004695
Winson Chunga1820962011-10-03 16:31:06 -07004696 // Notify the drag controller
Winson Chungdf95eb12013-10-16 14:57:07 -07004697 mDragController.onAppsRemoved(packageNames, appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004698
Winson Chungdf95eb12013-10-16 14:57:07 -07004699 // Update AllApps
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004700 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004701 mAppsCustomizeContent != null) {
4702 mAppsCustomizeContent.removeApps(appInfos);
4703 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004704 }
Joe Onoratobe386092009-11-17 17:32:16 -08004705
4706 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07004707 * A number of packages were updated.
4708 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004709 private ArrayList<Object> mWidgetsAndShortcuts;
4710 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004711 public void run() {
Michael Jurkac402cd92013-05-20 15:49:32 +02004712 bindPackagesUpdated(mWidgetsAndShortcuts);
4713 mWidgetsAndShortcuts = null;
Winson Chung83892cc2013-05-01 16:53:33 -07004714 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004715 };
Michael Jurkac402cd92013-05-20 15:49:32 +02004716 public void bindPackagesUpdated(final ArrayList<Object> widgetsAndShortcuts) {
4717 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
4718 mWidgetsAndShortcuts = widgetsAndShortcuts;
Winson Chung83892cc2013-05-01 16:53:33 -07004719 return;
4720 }
4721
Winson Chung64359a52013-07-08 17:17:08 -07004722 // Update the widgets pane
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004723 if (mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004724 mAppsCustomizeContent.onPackagesUpdated(widgetsAndShortcuts);
Winson Chung785d2eb2011-04-14 16:08:02 -07004725 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004726 }
4727
Winson Chung400438b2011-01-16 17:53:48 -08004728 private int mapConfigurationOriActivityInfoOri(int configOri) {
4729 final Display d = getWindowManager().getDefaultDisplay();
4730 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4731 switch (d.getRotation()) {
4732 case Surface.ROTATION_0:
4733 case Surface.ROTATION_180:
4734 // We are currently in the same basic orientation as the natural orientation
4735 naturalOri = configOri;
4736 break;
4737 case Surface.ROTATION_90:
4738 case Surface.ROTATION_270:
4739 // We are currently in the other basic orientation to the natural orientation
4740 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4741 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4742 break;
4743 }
4744
4745 int[] oriMap = {
4746 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4747 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4748 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4749 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4750 };
4751 // Since the map starts at portrait, we need to offset if this device's natural orientation
4752 // is landscape.
4753 int indexOffset = 0;
4754 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4755 indexOffset = 1;
4756 }
4757 return oriMap[(d.getRotation() + indexOffset) % 4];
4758 }
Adam Cohen446e9402011-09-15 18:21:21 -07004759
Winson Chung4b919f82012-05-01 10:44:08 -07004760 public boolean isRotationEnabled() {
Michael Jurka0a457bf2012-11-19 14:05:05 -08004761 boolean enableRotation = sForceEnableRotation ||
Winson Chung4b919f82012-05-01 10:44:08 -07004762 getResources().getBoolean(R.bool.allow_rotation);
4763 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08004764 }
Winson Chung4b919f82012-05-01 10:44:08 -07004765 public void lockScreenOrientation() {
4766 if (isRotationEnabled()) {
4767 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4768 .getConfiguration().orientation));
4769 }
4770 }
4771 public void unlockScreenOrientation(boolean immediate) {
4772 if (isRotationEnabled()) {
4773 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004774 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004775 } else {
4776 mHandler.postDelayed(new Runnable() {
4777 public void run() {
4778 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4779 }
4780 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004781 }
Winson Chung4b919f82012-05-01 10:44:08 -07004782 }
Winson Chung400438b2011-01-16 17:53:48 -08004783 }
4784
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004785 /**
4786 * Called when the SearchBar hint should be changed.
4787 *
4788 * @param hint the hint to be displayed in the search bar.
4789 */
4790 protected void onSearchBarHintChanged(String hint) {
Winson Chunga6945242014-01-08 14:04:34 -08004791 mLauncherClings.updateSearchBarHint(hint);
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004792 }
4793
Winson Chunge43a1e72014-01-15 10:33:02 -08004794 protected boolean isLauncherPreinstalled() {
4795 PackageManager pm = getPackageManager();
4796 try {
4797 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4798 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4799 return true;
4800 } else {
4801 return false;
4802 }
4803 } catch (NameNotFoundException e) {
4804 e.printStackTrace();
4805 return false;
4806 }
4807 }
4808
Adam Cohenea90f832014-05-21 15:03:34 -07004809 /**
4810 * This method indicates whether or not we should suggest default wallpaper dimensions
4811 * when our wallpaper cropper was not yet used to set a wallpaper.
4812 */
4813 protected boolean overrideWallpaperDimensions() {
4814 return true;
4815 }
4816
Adam Cohen5eed5d82014-05-19 13:12:13 -07004817 protected boolean shouldClingFocusHotseatApp() {
4818 return false;
4819 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004820 protected String getFirstRunClingSearchBarHint() {
4821 return "";
4822 }
4823 protected String getFirstRunCustomContentHint() {
4824 return "";
4825 }
Winson Chung3a6e7f32013-10-09 15:50:52 -07004826 protected int getFirstRunFocusedHotseatAppDrawableId() {
4827 return -1;
4828 }
4829 protected ComponentName getFirstRunFocusedHotseatAppComponentName() {
4830 return null;
4831 }
4832 protected int getFirstRunFocusedHotseatAppRank() {
4833 return -1;
4834 }
4835 protected String getFirstRunFocusedHotseatAppBubbleTitle() {
4836 return "";
4837 }
4838 protected String getFirstRunFocusedHotseatAppBubbleDescription() {
4839 return "";
4840 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004841
Winson Chungaf40f202013-09-18 18:26:31 -07004842 public void dismissFirstRunCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004843 mLauncherClings.dismissFirstRunCling(v);
4844 }
4845 public void dismissMigrationClingCopyApps(View v) {
4846 mLauncherClings.dismissMigrationClingCopyApps(v);
4847 }
4848 public void dismissMigrationClingUseDefault(View v) {
4849 mLauncherClings.dismissMigrationClingUseDefault(v);
4850 }
4851 public void dismissMigrationWorkspaceCling(View v) {
4852 mLauncherClings.dismissMigrationWorkspaceCling(v);
Winson Chungaf40f202013-09-18 18:26:31 -07004853 }
Winson Chung82f55532011-08-09 14:14:23 -07004854 public void dismissWorkspaceCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004855 mLauncherClings.dismissWorkspaceCling(v);
Winson Chung7d7541e2011-09-16 20:14:36 -07004856 }
4857 public void dismissFolderCling(View v) {
Winson Chunga6945242014-01-08 14:04:34 -08004858 mLauncherClings.dismissFolderCling(v);
Winson Chung82f55532011-08-09 14:14:23 -07004859 }
Adam Cohen6268f2d2014-05-16 16:42:35 -07004860 public void markFolderClingDismissedIfNecessary() {
4861 mLauncherClings.markFolderClingDismissedIfNecessary();
4862 }
Adam Cohen432609a2014-03-13 17:03:22 -07004863
4864 /**
4865 * To be overridden by subclasses to indicate that there is an activity to launch
4866 * before showing the standard launcher experience.
4867 */
4868 protected boolean hasFirstRunActivity() {
4869 return false;
4870 }
4871
4872 /**
4873 * To be overridden by subclasses to launch any first run activity
4874 */
4875 protected Intent getFirstRunActivity() {
4876 return null;
4877 }
4878
Winson Chunga6945242014-01-08 14:04:34 -08004879 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004880 return !ActivityManager.isRunningInTestHarness() &&
4881 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004882 }
4883
Adam Cohen4a9423d2014-03-28 14:22:31 -07004884 protected boolean hasRunFirstRunActivity() {
4885 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4886 }
4887
Adam Cohen432609a2014-03-13 17:03:22 -07004888 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004889 if (shouldRunFirstRunActivity() &&
4890 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004891 Intent firstRunIntent = getFirstRunActivity();
4892 if (firstRunIntent != null) {
4893 startActivity(firstRunIntent);
4894 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004895 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004896 }
4897 }
Adam Cohen432609a2014-03-13 17:03:22 -07004898 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004899 }
4900
4901 private void markFirstRunActivityShown() {
4902 SharedPreferences.Editor editor = mSharedPrefs.edit();
4903 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4904 editor.apply();
4905 }
4906
Adam Cohen432609a2014-03-13 17:03:22 -07004907 /**
4908 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4909 * screen that must be displayed and dismissed.
4910 */
4911 protected boolean hasDismissableIntroScreen() {
4912 return false;
4913 }
4914
4915 /**
4916 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4917 */
4918 protected View getIntroScreen() {
4919 return null;
4920 }
4921
4922 /**
4923 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4924 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4925 */
4926 private boolean shouldShowIntroScreen() {
4927 return hasDismissableIntroScreen() &&
4928 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4929 }
4930
4931 protected void showIntroScreen() {
4932 View introScreen = getIntroScreen();
4933 changeWallpaperVisiblity(false);
4934 if (introScreen != null) {
4935 mDragLayer.showOverlayView(introScreen);
4936 }
4937 }
4938
4939 public void dismissIntroScreen() {
4940 markIntroScreenDismissed();
4941 if (showFirstRunActivity()) {
4942 // We delay hiding the intro view until the first run activity is showing. This
4943 // avoids a blip.
4944 mWorkspace.postDelayed(new Runnable() {
4945 @Override
4946 public void run() {
4947 mDragLayer.dismissOverlayView();
4948 }
4949 }, ACTIVITY_START_DELAY);
4950 } else {
4951 mDragLayer.dismissOverlayView();
4952 }
4953 changeWallpaperVisiblity(true);
4954 }
4955
4956 private void markIntroScreenDismissed() {
4957 SharedPreferences.Editor editor = mSharedPrefs.edit();
4958 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4959 editor.apply();
4960 }
4961
Winson Chunga6945242014-01-08 14:04:34 -08004962 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004963 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4964 if (mHotseat != null) mHotseat.setAlpha(1f);
4965 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
4966 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004967 }
4968
4969 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004970 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4971 if (mHotseat != null) mHotseat.setAlpha(0f);
4972 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
4973 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004974 }
4975
Mathew Inwood72fbec12013-11-19 15:45:07 +00004976 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Kenny Guyed131872014-04-30 03:02:21 +01004977 // Called from search suggestion, not supported in other profiles.
4978 final UserHandleCompat myUser = UserHandleCompat.myUserHandle();
4979 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
4980 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(appLaunchIntent,
4981 myUser);
4982 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004983 return null;
4984 }
Kenny Guyed131872014-04-30 03:02:21 +01004985 return new AppInfo(this, activityInfo, myUser, mIconCache, null);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004986 }
4987
4988 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4989 Bitmap icon) {
Kenny Guyed131872014-04-30 03:02:21 +01004990 // Called from search suggestion, not supported in other profiles.
4991 return createShortcutDragInfo(shortcutIntent, caption, icon,
4992 UserHandleCompat.myUserHandle());
4993 }
4994
4995 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4996 Bitmap icon, UserHandleCompat user) {
Kenny Guyc2bd8102014-06-30 12:30:31 +01004997 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyd6fe5262014-07-21 17:11:41 +01004998 CharSequence contentDescription = userManager.getBadgedLabelForUser(caption, user);
Kenny Guyc2bd8102014-06-30 12:30:31 +01004999 return new ShortcutInfo(shortcutIntent, caption, contentDescription, icon, user);
Mathew Inwood72fbec12013-11-19 15:45:07 +00005000 }
5001
Mathew Inwoodb90860a2014-04-11 17:17:39 +01005002 protected void moveWorkspaceToDefaultScreen() {
5003 mWorkspace.moveToDefaultScreen(false);
5004 }
5005
Mathew Inwood72fbec12013-11-19 15:45:07 +00005006 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
5007 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07005008 mWorkspace.onExternalDragStartedWithItem(dragView);
5009 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00005010 }
5011
Anjali Koppalf5d29132014-02-28 13:33:27 -08005012 @Override
5013 public void onPageSwitch(View newPage, int newPageIndex) {
5014 }
5015
Winson Chung80baf5a2010-08-09 16:03:15 -07005016 /**
Joe Onoratobe386092009-11-17 17:32:16 -08005017 * Prints out out state for debugging.
5018 */
5019 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04005020 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08005021 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08005022 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
5023 Log.d(TAG, "mRestoring=" + mRestoring);
5024 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
5025 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07005026 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08005027 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07005028
Winson Chung785d2eb2011-04-14 16:08:02 -07005029 if (mAppsCustomizeContent != null) {
5030 mAppsCustomizeContent.dumpState();
5031 }
Daniel Sandler325dc232013-06-05 22:57:57 -04005032 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08005033 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07005034
5035 @Override
5036 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
5037 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07005038 synchronized (sDumpLogs) {
5039 writer.println(" ");
5040 writer.println("Debug logs: ");
5041 for (int i = 0; i < sDumpLogs.size(); i++) {
5042 writer.println(" " + sDumpLogs.get(i));
5043 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07005044 }
5045 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005046
5047 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07005048 if (DEBUG_DUMP_LOG) {
5049 synchronized (sDumpLogs) {
5050 Log.d(TAG, "");
5051 Log.d(TAG, "*********************");
5052 Log.d(TAG, "Launcher debug logs: ");
5053 for (int i = 0; i < sDumpLogs.size(); i++) {
5054 Log.d(TAG, " " + sDumpLogs.get(i));
5055 }
5056 Log.d(TAG, "*********************");
5057 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07005058 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005059 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005060 }
5061
5062 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05005063 addDumpLog(tag, log, null, debugLog);
5064 }
5065
5066 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07005067 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05005068 if (e != null) {
5069 Log.d(tag, log, e);
5070 } else {
5071 Log.d(tag, log);
5072 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005073 }
Winson Chungede41292013-09-19 16:27:36 -07005074 if (DEBUG_DUMP_LOG) {
5075 sDateStamp.setTime(System.currentTimeMillis());
5076 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05005077 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
5078 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07005079 }
Winson Chungede41292013-09-19 16:27:36 -07005080 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005081 }
5082
Winson Chungede41292013-09-19 16:27:36 -07005083 public void dumpLogsToLocalData() {
5084 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01005085 new AsyncTask<Void, Void, Void>() {
5086 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07005087 boolean success = false;
5088 sDateStamp.setTime(sRunStart);
5089 String FILENAME = sDateStamp.getMonth() + "-"
5090 + sDateStamp.getDay() + "_"
5091 + sDateStamp.getHours() + "-"
5092 + sDateStamp.getMinutes() + "_"
5093 + sDateStamp.getSeconds() + ".txt";
5094
5095 FileOutputStream fos = null;
5096 File outFile = null;
5097 try {
5098 outFile = new File(getFilesDir(), FILENAME);
5099 outFile.createNewFile();
5100 fos = new FileOutputStream(outFile);
5101 } catch (Exception e) {
5102 e.printStackTrace();
5103 }
5104 if (fos != null) {
5105 PrintWriter writer = new PrintWriter(fos);
5106
5107 writer.println(" ");
5108 writer.println("Debug logs: ");
5109 synchronized (sDumpLogs) {
5110 for (int i = 0; i < sDumpLogs.size(); i++) {
5111 writer.println(" " + sDumpLogs.get(i));
5112 }
5113 }
5114 writer.close();
5115 }
5116 try {
5117 if (fos != null) {
5118 fos.close();
5119 success = true;
5120 }
5121 } catch (IOException e) {
5122 e.printStackTrace();
5123 }
Michael Jurka43467462013-11-14 12:03:58 +01005124 return null;
Winson Chungede41292013-09-19 16:27:36 -07005125 }
Michael Jurka43467462013-11-14 12:03:58 +01005126 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07005127 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005128 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08005129}
Michael Jurka2763be32011-02-24 11:19:57 -08005130
Michael Jurkaabded662011-03-04 12:06:57 -08005131interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08005132 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07005133 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08005134 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08005135 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08005136 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08005137}
Dan Sandlerd5024042014-01-09 15:01:33 -05005138
5139interface DebugIntents {
5140 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
5141 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00005142}