blob: 37a7f5cc83f0635b0e4143836d74c326ea840692 [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;
Adam Cohen2854d252014-08-27 16:04:07 -070025import android.animation.TimeInterpolator;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070026import android.animation.ValueAnimator;
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;
Adam Cohen0f668f32014-09-08 19:54:17 +020062import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080063import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020064import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080065import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070066import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070067import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040068import android.os.SystemClock;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080069import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.text.Selection;
71import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070072import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080073import android.text.method.TextKeyListener;
Winson Chung892c74d2013-08-22 16:15:50 -070074import android.util.DisplayMetrics;
Joe Onorato7c312c12009-08-13 21:36:53 -070075import android.util.Log;
Sunny Goyalf8763012014-09-23 16:22:10 -070076import android.view.ContextThemeWrapper;
Adam Cohen96d30a12013-07-16 18:13:21 -070077import android.view.Display;
78import android.view.Gravity;
79import android.view.HapticFeedbackConstants;
80import android.view.KeyEvent;
81import android.view.LayoutInflater;
82import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070083import android.view.MotionEvent;
84import android.view.Surface;
85import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070086import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080087import android.view.View.OnLongClickListener;
Adam Cohen2854d252014-08-27 16:04:07 -070088import android.view.ViewAnimationUtils;
Adam Cohen96d30a12013-07-16 18:13:21 -070089import android.view.ViewGroup;
90import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080091import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Sunny Goyal651077b2014-06-30 14:15:31 -070092import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070093import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080094import android.view.accessibility.AccessibilityEvent;
Adam Cohen9bfdb762014-07-21 17:44:06 -070095import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080096import android.view.animation.DecelerateInterpolator;
Adam Cohen2854d252014-08-27 16:04:07 -070097import android.view.animation.Interpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080098import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070099import android.widget.Advanceable;
100import android.widget.FrameLayout;
101import android.widget.ImageView;
102import android.widget.TextView;
103import android.widget.Toast;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700104
Sunny Goyal651077b2014-06-30 14:15:31 -0700105import com.android.launcher3.DropTarget.DragObject;
106import com.android.launcher3.PagedView.PageSwitchListener;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700107import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100108import com.android.launcher3.compat.LauncherActivityInfoCompat;
109import com.android.launcher3.compat.LauncherAppsCompat;
Sunny Goyale755d462014-07-22 13:48:29 -0700110import com.android.launcher3.compat.PackageInstallerCompat;
111import com.android.launcher3.compat.PackageInstallerCompat.PackageInstallInfo;
Kenny Guyed131872014-04-30 03:02:21 +0100112import com.android.launcher3.compat.UserHandleCompat;
113import com.android.launcher3.compat.UserManagerCompat;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700114
Adam Cohenc0dcf592011-06-01 15:30:43 -0700115import java.io.DataInputStream;
116import java.io.DataOutputStream;
Adam Cohen4caf2982013-08-20 18:54:31 -0700117import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700119import java.io.FileNotFoundException;
Adam Cohen4caf2982013-08-20 18:54:31 -0700120import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700121import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700122import java.io.PrintWriter;
Adam Cohen0b395352014-06-09 22:54:36 +0000123import java.lang.reflect.Field;
124import java.lang.reflect.InvocationTargetException;
125import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700126import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700127import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700128import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700129import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700130import java.util.HashMap;
Michael Jurkad7c28052012-04-27 15:43:36 -0700131import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000132import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700133
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800134/**
135 * Default launcher application.
136 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100137public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700138 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700139 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800140 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700141 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142
Daniel Sandlerf061f822013-06-27 13:59:36 -0400143 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400144 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700145 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400146 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700147 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700148
Dan Sandlerd5024042014-01-09 15:01:33 -0500149 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
150
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700152 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800153 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700154 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700155 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800156
Michael Jurka8b805b12012-04-18 14:23:14 -0700157 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700158 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700159
Mathew Inwood876a8462013-06-14 14:12:41 +0100160 /**
161 * IntentStarter uses request codes starting with this. This must be greater than all activity
162 * request codes used internally.
163 */
164 protected static final int REQUEST_LAST = 100;
165
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800166 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
167
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800168 static final int SCREEN_COUNT = 5;
169 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800170
Romain Guy98d01652009-06-30 16:21:04 -0700171 private static final String PREFERENCES = "launcher.preferences";
Michael Jurka0a457bf2012-11-19 14:05:05 -0800172 // To turn on these properties, type
173 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
174 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher_force_rotate";
175 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800176 static final String DISABLE_ALL_APPS_PROPERTY = "launcher_noallapps";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177
Winson Chung2672ff92012-05-04 16:22:30 -0700178 // The Intent extra that defines whether to ignore the launch animation
179 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400180 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700181
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 // Type: int
183 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700184 // Type: int
185 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800186 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700187 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
188 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800189 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
190 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700191 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800192 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700193 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800194 // Type: boolean
195 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
196 // Type: long
197 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700198 // Type: int
199 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
200 // Type: int
201 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
202 // Type: parcelable
203 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000204 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800205 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000206 // Type: int[]
207 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800208
Adam Cohen432609a2014-03-13 17:03:22 -0700209 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800210 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
211
Adam Cohen3ed316a2014-07-23 18:21:20 -0700212 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
213 static final String ACTION_FIRST_LOAD_COMPLETE =
214 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
215
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100216 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700217 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100218 "com.android.launcher.toolbar_search_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700219 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100220 "com.android.launcher.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700221
Adam Cohen39a06042013-07-19 14:30:12 -0700222 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b802013-08-15 15:44:26 -0700223 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700224
Winson Chunga6945242014-01-08 14:04:34 -0800225 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
226
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700227 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700228 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700229 private State mState = State.WORKSPACE;
230 private AnimatorSet mStateAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700231
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700232 private boolean mIsSafeModeEnabled;
233
Joe Onorato9c1289c2009-08-17 11:03:03 -0400234 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700235 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
236 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700237 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800238
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800239 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800240 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800241
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000242 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
243 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
244
Winson Chunga2413752012-04-03 14:22:34 -0700245 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700246 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
247 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Winson Chung64359a52013-07-08 17:17:08 -0700248 private static int NEW_APPS_ANIMATION_DELAY = 500;
Adam Cohen63f1ec02014-08-12 09:23:13 -0700249 private static final int SINGLE_FRAME_DELAY = 16;
Winson Chunga2413752012-04-03 14:22:34 -0700250
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800251 private final BroadcastReceiver mCloseSystemDialogsReceiver
252 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800253 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
254
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800255 private LayoutInflater mInflater;
256
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800257 private Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700258 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800259 private View mPageIndicators;
Michael Jurkab737ee62011-11-15 15:57:22 -0800260 private DragLayer mDragLayer;
261 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700262 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700263
Sunny Goyalffe83f12014-08-14 17:39:34 -0700264 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700265 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700266
Michael Jurkac9d95c52011-08-29 14:03:34 -0700267 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700268 private AppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800269 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700270
Michael Jurka0280c3b2010-09-17 15:00:07 -0700271 private int[] mTmpAddItemCellCoordinates = new int[2];
272
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800273 private FolderInfo mFolderInfo;
274
Winson Chung3d503fb2011-07-13 17:25:49 -0700275 private Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800276 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700277
Michael Jurka838a4ca2011-02-07 13:33:06 -0800278 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700279
Winson Chungc51db6a2011-10-05 11:44:49 -0700280 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700281 private AppsCustomizeTabHost mAppsCustomizeTabHost;
282 private AppsCustomizePagedView mAppsCustomizeContent;
283 private boolean mAutoAdvanceRunning = false;
Adam Cohen24ce0b32014-01-14 16:18:14 -0800284 private View mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800286 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700287 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
288 // scroll issues (because the workspace may not have been measured yet) and extra work.
289 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
290 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291
292 private SpannableStringBuilder mDefaultKeySsb = null;
293
Joe Onorato9c1289c2009-08-17 11:03:03 -0400294 private boolean mWorkspaceLoading = true;
295
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800296 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800297 private boolean mRestoring;
298 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700299 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800300
Michael Jurka1e2f4652013-07-08 18:03:46 -0700301 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700302 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
303
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800304 private Bundle mSavedInstanceState;
305
Joe Onorato9c1289c2009-08-17 11:03:03 -0400306 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800307 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800308 private boolean mUserPresent = true;
309 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700310 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800311 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400312
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700313 private static LocaleConfiguration sLocaleConfiguration = null;
314
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700315 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700316
Adam Cohen61f560d2013-09-30 15:58:20 -0700317 private View.OnTouchListener mHapticFeedbackTouchListener;
318
Adam Cohended9f8d2010-11-03 13:25:16 -0700319 // Related to the auto-advancing of widgets
320 private final int ADVANCE_MSG = 1;
321 private final int mAdvanceInterval = 20000;
322 private final int mAdvanceStagger = 250;
323 private long mAutoAdvanceSentTime;
324 private long mAutoAdvanceTimeLeft = -1;
325 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
326 new HashMap<View, AppWidgetProviderInfo>();
327
Winson Chung400438b2011-01-16 17:53:48 -0800328 // Determines how long to wait after a rotation before restoring the screen orientation to
329 // match the sensor state.
330 private final int mRestoreScreenOrientationDelay = 500;
331
Michael Jurka4ef207b2010-11-29 17:05:45 -0800332 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700333 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
334 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
Winson Chungd64a6662013-09-30 11:06:59 -0700335
Craig Mautner360310b2012-10-26 15:13:08 -0700336 private Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700337
Adam Cohen1462de32012-07-24 22:34:36 -0700338 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700339 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700340
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700341 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700342 static Date sDateStamp = new Date();
343 static DateFormat sDateFormat =
344 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
345 static long sRunStart = System.currentTimeMillis();
346 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700347
Winson Chung46353de2012-02-16 14:05:10 -0800348 // We only want to get the SharedPreferences once since it does an FS stat each time we get
349 // it from the context.
350 private SharedPreferences mSharedPrefs;
351
Adam Cohene25af792013-06-06 23:08:25 -0700352 private static ArrayList<ComponentName> mIntentsOnWorkspaceFromUpgradePath = null;
353
Winson Chungf0c6ae02012-03-21 16:10:31 -0700354 // Holds the page that we need to animate to, and the icon views that we need to animate up
355 // when we scroll to that page on resume.
Adam Cohen268c4752012-06-06 17:47:33 -0700356 private ImageView mFolderIconImageView;
357 private Bitmap mFolderIconBitmap;
358 private Canvas mFolderIconCanvas;
359 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700360
Michael Jurkaddd62e92011-02-16 17:49:14 -0800361 private BubbleTextView mWaitingForResume;
362
Michael Jurkac1f5d262011-09-30 19:32:27 -0700363 private Runnable mBuildLayersRunnable = new Runnable() {
364 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700365 if (mWorkspace != null) {
366 mWorkspace.buildPageHardwareLayers();
367 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700368 }
369 };
370
Adam Cohendb364c32014-05-20 14:23:40 -0700371 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800372
Michael Jurka7267fa52013-09-26 15:29:57 -0700373 public static boolean sForceEnableRotation = isPropertyEnabled(FORCE_ENABLE_ROTATION_PROPERTY);
Michael Jurka0a457bf2012-11-19 14:05:05 -0800374
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800375 private static class PendingAddArguments {
376 int requestCode;
377 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700378 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700379 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800380 int cellX;
381 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700382 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800383 }
384
Daniel Sandlerff02d492013-08-05 02:12:05 -0400385 private Stats mStats;
386
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700387 FocusIndicatorView mFocusHandler;
388
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800389 static boolean isPropertyEnabled(String propertyName) {
Michael Jurka0a457bf2012-11-19 14:05:05 -0800390 return Log.isLoggable(propertyName, Log.VERBOSE);
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700391 }
392
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800393 @Override
394 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700395 if (DEBUG_STRICT_MODE) {
396 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
397 .detectDiskReads()
398 .detectDiskWrites()
399 .detectNetwork() // or .detectAll() for all detectable problems
400 .penaltyLog()
401 .build());
402 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
403 .detectLeakedSqlLiteObjects()
404 .detectLeakedClosableObjects()
405 .penaltyLog()
406 .penaltyDeath()
407 .build());
408 }
409
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800410 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400411
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400412 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400413 LauncherAppState app = LauncherAppState.getInstance();
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700414 LauncherAppState.getLauncherProvider().setLauncherProviderChangeListener(this);
Winson Chung5f8afe62013-08-12 16:19:28 -0700415 // Determine the dynamic grid properties
416 Point smallestSize = new Point();
417 Point largestSize = new Point();
418 Point realSize = new Point();
419 Display display = getWindowManager().getDefaultDisplay();
420 display.getCurrentSizeRange(smallestSize, largestSize);
421 display.getRealSize(realSize);
Winson Chung892c74d2013-08-22 16:15:50 -0700422 DisplayMetrics dm = new DisplayMetrics();
423 display.getMetrics(dm);
Winson Chung6e1c0d32013-10-25 15:24:24 -0700424
Winson Chung5f8afe62013-08-12 16:19:28 -0700425 // Lazy-initialize the dynamic grid
426 DeviceProfile grid = app.initDynamicGrid(this,
427 Math.min(smallestSize.x, smallestSize.y),
428 Math.min(largestSize.x, largestSize.y),
Winson Chung892c74d2013-08-22 16:15:50 -0700429 realSize.x, realSize.y,
430 dm.widthPixels, dm.heightPixels);
Winson Chung5f8afe62013-08-12 16:19:28 -0700431
432 // the LauncherApplication should call this, but in case of Instrumentation it might not be present yet
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400433 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700434 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700435 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800436 mModel = app.setLauncher(this);
437 mIconCache = app.getIconCache();
Winson Chunge5467dc2013-10-14 17:03:04 -0700438 mIconCache.flushInvalidIcons(grid);
Joe Onorato41a12d22009-10-31 18:30:00 -0400439 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800440 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700441
Daniel Sandlerff02d492013-08-05 02:12:05 -0400442 mStats = new Stats(this);
443
Sunny Goyalffe83f12014-08-14 17:39:34 -0700444 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700445
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700446 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
447 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700448
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700449 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
450 // this also ensures that any synchronous binding below doesn't re-trigger another
451 // LauncherModel load.
452 mPaused = false;
453
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800454 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200455 android.os.Debug.startMethodTracing(
456 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800457 }
458
459 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800460 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700461
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800462 setupViews();
Cristina Stancu476493b2013-08-07 17:20:14 +0100463 grid.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800464
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800465 registerContentObservers();
466
Joe Onorato7c312c12009-08-13 21:36:53 -0700467 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700468
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800469 mSavedState = savedInstanceState;
470 restoreState(mSavedState);
471
472 if (PROFILE_STARTUP) {
473 android.os.Debug.stopMethodTracing();
474 }
475
476 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700477 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700478 // If the user leaves launcher, then we should just load items asynchronously when
479 // they return.
Derek Prothro7aff3992013-12-10 14:00:37 -0500480 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700481 } else {
482 // We only load the page synchronously if the user rotates (or triggers a
483 // configuration change) while launcher is in the foreground
Winson Chung9b9fb962013-11-15 15:39:34 -0800484 mModel.startLoader(true, mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700485 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800486 }
487
488 // For handling default keys
489 mDefaultKeySsb = new SpannableStringBuilder();
490 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800491
492 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
493 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800494
Adam Cohenf9426d52012-06-04 17:26:21 -0700495 updateGlobalIcons();
496
497 // On large interfaces, we want the screen to auto-rotate based on the current orientation
498 unlockScreenOrientation(true);
Winson Chungaf40f202013-09-18 18:26:31 -0700499
Adam Cohen432609a2014-03-13 17:03:22 -0700500 if (shouldShowIntroScreen()) {
501 showIntroScreen();
502 } else {
503 showFirstRunActivity();
Sunny Goyal88d60f12014-09-08 03:47:29 -0700504 showFirstRunClings();
Winson Chunga6945242014-01-08 14:04:34 -0800505 }
Adam Cohenf9426d52012-06-04 17:26:21 -0700506 }
507
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700508 @Override
509 public void onLauncherProviderChange() { }
510
Winson Chung98ca0f72013-07-29 12:58:51 -0700511 /** To be overriden by subclasses to hint to Launcher that we have custom content */
512 protected boolean hasCustomContentToLeft() {
513 return false;
514 }
515
Dave Hawkeya8881582013-09-17 15:55:33 -0600516 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500517 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600518 * {@link #addToCustomContentPage}. This will only be invoked if
519 * {@link #hasCustomContentToLeft()} is {@code true}.
520 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500521 protected void populateCustomContentContainer() {
Dave Hawkeya8881582013-09-17 15:55:33 -0600522 }
523
524 /**
525 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
526 * ensure the custom content page is added or removed if necessary.
527 */
528 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600529 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600530 // Not bound yet, wait for bindScreens to be called.
531 return;
532 }
533
534 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
535 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500536 mWorkspace.createCustomContentContainer();
537 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600538 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
539 mWorkspace.removeCustomContentPage();
540 }
541 }
542
Adam Cohenf9426d52012-06-04 17:26:21 -0700543 private void updateGlobalIcons() {
Winson Chungc51db6a2011-10-05 11:44:49 -0700544 boolean searchVisible = false;
545 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800546 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700547 int coi = getCurrentOrientationIndexForGlobalIcons();
Adam Cohena00673c2014-08-14 12:57:28 -0700548 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null) {
Winson Chungc51db6a2011-10-05 11:44:49 -0700549 searchVisible = updateGlobalSearchIcon();
550 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700551 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700552 if (sGlobalSearchIcon[coi] != null) {
553 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700554 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700555 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700556 if (sVoiceSearchIcon[coi] != null) {
557 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700558 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700559 }
Winson Chungadf0c182012-08-23 14:59:07 -0700560 if (mSearchDropTargetBar != null) {
561 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
562 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800563 }
Romain Guycbb89e42009-06-08 15:52:54 -0700564
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800565 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700566 if (sLocaleConfiguration == null) {
567 new AsyncTask<Void, Void, LocaleConfiguration>() {
568 @Override
569 protected LocaleConfiguration doInBackground(Void... unused) {
570 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
571 readConfiguration(Launcher.this, localeConfiguration);
572 return localeConfiguration;
573 }
574
575 @Override
576 protected void onPostExecute(LocaleConfiguration result) {
577 sLocaleConfiguration = result;
578 checkForLocaleChange(); // recursive, but now with a locale configuration
579 }
580 }.execute();
581 return;
582 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700583
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800584 final Configuration configuration = getResources().getConfiguration();
585
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700586 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800587 final String locale = configuration.locale.toString();
588
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700589 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800590 final int mcc = configuration.mcc;
591
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700592 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800593 final int mnc = configuration.mnc;
594
Romain Guy84f296c2009-11-04 15:00:44 -0800595 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800596
Romain Guy84f296c2009-11-04 15:00:44 -0800597 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700598 sLocaleConfiguration.locale = locale;
599 sLocaleConfiguration.mcc = mcc;
600 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700601
Joe Onorato0589f0f2010-02-08 13:44:00 -0800602 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700603
604 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
Michael Jurka43467462013-11-14 12:03:58 +0100605 new AsyncTask<Void, Void, Void>() {
606 public Void doInBackground(Void ... args) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700607 writeConfiguration(Launcher.this, localeConfiguration);
Michael Jurka43467462013-11-14 12:03:58 +0100608 return null;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700609 }
Michael Jurka43467462013-11-14 12:03:58 +0100610 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Romain Guy98d01652009-06-30 16:21:04 -0700611 }
612 }
613
614 private static class LocaleConfiguration {
615 public String locale;
616 public int mcc = -1;
617 public int mnc = -1;
618 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700619
Romain Guy98d01652009-06-30 16:21:04 -0700620 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
621 DataInputStream in = null;
622 try {
623 in = new DataInputStream(context.openFileInput(PREFERENCES));
624 configuration.locale = in.readUTF();
625 configuration.mcc = in.readInt();
626 configuration.mnc = in.readInt();
627 } catch (FileNotFoundException e) {
628 // Ignore
629 } catch (IOException e) {
630 // Ignore
631 } finally {
632 if (in != null) {
633 try {
634 in.close();
635 } catch (IOException e) {
636 // Ignore
637 }
638 }
639 }
640 }
641
642 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
643 DataOutputStream out = null;
644 try {
645 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
646 out.writeUTF(configuration.locale);
647 out.writeInt(configuration.mcc);
648 out.writeInt(configuration.mnc);
649 out.flush();
650 } catch (FileNotFoundException e) {
651 // Ignore
652 } catch (IOException e) {
653 //noinspection ResultOfMethodCallIgnored
654 context.getFileStreamPath(PREFERENCES).delete();
655 } finally {
656 if (out != null) {
657 try {
658 out.close();
659 } catch (IOException e) {
660 // Ignore
661 }
662 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800663 }
664 }
665
Anton Hanssona2f665f2013-09-26 12:18:32 +0100666 public Stats getStats() {
667 return mStats;
668 }
669
Bjorn Bringertc459e522013-06-07 19:36:01 +0100670 public LayoutInflater getInflater() {
671 return mInflater;
672 }
673
Winson Chung36a62fe2012-05-06 18:04:42 -0700674 boolean isDraggingEnabled() {
675 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
676 // that is subsequently removed from the workspace in startBinding().
677 return !mModel.isLoadingWorkspace();
678 }
679
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800680 static int getScreen() {
681 synchronized (sLock) {
682 return sScreen;
683 }
684 }
685
686 static void setScreen(int screen) {
687 synchronized (sLock) {
688 sScreen = screen;
689 }
690 }
691
Winson Chung557d6ed2011-07-08 15:34:52 -0700692 /**
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000693 * Copied from View -- the View version of the method isn't called
694 * anywhere else in our process and only exists for API level 17+,
695 * so it's ok to keep our own version with no API requirement.
696 */
697 public static int generateViewId() {
698 for (;;) {
699 final int result = sNextGeneratedId.get();
700 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
701 int newValue = result + 1;
702 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
703 if (sNextGeneratedId.compareAndSet(result, newValue)) {
704 return result;
705 }
706 }
707 }
708
709 public int getViewIdForItem(ItemInfo info) {
710 // This cast is safe given the > 2B range for int.
711 int itemId = (int) info.id;
712 if (mItemIdToViewId.containsKey(itemId)) {
713 return mItemIdToViewId.get(itemId);
714 }
715 int viewId = generateViewId();
716 mItemIdToViewId.put(itemId, viewId);
717 return viewId;
718 }
719
720 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700721 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
722 * a configuration step, this allows the proper animations to run after other transitions.
723 */
Adam Cohendb364c32014-05-20 14:23:40 -0700724 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700725 long screenId = args.screenId;
726 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
727 // When the screen id represents an actual screen (as opposed to a rank) we make sure
728 // that the drop page actually exists.
729 screenId = ensurePendingDropLayoutExists(args.screenId);
730 }
Adam Cohendb364c32014-05-20 14:23:40 -0700731
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800732 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800733 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700734 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700735 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700736 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800737 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700738 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700739 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700740 case REQUEST_RECONFIGURE_APPWIDGET:
741 completeRestoreAppWidget(args.appWidgetId);
742 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800743 }
Michael Jurka27614d22012-04-02 06:40:22 -0700744 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
745 // if you turned the screen off and then back while in All Apps, Launcher would not
746 // return to the workspace. Clearing mAddInfo.container here fixes this issue
747 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700748 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800749 }
750
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800751 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700752 protected void onActivityResult(
753 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700754 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700755 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700756 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800757 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700758
Adam Cohenad4e15c2013-10-17 16:21:35 -0700759 Runnable exitSpringLoaded = new Runnable() {
760 @Override
761 public void run() {
762 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
763 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
764 }
765 };
766
Michael Jurka8b805b12012-04-18 14:23:14 -0700767 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700768 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700769 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
770 if (resultCode == RESULT_CANCELED) {
771 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700772 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700773 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700774 } else if (resultCode == RESULT_OK) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700775 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
776 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700777 }
778 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200779 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
780 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
781 mWorkspace.exitOverviewMode(false);
782 }
783 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700784 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200785
Adam Cohened66b2b2012-01-23 17:28:51 -0800786 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
787 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700788
Adam Cohendb364c32014-05-20 14:23:40 -0700789 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800790 // We have special handling for widgets
791 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800792 final int appWidgetId;
793 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
794 : -1;
795 if (widgetId < 0) {
796 appWidgetId = pendingAddWidgetId;
797 } else {
798 appWidgetId = widgetId;
799 }
800
Adam Cohenad4e15c2013-10-17 16:21:35 -0700801 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800802 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700803 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
804 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700805 result = RESULT_CANCELED;
806 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700807 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700808 @Override
809 public void run() {
810 exitSpringLoadedDragModeDelayed(false, 0, null);
811 }
812 };
Adam Cohendb364c32014-05-20 14:23:40 -0700813 if (workspaceLocked) {
814 // No need to remove the empty screen if we're mid-binding, as the
815 // the bind will not add the empty screen.
816 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
817 } else {
818 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
819 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
820 }
Winson Chung5aaab772012-04-27 15:24:02 -0700821 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700822 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700823 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
824 // When the screen id represents an actual screen (as opposed to a rank)
825 // we make sure that the drop page actually exists.
826 mPendingAddInfo.screenId =
827 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
828 }
Adam Cohendb364c32014-05-20 14:23:40 -0700829 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
830
831 dropLayout.setDropPending(true);
832 final Runnable onComplete = new Runnable() {
833 @Override
834 public void run() {
835 completeTwoStageWidgetDrop(resultCode, appWidgetId);
836 dropLayout.setDropPending(false);
837 }
838 };
839 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
840 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
841 } else {
842 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
843 mPendingAddInfo);
844 sPendingAddItem = args;
845 }
Winson Chung5aaab772012-04-27 15:24:02 -0700846 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800847 return;
848 }
849
Sunny Goyalff572272014-07-23 13:58:07 -0700850 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
851 if (resultCode == RESULT_OK) {
852 // Update the widget view.
853 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
854 pendingAddWidgetId, mPendingAddInfo);
855 if (workspaceLocked) {
856 sPendingAddItem = args;
857 } else {
858 completeAdd(args);
859 }
860 }
861 // Leave the widget in the pending state if the user canceled the configure.
862 return;
863 }
864
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800865 // The pattern used here is that a user PICKs a specific application,
866 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700867
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800868 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
869 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700870 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700871 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
872 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800873 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700874 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800875 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700876 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700877 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
878 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800879 }
Adam Cohen00074722013-10-11 17:46:09 -0700880 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700881 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700882 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800883 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800884 mDragLayer.clearAnimatedView();
Adam Cohened66b2b2012-01-23 17:28:51 -0800885 }
886
Adam Cohendb364c32014-05-20 14:23:40 -0700887 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
888 appWidgetId, ItemInfo info) {
889 PendingAddArguments args = new PendingAddArguments();
890 args.requestCode = requestCode;
891 args.intent = data;
892 args.container = info.container;
893 args.screenId = info.screenId;
894 args.cellX = info.cellX;
895 args.cellY = info.cellY;
896 args.appWidgetId = appWidgetId;
897 return args;
898 }
899
900 /**
901 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
902 *
903 * @param screenId the screen id to check
904 * @return the new screen, or screenId if it exists
905 */
906 private long ensurePendingDropLayoutExists(long screenId) {
907 CellLayout dropLayout =
908 (CellLayout) mWorkspace.getScreenWithId(screenId);
909 if (dropLayout == null) {
910 // it's possible that the add screen was removed because it was
911 // empty and a re-bind occurred
912 mWorkspace.addExtraEmptyScreen();
913 return mWorkspace.commitExtraEmptyScreen();
914 } else {
915 return screenId;
916 }
917 }
918
Adam Cohened66b2b2012-01-23 17:28:51 -0800919 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700920 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700921 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800922 Runnable onCompleteRunnable = null;
923 int animationType = 0;
924
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700925 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800926 if (resultCode == RESULT_OK) {
927 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
928 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700929 mPendingAddWidgetInfo);
930 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800931 onCompleteRunnable = new Runnable() {
932 @Override
933 public void run() {
934 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700935 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700936 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
937 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800938 }
939 };
940 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800941 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800942 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800943 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700944 if (mDragLayer.getAnimatedView() != null) {
945 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
946 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
947 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700948 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700949 // The animated view may be null in the case of a rotation during widget configuration
950 onCompleteRunnable.run();
951 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800952 }
953
954 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700955 protected void onStop() {
956 super.onStop();
957 FirstFrameAnimatorHelper.setIsVisible(false);
958 }
959
960 @Override
961 protected void onStart() {
962 super.onStart();
963 FirstFrameAnimatorHelper.setIsVisible(true);
964 }
965
966 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800967 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200968 long startTime = 0;
969 if (DEBUG_RESUME_TIME) {
970 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400971 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200972 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800973 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700974
Winson Chung4a2afa32012-07-19 14:53:05 -0700975 // Restore the previous launcher state
976 if (mOnResumeState == State.WORKSPACE) {
977 showWorkspace(false);
978 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
Winson Chung07e045c2013-11-06 15:49:51 -0800979 showAllApps(false, mAppsCustomizeContent.getContentType(), false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700980 }
981 mOnResumeState = State.NONE;
982
Craig Mautner360310b2012-10-26 15:13:08 -0700983 // Background was set to gradient in onPause(), restore to black if in all apps.
984 setWorkspaceBackground(mState == State.WORKSPACE);
985
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800986 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700987 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700988 setWorkspaceLoading(true);
Derek Prothro7aff3992013-12-10 14:00:37 -0500989 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400990 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700991 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800992 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700993 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200994 // We might have postponed some bind calls until onResume (see waitUntilResume) --
995 // execute them here
996 long startTimeCallbacks = 0;
997 if (DEBUG_RESUME_TIME) {
998 startTimeCallbacks = System.currentTimeMillis();
999 }
1000
1001 if (mAppsCustomizeContent != null) {
1002 mAppsCustomizeContent.setBulkBind(true);
1003 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001004 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1005 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001006 }
1007 if (mAppsCustomizeContent != null) {
1008 mAppsCustomizeContent.setBulkBind(false);
1009 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001010 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001011 if (DEBUG_RESUME_TIME) {
1012 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1013 (System.currentTimeMillis() - startTimeCallbacks));
1014 }
Michael Jurka447bf842013-05-15 14:52:15 +02001015 }
Michael Jurka54554252013-08-01 12:52:23 +02001016 if (mOnResumeCallbacks.size() > 0) {
1017 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1018 mOnResumeCallbacks.get(i).run();
1019 }
1020 mOnResumeCallbacks.clear();
1021 }
Winson Chunge4e50662012-01-23 14:45:13 -08001022
1023 // Reset the pressed state of icons that were locked in the press state while activities
1024 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001025 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001026 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001027 mWaitingForResume.setStayPressed(false);
1028 }
Winson Chung82963d52013-10-09 11:20:57 -07001029
Adam Cohen06dff352012-06-01 17:17:08 -07001030 // It is possible that widgets can receive updates while launcher is not in the foreground.
1031 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1032 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1033 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001034 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001035
Winson Chung780fe592013-09-26 14:48:44 -07001036 // Process any items that were added while Launcher was away.
1037 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1038
Winson Chung5841efa2013-09-30 18:06:44 -07001039 // Update the voice search button proxy
1040 updateVoiceButtonProxyVisible(false);
1041
Adam Cohenf9426d52012-06-04 17:26:21 -07001042 // Again, as with the above scenario, it's possible that one or more of the global icons
1043 // were updated in the wrong orientation.
1044 updateGlobalIcons();
Michael Jurka447bf842013-05-15 14:52:15 +02001045 if (DEBUG_RESUME_TIME) {
1046 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1047 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001048
1049 if (mWorkspace.getCustomContentCallbacks() != null) {
1050 // If we are resuming and the custom content is the current page, we call onShow().
1051 // It is also poassible that onShow will instead be called slightly after first layout
1052 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1053 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001054 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001055 }
1056 }
Adam Cohenedaaa302013-10-01 17:33:27 -07001057 mWorkspace.updateInteractionForState();
Adam Cohen53805212013-10-01 10:39:23 -07001058 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001059
1060 PackageInstallerCompat.getInstance(this).onResume();
Adam Cohen06dff352012-06-01 17:17:08 -07001061 }
1062
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001063 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001064 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001065 // Ensure that items added to Launcher are queued until Launcher returns
1066 InstallShortcutReceiver.enableInstallQueue();
Sunny Goyale755d462014-07-22 13:48:29 -07001067 PackageInstallerCompat.getInstance(this).onPause();
Winson Chung997a9232013-07-24 15:33:46 -07001068
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001069 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001070 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001071 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001072 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001073
1074 // We call onHide() aggressively. The custom content callbacks should be able to
1075 // debounce excess onHide calls.
1076 if (mWorkspace.getCustomContentCallbacks() != null) {
1077 mWorkspace.getCustomContentCallbacks().onHide();
1078 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001079 }
Romain Guycbb89e42009-06-08 15:52:54 -07001080
Adam Cohenbffe7452013-07-22 18:21:45 -07001081 QSBScroller mQsbScroller = new QSBScroller() {
1082 int scrollY = 0;
1083
1084 @Override
1085 public void setScrollY(int scroll) {
1086 scrollY = scroll;
1087
1088 if (mWorkspace.isOnOrMovingToCustomContent()) {
1089 mSearchDropTargetBar.setTranslationY(- scrollY);
Mark Brophyd7dc6812013-09-20 17:27:32 +01001090 getQsbBar().setTranslationY(-scrollY);
Adam Cohenbffe7452013-07-22 18:21:45 -07001091 }
1092 }
1093 };
1094
1095 public void resetQSBScroll() {
1096 mSearchDropTargetBar.animate().translationY(0).start();
Mark Brophyd7dc6812013-09-20 17:27:32 +01001097 getQsbBar().animate().translationY(0).start();
Adam Cohenbffe7452013-07-22 18:21:45 -07001098 }
1099
1100 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001101 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1102 // by a onResume or by scrolling otherwise.
1103 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001104
1105 // Custom content is completely hidden
1106 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001107
1108 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1109 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001110
1111 // Indicates whether the user is allowed to scroll away from the custom content.
1112 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001113 }
1114
Jorim Jaggid017f882014-01-14 17:08:48 -08001115 protected boolean hasSettings() {
1116 return false;
1117 }
1118
Adam Cohenbffe7452013-07-22 18:21:45 -07001119 public interface QSBScroller {
1120 public void setScrollY(int scrollY);
1121 }
1122
Winson Chung98ca0f72013-07-29 12:58:51 -07001123 public QSBScroller addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001124 CustomContentCallbacks callbacks, String description) {
1125 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohenbffe7452013-07-22 18:21:45 -07001126 return mQsbScroller;
Adam Cohen66a01fd2013-06-11 12:48:00 -07001127 }
1128
Adam Cohenedb40762013-07-18 16:45:45 -07001129 // The custom content needs to offset its content to account for the QSB
1130 public int getTopOffsetForCustomContent() {
1131 return mWorkspace.getPaddingTop();
1132 }
1133
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001134 @Override
1135 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001136 // Flag the loader to stop early before switching
1137 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -07001138 if (mAppsCustomizeContent != null) {
1139 mAppsCustomizeContent.surrender();
1140 }
Romain Guy13c2e7b2010-03-10 19:45:00 -08001141 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001142 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001143
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001144 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001145 @Override
1146 public void onWindowFocusChanged(boolean hasFocus) {
1147 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001148 mHasFocus = hasFocus;
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001149 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001150
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001151 private boolean acceptFilter() {
1152 final InputMethodManager inputManager = (InputMethodManager)
1153 getSystemService(Context.INPUT_METHOD_SERVICE);
1154 return !inputManager.isFullscreenMode();
1155 }
1156
1157 @Override
1158 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001159 final int uniChar = event.getUnicodeChar();
1160 final boolean handled = super.onKeyDown(keyCode, event);
1161 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1162 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001163 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1164 keyCode, event);
1165 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001166 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001167 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001168 // showSearchDialog()
1169 // If there are multiple keystrokes before the search dialog takes focus,
1170 // onSearchRequested() will be called for every keystroke,
1171 // but it is idempotent, so it's fine.
1172 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001173 }
1174 }
1175
Joe Onorato8a9625e2010-01-28 15:55:35 -08001176 // Eat the long press event so the keyboard doesn't come up.
1177 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1178 return true;
1179 }
1180
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001181 return handled;
1182 }
1183
Karl Rosaen138a0412009-04-23 19:00:21 -07001184 private String getTypedText() {
1185 return mDefaultKeySsb.toString();
1186 }
1187
1188 private void clearTypedText() {
1189 mDefaultKeySsb.clear();
1190 mDefaultKeySsb.clearSpans();
1191 Selection.setSelection(mDefaultKeySsb, 0);
1192 }
1193
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001194 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001195 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1196 * State
1197 */
1198 private static State intToState(int stateOrdinal) {
1199 State state = State.WORKSPACE;
1200 final State[] stateValues = State.values();
1201 for (int i = 0; i < stateValues.length; i++) {
1202 if (stateValues[i].ordinal() == stateOrdinal) {
1203 state = stateValues[i];
1204 break;
1205 }
1206 }
1207 return state;
1208 }
1209
1210 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001211 * Restores the previous state, if it exists.
1212 *
1213 * @param savedState The previous state.
1214 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001215 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001216 private void restoreState(Bundle savedState) {
1217 if (savedState == null) {
1218 return;
1219 }
1220
Michael Jurka883f55b2010-10-21 15:47:14 -07001221 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -07001222 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -07001223 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001224 }
1225
Adam Cohen21cd0022013-10-09 18:57:02 -07001226 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1227 PagedView.INVALID_RESTORE_PAGE);
1228 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001229 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001230 }
1231
Winson Chung3d503fb2011-07-13 17:25:49 -07001232 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001233 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001234
Winson Chung3d503fb2011-07-13 17:25:49 -07001235 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1236 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001237 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001238 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1239 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001240 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1241 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
1242 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001243 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001244 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001245 mRestoring = true;
1246 }
1247
1248 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
1249 if (renameFolder) {
1250 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001251 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001252 mRestoring = true;
1253 }
Winson Chunga12a2502010-12-20 14:41:35 -08001254
Winson Chung785d2eb2011-04-14 16:08:02 -07001255 // Restore the AppsCustomize tab
1256 if (mAppsCustomizeTabHost != null) {
1257 String curTab = savedState.getString("apps_customize_currentTab");
1258 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001259 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -07001260 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -07001261 mAppsCustomizeContent.loadAssociatedPages(
1262 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -07001263 }
1264
Winson Chung5afbf7b2011-07-25 11:53:08 -07001265 int currentIndex = savedState.getInt("apps_customize_currentIndex");
1266 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001267 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001268 mItemIdToViewId = (HashMap<Integer, Integer>)
1269 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001270 }
1271
1272 /**
1273 * Finds all the views we need and configure them properly.
1274 */
1275 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001276 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001277
Craig Mautner360310b2012-10-26 15:13:08 -07001278 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001279 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001280 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1281 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001282 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001283 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001284
John Spurlock77e1f472013-09-11 10:09:51 -04001285 mLauncherView.setSystemUiVisibility(
1286 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001287 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001288
Winson Chung4c98d922011-05-31 16:50:48 -07001289 // Setup the drag layer
1290 mDragLayer.setup(this, dragController);
1291
Winson Chung3d503fb2011-07-13 17:25:49 -07001292 // Setup the hotseat
1293 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1294 if (mHotseat != null) {
1295 mHotseat.setup(this);
Winson Chung11a1a532013-09-13 11:14:45 -07001296 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001297 }
1298
Jorim Jaggid017f882014-01-14 17:08:48 -08001299 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Adam Cohen61f560d2013-09-30 15:58:20 -07001300 View widgetButton = findViewById(R.id.widget_button);
1301 widgetButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001302 @Override
1303 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001304 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001305 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001306 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001307 }
1308 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001309 widgetButton.setOnTouchListener(getHapticFeedbackTouchListener());
1310
1311 View wallpaperButton = findViewById(R.id.wallpaper_button);
1312 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001313 @Override
1314 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001315 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001316 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001317 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001318 }
1319 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001320 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1321
1322 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001323 if (hasSettings()) {
1324 settingsButton.setOnClickListener(new OnClickListener() {
1325 @Override
1326 public void onClick(View arg0) {
1327 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001328 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001329 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001330 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001331 });
1332 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1333 } else {
1334 settingsButton.setVisibility(View.GONE);
1335 FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) widgetButton.getLayoutParams();
1336 lp.gravity = Gravity.END | Gravity.TOP;
1337 widgetButton.requestLayout();
1338 }
1339
Adam Cohendbdff6b2013-09-18 19:09:15 -07001340 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001341
Winson Chung4c98d922011-05-31 16:50:48 -07001342 // Setup the workspace
1343 mWorkspace.setHapticFeedbackEnabled(false);
1344 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001345 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001346 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001347
Winson Chungf0ea4d32011-06-06 14:27:16 -07001348 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001349 mSearchDropTargetBar = (SearchDropTargetBar)
1350 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001351
Winson Chungf0ea4d32011-06-06 14:27:16 -07001352 // Setup AppsCustomize
Craig Mautner360310b2012-10-26 15:13:08 -07001353 mAppsCustomizeTabHost = (AppsCustomizeTabHost) findViewById(R.id.apps_customize_pane);
Winson Chungf0ea4d32011-06-06 14:27:16 -07001354 mAppsCustomizeContent = (AppsCustomizePagedView)
1355 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
1356 mAppsCustomizeContent.setup(this, dragController);
Craig Mautner360310b2012-10-26 15:13:08 -07001357
Winson Chung3d503fb2011-07-13 17:25:49 -07001358 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001359 dragController.setDragScoller(mWorkspace);
1360 dragController.setScrollView(mDragLayer);
1361 dragController.setMoveTarget(mWorkspace);
1362 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001363 if (mSearchDropTargetBar != null) {
1364 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -08001365 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001366
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001367 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001368 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001369 mWeightWatcher = new WeightWatcher(this);
1370 mWeightWatcher.setAlpha(0.5f);
1371 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001372 new FrameLayout.LayoutParams(
1373 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001374 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001375 Gravity.BOTTOM)
1376 );
Adam Cohen39a06042013-07-19 14:30:12 -07001377
1378 boolean show = shouldShowWeightWatcher();
1379 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001380 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001381 }
1382
1383 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001384 * Sets the all apps button. This method is called from {@link Hotseat}.
1385 */
1386 public void setAllAppsButton(View allAppsButton) {
1387 mAllAppsButton = allAppsButton;
1388 }
1389
1390 public View getAllAppsButton() {
1391 return mAllAppsButton;
1392 }
1393
1394 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001395 * Creates a view representing a shortcut.
1396 *
1397 * @param info The data structure describing the shortcut.
1398 *
1399 * @return A View inflated from R.layout.application.
1400 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001401 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001402 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -07001403 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001404 }
1405
1406 /**
1407 * Creates a view representing a shortcut inflated from the specified resource.
1408 *
1409 * @param layoutResId The id of the XML layout used to create the shortcut.
1410 * @param parent The group the shortcut belongs to.
1411 * @param info The data structure describing the shortcut.
1412 *
1413 * @return A View inflated from layoutResId.
1414 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001415 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -08001416 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07001417 favorite.applyFromShortcutInfo(info, mIconCache, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001418 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001419 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001420 return favorite;
1421 }
1422
1423 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001424 * Add a shortcut to the workspace.
1425 *
1426 * @param data The intent describing the shortcut.
1427 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001428 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001429 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001430 int cellY) {
1431 int[] cellXY = mTmpAddItemCellCoordinates;
1432 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001433 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001434
Michael Jurkad3ef3062010-11-23 16:23:58 -08001435 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001436
Adam Cohen558baaf2011-08-15 15:22:57 -07001437 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -08001438 if (info == null) {
1439 return;
1440 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001441 final View view = createShortcut(info);
1442
Adam Cohenfbba09b2011-07-18 21:43:05 -07001443 // First we check if we already know the exact location where we want to add this item.
1444 if (cellX >= 0 && cellY >= 0) {
1445 cellXY[0] = cellX;
1446 cellXY[1] = cellY;
1447 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001448
1449 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001450 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001451 true, null,null)) {
1452 return;
1453 }
1454 DragObject dragObject = new DragObject();
1455 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001456 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1457 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001458 return;
1459 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001460 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001461 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001462 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001463 foundCellSpan = (result != null);
1464 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001465 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001466 }
1467
1468 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001469 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001470 return;
1471 }
1472
Adam Cohendcd297f2013-06-18 13:13:40 -07001473 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001474
1475 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001476 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001477 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001478 }
1479 }
1480
Adam Cohen2f093b62012-04-30 18:59:53 -07001481 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1482 int minHeight) {
1483 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001484 // We want to account for the extra amount of padding that we are adding to the widget
1485 // to ensure that it gets the full amount of space that it has requested
1486 int requiredWidth = minWidth + padding.left + padding.right;
1487 int requiredHeight = minHeight + padding.top + padding.bottom;
Winson Chung66700732013-08-20 16:56:15 -07001488 return CellLayout.rectToCell(requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001489 }
1490
Adam Cohen2f093b62012-04-30 18:59:53 -07001491 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1492 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001493 }
1494
Adam Cohen2f093b62012-04-30 18:59:53 -07001495 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1496 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001497 }
1498
Adam Cohen2f093b62012-04-30 18:59:53 -07001499 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1500 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001501 }
1502
Adam Cohen2f093b62012-04-30 18:59:53 -07001503 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1504 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001505 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001506 }
1507
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001508 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001509 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001510 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001511 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001512 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001513 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001514 private void completeAddAppWidget(final int appWidgetId, long container, long screenId,
Adam Cohened66b2b2012-01-23 17:28:51 -08001515 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1516 if (appWidgetInfo == null) {
1517 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1518 }
Romain Guycbb89e42009-06-08 15:52:54 -07001519
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001520 // Calculate the grid spans needed to fit this widget
Adam Cohendcd297f2013-06-18 13:13:40 -07001521 CellLayout layout = getCellLayout(container, screenId);
Adam Cohen09353862011-07-14 16:10:03 -07001522
Adam Cohen2f093b62012-04-30 18:59:53 -07001523 int[] minSpanXY = getMinSpanForWidget(this, appWidgetInfo);
1524 int[] spanXY = getSpanForWidget(this, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001525
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001526 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001527 // We have saved the position to which the widget was dragged-- this really only matters
1528 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001529 int[] cellXY = mTmpAddItemCellCoordinates;
1530 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001531 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001532 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001533 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1534 cellXY[0] = mPendingAddInfo.cellX;
1535 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001536 spanXY[0] = mPendingAddInfo.spanX;
1537 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001538 foundCellSpan = true;
1539 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001540 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001541 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001542 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1543 spanXY[1], cellXY, finalSpan);
1544 spanXY[0] = finalSpan[0];
1545 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001546 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001547 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001548 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001549 }
1550
Michael Jurka0280c3b2010-09-17 15:00:07 -07001551 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001552 if (appWidgetId != -1) {
1553 // Deleting an app widget ID is a void call but writes to disk before returning
1554 // to the caller...
Michael Jurka43467462013-11-14 12:03:58 +01001555 new AsyncTask<Void, Void, Void>() {
1556 public Void doInBackground(Void ... args) {
Winson Chungf7640c82011-02-28 13:47:29 -08001557 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Michael Jurka43467462013-11-14 12:03:58 +01001558 return null;
Winson Chungf7640c82011-02-28 13:47:29 -08001559 }
Michael Jurka43467462013-11-14 12:03:58 +01001560 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Winson Chungf7640c82011-02-28 13:47:29 -08001561 }
Winson Chung93eef082012-03-23 15:59:27 -07001562 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001563 return;
1564 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001565
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001566 // Build Launcher-specific widget info and save to database
Winson Chung11a49372012-04-27 15:12:38 -07001567 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId,
1568 appWidgetInfo.provider);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001569 launcherInfo.spanX = spanXY[0];
1570 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001571 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1572 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001573 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001574
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001575 LauncherModel.addItemToDatabase(this, launcherInfo,
Adam Cohendcd297f2013-06-18 13:13:40 -07001576 container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001577
1578 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001579 if (hostView == null) {
1580 // Perform actual inflation because we're live
1581 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1582 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1583 } else {
1584 // The AppWidgetHostView has already been inflated and instantiated
1585 launcherInfo.hostView = hostView;
1586 }
Romain Guycbb89e42009-06-08 15:52:54 -07001587
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001588 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001589 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001590 launcherInfo.notifyWidgetSizeChanged(this);
1591
Adam Cohendcd297f2013-06-18 13:13:40 -07001592 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001593 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001594
1595 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001596 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001597 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001598 }
Romain Guycbb89e42009-06-08 15:52:54 -07001599
Adam Cohended9f8d2010-11-03 13:25:16 -07001600 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1601 @Override
1602 public void onReceive(Context context, Intent intent) {
1603 final String action = intent.getAction();
1604 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1605 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001606 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001607 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001608
Winson Chungc100e8e2011-08-09 16:02:43 -07001609 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001610 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001611 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001612 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001613 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001614 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1615 mUserPresent = true;
1616 updateRunning();
Dan Sandlerd5024042014-01-09 15:01:33 -05001617 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1618 mModel.resetLoadedState(false, true);
1619 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1620 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1621 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1622 mModel.resetLoadedState(false, true);
1623 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1624 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1625 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001626 } else if (LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED.equals(action)
1627 || LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
1628 getModel().forceReload();
Adam Cohended9f8d2010-11-03 13:25:16 -07001629 }
1630 }
1631 };
1632
1633 @Override
1634 public void onAttachedToWindow() {
1635 super.onAttachedToWindow();
1636
1637 // Listen for broadcasts related to user-presence
1638 final IntentFilter filter = new IntentFilter();
1639 filter.addAction(Intent.ACTION_SCREEN_OFF);
1640 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001641 // For handling managed profiles
1642 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED);
1643 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED);
Dan Sandlerd5024042014-01-09 15:01:33 -05001644 if (ENABLE_DEBUG_INTENTS) {
1645 filter.addAction(DebugIntents.DELETE_DATABASE);
1646 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1647 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001648 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001649 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001650 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001651 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001652 mVisible = true;
1653 }
1654
Adam Cohen0b395352014-06-09 22:54:36 +00001655 /**
1656 * Sets up transparent navigation and status bars in LMP.
1657 * This method is a no-op for other platform versions.
1658 */
1659 @TargetApi(19)
1660 private void setupTransparentSystemBarsForLmp() {
1661 // TODO(sansid): use the APIs directly when compiling against L sdk.
1662 // Currently we use reflection to access the flags and the API to set the transparency
1663 // on the System bars.
Kenny Guyd794a3f2014-09-16 15:17:58 +01001664 if (Utilities.isLmpOrAbove()) {
Adam Cohen0b395352014-06-09 22:54:36 +00001665 try {
1666 getWindow().getAttributes().systemUiVisibility |=
1667 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1668 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1669 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1670 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1671 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1672 Field drawsSysBackgroundsField = WindowManager.LayoutParams.class.getField(
1673 "FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS");
1674 getWindow().addFlags(drawsSysBackgroundsField.getInt(null));
1675
1676 Method setStatusBarColorMethod =
1677 Window.class.getDeclaredMethod("setStatusBarColor", int.class);
1678 Method setNavigationBarColorMethod =
1679 Window.class.getDeclaredMethod("setNavigationBarColor", int.class);
1680 setStatusBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1681 setNavigationBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1682 } catch (NoSuchFieldException e) {
1683 Log.w(TAG, "NoSuchFieldException while setting up transparent bars");
1684 } catch (NoSuchMethodException ex) {
1685 Log.w(TAG, "NoSuchMethodException while setting up transparent bars");
1686 } catch (IllegalAccessException e) {
1687 Log.w(TAG, "IllegalAccessException while setting up transparent bars");
1688 } catch (IllegalArgumentException e) {
1689 Log.w(TAG, "IllegalArgumentException while setting up transparent bars");
1690 } catch (InvocationTargetException e) {
1691 Log.w(TAG, "InvocationTargetException while setting up transparent bars");
1692 } finally {}
1693 }
1694 }
1695
Adam Cohended9f8d2010-11-03 13:25:16 -07001696 @Override
1697 public void onDetachedFromWindow() {
1698 super.onDetachedFromWindow();
1699 mVisible = false;
1700
Adam Cohend113e0c2010-11-11 10:48:05 -08001701 if (mAttached) {
1702 unregisterReceiver(mReceiver);
1703 mAttached = false;
1704 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001705 updateRunning();
1706 }
1707
1708 public void onWindowVisibilityChanged(int visibility) {
1709 mVisible = visibility == View.VISIBLE;
1710 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001711 // The following code used to be in onResume, but it turns out onResume is called when
1712 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1713 // is a more appropriate event to handle
1714 if (mVisible) {
1715 mAppsCustomizeTabHost.onWindowVisible();
1716 if (!mWorkspaceLoading) {
1717 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001718 // We want to let Launcher draw itself at least once before we force it to build
1719 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001720 // apps is nice and speedy.
1721 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001722 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001723 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001724 if (mStarted) return;
1725 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001726 // We delay the layer building a bit in order to give
1727 // other message processing a time to run. In particular
1728 // this avoids a delay in hiding the IME if it was
1729 // currently shown, because doing that may involve
1730 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001731 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001732 final ViewTreeObserver.OnDrawListener listener = this;
1733 mWorkspace.post(new Runnable() {
1734 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001735 if (mWorkspace != null &&
1736 mWorkspace.getViewTreeObserver() != null) {
1737 mWorkspace.getViewTreeObserver().
1738 removeOnDrawListener(listener);
1739 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001740 }
1741 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001742 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001743 }
1744 });
1745 }
1746 clearTypedText();
1747 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001748 }
1749
1750 private void sendAdvanceMessage(long delay) {
1751 mHandler.removeMessages(ADVANCE_MSG);
1752 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1753 mHandler.sendMessageDelayed(msg, delay);
1754 mAutoAdvanceSentTime = System.currentTimeMillis();
1755 }
1756
1757 private void updateRunning() {
1758 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1759 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1760 mAutoAdvanceRunning = autoAdvanceRunning;
1761 if (autoAdvanceRunning) {
1762 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1763 sendAdvanceMessage(delay);
1764 } else {
1765 if (!mWidgetsToAdvance.isEmpty()) {
1766 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1767 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1768 }
1769 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001770 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001771 }
1772 }
1773 }
1774
1775 private final Handler mHandler = new Handler() {
1776 @Override
1777 public void handleMessage(Message msg) {
1778 if (msg.what == ADVANCE_MSG) {
1779 int i = 0;
1780 for (View key: mWidgetsToAdvance.keySet()) {
1781 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1782 final int delay = mAdvanceStagger * i;
1783 if (v instanceof Advanceable) {
1784 postDelayed(new Runnable() {
1785 public void run() {
1786 ((Advanceable) v).advance();
1787 }
1788 }, delay);
1789 }
1790 i++;
1791 }
1792 sendAdvanceMessage(mAdvanceInterval);
1793 }
1794 }
1795 };
1796
1797 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001798 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001799 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1800 if (v instanceof Advanceable) {
1801 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001802 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001803 updateRunning();
1804 }
1805 }
1806
1807 void removeWidgetToAutoAdvance(View hostView) {
1808 if (mWidgetsToAdvance.containsKey(hostView)) {
1809 mWidgetsToAdvance.remove(hostView);
1810 updateRunning();
1811 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001812 }
1813
Joe Onorato9c1289c2009-08-17 11:03:03 -04001814 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001815 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001816 launcherInfo.hostView = null;
1817 }
1818
Winson Chung93eef082012-03-23 15:59:27 -07001819 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1820 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1821 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001822 }
1823
Winson Chunga6945242014-01-08 14:04:34 -08001824 public DragLayer getDragLayer() {
1825 return mDragLayer;
1826 }
1827
1828 public Workspace getWorkspace() {
1829 return mWorkspace;
1830 }
1831
1832 public Hotseat getHotseat() {
1833 return mHotseat;
1834 }
1835
Jorim Jaggid017f882014-01-14 17:08:48 -08001836 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001837 return mOverviewPanel;
1838 }
1839
1840 public SearchDropTargetBar getSearchBar() {
1841 return mSearchDropTargetBar;
1842 }
1843
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001844 public LauncherAppWidgetHost getAppWidgetHost() {
1845 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001846 }
Romain Guycbb89e42009-06-08 15:52:54 -07001847
Winson Chunga9abd0e2010-10-27 17:18:37 -07001848 public LauncherModel getModel() {
1849 return mModel;
1850 }
1851
Winson Chunga6945242014-01-08 14:04:34 -08001852 protected SharedPreferences getSharedPrefs() {
1853 return mSharedPrefs;
1854 }
1855
Bjorn Bringertc459e522013-06-07 19:36:01 +01001856 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001857 getWindow().closeAllPanels();
1858
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001859 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001860 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001861 }
1862
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001863 @Override
1864 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001865 long startTime = 0;
1866 if (DEBUG_RESUME_TIME) {
1867 startTime = System.currentTimeMillis();
1868 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001869 super.onNewIntent(intent);
1870
1871 // Close the menu
1872 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001873 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001874 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001875
Adam Cohened307df2013-10-02 09:37:31 -07001876 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1877 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1878 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001879
Adam Cohen6fecd412013-10-02 17:41:50 -07001880 if (mWorkspace == null) {
1881 // Can be cases where mWorkspace is null, this prevents a NPE
1882 return;
1883 }
1884 Folder openFolder = mWorkspace.getOpenFolder();
1885 // In all these cases, only animate if we're already on home
1886 mWorkspace.exitWidgetResizeMode();
1887 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Coppa120b8e2013-11-12 16:26:04 +00001888 openFolder == null && shouldMoveToDefaultScreenOnHomeIntent()) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001889 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001890 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001891
Adam Cohen6fecd412013-10-02 17:41:50 -07001892 closeFolder();
1893 exitSpringLoadedDragMode();
1894
1895 // If we are already on home, then just animate back to the workspace,
1896 // otherwise, just wait until onResume to set the state back to Workspace
1897 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001898 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001899 } else {
1900 mOnResumeState = State.WORKSPACE;
1901 }
1902
1903 final View v = getWindow().peekDecorView();
1904 if (v != null && v.getWindowToken() != null) {
1905 InputMethodManager imm = (InputMethodManager)getSystemService(
1906 INPUT_METHOD_SERVICE);
1907 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1908 }
1909
1910 // Reset the apps customize page
Winson Chunge7e97e62013-12-02 17:02:50 -08001911 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001912 mAppsCustomizeTabHost.reset();
1913 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001914
1915 onHomeIntent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001916 }
Adam Cohened307df2013-10-02 09:37:31 -07001917
Michael Jurka447bf842013-05-15 14:52:15 +02001918 if (DEBUG_RESUME_TIME) {
1919 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1920 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001921 }
1922
Adam Coppa120b8e2013-11-12 16:26:04 +00001923 /**
1924 * Override point for subclasses to prevent movement to the default screen when the home
1925 * button is pressed. Used (for example) in GEL, to prevent movement during a search.
1926 */
1927 protected boolean shouldMoveToDefaultScreenOnHomeIntent() {
1928 return true;
1929 }
1930
1931 /**
1932 * Override point for subclasses to provide custom behaviour for when a home intent is fired.
1933 */
1934 protected void onHomeIntent() {
1935 // Do nothing
1936 }
1937
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001938 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001939 public void onRestoreInstanceState(Bundle state) {
1940 super.onRestoreInstanceState(state);
1941 for (int page: mSynchronouslyBoundPages) {
1942 mWorkspace.restoreInstanceStateForChild(page);
1943 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001944 }
1945
1946 @Override
1947 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001948 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001949 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1950 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001951 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001952 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001953
Michael Jurka883f55b2010-10-21 15:47:14 -07001954 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001955 // We close any open folder since it will not be re-opened, and we need to make sure
1956 // this state is reflected.
1957 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001958
Adam Cohendcd297f2013-06-18 13:13:40 -07001959 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001960 mWaitingForResult) {
1961 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001962 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001963 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1964 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001965 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1966 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1967 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001968 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001969 }
1970
1971 if (mFolderInfo != null && mWaitingForResult) {
1972 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1973 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1974 }
Michael Jurka946ad472010-07-09 18:05:18 -07001975
Winson Chung785d2eb2011-04-14 16:08:02 -07001976 // Save the current AppsCustomize tab
1977 if (mAppsCustomizeTabHost != null) {
Winson Chung07e045c2013-11-06 15:49:51 -08001978 AppsCustomizePagedView.ContentType type = mAppsCustomizeContent.getContentType();
1979 String currentTabTag = mAppsCustomizeTabHost.getTabTagForContentType(type);
Winson Chung785d2eb2011-04-14 16:08:02 -07001980 if (currentTabTag != null) {
1981 outState.putString("apps_customize_currentTab", currentTabTag);
1982 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001983 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1984 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001985 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001986 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001987 }
1988
1989 @Override
1990 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001991 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001992
Winson Chunge7a03942011-08-05 15:05:12 -07001993 // Remove all pending runnables
1994 mHandler.removeMessages(ADVANCE_MSG);
1995 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001996 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001997
Winson Chungcd2b0142011-06-08 16:02:26 -07001998 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001999 LauncherAppState app = (LauncherAppState.getInstance());
Winson Chungcd2b0142011-06-08 16:02:26 -07002000 mModel.stopLoader();
2001 app.setLauncher(null);
2002
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002003 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002004 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002005 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002006 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002007 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002008 mAppWidgetHost = null;
2009
2010 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002011
2012 TextKeyListener.getInstance().release();
2013
Winson Chung81b52252012-08-27 15:34:29 -07002014 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
2015 // to prevent leaking Launcher activities on orientation change.
2016 if (mModel != null) {
2017 mModel.unbindItemInfosAndClearQueuedBindRunnables();
2018 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002019
2020 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002021 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002022
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002023 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002024 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002025 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002026 mWorkspace = null;
2027 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002028
Sunny Goyale755d462014-07-22 13:48:29 -07002029 PackageInstallerCompat.getInstance(this).onStop();
Michael Jurka2ecf9952012-06-18 12:52:28 -07002030 LauncherAnimUtils.onDestroyActivity();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002031 }
2032
Adam Cohena9cf38f2011-05-02 15:36:58 -07002033 public DragController getDragController() {
2034 return mDragController;
2035 }
2036
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002037 @Override
2038 public void startActivityForResult(Intent intent, int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002039 if (requestCode >= 0) {
2040 setWaitingForResult(true);
2041 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002042 super.startActivityForResult(intent, requestCode);
2043 }
2044
Winson Chung70d72102011-08-12 11:24:35 -07002045 /**
2046 * Indicates that we want global search for this activity by setting the globalSearch
2047 * argument for {@link #startSearch} to true.
2048 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002049 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002050 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002051 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002052
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002053 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07002054
Karl Rosaen138a0412009-04-23 19:00:21 -07002055 if (initialQuery == null) {
2056 // Use any text typed in the launcher as the initial query
2057 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002058 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002059 if (appSearchData == null) {
2060 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002061 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002062 }
Winson Chungadf0c182012-08-23 14:59:07 -07002063 Rect sourceBounds = new Rect();
2064 if (mSearchDropTargetBar != null) {
2065 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2066 }
Romain Guycbb89e42009-06-08 15:52:54 -07002067
Ian Parkinson047036e2014-09-01 15:40:53 +01002068 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002069 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002070 if (clearTextImmediately) {
2071 clearTypedText();
2072 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01002073 }
2074
Ian Parkinson047036e2014-09-01 15:40:53 +01002075 /**
2076 * Start a text search.
2077 *
2078 * @return {@code true} if the search will start immediately, so any further keypresses
2079 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2080 * to buffer keypresses.
2081 */
2082 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002083 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Michael Jurkaa33411c2012-06-14 16:18:21 -07002084 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002085 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002086 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002087 }
2088
2089 /**
2090 * Starts the global search activity. This code is a copied from SearchManager
2091 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002092 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002093 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002094 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002095 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2096 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2097 if (globalSearchActivity == null) {
2098 Log.w(TAG, "No global search activity found.");
2099 return;
2100 }
2101 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2102 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2103 intent.setComponent(globalSearchActivity);
2104 // Make sure that we have a Bundle to put source in
2105 if (appSearchData == null) {
2106 appSearchData = new Bundle();
2107 } else {
2108 appSearchData = new Bundle(appSearchData);
2109 }
2110 // Set source to package name of app that starts global search, if not set already.
2111 if (!appSearchData.containsKey("source")) {
2112 appSearchData.putString("source", getPackageName());
2113 }
2114 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2115 if (!TextUtils.isEmpty(initialQuery)) {
2116 intent.putExtra(SearchManager.QUERY, initialQuery);
2117 }
2118 if (selectInitialQuery) {
2119 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2120 }
2121 intent.setSourceBounds(sourceBounds);
2122 try {
2123 startActivity(intent);
2124 } catch (ActivityNotFoundException ex) {
2125 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2126 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002127 }
2128
Yura4f93ec62014-02-04 14:15:21 +00002129 public boolean isOnCustomContent() {
2130 return mWorkspace.isOnOrMovingToCustomContent();
2131 }
2132
Winson Chung70d72102011-08-12 11:24:35 -07002133 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002134 public boolean onPrepareOptionsMenu(Menu menu) {
2135 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002136 if (!isOnCustomContent()) {
2137 // Close any open folders
2138 closeFolder();
2139 // Stop resizing any widgets
2140 mWorkspace.exitWidgetResizeMode();
2141 if (!mWorkspace.isInOverviewMode()) {
2142 // Show the overview mode
2143 showOverviewMode(true);
2144 } else {
2145 showWorkspace(true);
2146 }
Winson Chunge0298742014-01-17 12:03:00 -08002147 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002148 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002149 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002150
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002151 @Override
2152 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002153 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002154 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002155 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002156 }
2157
Joe Onorato9c1289c2009-08-17 11:03:03 -04002158 public boolean isWorkspaceLocked() {
2159 return mWorkspaceLoading || mWaitingForResult;
2160 }
2161
Adam Cohen517a7f52014-03-01 12:12:59 -08002162 public boolean isWorkspaceLoading() {
2163 return mWorkspaceLoading;
2164 }
2165
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002166 private void setWorkspaceLoading(boolean value) {
2167 boolean isLocked = isWorkspaceLocked();
2168 mWorkspaceLoading = value;
2169 if (isLocked != isWorkspaceLocked()) {
2170 onWorkspaceLockedChanged();
2171 }
2172 }
2173
2174 private void setWaitingForResult(boolean value) {
2175 boolean isLocked = isWorkspaceLocked();
2176 mWaitingForResult = value;
2177 if (isLocked != isWorkspaceLocked()) {
2178 onWorkspaceLockedChanged();
2179 }
2180 }
2181
2182 protected void onWorkspaceLockedChanged() { }
2183
Michael Jurka0280c3b2010-09-17 15:00:07 -07002184 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002185 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002186 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002187 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2188 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002189 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002190 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002191 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002192
Adam Cohenad4e15c2013-10-17 16:21:35 -07002193 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2194 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo) {
2195 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2196 }
2197
2198 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
2199 final AppWidgetHostView boundWidget, final AppWidgetProviderInfo appWidgetInfo, int
2200 delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002201 if (appWidgetInfo.configure != null) {
2202 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002203 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002204
Bjorn Bringert7984c942009-12-09 15:38:25 +00002205 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002206 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2207 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2208
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002209 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002210 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002211 Runnable onComplete = new Runnable() {
2212 @Override
2213 public void run() {
2214 // Exit spring loaded mode if necessary after adding the widget
2215 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2216 null);
2217 }
2218 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002219 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002220 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002221 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002222 }
2223 }
Romain Guycbb89e42009-06-08 15:52:54 -07002224
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002225 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002226 // Close any folders that may be open.
2227 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002228 mWorkspace.moveToCustomContentScreen(animate);
2229 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002230 /**
2231 * Process a shortcut drop.
2232 *
2233 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002234 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002235 * @param cell The cell it should be added to, optional
2236 * @param position The location on the screen where it was dropped, optional
2237 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002238 void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
Winson Chung3d503fb2011-07-13 17:25:49 -07002239 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002240 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002241 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002242 mPendingAddInfo.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002243 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002244
2245 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002246 mPendingAddInfo.cellX = cell[0];
2247 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002248 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002249
2250 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2251 createShortcutIntent.setComponent(componentName);
2252 processShortcut(createShortcutIntent);
2253 }
2254
Adam Cohenfbba09b2011-07-18 21:43:05 -07002255 /**
2256 * Process a widget drop.
2257 *
2258 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002259 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002260 * @param cell The cell it should be added to, optional
2261 * @param position The location on the screen where it was dropped, optional
2262 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002263 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
Adam Cohend41fbf52012-02-16 23:53:59 -08002264 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002265 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002266 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002267 mPendingAddInfo.screenId = info.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002268 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08002269 mPendingAddInfo.minSpanX = info.minSpanX;
2270 mPendingAddInfo.minSpanY = info.minSpanY;
2271
Adam Cohenfbba09b2011-07-18 21:43:05 -07002272 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002273 mPendingAddInfo.cellX = cell[0];
2274 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002275 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002276 if (span != null) {
2277 mPendingAddInfo.spanX = span[0];
2278 mPendingAddInfo.spanY = span[1];
2279 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002280
Adam Cohened66b2b2012-01-23 17:28:51 -08002281 AppWidgetHostView hostView = info.boundWidget;
2282 int appWidgetId;
2283 if (hostView != null) {
2284 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002285 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08002286 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002287 // In this case, we either need to start an activity to get permission to bind
2288 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002289 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002290 Bundle options = info.bindOptions;
2291
Sunny Goyalffe83f12014-08-14 17:39:34 -07002292 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2293 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002294 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002295 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002296 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002297 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002298 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2299 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2300 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002301 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2302 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002303 // TODO: we need to make sure that this accounts for the options bundle.
2304 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002305 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2306 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002307 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002308 }
2309
Joe Onoratodeb98af2010-02-19 14:59:39 -08002310 void processShortcut(Intent intent) {
Kenny Guyed131872014-04-30 03:02:21 +01002311 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_SHORTCUT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002312 }
2313
Winson Chung24ab2f12010-09-16 14:10:47 -07002314 void processWallpaper(Intent intent) {
2315 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
2316 }
2317
Adam Cohendcd297f2013-06-18 13:13:40 -07002318 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002319 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002320 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002321 folderInfo.title = getText(R.string.folder_name);
2322
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002323 // Update the model
Adam Cohendcd297f2013-06-18 13:13:40 -07002324 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, cellX, cellY,
Winson Chung3d503fb2011-07-13 17:25:49 -07002325 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002326 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002327
2328 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002329 FolderIcon newFolder =
2330 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002331 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002332 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002333 // Force measure the new folder icon
2334 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2335 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002336 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002337 }
Romain Guycbb89e42009-06-08 15:52:54 -07002338
Joe Onorato9c1289c2009-08-17 11:03:03 -04002339 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002340 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002341 }
2342
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002343 protected ComponentName getWallpaperPickerComponent() {
Michael Jurka7ad868b2013-12-12 15:04:25 +01002344 return new ComponentName(getPackageName(), LauncherWallpaperPickerActivity.class.getName());
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002345 }
2346
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002347 /**
2348 * Registers various content observers. The current implementation registers
2349 * only a favorites observer to keep track of the favorites applications.
2350 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002351 private void registerContentObservers() {
2352 ContentResolver resolver = getContentResolver();
2353 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
2354 true, mWidgetObserver);
2355 }
2356
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002357 @Override
2358 public boolean dispatchKeyEvent(KeyEvent event) {
2359 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2360 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002361 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002362 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002363 case KeyEvent.KEYCODE_VOLUME_DOWN:
Michael Jurka0a457bf2012-11-19 14:05:05 -08002364 if (isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002365 dumpState();
2366 return true;
2367 }
2368 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002369 }
2370 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2371 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002372 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002373 return true;
2374 }
2375 }
2376
2377 return super.dispatchKeyEvent(event);
2378 }
2379
Joe Onorato88ec0992009-11-19 13:16:06 -08002380 @Override
2381 public void onBackPressed() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002382 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07002383 if (mAppsCustomizeContent.getContentType() ==
2384 AppsCustomizePagedView.ContentType.Applications) {
2385 showWorkspace(true);
2386 } else {
2387 showOverviewMode(true);
2388 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07002389 } else if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002390 mWorkspace.exitOverviewMode(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002391 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002392 Folder openFolder = mWorkspace.getOpenFolder();
2393 if (openFolder.isEditingName()) {
2394 openFolder.dismissEditingName();
2395 } else {
2396 closeFolder();
2397 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002398 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002399 mWorkspace.exitWidgetResizeMode();
2400
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002401 // Back button is a no-op here, but give at least some feedback for the button press
2402 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002403 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002404 }
2405
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002406 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002407 * Re-listen when widgets are reset.
2408 */
2409 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002410 if (mAppWidgetHost != null) {
2411 mAppWidgetHost.startListening();
2412 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002413 }
2414
2415 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002416 * Launches the intent referred by the clicked shortcut.
2417 *
2418 * @param v The view representing the clicked shortcut.
2419 */
2420 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002421 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2422 // view has detached (it's possible for this to happen if the view is removed mid touch).
2423 if (v.getWindowToken() == null) {
2424 return;
2425 }
2426
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002427 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002428 return;
2429 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002430
Adam Cohen1697b792013-09-17 19:08:21 -07002431 if (v instanceof Workspace) {
2432 if (mWorkspace.isInOverviewMode()) {
2433 mWorkspace.exitOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002434 }
2435 return;
2436 }
2437
2438 if (v instanceof CellLayout) {
2439 if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002440 mWorkspace.exitOverviewMode(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002441 }
2442 }
2443
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002444 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002445 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002446 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002447 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002448 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002449 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002450 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002451 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002452 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002453 } else if (tag instanceof AppInfo) {
2454 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002455 } else if (tag instanceof LauncherAppWidgetInfo) {
2456 if (v instanceof PendingAppWidgetHostView) {
2457 onClickPendingWidget((PendingAppWidgetHostView) v);
2458 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002459 }
2460 }
2461
Sunny Goyal508da152014-08-14 10:53:27 -07002462 public void onClickPagedViewIcon(View v) {
2463 startAppShortcutOrInfoActivity(v);
2464 }
2465
Michael Jurka0e260592010-06-30 17:07:39 -07002466 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002467 return false;
2468 }
2469
Michael Jurkaaf442092010-06-10 17:01:57 -07002470 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002471 * Event handler for the app widget view which has not fully restored.
2472 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002473 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
2474 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002475 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002476 int widgetId = info.appWidgetId;
2477 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2478 if (appWidgetInfo != null) {
2479 mPendingAddWidgetInfo = appWidgetInfo;
2480 mPendingAddInfo.copyFrom(info);
2481 mPendingAddWidgetId = widgetId;
2482
Sunny Goyalffe83f12014-08-14 17:39:34 -07002483 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2484 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002485 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002486 } else if (info.installProgress < 0) {
2487 // The install has not been queued
2488 final String packageName = info.providerName.getPackageName();
2489 showBrokenAppInstallDialog(packageName,
2490 new DialogInterface.OnClickListener() {
2491 public void onClick(DialogInterface dialog, int id) {
2492 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2493 }
2494 });
2495 } else {
2496 // Download has started.
2497 final String packageName = info.providerName.getPackageName();
2498 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002499 }
2500 }
2501
2502 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002503 * Event handler for the search button
2504 *
2505 * @param v The view that was clicked.
2506 */
2507 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002508 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2509
Amith Yamasania135ba82011-08-09 17:42:01 -07002510 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002511 }
2512
2513 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002514 * Event handler for the voice button
2515 *
2516 * @param v The view that was clicked.
2517 */
2518 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002519 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002520
Bjorn Bringertc459e522013-06-07 19:36:01 +01002521 startVoice();
2522 }
2523
2524 public void startVoice() {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002525 try {
2526 final SearchManager searchManager =
2527 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2528 ComponentName activityName = searchManager.getGlobalSearchActivity();
2529 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002530 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002531 if (activityName != null) {
2532 intent.setPackage(activityName.getPackageName());
2533 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002534 startActivity(null, intent, "onClickVoiceButton");
Michael Jurkaae65ee32012-04-30 11:45:54 -07002535 } catch (ActivityNotFoundException e) {
2536 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002537 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002538 startActivitySafely(null, intent, "onClickVoiceButton");
2539 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002540 }
2541
2542 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002543 * Event handler for the "grid" button that appears on the home screen, which
2544 * enters all apps mode.
2545 *
2546 * @param v The view that was clicked.
2547 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002548 protected void onClickAllAppsButton(View v) {
2549 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
2550 if (isAllAppsVisible()) {
2551 showWorkspace(true);
2552 } else {
2553 showAllApps(true, AppsCustomizePagedView.ContentType.Applications, false);
2554 }
2555 }
2556
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002557 private void showBrokenAppInstallDialog(final String packageName,
2558 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyalf8763012014-09-23 16:22:10 -07002559 new AlertDialog.Builder(new ContextThemeWrapper(this, android.R.style.Theme_DeviceDefault))
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002560 .setTitle(R.string.abandoned_promises_title)
2561 .setMessage(R.string.abandoned_promise_explanation)
2562 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2563 .setNeutralButton(R.string.abandoned_clean_this,
2564 new DialogInterface.OnClickListener() {
2565 public void onClick(DialogInterface dialog, int id) {
2566 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2567 mWorkspace.removeAbandonedPromise(packageName, user);
2568 }
2569 })
2570 .create().show();
2571 return;
2572 }
2573
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002574 /**
2575 * Event handler for an app shortcut click.
2576 *
2577 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2578 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002579 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002580 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2581 Object tag = v.getTag();
2582 if (!(tag instanceof ShortcutInfo)) {
2583 throw new IllegalArgumentException("Input must be a Shortcut");
2584 }
2585
2586 // Open shortcut
2587 final ShortcutInfo shortcut = (ShortcutInfo) tag;
2588 final Intent intent = shortcut.intent;
2589
2590 // Check for special shortcuts
2591 if (intent.getComponent() != null) {
2592 final String shortcutClass = intent.getComponent().getClassName();
2593
2594 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2595 MemoryDumpActivity.startDump(this);
2596 return;
2597 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2598 toggleShowWeightWatcher();
2599 return;
2600 }
2601 }
2602
Chris Wren40c5ed32014-06-24 18:24:23 -04002603 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002604 if ((v instanceof BubbleTextView)
2605 && shortcut.isPromise()
2606 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002607 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002608 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002609 new DialogInterface.OnClickListener() {
2610 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002611 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002612 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002613 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002614 return;
2615 }
2616
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002617 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002618 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002619 }
2620
Sunny Goyal508da152014-08-14 10:53:27 -07002621 private void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002622 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002623 final ShortcutInfo shortcut;
2624 final Intent intent;
2625 if (tag instanceof ShortcutInfo) {
2626 shortcut = (ShortcutInfo) tag;
2627 intent = shortcut.intent;
2628 int[] pos = new int[2];
2629 v.getLocationOnScreen(pos);
2630 intent.setSourceBounds(new Rect(pos[0], pos[1],
2631 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002632
Sunny Goyal508da152014-08-14 10:53:27 -07002633 } else if (tag instanceof AppInfo) {
2634 shortcut = null;
2635 intent = ((AppInfo) tag).intent;
2636 } else {
2637 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2638 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002639
2640 boolean success = startActivitySafely(v, intent, tag);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002641 mStats.recordLaunch(intent, shortcut);
2642
2643 if (success && v instanceof BubbleTextView) {
2644 mWaitingForResume = (BubbleTextView) v;
2645 mWaitingForResume.setStayPressed(true);
2646 }
2647 }
2648
2649 /**
2650 * Event handler for a folder icon click.
2651 *
2652 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2653 */
2654 protected void onClickFolderIcon(View v) {
2655 if (LOGD) Log.d(TAG, "onClickFolder");
2656 if (!(v instanceof FolderIcon)){
2657 throw new IllegalArgumentException("Input must be a FolderIcon");
2658 }
2659
2660 FolderIcon folderIcon = (FolderIcon) v;
2661 final FolderInfo info = folderIcon.getFolderInfo();
2662 Folder openFolder = mWorkspace.getFolderForTag(info);
2663
2664 // If the folder info reports that the associated folder is open, then verify that
2665 // it is actually opened. There have been a few instances where this gets out of sync.
2666 if (info.opened && openFolder == null) {
2667 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2668 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2669 info.opened = false;
2670 }
2671
2672 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2673 // Close any open folder
2674 closeFolder();
2675 // Open the requested folder
2676 openFolder(folderIcon);
2677 } else {
2678 // Find the open folder...
2679 int folderScreen;
2680 if (openFolder != null) {
2681 folderScreen = mWorkspace.getPageForView(openFolder);
2682 // .. and close it
2683 closeFolder(openFolder);
2684 if (folderScreen != mWorkspace.getCurrentPage()) {
2685 // Close any folder open on the current screen
2686 closeFolder();
2687 // Pull the folder onto this screen
2688 openFolder(folderIcon);
2689 }
2690 }
2691 }
Michael Jurka5130e402011-10-13 04:55:35 -07002692 }
2693
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002694 /**
2695 * Event handler for the (Add) Widgets button that appears after a long press
2696 * on the home screen.
2697 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002698 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002699 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002700 showAllApps(true, AppsCustomizePagedView.ContentType.Widgets, true);
2701 }
2702
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002703 /**
2704 * Event handler for the wallpaper picker button that appears after a long press
2705 * on the home screen.
2706 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002707 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002708 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
2709 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
2710 pickWallpaper.setComponent(getWallpaperPickerComponent());
2711 startActivityForResult(pickWallpaper, REQUEST_PICK_WALLPAPER);
2712 }
2713
2714 /**
2715 * Event handler for a click on the settings button that appears after a long press
2716 * on the home screen.
2717 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002718 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002719 if (LOGD) Log.d(TAG, "onClickSettingsButton");
2720 }
2721
Michael Jurka5130e402011-10-13 04:55:35 -07002722 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002723 // Provide the same haptic feedback that the system offers for virtual keys.
2724 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002725 }
2726
Adam Cohen61f560d2013-09-30 15:58:20 -07002727 public void performHapticFeedbackOnTouchDown(View v) {
2728 // Provide the same haptic feedback that the system offers for virtual keys.
2729 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2730 }
2731
2732 public View.OnTouchListener getHapticFeedbackTouchListener() {
2733 if (mHapticFeedbackTouchListener == null) {
2734 mHapticFeedbackTouchListener = new View.OnTouchListener() {
2735 @Override
2736 public boolean onTouch(View v, MotionEvent event) {
2737 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2738 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2739 }
2740 return false;
2741 }
2742 };
2743 }
2744 return mHapticFeedbackTouchListener;
2745 }
2746
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002747 public void onDragStarted(View view) {}
2748
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002749 /**
2750 * Called when the user stops interacting with the launcher.
2751 * This implies that the user is now on the homescreen and is not doing housekeeping.
2752 */
2753 protected void onInteractionEnd() {}
2754
2755 /**
2756 * Called when the user starts interacting with the launcher.
2757 * The possible interactions are:
2758 * - open all apps
2759 * - reorder an app shortcut, or a widget
2760 * - open the overview mode.
2761 * This is a good time to stop doing things that only make sense
2762 * when the user is on the homescreen and not doing housekeeping.
2763 */
2764 protected void onInteractionBegin() {}
2765
Kenny Guyf07af7b2014-07-31 11:39:16 +01002766 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002767 String packageName = componentName.getPackageName();
Kenny Guyf07af7b2014-07-31 11:39:16 +01002768 try {
2769 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2770 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
2771 launcherApps.showAppDetailsForProfile(componentName, user);
2772 } catch (SecurityException e) {
2773 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2774 Log.e(TAG, "Launcher does not have permission to launch settings");
2775 } catch (ActivityNotFoundException e) {
2776 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2777 Log.e(TAG, "Unable to launch settings");
2778 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002779 }
2780
Michael Jurka1e2f4652013-07-08 18:03:46 -07002781 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002782 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2783 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002784 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002785 // System applications cannot be installed. For now, show a toast explaining that.
2786 // We may give them the option of disabling apps this way.
2787 int messageId = R.string.uninstall_system_app_text;
2788 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002789 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002790 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002791 String packageName = componentName.getPackageName();
2792 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002793 Intent intent = new Intent(
2794 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002795 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2796 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002797 if (user != null) {
2798 user.addToIntent(intent, Intent.EXTRA_USER);
2799 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002800 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002801 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002802 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002803 }
2804
Michael Jurka86a720e2012-05-09 11:23:23 -07002805 boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002806 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002807 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002808 // Only launch using the new animation if the shortcut has not opted out (this is a
2809 // private contract between launcher and may be ignored in the future).
2810 boolean useLaunchAnimation = (v != null) &&
2811 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002812 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2813 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002814
Kenny Guy1317e2d2014-05-08 18:52:50 +01002815 UserHandleCompat user = null;
2816 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2817 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2818 user = userManager.getUserForSerialNumber(serialNumber);
2819 }
2820
2821 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002822 if (useLaunchAnimation) {
Kenny Guyd794a3f2014-09-16 15:17:58 +01002823 ActivityOptions opts = Utilities.isLmpOrAbove() ?
Adam Cohen4da294d2014-07-28 10:56:19 -07002824 ActivityOptions.makeCustomAnimation(this, R.anim.task_open_enter, R.anim.no_anim) :
2825 ActivityOptions.makeScaleUpAnimation(v, 0, 0, v.getMeasuredWidth(), v.getMeasuredHeight());
Adam Cohen6ea3b112014-06-11 11:38:49 -07002826 optsBundle = opts.toBundle();
2827 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002828
2829 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2830 // Could be launching some bookkeeping activity
2831 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002832 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002833 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002834 launcherApps.startActivityForProfile(intent.getComponent(), user,
2835 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002836 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002837 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002838 } catch (SecurityException e) {
2839 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002840 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002841 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002842 "or use the exported attribute for this activity. "
2843 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002844 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002845 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002846 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002847
Michael Jurka86a720e2012-05-09 11:23:23 -07002848 boolean startActivitySafely(View v, Intent intent, Object tag) {
2849 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002850 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2851 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2852 return false;
2853 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002854 try {
2855 success = startActivity(v, intent, tag);
2856 } catch (ActivityNotFoundException e) {
2857 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2858 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2859 }
2860 return success;
2861 }
2862
Adam Cohen268c4752012-06-06 17:47:33 -07002863 /**
2864 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2865 * in the DragLayer in the exact absolute location of the original FolderIcon.
2866 */
2867 private void copyFolderIconToImage(FolderIcon fi) {
2868 final int width = fi.getMeasuredWidth();
2869 final int height = fi.getMeasuredHeight();
2870
2871 // Lazy load ImageView, Bitmap and Canvas
2872 if (mFolderIconImageView == null) {
2873 mFolderIconImageView = new ImageView(this);
2874 }
2875 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2876 mFolderIconBitmap.getHeight() != height) {
2877 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2878 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2879 }
2880
2881 DragLayer.LayoutParams lp;
2882 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2883 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2884 } else {
2885 lp = new DragLayer.LayoutParams(width, height);
2886 }
2887
Adam Cohen307fe232012-08-16 17:55:58 -07002888 // The layout from which the folder is being opened may be scaled, adjust the starting
2889 // view size by this scale factor.
2890 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002891 lp.customPosition = true;
2892 lp.x = mRectForFolderAnimation.left;
2893 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002894 lp.width = (int) (scale * width);
2895 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002896
2897 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2898 fi.draw(mFolderIconCanvas);
2899 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002900 if (fi.getFolder() != null) {
2901 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2902 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002903 }
Adam Cohen268c4752012-06-06 17:47:33 -07002904 // Just in case this image view is still in the drag layer from a previous animation,
2905 // we remove it and re-add it.
2906 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2907 mDragLayer.removeView(mFolderIconImageView);
2908 }
2909 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002910 if (fi.getFolder() != null) {
2911 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002912 }
Adam Cohen268c4752012-06-06 17:47:33 -07002913 }
2914
Adam Cohen2801caf2011-05-13 20:57:39 -07002915 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002916 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002917 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2918 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2919 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2920
Adam Cohenc51934b2011-07-26 21:07:43 -07002921 FolderInfo info = (FolderInfo) fi.getTag();
2922 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2923 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002924 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2925 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002926 }
2927
Adam Cohen268c4752012-06-06 17:47:33 -07002928 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2929 copyFolderIconToImage(fi);
2930 fi.setVisibility(View.INVISIBLE);
2931
Michael Jurka2ecf9952012-06-18 12:52:28 -07002932 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002933 scaleX, scaleY);
Kenny Guyd794a3f2014-09-16 15:17:58 +01002934 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002935 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
2936 }
2937 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07002938 oa.start();
2939 }
2940
Adam Cohen268c4752012-06-06 17:47:33 -07002941 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002942 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002943 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2944 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2945 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2946
Adam Cohen268c4752012-06-06 17:47:33 -07002947 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002948
Adam Cohen268c4752012-06-06 17:47:33 -07002949 // We remove and re-draw the FolderIcon in-case it has changed
2950 mDragLayer.removeView(mFolderIconImageView);
2951 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07002952 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002953 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002954 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002955 oa.addListener(new AnimatorListenerAdapter() {
2956 @Override
2957 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002958 if (cl != null) {
2959 cl.clearFolderLeaveBehind();
2960 // Remove the ImageView copy of the FolderIcon and make the original visible.
2961 mDragLayer.removeView(mFolderIconImageView);
2962 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002963 }
2964 }
2965 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002966 oa.start();
2967 }
2968
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002969 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002970 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002971 * is animated relative to the specified View. If the View is null, no animation
2972 * is played.
2973 *
2974 * @param folderInfo The FolderInfo describing the folder to open.
2975 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002976 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002977 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07002978 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002979
Adam Cohena9cf38f2011-05-02 15:36:58 -07002980 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002981
Adam Cohen4554ee12011-08-03 16:13:21 -07002982 // Just verify that the folder hasn't already been added to the DragLayer.
2983 // There was a one-off crash where the folder had a parent already.
2984 if (folder.getParent() == null) {
2985 mDragLayer.addView(folder);
2986 mDragController.addDropTarget((DropTarget) folder);
2987 } else {
2988 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2989 folder.getParent() + ").");
2990 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002991 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002992 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07002993
2994 // Notify the accessibility manager that this folder "window" has appeared and occluded
2995 // the workspace items
2996 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
2997 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07002998 }
2999
3000 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003001 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003002 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003003 if (folder.isEditingName()) {
3004 folder.dismissEditingName();
3005 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003006 closeFolder(folder);
3007 }
3008 }
3009
3010 void closeFolder(Folder folder) {
3011 folder.getInfo().opened = false;
3012
3013 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3014 if (parent != null) {
3015 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3016 shrinkAndFadeInFolderIcon(fi);
3017 }
3018 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003019
3020 // Notify the accessibility manager that this folder "window" has disappeard and no
3021 // longer occludeds the workspace items
3022 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003023 }
3024
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003025 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003026 if (!isDraggingEnabled()) return false;
3027 if (isWorkspaceLocked()) return false;
3028 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003029
Adam Cohen1697b792013-09-17 19:08:21 -07003030 if (v instanceof Workspace) {
3031 if (!mWorkspace.isInOverviewMode()) {
Adam Cohen93c97562013-09-26 13:48:01 -07003032 if (mWorkspace.enterOverviewMode()) {
3033 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3034 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3035 return true;
3036 } else {
3037 return false;
3038 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003039 } else {
3040 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003041 }
Adam Cohen1697b792013-09-17 19:08:21 -07003042 }
3043
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003044 CellLayout.CellInfo longClickCellInfo = null;
3045 View itemUnderLongClick = null;
3046 if (v.getTag() instanceof ItemInfo) {
3047 ItemInfo info = (ItemInfo) v.getTag();
3048 longClickCellInfo = new CellLayout.CellInfo(v, info);;
3049 itemUnderLongClick = longClickCellInfo.cell;
3050 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003051 }
3052
Winson Chung3d503fb2011-07-13 17:25:49 -07003053 // The hotseat touch handling does not go through Workspace, and we always allow long press
3054 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003055 final boolean inHotseat = isHotseatLayout(v);
3056 boolean allowLongPress = inHotseat || mWorkspace.allowLongPress();
Winson Chung3d503fb2011-07-13 17:25:49 -07003057 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003058 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003059 // User long pressed on empty space
3060 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3061 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003062 if (mWorkspace.isInOverviewMode()) {
3063 mWorkspace.startReordering(v);
3064 } else {
3065 mWorkspace.enterOverviewMode();
Adam Cohendedbd962013-07-11 14:21:49 -07003066 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003067 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003068 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3069 mHotseat.getOrderInHotseat(
3070 longClickCellInfo.cellX,
3071 longClickCellInfo.cellY));
3072 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003073 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003074 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003075 }
3076 }
3077 }
3078 return true;
3079 }
3080
Winson Chung3d503fb2011-07-13 17:25:49 -07003081 boolean isHotseatLayout(View layout) {
3082 return mHotseat != null && layout != null &&
3083 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3084 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003085
Winson Chung3d503fb2011-07-13 17:25:49 -07003086 /**
3087 * Returns the CellLayout of the specified container at the specified screen.
3088 */
Adam Cohendcd297f2013-06-18 13:13:40 -07003089 CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003090 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3091 if (mHotseat != null) {
3092 return mHotseat.getLayout();
3093 } else {
3094 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003095 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003096 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -07003097 return (CellLayout) mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003098 }
3099 }
3100
Daniel Sandler843e8602010-06-07 14:59:01 -04003101 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003102 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003103 }
3104
Craig Mautner360310b2012-10-26 15:13:08 -07003105 private void setWorkspaceBackground(boolean workspace) {
3106 mLauncherView.setBackground(workspace ?
Michael Jurka496fefb2013-05-06 15:39:11 +02003107 mWorkspaceBackgroundDrawable : null);
Craig Mautner360310b2012-10-26 15:13:08 -07003108 }
3109
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003110 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003111 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3112 int curflags = getWindow().getAttributes().flags
3113 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3114 if (wpflags != curflags) {
3115 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3116 }
Craig Mautner360310b2012-10-26 15:13:08 -07003117 setWorkspaceBackground(visible);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003118 }
3119
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003120 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
3121 if (v instanceof LauncherTransitionable) {
3122 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
3123 }
3124 }
3125
Michael Jurkabed61d22012-02-14 22:51:29 -08003126 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
3127 if (v instanceof LauncherTransitionable) {
3128 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
3129 }
Winson Chung70442722012-02-10 15:43:22 -08003130
3131 // Update the workspace transition step as well
3132 dispatchOnLauncherTransitionStep(v, 0f);
3133 }
3134
3135 private void dispatchOnLauncherTransitionStep(View v, float t) {
3136 if (v instanceof LauncherTransitionable) {
3137 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
3138 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003139 }
3140
3141 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
3142 if (v instanceof LauncherTransitionable) {
3143 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
3144 }
Winson Chung70442722012-02-10 15:43:22 -08003145
3146 // Update the workspace transition step as well
3147 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08003148 }
3149
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003150 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07003151 * Things to test when changing the following seven functions.
3152 * - Home from workspace
3153 * - from center screen
3154 * - from other screens
3155 * - Home from all apps
3156 * - from center screen
3157 * - from other screens
3158 * - Back from all apps
3159 * - from center screen
3160 * - from other screens
3161 * - Launch app from workspace and quit
3162 * - with back
3163 * - with home
3164 * - Launch app from all apps and quit
3165 * - with back
3166 * - with home
3167 * - Go to a screen that's not the default, then all
3168 * apps, and launch and app, and go back
3169 * - with back
3170 * -with home
3171 * - On workspace, long press power and go back
3172 * - with back
3173 * - with home
3174 * - On all apps, long press power and go back
3175 * - with back
3176 * - with home
3177 * - On workspace, power off
3178 * - On all apps, power off
3179 * - Launch an app and turn off the screen while in that app
3180 * - Go back with home key
3181 * - Go back with back key TODO: make this not go to workspace
3182 * - From all apps
3183 * - From workspace
3184 * - Enter and exit car mode (becuase it causes an extra configuration changed)
3185 * - From all apps
3186 * - From the center workspace
3187 * - From another workspace
3188 */
3189
3190 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003191 * Zoom the camera out from the workspace to reveal 'toView'.
3192 * Assumes that the view to show is anchored at either the very top or very bottom
3193 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003194 */
Michael Jurkabed61d22012-02-14 22:51:29 -08003195 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Winson Chungc58497e2013-09-03 17:48:37 -07003196 AppsCustomizePagedView.ContentType contentType = mAppsCustomizeContent.getContentType();
3197 showAppsCustomizeHelper(animated, springLoaded, contentType);
3198 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003199
Winson Chungc58497e2013-09-03 17:48:37 -07003200 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded,
3201 final AppsCustomizePagedView.ContentType contentType) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003202 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003203 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003204 mStateAnimation.cancel();
3205 mStateAnimation = null;
3206 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003207
Kenny Guyd794a3f2014-09-16 15:17:58 +01003208 boolean material = Utilities.isLmpOrAbove();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003209
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003210 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003211
Winson Chungf0ea4d32011-06-06 14:27:16 -07003212 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
3213 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003214 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeRevealTime);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003215 final int itemsAlphaStagger =
3216 res.getInteger(R.integer.config_appsCustomizeItemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003217
Winson Chungf0ea4d32011-06-06 14:27:16 -07003218 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08003219 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003220 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Patrick Dubroy558654c2010-07-23 16:48:11 -07003221
Adam Cohen2854d252014-08-27 16:04:07 -07003222 final ArrayList<View> layerViews = new ArrayList<View>();
3223
Adam Cohen6c5891a2014-07-09 23:53:15 -07003224 Workspace.State workspaceState = contentType == AppsCustomizePagedView.ContentType.Widgets ?
3225 Workspace.State.OVERVIEW_HIDDEN : Workspace.State.NORMAL_HIDDEN;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003226 Animator workspaceAnim =
Adam Cohen2854d252014-08-27 16:04:07 -07003227 mWorkspace.getChangeStateAnimation(workspaceState, animated, layerViews);
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08003228 if (!LauncherAppState.isDisableAllApps()
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08003229 || contentType == AppsCustomizePagedView.ContentType.Widgets) {
3230 // Set the content type for the all apps/widgets space
Winson Chungc58497e2013-09-03 17:48:37 -07003231 mAppsCustomizeTabHost.setContentTypeImmediate(contentType);
3232 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003233
Adam Cohena38dc902014-09-07 17:48:55 +02003234 // If for some reason our views aren't initialized, don't animate
3235 boolean initialized = getAllAppsButton() != null;
3236
3237 if (animated && initialized) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003238 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Adam Cohen9bfdb762014-07-21 17:44:06 -07003239 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3240 toView.findViewById(R.id.apps_customize_pane_content);
Adam Cohenf16e5712011-01-13 13:31:45 -08003241
Adam Cohen9bfdb762014-07-21 17:44:06 -07003242 final View page = content.getPageAt(content.getCurrentPage());
3243 final View revealView = toView.findViewById(R.id.fake_page);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003244
Adam Cohen63f1ec02014-08-12 09:23:13 -07003245 final float initialPanelAlpha = 1f;
3246
3247 final boolean isWidgetTray = contentType == AppsCustomizePagedView.ContentType.Widgets;
3248 if (isWidgetTray) {
Adam Cohen4e243a22014-08-10 18:30:55 -07003249 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel_dark));
3250 } else {
3251 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel));
3252 }
3253
Adam Cohen9bfdb762014-07-21 17:44:06 -07003254 // Hide the real page background, and swap in the fake one
Adam Cohen9bfdb762014-07-21 17:44:06 -07003255 content.setPageBackgroundsVisible(false);
Adam Cohen2854d252014-08-27 16:04:07 -07003256 revealView.setVisibility(View.VISIBLE);
3257 // We need to hide this view as the animation start will be posted.
3258 revealView.setAlpha(0);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003259
Adam Cohen9bfdb762014-07-21 17:44:06 -07003260 int width = revealView.getMeasuredWidth();
3261 int height = revealView.getMeasuredHeight();
Adam Cohen9bfdb762014-07-21 17:44:06 -07003262 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
Adam Cohen2854d252014-08-27 16:04:07 -07003263
Adam Cohen63f1ec02014-08-12 09:23:13 -07003264 revealView.setTranslationY(0);
Adam Cohen94afab42014-08-24 16:10:54 -07003265 revealView.setTranslationX(0);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003266
Adam Cohen63f1ec02014-08-12 09:23:13 -07003267 // Get the y delta between the center of the page and the center of the all apps button
3268 int[] allAppsToPanelDelta = Utilities.getCenterDeltaInScreenSpace(revealView,
3269 getAllAppsButton(), null);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003270
Adam Cohen2854d252014-08-27 16:04:07 -07003271 float alpha = 0;
3272 float xDrift = 0;
3273 float yDrift = 0;
3274 if (material) {
3275 alpha = isWidgetTray ? 0.3f : 1f;
3276 yDrift = isWidgetTray ? height / 2 : allAppsToPanelDelta[1];
3277 xDrift = isWidgetTray ? 0 : allAppsToPanelDelta[0];
3278 } else {
3279 yDrift = 2 * height / 3;
3280 xDrift = 0;
3281 }
3282 final float initAlpha = alpha;
3283
Adam Cohen9bfdb762014-07-21 17:44:06 -07003284 revealView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen2854d252014-08-27 16:04:07 -07003285 layerViews.add(revealView);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003286 PropertyValuesHolder panelAlpha = PropertyValuesHolder.ofFloat("alpha", initAlpha, 1f);
Adam Cohen94afab42014-08-24 16:10:54 -07003287 PropertyValuesHolder panelDriftY =
Adam Cohen63f1ec02014-08-12 09:23:13 -07003288 PropertyValuesHolder.ofFloat("translationY", yDrift, 0);
Adam Cohen94afab42014-08-24 16:10:54 -07003289 PropertyValuesHolder panelDriftX =
3290 PropertyValuesHolder.ofFloat("translationX", xDrift, 0);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003291
Adam Cohen2854d252014-08-27 16:04:07 -07003292 ObjectAnimator panelAlphaAndDrift = ObjectAnimator.ofPropertyValuesHolder(revealView,
3293 panelAlpha, panelDriftY, panelDriftX);
3294
Adam Cohen9bfdb762014-07-21 17:44:06 -07003295 panelAlphaAndDrift.setDuration(revealDuration);
3296 panelAlphaAndDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen6c5891a2014-07-09 23:53:15 -07003297
Adam Cohen9bfdb762014-07-21 17:44:06 -07003298 mStateAnimation.play(panelAlphaAndDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003299
Adam Cohen4e243a22014-08-10 18:30:55 -07003300 if (page != null) {
3301 page.setVisibility(View.VISIBLE);
3302 page.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Adam Cohen2854d252014-08-27 16:04:07 -07003303 layerViews.add(page);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003304
Adam Cohen2854d252014-08-27 16:04:07 -07003305 ObjectAnimator pageDrift = ObjectAnimator.ofFloat(page, "translationY", yDrift, 0);
3306 page.setTranslationY(yDrift);
Adam Cohen4e243a22014-08-10 18:30:55 -07003307 pageDrift.setDuration(revealDuration);
3308 pageDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003309 pageDrift.setStartDelay(itemsAlphaStagger);
Adam Cohen4e243a22014-08-10 18:30:55 -07003310 mStateAnimation.play(pageDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003311
Adam Cohen63f1ec02014-08-12 09:23:13 -07003312 page.setAlpha(0f);
Adam Cohen2854d252014-08-27 16:04:07 -07003313 ObjectAnimator itemsAlpha = ObjectAnimator.ofFloat(page, "alpha", 0f, 1f);
Adam Cohen4e243a22014-08-10 18:30:55 -07003314 itemsAlpha.setDuration(revealDuration);
3315 itemsAlpha.setInterpolator(new AccelerateInterpolator(1.5f));
3316 itemsAlpha.setStartDelay(itemsAlphaStagger);
3317 mStateAnimation.play(itemsAlpha);
3318 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003319
Adam Cohen4e243a22014-08-10 18:30:55 -07003320 View pageIndicators = toView.findViewById(R.id.apps_customize_page_indicator);
3321 pageIndicators.setAlpha(0.01f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003322 ObjectAnimator indicatorsAlpha =
Adam Cohen2854d252014-08-27 16:04:07 -07003323 ObjectAnimator.ofFloat(pageIndicators, "alpha", 1f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003324 indicatorsAlpha.setDuration(revealDuration);
3325 mStateAnimation.play(indicatorsAlpha);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003326
Adam Cohen9bfdb762014-07-21 17:44:06 -07003327 if (material) {
Adam Cohen63f1ec02014-08-12 09:23:13 -07003328 final View allApps = getAllAppsButton();
3329 int allAppsButtonSize = LauncherAppState.getInstance().
3330 getDynamicGrid().getDeviceProfile().allAppsButtonVisualSize;
3331 float startRadius = isWidgetTray ? 0 : allAppsButtonSize / 2;
Adam Cohen2854d252014-08-27 16:04:07 -07003332 Animator reveal = ViewAnimationUtils.createCircularReveal(revealView, width / 2,
Adam Cohen63f1ec02014-08-12 09:23:13 -07003333 height / 2, startRadius, revealRadius);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003334 reveal.setDuration(revealDuration);
3335 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003336
3337 reveal.addListener(new AnimatorListenerAdapter() {
3338 public void onAnimationStart(Animator animation) {
3339 if (!isWidgetTray) {
3340 allApps.setVisibility(View.INVISIBLE);
3341 }
3342 }
3343 public void onAnimationEnd(Animator animation) {
3344 if (!isWidgetTray) {
3345 allApps.setVisibility(View.VISIBLE);
3346 }
3347 }
3348 });
Adam Cohen6c5891a2014-07-09 23:53:15 -07003349 mStateAnimation.play(reveal);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003350 }
Michael Jurka1899a362011-11-03 13:50:45 -07003351
Adam Cohen9bfdb762014-07-21 17:44:06 -07003352 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3353 @Override
3354 public void onAnimationEnd(Animator animation) {
3355 dispatchOnLauncherTransitionEnd(fromView, animated, false);
3356 dispatchOnLauncherTransitionEnd(toView, animated, false);
3357
3358 revealView.setVisibility(View.INVISIBLE);
3359 revealView.setLayerType(View.LAYER_TYPE_NONE, null);
Adam Cohen4e243a22014-08-10 18:30:55 -07003360 if (page != null) {
3361 page.setLayerType(View.LAYER_TYPE_NONE, null);
3362 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003363 content.setPageBackgroundsVisible(true);
3364
3365 // Hide the search bar
3366 if (mSearchDropTargetBar != null) {
3367 mSearchDropTargetBar.hideSearchBar(false);
3368 }
3369 }
3370
Adam Cohen9bfdb762014-07-21 17:44:06 -07003371 });
3372
Adam Cohen6c5891a2014-07-09 23:53:15 -07003373 if (workspaceAnim != null) {
3374 mStateAnimation.play(workspaceAnim);
3375 }
Adam Cohen2854d252014-08-27 16:04:07 -07003376
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003377 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
3378 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003379 final AnimatorSet stateAnimation = mStateAnimation;
3380 final Runnable startAnimRunnable = new Runnable() {
3381 public void run() {
3382 // Check that mStateAnimation hasn't changed while
3383 // we waited for a layout/draw pass
3384 if (mStateAnimation != stateAnimation)
3385 return;
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003386 dispatchOnLauncherTransitionStart(fromView, animated, false);
3387 dispatchOnLauncherTransitionStart(toView, animated, false);
Adam Cohen2854d252014-08-27 16:04:07 -07003388
3389 revealView.setAlpha(initAlpha);
Kenny Guyd794a3f2014-09-16 15:17:58 +01003390 if (Utilities.isLmpOrAbove()) {
Adam Cohen2854d252014-08-27 16:04:07 -07003391 for (int i = 0; i < layerViews.size(); i++) {
3392 View v = layerViews.get(i);
Adam Cohen0f668f32014-09-08 19:54:17 +02003393 if (v != null) {
3394 boolean attached = true;
3395 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
3396 attached = v.isAttachedToWindow();
3397 }
3398 if (attached) v.buildLayer();
3399 }
Adam Cohen2854d252014-08-27 16:04:07 -07003400 }
3401 }
3402 mStateAnimation.start();
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003403 }
3404 };
Adam Cohen2854d252014-08-27 16:04:07 -07003405 toView.bringToFront();
3406 toView.setVisibility(View.VISIBLE);
3407 toView.post(startAnimRunnable);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003408 } else {
3409 toView.setTranslationX(0.0f);
3410 toView.setTranslationY(0.0f);
3411 toView.setScaleX(1.0f);
3412 toView.setScaleY(1.0f);
3413 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07003414 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07003415
Daniel Sandlere4f98912013-06-25 15:13:26 -04003416 if (!springLoaded && !LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungc7d2b602012-05-16 17:02:20 -07003417 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07003418 if (mSearchDropTargetBar != null) {
3419 mSearchDropTargetBar.hideSearchBar(false);
3420 }
Michael Jurkaabded662011-03-04 12:06:57 -08003421 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003422 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003423 dispatchOnLauncherTransitionStart(fromView, animated, false);
3424 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003425 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003426 dispatchOnLauncherTransitionStart(toView, animated, false);
3427 dispatchOnLauncherTransitionEnd(toView, animated, false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003428 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003429 }
3430
3431 /**
3432 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07003433 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003434 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003435 */
Adam Cohened307df2013-10-02 09:37:31 -07003436 private void hideAppsCustomizeHelper(Workspace.State toState, final boolean animated,
Adam Cohened66b2b2012-01-23 17:28:51 -08003437 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08003438
Michael Jurkab3e22d92011-10-31 15:58:33 -07003439 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003440 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003441 mStateAnimation.cancel();
3442 mStateAnimation = null;
3443 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003444
Kenny Guyd794a3f2014-09-16 15:17:58 +01003445 boolean material = Utilities.isLmpOrAbove();
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003446 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003447
Winson Chungf0ea4d32011-06-06 14:27:16 -07003448 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003449 final int fadeOutDuration = res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003450 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeConcealTime);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003451 final int itemsAlphaStagger =
3452 res.getInteger(R.integer.config_appsCustomizeItemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003453
Winson Chungf0ea4d32011-06-06 14:27:16 -07003454 final float scaleFactor = (float)
3455 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
3456 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08003457 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003458 Animator workspaceAnim = null;
Adam Cohen2854d252014-08-27 16:04:07 -07003459 final ArrayList<View> layerViews = new ArrayList<View>();
3460
Adam Cohened307df2013-10-02 09:37:31 -07003461 if (toState == Workspace.State.NORMAL) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003462 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohen2854d252014-08-27 16:04:07 -07003463 toState, animated, layerViews);
Adam Cohened307df2013-10-02 09:37:31 -07003464 } else if (toState == Workspace.State.SPRING_LOADED ||
3465 toState == Workspace.State.OVERVIEW) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003466 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohen2854d252014-08-27 16:04:07 -07003467 toState, animated, layerViews);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003468 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003469
Adam Cohena38dc902014-09-07 17:48:55 +02003470 // If for some reason our views aren't initialized, don't animate
3471 boolean initialized = getAllAppsButton() != null;
3472
3473 if (animated && initialized) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003474 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Adam Cohen2854d252014-08-27 16:04:07 -07003475 if (workspaceAnim != null) {
3476 mStateAnimation.play(workspaceAnim);
3477 }
Michael Jurka159b4cc2012-01-17 03:00:35 -08003478
Adam Cohen9bfdb762014-07-21 17:44:06 -07003479 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3480 fromView.findViewById(R.id.apps_customize_pane_content);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003481
Adam Cohen9bfdb762014-07-21 17:44:06 -07003482 final View page = content.getPageAt(content.getNextPage());
Adam Cohen8e894fa2014-09-08 19:45:43 +02003483
3484 // We need to hide side pages of the Apps / Widget tray to avoid some ugly edge cases
3485 int count = content.getChildCount();
3486 for (int i = 0; i < count; i++) {
3487 View child = content.getChildAt(i);
3488 if (child != page) {
3489 child.setVisibility(View.INVISIBLE);
3490 }
3491 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003492 final View revealView = fromView.findViewById(R.id.fake_page);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003493
Adam Cohen2854d252014-08-27 16:04:07 -07003494 // hideAppsCustomizeHelper is called in some cases when it is already hidden
3495 // don't perform all these no-op animations. In particularly, this was causing
3496 // the all-apps button to pop in and out.
3497 if (fromView.getVisibility() == View.VISIBLE) {
3498 AppsCustomizePagedView.ContentType contentType = content.getContentType();
3499 final boolean isWidgetTray =
3500 contentType == AppsCustomizePagedView.ContentType.Widgets;
Adam Cohen63f1ec02014-08-12 09:23:13 -07003501
Adam Cohen2854d252014-08-27 16:04:07 -07003502 if (isWidgetTray) {
3503 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel_dark));
3504 } else {
3505 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003506 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003507
Adam Cohen2854d252014-08-27 16:04:07 -07003508 int width = revealView.getMeasuredWidth();
3509 int height = revealView.getMeasuredHeight();
3510 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
3511
3512 // Hide the real page background, and swap in the fake one
3513 revealView.setVisibility(View.VISIBLE);
3514 content.setPageBackgroundsVisible(false);
3515
3516 final View allAppsButton = getAllAppsButton();
3517 revealView.setTranslationY(0);
3518 int[] allAppsToPanelDelta = Utilities.getCenterDeltaInScreenSpace(revealView,
3519 allAppsButton, null);
3520
3521 float xDrift = 0;
3522 float yDrift = 0;
3523 if (material) {
3524 yDrift = isWidgetTray ? height / 2 : allAppsToPanelDelta[1];
3525 xDrift = isWidgetTray ? 0 : allAppsToPanelDelta[0];
3526 } else {
3527 yDrift = 5 * height / 4;
3528 xDrift = 0;
3529 }
3530
3531 revealView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3532 TimeInterpolator decelerateInterpolator = material ?
3533 new LogDecelerateInterpolator(100, 0) :
3534 new LogDecelerateInterpolator(30, 0);
3535
3536 // The vertical motion of the apps panel should be delayed by one frame
3537 // from the conceal animation in order to give the right feel. We correpsondingly
3538 // shorten the duration so that the slide and conceal end at the same time.
3539 ObjectAnimator panelDriftY = LauncherAnimUtils.ofFloat(revealView, "translationY",
3540 0, yDrift);
3541 panelDriftY.setDuration(revealDuration - SINGLE_FRAME_DELAY);
3542 panelDriftY.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
3543 panelDriftY.setInterpolator(decelerateInterpolator);
3544 mStateAnimation.play(panelDriftY);
3545
3546 ObjectAnimator panelDriftX = LauncherAnimUtils.ofFloat(revealView, "translationX",
3547 0, xDrift);
3548 panelDriftX.setDuration(revealDuration - SINGLE_FRAME_DELAY);
3549 panelDriftX.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
3550 panelDriftX.setInterpolator(decelerateInterpolator);
3551 mStateAnimation.play(panelDriftX);
3552
3553 if (isWidgetTray || !material) {
3554 float finalAlpha = material ? 0.4f : 0f;
3555 revealView.setAlpha(1f);
3556 ObjectAnimator panelAlpha = LauncherAnimUtils.ofFloat(revealView, "alpha",
3557 1f, finalAlpha);
3558 panelAlpha.setDuration(revealDuration);
3559 panelAlpha.setInterpolator(material ? decelerateInterpolator :
3560 new AccelerateInterpolator(1.5f));
3561 mStateAnimation.play(panelAlpha);
3562 }
3563
3564 if (page != null) {
3565 page.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3566
3567 ObjectAnimator pageDrift = LauncherAnimUtils.ofFloat(page, "translationY",
3568 0, yDrift);
3569 page.setTranslationY(0);
3570 pageDrift.setDuration(revealDuration - SINGLE_FRAME_DELAY);
3571 pageDrift.setInterpolator(decelerateInterpolator);
3572 pageDrift.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
3573 mStateAnimation.play(pageDrift);
3574
3575 page.setAlpha(1f);
3576 ObjectAnimator itemsAlpha = LauncherAnimUtils.ofFloat(page, "alpha", 1f, 0f);
3577 itemsAlpha.setDuration(100);
3578 itemsAlpha.setInterpolator(decelerateInterpolator);
3579 mStateAnimation.play(itemsAlpha);
3580 }
3581
3582 View pageIndicators = fromView.findViewById(R.id.apps_customize_page_indicator);
3583 pageIndicators.setAlpha(1f);
3584 ObjectAnimator indicatorsAlpha =
3585 LauncherAnimUtils.ofFloat(pageIndicators, "alpha", 0f);
3586 indicatorsAlpha.setDuration(revealDuration);
3587 indicatorsAlpha.setInterpolator(new DecelerateInterpolator(1.5f));
3588 mStateAnimation.play(indicatorsAlpha);
3589
3590 width = revealView.getMeasuredWidth();
3591
3592 if (material) {
3593 if (!isWidgetTray) {
3594 allAppsButton.setVisibility(View.INVISIBLE);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003595 }
Adam Cohen2854d252014-08-27 16:04:07 -07003596 int allAppsButtonSize = LauncherAppState.getInstance().
3597 getDynamicGrid().getDeviceProfile().allAppsButtonVisualSize;
3598 float finalRadius = isWidgetTray ? 0 : allAppsButtonSize / 2;
3599 Animator reveal =
3600 LauncherAnimUtils.createCircularReveal(revealView, width / 2,
3601 height / 2, revealRadius, finalRadius);
3602 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
3603 reveal.setDuration(revealDuration);
3604 reveal.setStartDelay(itemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003605
Adam Cohen2854d252014-08-27 16:04:07 -07003606 reveal.addListener(new AnimatorListenerAdapter() {
3607 public void onAnimationEnd(Animator animation) {
3608 revealView.setVisibility(View.INVISIBLE);
3609 if (!isWidgetTray) {
3610 allAppsButton.setVisibility(View.VISIBLE);
3611 }
3612 }
3613 });
Adam Cohen9bfdb762014-07-21 17:44:06 -07003614
Adam Cohen2854d252014-08-27 16:04:07 -07003615 mStateAnimation.play(reveal);
3616 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003617
Adam Cohen2854d252014-08-27 16:04:07 -07003618 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
3619 dispatchOnLauncherTransitionPrepare(toView, animated, true);
3620 mAppsCustomizeContent.stopScrolling();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003621 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003622
3623 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07003624 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08003625 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003626 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08003627 dispatchOnLauncherTransitionEnd(fromView, animated, true);
3628 dispatchOnLauncherTransitionEnd(toView, animated, true);
Adam Cohened66b2b2012-01-23 17:28:51 -08003629 if (onCompleteRunnable != null) {
3630 onCompleteRunnable.run();
3631 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003632
3633 revealView.setLayerType(View.LAYER_TYPE_NONE, null);
Adam Cohen4e243a22014-08-10 18:30:55 -07003634 if (page != null) {
3635 page.setLayerType(View.LAYER_TYPE_NONE, null);
3636 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003637 content.setPageBackgroundsVisible(true);
Adam Cohen8e894fa2014-09-08 19:45:43 +02003638 // Unhide side pages
3639 int count = content.getChildCount();
3640 for (int i = 0; i < count; i++) {
3641 View child = content.getChildAt(i);
3642 child.setVisibility(View.VISIBLE);
3643 }
3644
3645 // Reset page transforms
Adam Cohen493f6bc2014-09-18 08:11:05 -07003646 if (page != null) {
3647 page.setTranslationX(0);
3648 page.setTranslationY(0);
3649 page.setAlpha(1);
3650 }
Adam Cohen8e894fa2014-09-08 19:45:43 +02003651 content.setCurrentPage(content.getNextPage());
3652
Chet Haasebc2f0822012-10-26 17:59:53 -07003653 mAppsCustomizeContent.updateCurrentPageScroll();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003654 }
3655 });
3656
Adam Cohen2854d252014-08-27 16:04:07 -07003657 final AnimatorSet stateAnimation = mStateAnimation;
3658 final Runnable startAnimRunnable = new Runnable() {
3659 public void run() {
3660 // Check that mStateAnimation hasn't changed while
3661 // we waited for a layout/draw pass
3662 if (mStateAnimation != stateAnimation)
3663 return;
3664 dispatchOnLauncherTransitionStart(fromView, animated, false);
3665 dispatchOnLauncherTransitionStart(toView, animated, false);
3666
Kenny Guyd794a3f2014-09-16 15:17:58 +01003667 if (Utilities.isLmpOrAbove()) {
Adam Cohen2854d252014-08-27 16:04:07 -07003668 for (int i = 0; i < layerViews.size(); i++) {
3669 View v = layerViews.get(i);
Adam Cohen0f668f32014-09-08 19:54:17 +02003670 if (v != null) {
3671 boolean attached = true;
3672 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
3673 attached = v.isAttachedToWindow();
3674 }
3675 if (attached) v.buildLayer();
3676 }
Adam Cohen2854d252014-08-27 16:04:07 -07003677 }
3678 }
3679 mStateAnimation.start();
3680 }
3681 };
3682 fromView.post(startAnimRunnable);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003683 } else {
3684 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003685 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003686 dispatchOnLauncherTransitionStart(fromView, animated, true);
3687 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003688 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003689 dispatchOnLauncherTransitionStart(toView, animated, true);
3690 dispatchOnLauncherTransitionEnd(toView, animated, true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003691 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003692 }
3693
Michael Jurkae326f182011-11-21 14:05:46 -08003694 @Override
3695 public void onTrimMemory(int level) {
3696 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07003697 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08003698 mAppsCustomizeTabHost.onTrimMemory();
3699 }
3700 }
3701
Adam Cohened307df2013-10-02 09:37:31 -07003702 protected void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08003703 showWorkspace(animated, null);
3704 }
3705
Adam Cohened307df2013-10-02 09:37:31 -07003706 protected void showWorkspace() {
3707 showWorkspace(true);
3708 }
3709
Adam Cohened66b2b2012-01-23 17:28:51 -08003710 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Adam Cohene25c5d12014-06-18 10:34:58 -07003711 if (mState != State.WORKSPACE || mWorkspace.getState() != Workspace.State.NORMAL) {
Winson Chung2d75f122013-09-23 16:53:31 -07003712 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003713 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened307df2013-10-02 09:37:31 -07003714 hideAppsCustomizeHelper(Workspace.State.NORMAL, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003715
Winson Chungc7d2b602012-05-16 17:02:20 -07003716 // Show the search bar (only animate if we were showing the drop target bar in spring
3717 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003718 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003719 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003720 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003721
Michael Jurkab3e22d92011-10-31 15:58:33 -07003722 // Set focus to the AppsCustomize button
3723 if (mAllAppsButton != null) {
3724 mAllAppsButton.requestFocus();
3725 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003726 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003727
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003728 // Change the state *after* we've called all the transition code
3729 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003730
Winson Chung5fb63472011-02-02 17:03:37 -08003731 // Resume the auto-advance of widgets
3732 mUserPresent = true;
3733 updateRunning();
3734
alanv1d4fde62012-10-17 13:15:47 -07003735 // Send an accessibility event to announce the context change
3736 getWindow().getDecorView()
3737 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003738
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003739 onWorkspaceShown(animated);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003740 }
3741
Adam Cohened307df2013-10-02 09:37:31 -07003742 void showOverviewMode(boolean animated) {
3743 mWorkspace.setVisibility(View.VISIBLE);
3744 hideAppsCustomizeHelper(Workspace.State.OVERVIEW, animated, false, null);
3745 mState = State.WORKSPACE;
3746 onWorkspaceShown(animated);
3747 }
3748
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003749 public void onWorkspaceShown(boolean animated) {
Joe Onorato00acb122009-08-04 16:04:30 -04003750 }
3751
Winson Chung82963d52013-10-09 11:20:57 -07003752 void showAllApps(boolean animated, AppsCustomizePagedView.ContentType contentType,
3753 boolean resetPageToZero) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003754 if (mState != State.WORKSPACE) return;
3755
Winson Chung82963d52013-10-09 11:20:57 -07003756 if (resetPageToZero) {
3757 mAppsCustomizeTabHost.reset();
3758 }
Winson Chungc58497e2013-09-03 17:48:37 -07003759 showAppsCustomizeHelper(animated, false, contentType);
Adam Cohendcc5e712014-06-23 15:38:55 -04003760 mAppsCustomizeTabHost.post(new Runnable() {
3761 @Override
3762 public void run() {
3763 // We post this in-case the all apps view isn't yet constructed.
3764 mAppsCustomizeTabHost.requestFocus();
3765 }
3766 });
Michael Jurkab3e22d92011-10-31 15:58:33 -07003767
Michael Jurkab3e22d92011-10-31 15:58:33 -07003768 // Change the state *after* we've called all the transition code
3769 mState = State.APPS_CUSTOMIZE;
3770
3771 // Pause the auto-advance of widgets until we are out of AllApps
3772 mUserPresent = false;
3773 updateRunning();
3774 closeFolder();
3775
3776 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003777 getWindow().getDecorView()
3778 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003779 }
3780
Adam Cohen7777d962011-08-18 18:58:38 -07003781 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003782 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07003783 hideAppsCustomizeHelper(Workspace.State.SPRING_LOADED, true, true, null);
Winson Chungc07918d2011-07-01 15:35:26 -07003784 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07003785 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003786 }
Adam Cohen7777d962011-08-18 18:58:38 -07003787
Adam Cohenad4e15c2013-10-17 16:21:35 -07003788 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003789 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07003790 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
3791
Winson Chunge7a03942011-08-05 15:05:12 -07003792 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003793 @Override
3794 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003795 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003796 // Before we show workspace, hide all apps again because
3797 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3798 // clean up our state transition functions
3799 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003800 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003801 } else {
3802 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003803 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003804 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003805 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003806 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003807
Michael Jurkad3ef3062010-11-23 16:23:58 -08003808 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07003809 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003810 final boolean animated = true;
3811 final boolean springLoaded = true;
3812 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07003813 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07003814 }
3815 // Otherwise, we are not in spring loaded mode, so don't do anything.
3816 }
3817
Michael Jurkab3e22d92011-10-31 15:58:33 -07003818 void lockAllApps() {
3819 // TODO
3820 }
3821
3822 void unlockAllApps() {
3823 // TODO
3824 }
3825
Winson Chungf0ea4d32011-06-06 14:27:16 -07003826 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003827 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003828 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003829 void hideHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003830 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003831 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003832 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003833 int duration = 0;
3834 if (mSearchDropTargetBar != null) {
3835 duration = mSearchDropTargetBar.getTransitionOutDuration();
3836 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003837 mHotseat.animate().alpha(0f).setDuration(duration);
3838 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003839 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003840 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003841 }
Winson Chungb26f3d62011-06-02 10:49:29 -07003842 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003843 }
3844
Patrick Dubroy5f445422011-02-18 14:35:21 -08003845 /**
3846 * Add an item from all apps or customize onto the given workspace screen.
3847 * If layout is null, add to the current screen.
3848 */
3849 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003850 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07003851 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07003852 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003853 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003854
Winson Chungdff8ebb2011-09-08 17:25:31 -07003855 /** Maps the current orientation to an index for referencing orientation correct global icons */
3856 private int getCurrentOrientationIndexForGlobalIcons() {
3857 // default - 0, landscape - 1
3858 switch (getResources().getConfiguration().orientation) {
3859 case Configuration.ORIENTATION_LANDSCAPE:
3860 return 1;
3861 default:
3862 return 0;
3863 }
3864 }
3865
Michael Jurkaae65ee32012-04-30 11:45:54 -07003866 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07003867 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003868 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07003869 // Look for the toolbar icon specified in the activity meta-data
3870 Bundle metaData = packageManager.getActivityInfo(
3871 activityName, PackageManager.GET_META_DATA).metaData;
3872 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07003873 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003874 if (iconResId != 0) {
3875 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003876 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003877 }
3878 }
3879 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07003880 // This can happen if the activity defines an invalid drawable
3881 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
3882 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01003883 } catch (Resources.NotFoundException nfe) {
3884 // This can happen if the activity defines an invalid drawable
3885 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
3886 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003887 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003888 return null;
3889 }
3890
3891 // if successful in getting icon, return it; otherwise, set button to use default drawable
3892 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003893 int buttonId, ComponentName activityName, int fallbackDrawableId,
3894 String toolbarResourceName) {
3895 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07003896 Resources r = getResources();
3897 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3898 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003899
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003900 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003901 // If we were unable to find the icon via the meta-data, use a generic one
3902 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07003903 toolbarIcon = r.getDrawable(fallbackDrawableId);
3904 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003905 if (button != null) {
3906 button.setCompoundDrawables(toolbarIcon, null, null, null);
3907 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003908 return null;
3909 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07003910 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003911 if (button != null) {
3912 button.setCompoundDrawables(toolbarIcon, null, null, null);
3913 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003914 return toolbarIcon.getConstantState();
3915 }
3916 }
3917
3918 // if successful in getting icon, return it; otherwise, set button to use default drawable
3919 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003920 int buttonId, ComponentName activityName, int fallbackDrawableId,
3921 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003922 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07003923 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003924
Michael Jurka19e0fc52011-07-22 18:00:21 -07003925 if (button != null) {
3926 // If we were unable to find the icon via the meta-data, use a
3927 // generic one
3928 if (toolbarIcon == null) {
3929 button.setImageResource(fallbackDrawableId);
3930 } else {
3931 button.setImageDrawable(toolbarIcon);
3932 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003933 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003934
3935 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3936
Michael Jurka0423dcf2010-10-05 14:56:18 -07003937 }
3938
Winson Chung1b884092012-06-08 17:13:02 -07003939 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003940 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003941 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003942 }
3943
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003944 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003945 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003946 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003947 }
3948
Winson Chungbb185bd2011-11-21 12:31:42 -08003949 private void invalidatePressedFocusedStates(View container, View button) {
3950 if (container instanceof HolographicLinearLayout) {
3951 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3952 layout.invalidatePressedFocusedStates();
3953 } else if (button instanceof HolographicImageView) {
3954 HolographicImageView view = (HolographicImageView) button;
3955 view.invalidatePressedFocusedStates();
3956 }
3957 }
3958
Cristina Stancu476493b2013-08-07 17:20:14 +01003959 public View getQsbBar() {
Adam Cohen24ce0b32014-01-14 16:18:14 -08003960 if (mQsb == null) {
3961 mQsb = mInflater.inflate(R.layout.qsb, mSearchDropTargetBar, false);
3962 mSearchDropTargetBar.addView(mQsb);
Cristina Stancu476493b2013-08-07 17:20:14 +01003963 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003964 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003965 }
3966
3967 protected boolean updateGlobalSearchIcon() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003968 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003969 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003970 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003971 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003972
Winson Chung1cad91e2011-05-25 17:41:01 -07003973 final SearchManager searchManager =
3974 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3975 ComponentName activityName = searchManager.getGlobalSearchActivity();
3976 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003977 int coi = getCurrentOrientationIndexForGlobalIcons();
3978 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003979 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3980 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3981 if (sGlobalSearchIcon[coi] == null) {
3982 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3983 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3984 TOOLBAR_ICON_METADATA_NAME);
3985 }
3986
Winson Chungc51db6a2011-10-05 11:44:49 -07003987 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3988 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003989 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003990 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003991 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003992 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003993 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3994 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04003995 if (searchButton != null) searchButton.setVisibility(View.GONE);
3996 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07003997 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003998 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003999 }
4000 }
4001
Cristina Stancu476493b2013-08-07 17:20:14 +01004002 protected void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08004003 final View searchButtonContainer = findViewById(R.id.search_button_container);
4004 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08004005 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08004006 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08004007 }
4008
Cristina Stancu476493b2013-08-07 17:20:14 +01004009 protected boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07004010 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07004011 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07004012
Winson Chungc51db6a2011-10-05 11:44:49 -07004013 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07004014 final SearchManager searchManager =
4015 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
4016 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
4017
4018 ComponentName activityName = null;
4019 if (globalSearchActivity != null) {
4020 // Check if the global search activity handles voice search
4021 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
4022 intent.setPackage(globalSearchActivity.getPackageName());
4023 activityName = intent.resolveActivity(getPackageManager());
4024 }
4025
4026 if (activityName == null) {
4027 // Fallback: check if an activity other than the global search activity
4028 // resolves this
4029 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
4030 activityName = intent.resolveActivity(getPackageManager());
4031 }
Winson Chungc51db6a2011-10-05 11:44:49 -07004032 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07004033 int coi = getCurrentOrientationIndexForGlobalIcons();
4034 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07004035 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
4036 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
4037 if (sVoiceSearchIcon[coi] == null) {
4038 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
4039 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
4040 TOOLBAR_ICON_METADATA_NAME);
4041 }
Winson Chungc51db6a2011-10-05 11:44:49 -07004042 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07004043 voiceButton.setVisibility(View.VISIBLE);
Winson Chung5841efa2013-09-30 18:06:44 -07004044 updateVoiceButtonProxyVisible(false);
Winson Chungbb185bd2011-11-21 12:31:42 -08004045 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07004046 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07004047 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07004048 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
John Spurlock2c38e702013-09-18 10:48:25 -04004049 if (voiceButton != null) voiceButton.setVisibility(View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07004050 updateVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07004051 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07004052 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07004053 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07004054
Cristina Stancu476493b2013-08-07 17:20:14 +01004055 protected void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08004056 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
4057 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08004058 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08004059 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08004060 }
4061
Winson Chung5841efa2013-09-30 18:06:44 -07004062 public void updateVoiceButtonProxyVisible(boolean forceDisableVoiceButtonProxy) {
Bjorn Bringertecf33e42013-06-11 15:46:07 +01004063 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
4064 if (voiceButtonProxy != null) {
Winson Chung5841efa2013-09-30 18:06:44 -07004065 boolean visible = !forceDisableVoiceButtonProxy &&
4066 mWorkspace.shouldVoiceButtonProxyBeVisible();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01004067 voiceButtonProxy.setVisibility(visible ? View.VISIBLE : View.GONE);
Winson Chung5841efa2013-09-30 18:06:44 -07004068 voiceButtonProxy.bringToFront();
Bjorn Bringertecf33e42013-06-11 15:46:07 +01004069 }
4070 }
Winson Chung5841efa2013-09-30 18:06:44 -07004071
4072 /**
4073 * This is an overrid eot disable the voice button proxy. If disabled is true, then the voice button proxy
4074 * will be hidden regardless of what shouldVoiceButtonProxyBeVisible() returns.
4075 */
4076 public void disableVoiceButtonProxy(boolean disabled) {
4077 updateVoiceButtonProxyVisible(disabled);
4078 }
Michael Jurka4ef207b2010-11-29 17:05:45 -08004079
Michael Jurkad7c28052012-04-27 15:43:36 -07004080 @Override
4081 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07004082 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07004083 final List<CharSequence> text = event.getText();
4084 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07004085 // Populate event with a fake title based on the current state.
4086 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohen6c5891a2014-07-09 23:53:15 -07004087 text.add(mAppsCustomizeTabHost.getContentTag());
alanv1d4fde62012-10-17 13:15:47 -07004088 } else {
4089 text.add(getString(R.string.all_apps_home_button_label));
4090 }
Michael Jurkad7c28052012-04-27 15:43:36 -07004091 return result;
4092 }
4093
Patrick Dubroyceae05d2010-08-30 10:40:53 -07004094 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07004095 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004096 */
4097 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
4098 @Override
4099 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004100 closeSystemDialogs();
4101 }
4102 }
4103
4104 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08004105 * Receives notifications whenever the appwidgets are reset.
4106 */
4107 private class AppWidgetResetObserver extends ContentObserver {
4108 public AppWidgetResetObserver() {
4109 super(new Handler());
4110 }
4111
4112 @Override
4113 public void onChange(boolean selfChange) {
4114 onAppWidgetReset();
4115 }
4116 }
4117
4118 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07004119 * If the activity is currently paused, signal that we need to run the passed Runnable
4120 * in onResume.
4121 *
4122 * This needs to be called from incoming places where resources might have been loaded
4123 * while we are paused. That is becaues the Configuration might be wrong
4124 * when we're not running, and if it comes back to what it was when we
4125 * were paused, we are not restarted.
4126 *
4127 * Implementation of the method from LauncherModel.Callbacks.
4128 *
4129 * @return true if we are currently paused. The caller might be able to
4130 * skip some work in that case since we will come back again.
4131 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004132 private boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004133 if (mPaused) {
4134 Log.i(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02004135 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07004136 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004137 }
4138 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07004139 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07004140 return true;
4141 } else {
4142 return false;
4143 }
4144 }
4145
Michael Jurkac402cd92013-05-20 15:49:32 +02004146 private boolean waitUntilResume(Runnable run) {
4147 return waitUntilResume(run, false);
4148 }
4149
Michael Jurka1e2f4652013-07-08 18:03:46 -07004150 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02004151 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07004152 }
4153
Michael Jurka7607c2f2013-04-03 14:33:19 -07004154 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004155 * If the activity is currently paused, signal that we need to re-run the loader
4156 * in onResume.
4157 *
4158 * This needs to be called from incoming places where resources might have been loaded
4159 * while we are paused. That is becaues the Configuration might be wrong
4160 * when we're not running, and if it comes back to what it was when we
4161 * were paused, we are not restarted.
4162 *
4163 * Implementation of the method from LauncherModel.Callbacks.
4164 *
4165 * @return true if we are currently paused. The caller might be able to
4166 * skip some work in that case since we will come back again.
4167 */
4168 public boolean setLoadOnResume() {
4169 if (mPaused) {
4170 Log.i(TAG, "setLoadOnResume");
4171 mOnResumeNeedsLoad = true;
4172 return true;
4173 } else {
4174 return false;
4175 }
4176 }
4177
4178 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004179 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004180 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04004181 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07004182 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07004183 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07004184 } else {
4185 return SCREEN_COUNT / 2;
4186 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004187 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07004188
Joe Onorato9c1289c2009-08-17 11:03:03 -04004189 /**
4190 * Refreshes the shortcuts shown on the workspace.
4191 *
4192 * Implementation of the method from LauncherModel.Callbacks.
4193 */
4194 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004195 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08004196
Michael Jurka7607c2f2013-04-03 14:33:19 -07004197 // If we're starting binding all over again, clear any bind calls we'd postponed in
4198 // the past (see waitUntilResume) -- we don't need them since we're starting binding
4199 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07004200 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07004201
Winson Chungd64d1762013-08-20 14:37:16 -07004202 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07004203 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07004204 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07004205
Michael Jurka05bf6442011-11-30 20:28:53 -08004206 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07004207 if (mHotseat != null) {
4208 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004209 }
4210 }
4211
Adam Cohendcd297f2013-06-18 13:13:40 -07004212 @Override
4213 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07004214 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07004215
Adam Cohen5084cba2013-09-03 12:01:16 -07004216 // If there are no screens, we need to have an empty screen
4217 if (orderedScreenIds.size() == 0) {
4218 mWorkspace.addExtraEmptyScreen();
4219 }
Winson Chung0e6a7132013-08-23 12:55:10 -07004220
4221 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06004222 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05004223 if (hasCustomContentToLeft()) {
4224 mWorkspace.createCustomContentContainer();
4225 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07004226 }
Winson Chung64359a52013-07-08 17:17:08 -07004227 }
4228
4229 @Override
4230 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Winson Chunga90303b2013-11-15 13:05:06 -08004231 // Log to disk
4232 Launcher.addDumpLog(TAG, "11683562 - bindAddScreens()", true);
4233 Launcher.addDumpLog(TAG, "11683562 - orderedScreenIds: " +
4234 TextUtils.join(", ", orderedScreenIds), true);
Adam Cohendcd297f2013-06-18 13:13:40 -07004235 int count = orderedScreenIds.size();
4236 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07004237 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07004238 }
Adam Cohendcd297f2013-06-18 13:13:40 -07004239 }
4240
Adam Cohen39a06042013-07-19 14:30:12 -07004241 private boolean shouldShowWeightWatcher() {
4242 String spKey = LauncherAppState.getSharedPreferencesKey();
4243 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b802013-08-15 15:44:26 -07004244 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07004245
4246 return show;
4247 }
4248
4249 private void toggleShowWeightWatcher() {
4250 String spKey = LauncherAppState.getSharedPreferencesKey();
4251 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
4252 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
4253
4254 show = !show;
4255
4256 SharedPreferences.Editor editor = sp.edit();
4257 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
4258 editor.commit();
4259
4260 if (mWeightWatcher != null) {
4261 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
4262 }
4263 }
4264
Winson Chungd64d1762013-08-20 14:37:16 -07004265 public void bindAppsAdded(final ArrayList<Long> newScreens,
4266 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07004267 final ArrayList<ItemInfo> addAnimated,
4268 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004269 Runnable r = new Runnable() {
4270 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07004271 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07004272 }
4273 };
4274 if (waitUntilResume(r)) {
4275 return;
4276 }
4277
Winson Chungd64d1762013-08-20 14:37:16 -07004278 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08004279 if (newScreens != null) {
4280 bindAddScreens(newScreens);
4281 }
Winson Chungd64d1762013-08-20 14:37:16 -07004282
4283 // We add the items without animation on non-visible pages, and with
4284 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08004285 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004286 bindItems(addNotAnimated, 0,
4287 addNotAnimated.size(), false);
4288 }
Adam Cohen76a47a12014-02-05 11:47:43 -08004289 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004290 bindItems(addAnimated, 0,
4291 addAnimated.size(), true);
4292 }
Winson Chungc58497e2013-09-03 17:48:37 -07004293
Winson Chung87412982013-10-03 18:34:14 -07004294 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07004295 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07004296
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004297 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004298 addedApps != null && mAppsCustomizeContent != null) {
4299 mAppsCustomizeContent.addApps(addedApps);
4300 }
Winson Chungd64d1762013-08-20 14:37:16 -07004301 }
4302
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004303 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004304 * Bind the items start-end from the list.
4305 *
4306 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004307 */
Winson Chung64359a52013-07-08 17:17:08 -07004308 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
4309 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07004310 Runnable r = new Runnable() {
4311 public void run() {
4312 bindItems(shortcuts, start, end, forceAnimateIcons);
4313 }
4314 };
4315 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004316 return;
4317 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004318
Winson Chungf0c6ae02012-03-21 16:10:31 -07004319 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07004320 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
4321 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07004322 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004323 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07004324 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004325 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04004326 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07004327
4328 // Short circuit if we are loading dock items for a configuration which has no dock
4329 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
4330 mHotseat == null) {
4331 continue;
4332 }
4333
Joe Onorato9c1289c2009-08-17 11:03:03 -04004334 switch (item.itemType) {
4335 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
4336 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07004337 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004338 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07004339
Winson Chung64359a52013-07-08 17:17:08 -07004340 /*
4341 * TODO: FIX collision case
4342 */
Winson Chungce376632013-07-11 16:12:41 -07004343 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
4344 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
4345 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07004346 View v = cl.getChildAt(item.cellX, item.cellY);
4347 Object tag = v.getTag();
4348 String desc = "Collision while binding workspace item: " + item
4349 + ". Collides with " + tag;
4350 if (LauncherAppState.isDogfoodBuild()) {
4351 throw (new RuntimeException(desc));
4352 } else {
4353 Log.d(TAG, desc);
4354 }
Winson Chungce376632013-07-11 16:12:41 -07004355 }
Winson Chung64359a52013-07-08 17:17:08 -07004356 }
4357
Adam Cohendcd297f2013-06-18 13:13:40 -07004358 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
4359 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07004360 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07004361 // Animate all the applications up now
4362 shortcut.setAlpha(0f);
4363 shortcut.setScaleX(0f);
4364 shortcut.setScaleY(0f);
4365 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07004366 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004367 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004368 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07004369 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07004370 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07004371 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07004372 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07004373 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
4374 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004375 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07004376 default:
4377 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04004378 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004379 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004380
Winson Chung997a9232013-07-24 15:33:46 -07004381 if (animateIcons) {
4382 // Animate to the correct page
4383 if (newShortcutsScreenId > -1) {
4384 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07004385 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07004386 final Runnable startBounceAnimRunnable = new Runnable() {
4387 public void run() {
4388 anim.playTogether(bounceAnims);
4389 anim.start();
4390 }
4391 };
Winson Chung997a9232013-07-24 15:33:46 -07004392 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07004393 // We post the animation slightly delayed to prevent slowdowns
4394 // when we are loading right after we return to launcher.
4395 mWorkspace.postDelayed(new Runnable() {
4396 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00004397 if (mWorkspace != null) {
4398 mWorkspace.snapToPage(newScreenIndex);
4399 mWorkspace.postDelayed(startBounceAnimRunnable,
4400 NEW_APPS_ANIMATION_DELAY);
4401 }
Winson Chung94d67682013-09-25 16:29:40 -07004402 }
4403 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07004404 } else {
4405 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07004406 }
4407 }
Winson Chung64359a52013-07-08 17:17:08 -07004408 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004409 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004410 }
4411
Joe Onorato9c1289c2009-08-17 11:03:03 -04004412 /**
4413 * Implementation of the method from LauncherModel.Callbacks.
4414 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004415 public void bindFolders(final HashMap<Long, FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07004416 Runnable r = new Runnable() {
4417 public void run() {
4418 bindFolders(folders);
4419 }
4420 };
4421 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004422 return;
4423 }
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004424 sFolders.clear();
4425 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004426 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004427
4428 /**
4429 * Add the views for a widget to the workspace.
4430 *
4431 * Implementation of the method from LauncherModel.Callbacks.
4432 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004433 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004434 Runnable r = new Runnable() {
4435 public void run() {
4436 bindAppWidget(item);
4437 }
4438 };
4439 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004440 return;
4441 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004442
Daniel Sandler843e8602010-06-07 14:59:01 -04004443 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4444 if (DEBUG_WIDGETS) {
4445 Log.d(TAG, "bindAppWidget: " + item);
4446 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004447 final Workspace workspace = mWorkspace;
4448
Sunny Goyalff572272014-07-23 13:58:07 -07004449 AppWidgetProviderInfo appWidgetInfo;
4450 if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0) &&
4451 ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
4452
4453 appWidgetInfo = mModel.findAppWidgetProviderInfoWithComponent(this, item.providerName);
4454 if (appWidgetInfo == null) {
4455 if (DEBUG_WIDGETS) {
4456 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4457 + " belongs to component " + item.providerName
4458 + ", as the povider is null");
4459 }
4460 LauncherModel.deleteItemFromDatabase(this, item);
4461 return;
4462 }
4463 // Note: This assumes that the id remap broadcast is received before this step.
4464 // If that is not the case, the id remap will be ignored and user may see the
4465 // click to setup view.
4466 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(appWidgetInfo, null, null);
4467 pendingInfo.spanX = item.spanX;
4468 pendingInfo.spanY = item.spanY;
4469 pendingInfo.minSpanX = item.minSpanX;
4470 pendingInfo.minSpanY = item.minSpanY;
4471 Bundle options =
4472 AppsCustomizePagedView.getDefaultOptionsForWidget(this, pendingInfo);
4473
Sunny Goyalff572272014-07-23 13:58:07 -07004474 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07004475 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4476 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07004477
4478 // TODO consider showing a permission dialog when the widget is clicked.
4479 if (!success) {
4480 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4481 if (DEBUG_WIDGETS) {
4482 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4483 + " belongs to component " + item.providerName
4484 + ", as the launcher is unable to bing a new widget id");
4485 }
4486 LauncherModel.deleteItemFromDatabase(this, item);
4487 return;
4488 }
4489
4490 item.appWidgetId = newWidgetId;
4491
4492 // If the widget has a configure activity, it is still needs to set it up, otherwise
4493 // the widget is ready to go.
4494 item.restoreStatus = (appWidgetInfo.configure == null)
4495 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4496 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4497
4498 LauncherModel.updateItemInDatabase(this, item);
4499 }
4500
Sunny Goyal651077b2014-06-30 14:15:31 -07004501 if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
4502 final int appWidgetId = item.appWidgetId;
4503 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4504 if (DEBUG_WIDGETS) {
4505 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
4506 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004507
Sunny Goyal651077b2014-06-30 14:15:31 -07004508 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
4509 } else {
4510 appWidgetInfo = null;
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004511 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item);
4512 view.updateIcon(mIconCache);
4513 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004514 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004515 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004516 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004517
Joe Onorato9c1289c2009-08-17 11:03:03 -04004518 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004519 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004520
Adam Cohendcd297f2013-06-18 13:13:40 -07004521 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004522 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07004523 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4524
Joe Onorato9c1289c2009-08-17 11:03:03 -04004525 workspace.requestLayout();
4526
Daniel Sandler843e8602010-06-07 14:59:01 -04004527 if (DEBUG_WIDGETS) {
4528 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4529 + (SystemClock.uptimeMillis()-start) + "ms");
4530 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004531 }
4532
Sunny Goyalff572272014-07-23 13:58:07 -07004533 /**
4534 * Restores a pending widget.
4535 *
4536 * @param appWidgetId The app widget id
4537 * @param cellInfo The position on screen where to create the widget.
4538 */
4539 private void completeRestoreAppWidget(final int appWidgetId) {
4540 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4541 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4542 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4543 return;
4544 }
4545
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004546 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004547 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4548
4549 mWorkspace.reinflateWidgetsIfNecessary();
4550 LauncherModel.updateItemInDatabase(this, info);
4551 }
4552
Adam Cohen1462de32012-07-24 22:34:36 -07004553 public void onPageBoundSynchronously(int page) {
4554 mSynchronouslyBoundPages.add(page);
4555 }
4556
Joe Onorato9c1289c2009-08-17 11:03:03 -04004557 /**
4558 * Callback saying that there aren't any more items to bind.
4559 *
4560 * Implementation of the method from LauncherModel.Callbacks.
4561 */
Adam Cohene25af792013-06-06 23:08:25 -07004562 public void finishBindingItems(final boolean upgradePath) {
Winson Chungd64d1762013-08-20 14:37:16 -07004563 Runnable r = new Runnable() {
4564 public void run() {
4565 finishBindingItems(upgradePath);
4566 }
4567 };
4568 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004569 return;
4570 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004571 if (mSavedState != null) {
4572 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004573 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004574 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004575 mSavedState = null;
4576 }
4577
Adam Cohen1462de32012-07-24 22:34:36 -07004578 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004579
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004580 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004581 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004582
4583 // If we received the result of any pending adds while the loader was running (e.g. the
4584 // widget configuration forced an orientation change), process them now.
4585 if (sPendingAddItem != null) {
4586 final long screenId = completeAdd(sPendingAddItem);
4587
4588 // TODO: this moves the user to the page where the pending item was added. Ideally,
4589 // the screen would be guaranteed to exist after bind, and the page would be set through
4590 // the workspace restore process.
4591 mWorkspace.post(new Runnable() {
4592 @Override
4593 public void run() {
4594 mWorkspace.snapToScreenId(screenId);
4595 }
4596 });
4597 sPendingAddItem = null;
4598 }
4599
Adam Cohene25af792013-06-06 23:08:25 -07004600 if (upgradePath) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004601 mWorkspace.getUniqueComponents(true, null);
4602 mIntentsOnWorkspaceFromUpgradePath = mWorkspace.getUniqueComponents(true, null);
Adam Cohene25af792013-06-06 23:08:25 -07004603 }
Sunny Goyale755d462014-07-22 13:48:29 -07004604 PackageInstallerCompat.getInstance(this).onFinishBind();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004605 }
4606
Adam Cohen3ed316a2014-07-23 18:21:20 -07004607 private void sendLoadingCompleteBroadcastIfNecessary() {
4608 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4609 String permission =
4610 getResources().getString(R.string.receive_first_load_broadcast_permission);
4611 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4612 sendBroadcast(intent, permission);
4613 SharedPreferences.Editor editor = mSharedPrefs.edit();
4614 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4615 editor.apply();
4616 }
4617 }
4618
Winson Chunga0b7e862013-09-05 16:03:15 -07004619 public boolean isAllAppsButtonRank(int rank) {
4620 if (mHotseat != null) {
4621 return mHotseat.isAllAppsButtonRank(rank);
4622 }
4623 return false;
4624 }
4625
Winson Chunga2413752012-04-03 14:22:34 -07004626 private boolean canRunNewAppsAnimation() {
4627 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4628 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4629 }
4630
Winson Chungc9168342013-06-26 14:54:55 -07004631 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4632 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4633 PropertyValuesHolder.ofFloat("alpha", 1f),
4634 PropertyValuesHolder.ofFloat("scaleX", 1f),
4635 PropertyValuesHolder.ofFloat("scaleY", 1f));
4636 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4637 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
4638 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
4639 return bounceAnim;
4640 }
4641
Adam Cohen27772732013-11-11 14:00:56 +00004642 public boolean useVerticalBarLayout() {
4643 return LauncherAppState.getInstance().getDynamicGrid().
4644 getDeviceProfile().isVerticalBarLayout();
4645 }
4646
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004647 protected Rect getSearchBarBounds() {
4648 return LauncherAppState.getInstance().getDynamicGrid().
4649 getDeviceProfile().getSearchBarBounds();
4650 }
4651
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004652 @Override
4653 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07004654 boolean searchVisible = updateGlobalSearchIcon();
4655 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07004656 if (mSearchDropTargetBar != null) {
4657 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
4658 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004659 }
4660
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004661 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004662 * Add the icons for all apps.
4663 *
4664 * Implementation of the method from LauncherModel.Callbacks.
4665 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004666 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004667 if (LauncherAppState.isDisableAllApps()) {
Winson Chungc58497e2013-09-03 17:48:37 -07004668 if (mIntentsOnWorkspaceFromUpgradePath != null) {
4669 if (LauncherModel.UPGRADE_USE_MORE_APPS_FOLDER) {
4670 getHotseat().addAllAppsFolder(mIconCache, apps,
4671 mIntentsOnWorkspaceFromUpgradePath, Launcher.this, mWorkspace);
4672 }
4673 mIntentsOnWorkspaceFromUpgradePath = null;
Daniel Sandler8707e0f2013-08-15 15:54:18 -07004674 }
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004675 if (mAppsCustomizeContent != null) {
4676 mAppsCustomizeContent.onPackagesUpdated(
4677 LauncherModel.getSortedWidgetsAndShortcuts(this));
4678 }
Winson Chungc58497e2013-09-03 17:48:37 -07004679 } else {
Winson Chungad7db6e2013-10-08 14:01:06 -07004680 if (mAppsCustomizeContent != null) {
Winson Chungc58497e2013-09-03 17:48:37 -07004681 mAppsCustomizeContent.setApps(apps);
Winson Chung6e1c0d32013-10-25 15:24:24 -07004682 mAppsCustomizeContent.onPackagesUpdated(
4683 LauncherModel.getSortedWidgetsAndShortcuts(this));
Winson Chungc58497e2013-09-03 17:48:37 -07004684 }
Winson Chung785d2eb2011-04-14 16:08:02 -07004685 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004686 }
4687
4688 /**
4689 * A package was updated.
4690 *
4691 * Implementation of the method from LauncherModel.Callbacks.
4692 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004693 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004694 Runnable r = new Runnable() {
4695 public void run() {
4696 bindAppsUpdated(apps);
4697 }
4698 };
4699 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004700 return;
4701 }
4702
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004703 if (mWorkspace != null) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004704 mWorkspace.updateShortcutsAndWidgets(apps);
Patrick Dubroyf5afda72011-02-28 12:04:18 -08004705 }
Winson Chungc58497e2013-09-03 17:48:37 -07004706
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004707 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004708 mAppsCustomizeContent != null) {
4709 mAppsCustomizeContent.updateApps(apps);
4710 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004711 }
4712
4713 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004714 * Update the state of a package, typically related to install state.
4715 *
4716 * Implementation of the method from LauncherModel.Callbacks.
4717 */
Sunny Goyale755d462014-07-22 13:48:29 -07004718 @Override
4719 public void updatePackageState(ArrayList<PackageInstallInfo> installInfo) {
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004720 if (mWorkspace != null) {
Sunny Goyale755d462014-07-22 13:48:29 -07004721 mWorkspace.updatePackageState(installInfo);
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004722 }
4723 }
4724
4725 /**
Sunny Goyala22666f2014-09-18 13:25:15 -07004726 * Update the label and icon of all the icons in a package
4727 *
4728 * Implementation of the method from LauncherModel.Callbacks.
4729 */
4730 @Override
4731 public void updatePackageBadge(String packageName) {
4732 if (mWorkspace != null) {
4733 mWorkspace.updatePackageBadge(packageName, UserHandleCompat.myUserHandle());
4734 }
4735 }
4736
4737 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004738 * A package was uninstalled. We take both the super set of packageNames
4739 * in addition to specific applications to remove, the reason being that
4740 * this can be called when a package is updated as well. In that scenario,
4741 * we only remove specific components from the workspace, where as
4742 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004743 *
4744 * Implementation of the method from LauncherModel.Callbacks.
4745 */
Winson Chung83892cc2013-05-01 16:53:33 -07004746 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Kenny Guyed131872014-04-30 03:02:21 +01004747 final ArrayList<AppInfo> appInfos, final UserHandleCompat user) {
Winson Chungd64d1762013-08-20 14:37:16 -07004748 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004749 public void run() {
Kenny Guyed131872014-04-30 03:02:21 +01004750 bindComponentsRemoved(packageNames, appInfos, user);
Winson Chung83892cc2013-05-01 16:53:33 -07004751 }
Winson Chungd64d1762013-08-20 14:37:16 -07004752 };
4753 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004754 return;
4755 }
4756
Winson Chungdf95eb12013-10-16 14:57:07 -07004757 if (!packageNames.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004758 mWorkspace.removeItemsByPackageName(packageNames, user);
Winson Chungdf95eb12013-10-16 14:57:07 -07004759 }
4760 if (!appInfos.isEmpty()) {
Kenny Guyed131872014-04-30 03:02:21 +01004761 mWorkspace.removeItemsByApplicationInfo(appInfos, user);
Joe Onorato36115782010-06-17 13:28:48 -04004762 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004763
Winson Chunga1820962011-10-03 16:31:06 -07004764 // Notify the drag controller
Winson Chungdf95eb12013-10-16 14:57:07 -07004765 mDragController.onAppsRemoved(packageNames, appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004766
Winson Chungdf95eb12013-10-16 14:57:07 -07004767 // Update AllApps
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004768 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004769 mAppsCustomizeContent != null) {
4770 mAppsCustomizeContent.removeApps(appInfos);
4771 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004772 }
Joe Onoratobe386092009-11-17 17:32:16 -08004773
4774 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07004775 * A number of packages were updated.
4776 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004777 private ArrayList<Object> mWidgetsAndShortcuts;
4778 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004779 public void run() {
Michael Jurkac402cd92013-05-20 15:49:32 +02004780 bindPackagesUpdated(mWidgetsAndShortcuts);
4781 mWidgetsAndShortcuts = null;
Winson Chung83892cc2013-05-01 16:53:33 -07004782 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004783 };
Michael Jurkac402cd92013-05-20 15:49:32 +02004784 public void bindPackagesUpdated(final ArrayList<Object> widgetsAndShortcuts) {
4785 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
4786 mWidgetsAndShortcuts = widgetsAndShortcuts;
Winson Chung83892cc2013-05-01 16:53:33 -07004787 return;
4788 }
4789
Winson Chung64359a52013-07-08 17:17:08 -07004790 // Update the widgets pane
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004791 if (mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004792 mAppsCustomizeContent.onPackagesUpdated(widgetsAndShortcuts);
Winson Chung785d2eb2011-04-14 16:08:02 -07004793 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004794 }
4795
Winson Chung400438b2011-01-16 17:53:48 -08004796 private int mapConfigurationOriActivityInfoOri(int configOri) {
4797 final Display d = getWindowManager().getDefaultDisplay();
4798 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4799 switch (d.getRotation()) {
4800 case Surface.ROTATION_0:
4801 case Surface.ROTATION_180:
4802 // We are currently in the same basic orientation as the natural orientation
4803 naturalOri = configOri;
4804 break;
4805 case Surface.ROTATION_90:
4806 case Surface.ROTATION_270:
4807 // We are currently in the other basic orientation to the natural orientation
4808 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4809 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4810 break;
4811 }
4812
4813 int[] oriMap = {
4814 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4815 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4816 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4817 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4818 };
4819 // Since the map starts at portrait, we need to offset if this device's natural orientation
4820 // is landscape.
4821 int indexOffset = 0;
4822 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4823 indexOffset = 1;
4824 }
4825 return oriMap[(d.getRotation() + indexOffset) % 4];
4826 }
Adam Cohen446e9402011-09-15 18:21:21 -07004827
Winson Chung4b919f82012-05-01 10:44:08 -07004828 public boolean isRotationEnabled() {
Michael Jurka0a457bf2012-11-19 14:05:05 -08004829 boolean enableRotation = sForceEnableRotation ||
Winson Chung4b919f82012-05-01 10:44:08 -07004830 getResources().getBoolean(R.bool.allow_rotation);
4831 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08004832 }
Winson Chung4b919f82012-05-01 10:44:08 -07004833 public void lockScreenOrientation() {
4834 if (isRotationEnabled()) {
4835 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4836 .getConfiguration().orientation));
4837 }
4838 }
4839 public void unlockScreenOrientation(boolean immediate) {
4840 if (isRotationEnabled()) {
4841 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004842 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004843 } else {
4844 mHandler.postDelayed(new Runnable() {
4845 public void run() {
4846 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4847 }
4848 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004849 }
Winson Chung4b919f82012-05-01 10:44:08 -07004850 }
Winson Chung400438b2011-01-16 17:53:48 -08004851 }
4852
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004853 /**
4854 * Called when the SearchBar hint should be changed.
4855 *
4856 * @param hint the hint to be displayed in the search bar.
4857 */
4858 protected void onSearchBarHintChanged(String hint) {
Sunny Goyal424418b2014-08-22 16:09:37 -07004859
Sandeep Siddharthad4d3d082013-12-26 15:42:52 -08004860 }
4861
Winson Chunge43a1e72014-01-15 10:33:02 -08004862 protected boolean isLauncherPreinstalled() {
4863 PackageManager pm = getPackageManager();
4864 try {
4865 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4866 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4867 return true;
4868 } else {
4869 return false;
4870 }
4871 } catch (NameNotFoundException e) {
4872 e.printStackTrace();
4873 return false;
4874 }
4875 }
4876
Adam Cohenea90f832014-05-21 15:03:34 -07004877 /**
4878 * This method indicates whether or not we should suggest default wallpaper dimensions
4879 * when our wallpaper cropper was not yet used to set a wallpaper.
4880 */
4881 protected boolean overrideWallpaperDimensions() {
4882 return true;
4883 }
4884
Adam Cohen5eed5d82014-05-19 13:12:13 -07004885 protected boolean shouldClingFocusHotseatApp() {
4886 return false;
4887 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004888 protected String getFirstRunClingSearchBarHint() {
4889 return "";
4890 }
4891 protected String getFirstRunCustomContentHint() {
4892 return "";
4893 }
Winson Chung3a6e7f32013-10-09 15:50:52 -07004894 protected int getFirstRunFocusedHotseatAppDrawableId() {
4895 return -1;
4896 }
4897 protected ComponentName getFirstRunFocusedHotseatAppComponentName() {
4898 return null;
4899 }
4900 protected int getFirstRunFocusedHotseatAppRank() {
4901 return -1;
4902 }
4903 protected String getFirstRunFocusedHotseatAppBubbleTitle() {
4904 return "";
4905 }
4906 protected String getFirstRunFocusedHotseatAppBubbleDescription() {
4907 return "";
4908 }
Winson Chunge6eabff2013-09-24 11:01:23 -07004909
Adam Cohen432609a2014-03-13 17:03:22 -07004910 /**
4911 * To be overridden by subclasses to indicate that there is an activity to launch
4912 * before showing the standard launcher experience.
4913 */
4914 protected boolean hasFirstRunActivity() {
4915 return false;
4916 }
4917
4918 /**
4919 * To be overridden by subclasses to launch any first run activity
4920 */
4921 protected Intent getFirstRunActivity() {
4922 return null;
4923 }
4924
Winson Chunga6945242014-01-08 14:04:34 -08004925 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004926 return !ActivityManager.isRunningInTestHarness() &&
4927 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004928 }
4929
Adam Cohen4a9423d2014-03-28 14:22:31 -07004930 protected boolean hasRunFirstRunActivity() {
4931 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4932 }
4933
Adam Cohen432609a2014-03-13 17:03:22 -07004934 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004935 if (shouldRunFirstRunActivity() &&
4936 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004937 Intent firstRunIntent = getFirstRunActivity();
4938 if (firstRunIntent != null) {
4939 startActivity(firstRunIntent);
4940 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004941 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004942 }
4943 }
Adam Cohen432609a2014-03-13 17:03:22 -07004944 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004945 }
4946
4947 private void markFirstRunActivityShown() {
4948 SharedPreferences.Editor editor = mSharedPrefs.edit();
4949 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4950 editor.apply();
4951 }
4952
Adam Cohen432609a2014-03-13 17:03:22 -07004953 /**
4954 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4955 * screen that must be displayed and dismissed.
4956 */
4957 protected boolean hasDismissableIntroScreen() {
4958 return false;
4959 }
4960
4961 /**
4962 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4963 */
4964 protected View getIntroScreen() {
4965 return null;
4966 }
4967
4968 /**
4969 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4970 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4971 */
4972 private boolean shouldShowIntroScreen() {
4973 return hasDismissableIntroScreen() &&
4974 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4975 }
4976
4977 protected void showIntroScreen() {
4978 View introScreen = getIntroScreen();
4979 changeWallpaperVisiblity(false);
4980 if (introScreen != null) {
4981 mDragLayer.showOverlayView(introScreen);
4982 }
4983 }
4984
4985 public void dismissIntroScreen() {
4986 markIntroScreenDismissed();
4987 if (showFirstRunActivity()) {
4988 // We delay hiding the intro view until the first run activity is showing. This
4989 // avoids a blip.
4990 mWorkspace.postDelayed(new Runnable() {
4991 @Override
4992 public void run() {
4993 mDragLayer.dismissOverlayView();
Sunny Goyal88d60f12014-09-08 03:47:29 -07004994 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004995 }
4996 }, ACTIVITY_START_DELAY);
4997 } else {
4998 mDragLayer.dismissOverlayView();
Sunny Goyal88d60f12014-09-08 03:47:29 -07004999 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07005000 }
5001 changeWallpaperVisiblity(true);
5002 }
5003
5004 private void markIntroScreenDismissed() {
5005 SharedPreferences.Editor editor = mSharedPrefs.edit();
5006 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
5007 editor.apply();
5008 }
5009
Sunny Goyal88d60f12014-09-08 03:47:29 -07005010 private void showFirstRunClings() {
5011 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
5012 // on the device, then we always show the first run cling experience (or if there is no
5013 // launcher2). Otherwise, we prompt the user upon started for migration
5014 LauncherClings launcherClings = new LauncherClings(this);
5015 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
5016 if (mModel.canMigrateFromOldLauncherDb(this)) {
5017 launcherClings.showMigrationCling();
5018 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07005019 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07005020 }
5021 }
5022 }
5023
Winson Chunga6945242014-01-08 14:04:34 -08005024 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08005025 if (mWorkspace != null) mWorkspace.setAlpha(1f);
5026 if (mHotseat != null) mHotseat.setAlpha(1f);
5027 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
5028 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08005029 }
5030
5031 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08005032 if (mWorkspace != null) mWorkspace.setAlpha(0f);
5033 if (mHotseat != null) mHotseat.setAlpha(0f);
5034 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
5035 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08005036 }
5037
Mathew Inwood72fbec12013-11-19 15:45:07 +00005038 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Kenny Guyed131872014-04-30 03:02:21 +01005039 // Called from search suggestion, not supported in other profiles.
5040 final UserHandleCompat myUser = UserHandleCompat.myUserHandle();
5041 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
5042 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(appLaunchIntent,
5043 myUser);
5044 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00005045 return null;
5046 }
Kenny Guyed131872014-04-30 03:02:21 +01005047 return new AppInfo(this, activityInfo, myUser, mIconCache, null);
Mathew Inwood72fbec12013-11-19 15:45:07 +00005048 }
5049
5050 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
5051 Bitmap icon) {
Kenny Guyed131872014-04-30 03:02:21 +01005052 // Called from search suggestion, not supported in other profiles.
5053 return createShortcutDragInfo(shortcutIntent, caption, icon,
5054 UserHandleCompat.myUserHandle());
5055 }
5056
5057 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
5058 Bitmap icon, UserHandleCompat user) {
Kenny Guyc2bd8102014-06-30 12:30:31 +01005059 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyd6fe5262014-07-21 17:11:41 +01005060 CharSequence contentDescription = userManager.getBadgedLabelForUser(caption, user);
Kenny Guyc2bd8102014-06-30 12:30:31 +01005061 return new ShortcutInfo(shortcutIntent, caption, contentDescription, icon, user);
Mathew Inwood72fbec12013-11-19 15:45:07 +00005062 }
5063
Mathew Inwoodb90860a2014-04-11 17:17:39 +01005064 protected void moveWorkspaceToDefaultScreen() {
5065 mWorkspace.moveToDefaultScreen(false);
5066 }
5067
Mathew Inwood72fbec12013-11-19 15:45:07 +00005068 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
5069 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07005070 mWorkspace.onExternalDragStartedWithItem(dragView);
5071 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00005072 }
5073
Anjali Koppalf5d29132014-02-28 13:33:27 -08005074 @Override
5075 public void onPageSwitch(View newPage, int newPageIndex) {
5076 }
5077
Winson Chung80baf5a2010-08-09 16:03:15 -07005078 /**
Joe Onoratobe386092009-11-17 17:32:16 -08005079 * Prints out out state for debugging.
5080 */
5081 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04005082 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08005083 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08005084 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
5085 Log.d(TAG, "mRestoring=" + mRestoring);
5086 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
5087 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07005088 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08005089 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07005090
Winson Chung785d2eb2011-04-14 16:08:02 -07005091 if (mAppsCustomizeContent != null) {
5092 mAppsCustomizeContent.dumpState();
5093 }
Daniel Sandler325dc232013-06-05 22:57:57 -04005094 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08005095 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07005096
5097 @Override
5098 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
5099 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07005100 synchronized (sDumpLogs) {
5101 writer.println(" ");
5102 writer.println("Debug logs: ");
5103 for (int i = 0; i < sDumpLogs.size(); i++) {
5104 writer.println(" " + sDumpLogs.get(i));
5105 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07005106 }
5107 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005108
5109 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07005110 if (DEBUG_DUMP_LOG) {
5111 synchronized (sDumpLogs) {
5112 Log.d(TAG, "");
5113 Log.d(TAG, "*********************");
5114 Log.d(TAG, "Launcher debug logs: ");
5115 for (int i = 0; i < sDumpLogs.size(); i++) {
5116 Log.d(TAG, " " + sDumpLogs.get(i));
5117 }
5118 Log.d(TAG, "*********************");
5119 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07005120 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005121 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005122 }
5123
5124 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05005125 addDumpLog(tag, log, null, debugLog);
5126 }
5127
5128 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07005129 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05005130 if (e != null) {
5131 Log.d(tag, log, e);
5132 } else {
5133 Log.d(tag, log);
5134 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005135 }
Winson Chungede41292013-09-19 16:27:36 -07005136 if (DEBUG_DUMP_LOG) {
5137 sDateStamp.setTime(System.currentTimeMillis());
5138 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05005139 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
5140 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07005141 }
Winson Chungede41292013-09-19 16:27:36 -07005142 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005143 }
5144
Winson Chungede41292013-09-19 16:27:36 -07005145 public void dumpLogsToLocalData() {
5146 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01005147 new AsyncTask<Void, Void, Void>() {
5148 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07005149 boolean success = false;
5150 sDateStamp.setTime(sRunStart);
5151 String FILENAME = sDateStamp.getMonth() + "-"
5152 + sDateStamp.getDay() + "_"
5153 + sDateStamp.getHours() + "-"
5154 + sDateStamp.getMinutes() + "_"
5155 + sDateStamp.getSeconds() + ".txt";
5156
5157 FileOutputStream fos = null;
5158 File outFile = null;
5159 try {
5160 outFile = new File(getFilesDir(), FILENAME);
5161 outFile.createNewFile();
5162 fos = new FileOutputStream(outFile);
5163 } catch (Exception e) {
5164 e.printStackTrace();
5165 }
5166 if (fos != null) {
5167 PrintWriter writer = new PrintWriter(fos);
5168
5169 writer.println(" ");
5170 writer.println("Debug logs: ");
5171 synchronized (sDumpLogs) {
5172 for (int i = 0; i < sDumpLogs.size(); i++) {
5173 writer.println(" " + sDumpLogs.get(i));
5174 }
5175 }
5176 writer.close();
5177 }
5178 try {
5179 if (fos != null) {
5180 fos.close();
5181 success = true;
5182 }
5183 } catch (IOException e) {
5184 e.printStackTrace();
5185 }
Michael Jurka43467462013-11-14 12:03:58 +01005186 return null;
Winson Chungede41292013-09-19 16:27:36 -07005187 }
Michael Jurka43467462013-11-14 12:03:58 +01005188 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07005189 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005190 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08005191}
Michael Jurka2763be32011-02-24 11:19:57 -08005192
Michael Jurkaabded662011-03-04 12:06:57 -08005193interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08005194 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07005195 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08005196 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08005197 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08005198 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08005199}
Dan Sandlerd5024042014-01-09 15:01:33 -05005200
5201interface DebugIntents {
5202 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
5203 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00005204}