blob: 9533da7d809b9168754ef416b66b0d2b7f141fc3 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Gilles Debunnedd6c9922010-10-25 11:23:41 -070019import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080020import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070021import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070022import android.animation.ObjectAnimator;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070023import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070024import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000025import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070026import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070027import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070028import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040029import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080031import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070032import android.appwidget.AppWidgetManager;
33import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080035import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080036import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040037import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040039import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070041import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070042import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070043import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070044import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080045import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070047import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070049import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070050import android.graphics.Bitmap;
51import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070052import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070053import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070054import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070055import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070056import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040057import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070058import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020059import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020061import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080062import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070063import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070064import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040065import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070066import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067import android.text.Selection;
68import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070069import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070071import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070072import android.view.Display;
73import android.view.Gravity;
74import android.view.HapticFeedbackConstants;
75import android.view.KeyEvent;
76import android.view.LayoutInflater;
77import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070078import android.view.MotionEvent;
79import android.view.Surface;
80import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070081import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080082import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070083import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070084import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070086import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070087import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080088import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070089import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070091import android.widget.Advanceable;
92import android.widget.FrameLayout;
93import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080094import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070095import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070096
Sunny Goyal651077b2014-06-30 14:15:31 -070097import com.android.launcher3.DropTarget.DragObject;
98import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -070099import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700100import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100101import com.android.launcher3.compat.LauncherActivityInfoCompat;
102import com.android.launcher3.compat.LauncherAppsCompat;
103import com.android.launcher3.compat.UserHandleCompat;
104import com.android.launcher3.compat.UserManagerCompat;
Sunny Goyal6c56c682015-07-16 14:09:05 -0700105import com.android.launcher3.config.ProviderConfig;
Vadim Tryshevfedca432015-08-19 17:55:02 -0700106import com.android.launcher3.dragndrop.DragController;
107import com.android.launcher3.dragndrop.DragLayer;
108import com.android.launcher3.dragndrop.DragView;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700109import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700110import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700111import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700112import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700113import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700114import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700115import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700116
Adam Cohen4caf2982013-08-20 18:54:31 -0700117import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700119import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700120import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700121import java.io.PrintWriter;
Adam Cohen4caf2982013-08-20 18:54:31 -0700122import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700123import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700124import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700125import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700126import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700127import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700128import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000129import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700130
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800131/**
132 * Default launcher application.
133 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100134public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700135 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chung006ee262015-08-03 14:40:11 -0700136 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Vadim Tryshevfedca432015-08-19 17:55:02 -0700137 public static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700138 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800139
Daniel Sandlerf061f822013-06-27 13:59:36 -0400140 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700141 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700142 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400143 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700144 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700145
Dan Sandlerd5024042014-01-09 15:01:33 -0500146 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
147
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800148 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700149 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700150 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700151 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800152
Michael Jurka8b805b12012-04-18 14:23:14 -0700153 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700154 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700155
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700156 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
157 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
158 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
159
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700160 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
161
Mathew Inwood876a8462013-06-14 14:12:41 +0100162 /**
163 * IntentStarter uses request codes starting with this. This must be greater than all activity
164 * request codes used internally.
165 */
166 protected static final int REQUEST_LAST = 100;
167
Michael Jurka0a457bf2012-11-19 14:05:05 -0800168 // To turn on these properties, type
169 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800170 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800171
Winson Chung2672ff92012-05-04 16:22:30 -0700172 // The Intent extra that defines whether to ignore the launch animation
173 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400174 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700175
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176 // Type: int
177 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700178 // Type: int
179 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700181 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
182 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800183 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
184 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700185 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800186 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700187 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700188 // Type: int
189 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
190 // Type: int
191 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
192 // Type: parcelable
193 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000194 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800195 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000196 // Type: int[]
197 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800198
Adam Cohen432609a2014-03-13 17:03:22 -0700199 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800200 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
201
Adam Cohen3ed316a2014-07-23 18:21:20 -0700202 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
203 static final String ACTION_FIRST_LOAD_COMPLETE =
204 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
205
Adam Cohen39a06042013-07-19 14:30:12 -0700206 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700207 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700208
Sunny Goyal594d76d2014-11-06 10:12:54 -0800209 private static final String QSB_WIDGET_ID = "qsb_widget_id";
210 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
211
Winson Chunga6945242014-01-08 14:04:34 -0800212 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
213
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700214 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700215 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
216
Adam Cohen091440a2015-03-18 14:16:05 -0700217 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700218 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700219
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700220 private boolean mIsSafeModeEnabled;
221
Adam Cohenc2d6e892014-10-16 09:49:24 -0700222 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
223 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700224 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700225
Joe Onorato9c1289c2009-08-17 11:03:03 -0400226 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700227 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
228 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700229 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800230
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000231 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
232 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
233
Winson Chunga2413752012-04-03 14:22:34 -0700234 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700235 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
236 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700237 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700238
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800239 private final BroadcastReceiver mCloseSystemDialogsReceiver
240 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800241
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800242 private LayoutInflater mInflater;
243
Adam Cohen091440a2015-03-18 14:16:05 -0700244 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700245 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800246 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700247 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800248 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700249 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700250
Sunny Goyalffe83f12014-08-14 17:39:34 -0700251 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700252 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700253
Sunny Goyalaa8ef112015-06-12 20:04:41 -0700254 @Thunk final ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800255 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800256 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700257
Michael Jurka0280c3b2010-09-17 15:00:07 -0700258 private int[] mTmpAddItemCellCoordinates = new int[2];
259
Sunny Goyal316490e2015-06-02 09:38:28 -0700260 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800261 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700262
Michael Jurka838a4ca2011-02-07 13:33:06 -0800263 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700264 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700265
Winson Chungc51db6a2011-10-05 11:44:49 -0700266 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700267
268 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700269 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700270
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700271 // Main container view and the model for the widget tray screen.
272 @Thunk WidgetsContainerView mWidgetsView;
273 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700274
Winson Chungf0ea4d32011-06-06 14:27:16 -0700275 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800276 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800277
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800278 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700279 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
280 // scroll issues (because the workspace may not have been measured yet) and extra work.
281 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
282 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800283
284 private SpannableStringBuilder mDefaultKeySsb = null;
285
Adam Cohen091440a2015-03-18 14:16:05 -0700286 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400287
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800288 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800289 private boolean mRestoring;
290 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700291 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800292
Michael Jurka1e2f4652013-07-08 18:03:46 -0700293 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700294 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
295
Joe Onorato9c1289c2009-08-17 11:03:03 -0400296 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800297 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700298 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800299 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700300 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800301 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400302
Sunny Goyale2df0622015-04-24 11:27:00 -0700303 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700304
Adam Cohen61f560d2013-09-30 15:58:20 -0700305 private View.OnTouchListener mHapticFeedbackTouchListener;
306
Adam Cohended9f8d2010-11-03 13:25:16 -0700307 // Related to the auto-advancing of widgets
308 private final int ADVANCE_MSG = 1;
309 private final int mAdvanceInterval = 20000;
310 private final int mAdvanceStagger = 250;
311 private long mAutoAdvanceSentTime;
312 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700313 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700314 new HashMap<View, AppWidgetProviderInfo>();
315
Winson Chung400438b2011-01-16 17:53:48 -0800316 // Determines how long to wait after a rotation before restoring the screen orientation to
317 // match the sensor state.
318 private final int mRestoreScreenOrientationDelay = 500;
319
Adam Cohen091440a2015-03-18 14:16:05 -0700320 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700321
Adam Cohen1462de32012-07-24 22:34:36 -0700322 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700323 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700324
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700325 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700326 static Date sDateStamp = new Date();
327 static DateFormat sDateFormat =
328 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
329 static long sRunStart = System.currentTimeMillis();
330 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700331
Winson Chung46353de2012-02-16 14:05:10 -0800332 // We only want to get the SharedPreferences once since it does an FS stat each time we get
333 // it from the context.
334 private SharedPreferences mSharedPrefs;
335
Winson Chungf0c6ae02012-03-21 16:10:31 -0700336 // Holds the page that we need to animate to, and the icon views that we need to animate up
337 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700338 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700339 private Bitmap mFolderIconBitmap;
340 private Canvas mFolderIconCanvas;
341 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700342
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700343 private DeviceProfile mDeviceProfile;
344
Winson Chung13eb5272015-05-11 16:30:13 -0700345 // This is set to the view that launched the activity that navigated the user away from
346 // launcher. Since there is no callback for when the activity has finished launching, enable
347 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800348 private BubbleTextView mWaitingForResume;
349
Adam Cohen59400422014-03-05 18:07:04 -0800350 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
351 new HashMap<String, CustomAppWidget>();
352
353 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
354 static {
355 if (ENABLE_CUSTOM_WIDGET_TEST) {
356 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
357 }
358 }
359
Adam Cohen091440a2015-03-18 14:16:05 -0700360 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700361 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700362 if (mWorkspace != null) {
363 mWorkspace.buildPageHardwareLayers();
364 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700365 }
366 };
367
Adam Cohendb364c32014-05-20 14:23:40 -0700368 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800369
Adam Cohen091440a2015-03-18 14:16:05 -0700370 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800371 int requestCode;
372 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700373 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700374 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800375 int cellX;
376 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700377 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800378 }
379
Daniel Sandlerff02d492013-08-05 02:12:05 -0400380 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700381 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700382 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400383
384 @Thunk void setOrientation() {
385 if (mRotationEnabled) {
386 unlockScreenOrientation(true);
387 } else {
388 setRequestedOrientation(
389 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700390 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400391 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700392
Sunny Goyal7779d622015-06-11 16:18:39 -0700393 private Runnable mUpdateOrientationRunnable = new Runnable() {
394 public void run() {
395 setOrientation();
396 }
397 };
398
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800399 @Override
400 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700401 if (DEBUG_STRICT_MODE) {
402 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
403 .detectDiskReads()
404 .detectDiskWrites()
405 .detectNetwork() // or .detectAll() for all detectable problems
406 .penaltyLog()
407 .build());
408 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
409 .detectLeakedSqlLiteObjects()
410 .detectLeakedClosableObjects()
411 .penaltyLog()
412 .penaltyDeath()
413 .build());
414 }
415
Adam Cohen9211d422014-10-07 18:14:53 -0700416 if (mLauncherCallbacks != null) {
417 mLauncherCallbacks.preOnCreate();
418 }
419
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800420 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400421
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400422 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400423 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700424
Adam Cohen2e6da152015-05-06 11:42:25 -0700425 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700426 mDeviceProfile = getResources().getConfiguration().orientation
427 == Configuration.ORIENTATION_LANDSCAPE ?
428 app.getInvariantDeviceProfile().landscapeProfile
429 : app.getInvariantDeviceProfile().portraitProfile;
430
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400431 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700432 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700433 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800434 mModel = app.setLauncher(this);
435 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700436
Joe Onorato41a12d22009-10-31 18:30:00 -0400437 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800438 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700439 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700440
Daniel Sandlerff02d492013-08-05 02:12:05 -0400441 mStats = new Stats(this);
442
Sunny Goyalffe83f12014-08-14 17:39:34 -0700443 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700444
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700445 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
446 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700447
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700448 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
449 // this also ensures that any synchronous binding below doesn't re-trigger another
450 // LauncherModel load.
451 mPaused = false;
452
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800453 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200454 android.os.Debug.startMethodTracing(
455 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800456 }
457
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800458 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700459
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800460 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700461 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800462
Joe Onorato7c312c12009-08-13 21:36:53 -0700463 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700464
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465 mSavedState = savedInstanceState;
466 restoreState(mSavedState);
467
468 if (PROFILE_STARTUP) {
469 android.os.Debug.stopMethodTracing();
470 }
471
472 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700473 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700474 // If the user leaves launcher, then we should just load items asynchronously when
475 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700476 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700477 } else {
478 // We only load the page synchronously if the user rotates (or triggers a
479 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700480 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700481 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800482 }
483
484 // For handling default keys
485 mDefaultKeySsb = new SpannableStringBuilder();
486 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800487
488 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
489 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800490
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700491 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
492 // In case we are on a device with locked rotation, we should look at preferences to check
493 // if the user has specifically allowed rotation.
494 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400495 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700496 }
497
498 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
499 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400500 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700501
Adam Cohen9211d422014-10-07 18:14:53 -0700502 if (mLauncherCallbacks != null) {
503 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700504 if (mLauncherCallbacks.hasLauncherOverlay()) {
505 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700506 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
507 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
508 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700509 mWorkspace.setLauncherOverlay(mLauncherOverlay);
510 }
Adam Cohen9211d422014-10-07 18:14:53 -0700511 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700512
513 if (shouldShowIntroScreen()) {
514 showIntroScreen();
515 } else {
516 showFirstRunActivity();
517 showFirstRunClings();
518 }
Adam Cohen9211d422014-10-07 18:14:53 -0700519 }
520
Sunny Goyal7779d622015-06-11 16:18:39 -0700521 @Override
522 public void onSettingsChanged(String settings, boolean value) {
523 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
524 mRotationEnabled = value;
525 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
526 mUpdateOrientationRunnable.run();
527 }
528 }
529 }
530
Adam Cohen9211d422014-10-07 18:14:53 -0700531 private LauncherCallbacks mLauncherCallbacks;
532
533 public void onPostCreate(Bundle savedInstanceState) {
534 super.onPostCreate(savedInstanceState);
535 if (mLauncherCallbacks != null) {
536 mLauncherCallbacks.onPostCreate(savedInstanceState);
537 }
538 }
539
540 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
541 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700542 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700543 private boolean mWorkspaceImportanceStored = false;
544 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700545 private int mWorkspaceImportanceForAccessibility =
546 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
547 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
548
549 @Override
550 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700551 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700552 return;
553 }
554 // The underlying workspace and hotseat are temporarily suppressed by the search
555 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700556 if (mWorkspace != null) {
557 mWorkspaceImportanceForAccessibility =
558 mWorkspace.getImportantForAccessibility();
559 mWorkspace.setImportantForAccessibility(
560 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
561 mWorkspaceImportanceStored = true;
562 }
563 if (mHotseat != null) {
564 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
565 mHotseat.setImportantForAccessibility(
566 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
567 mHotseatImportanceStored = true;
568 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700569 }
570
571 @Override
572 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700573 if (mWorkspaceImportanceStored && mWorkspace != null) {
574 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
575 }
576 if (mHotseatImportanceStored && mHotseat != null) {
577 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
578 }
579 mWorkspaceImportanceStored = false;
580 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700581 }
582 });
Adam Cohen9211d422014-10-07 18:14:53 -0700583 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700584 }
585
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700586 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700587 public void onLauncherProviderChange() {
588 if (mLauncherCallbacks != null) {
589 mLauncherCallbacks.onLauncherProviderChange();
590 }
591 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700592
Winson Chungef7f8742015-06-04 17:18:17 -0700593 /**
594 * Updates the bounds of all the overlays to match the new fixed bounds.
595 */
596 public void updateOverlayBounds(Rect newBounds) {
597 mAppsView.setSearchBarBounds(newBounds);
598 mWidgetsView.setSearchBarBounds(newBounds);
599 }
600
Adam Cohen9211d422014-10-07 18:14:53 -0700601 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700602 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700603 if (mLauncherCallbacks != null) {
604 return mLauncherCallbacks.hasCustomContentToLeft();
605 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700606 return false;
607 }
608
Dave Hawkeya8881582013-09-17 15:55:33 -0600609 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500610 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600611 * {@link #addToCustomContentPage}. This will only be invoked if
612 * {@link #hasCustomContentToLeft()} is {@code true}.
613 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500614 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700615 if (mLauncherCallbacks != null) {
616 mLauncherCallbacks.populateCustomContentContainer();
617 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600618 }
619
620 /**
621 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
622 * ensure the custom content page is added or removed if necessary.
623 */
624 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600625 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600626 // Not bound yet, wait for bindScreens to be called.
627 return;
628 }
629
630 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
631 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500632 mWorkspace.createCustomContentContainer();
633 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600634 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
635 mWorkspace.removeCustomContentPage();
636 }
637 }
638
Anton Hanssona2f665f2013-09-26 12:18:32 +0100639 public Stats getStats() {
640 return mStats;
641 }
642
Bjorn Bringertc459e522013-06-07 19:36:01 +0100643 public LayoutInflater getInflater() {
644 return mInflater;
645 }
646
Hyunyoung Song3f471442015-04-08 19:01:34 -0700647 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700648 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
649 // that is subsequently removed from the workspace in startBinding().
650 return !mModel.isLoadingWorkspace();
651 }
652
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800653 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000654 public static int generateViewId() {
Sunny Goyal9fc953b2015-08-17 12:24:25 -0700655 if (Utilities.ATLEAST_JB_MR1) {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100656 return View.generateViewId();
657 } else {
658 // View.generateViewId() is not available. The following fallback logic is a copy
659 // of its implementation.
660 for (;;) {
661 final int result = sNextGeneratedId.get();
662 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
663 int newValue = result + 1;
664 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
665 if (sNextGeneratedId.compareAndSet(result, newValue)) {
666 return result;
667 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000668 }
669 }
670 }
671
672 public int getViewIdForItem(ItemInfo info) {
673 // This cast is safe given the > 2B range for int.
674 int itemId = (int) info.id;
675 if (mItemIdToViewId.containsKey(itemId)) {
676 return mItemIdToViewId.get(itemId);
677 }
678 int viewId = generateViewId();
679 mItemIdToViewId.put(itemId, viewId);
680 return viewId;
681 }
682
683 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700684 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
685 * a configuration step, this allows the proper animations to run after other transitions.
686 */
Adam Cohendb364c32014-05-20 14:23:40 -0700687 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700688 long screenId = args.screenId;
689 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
690 // When the screen id represents an actual screen (as opposed to a rank) we make sure
691 // that the drop page actually exists.
692 screenId = ensurePendingDropLayoutExists(args.screenId);
693 }
Adam Cohendb364c32014-05-20 14:23:40 -0700694
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800695 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800696 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700697 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700698 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700699 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800700 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700701 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700702 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700703 case REQUEST_RECONFIGURE_APPWIDGET:
704 completeRestoreAppWidget(args.appWidgetId);
705 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800706 }
Michael Jurka27614d22012-04-02 06:40:22 -0700707 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
708 // if you turned the screen off and then back while in All Apps, Launcher would not
709 // return to the workspace. Clearing mAddInfo.container here fixes this issue
710 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700711 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800712 }
713
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800714 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700715 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700716 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700717 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700718 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800719 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700720
Adam Cohenad4e15c2013-10-17 16:21:35 -0700721 Runnable exitSpringLoaded = new Runnable() {
722 @Override
723 public void run() {
724 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
725 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
726 }
727 };
728
Michael Jurka8b805b12012-04-18 14:23:14 -0700729 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700730 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700731 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700732 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
733 if (resultCode == RESULT_CANCELED) {
734 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700735 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700736 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700737 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800738 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700739 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700740
741 // When the user has granted permission to bind widgets, we should check to see if
742 // we can inflate the default search bar widget.
743 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700744 }
745 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200746 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
747 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700748 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200749 }
750 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700751 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200752
Adam Cohened66b2b2012-01-23 17:28:51 -0800753 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700754 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700755
Adam Cohendb364c32014-05-20 14:23:40 -0700756 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800757 // We have special handling for widgets
758 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800759 final int appWidgetId;
760 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
761 : -1;
762 if (widgetId < 0) {
763 appWidgetId = pendingAddWidgetId;
764 } else {
765 appWidgetId = widgetId;
766 }
767
Adam Cohenad4e15c2013-10-17 16:21:35 -0700768 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800769 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700770 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
771 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700772 result = RESULT_CANCELED;
773 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700774 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700775 @Override
776 public void run() {
777 exitSpringLoadedDragModeDelayed(false, 0, null);
778 }
779 };
Adam Cohendb364c32014-05-20 14:23:40 -0700780 if (workspaceLocked) {
781 // No need to remove the empty screen if we're mid-binding, as the
782 // the bind will not add the empty screen.
783 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
784 } else {
785 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
786 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
787 }
Winson Chung5aaab772012-04-27 15:24:02 -0700788 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700789 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700790 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
791 // When the screen id represents an actual screen (as opposed to a rank)
792 // we make sure that the drop page actually exists.
793 mPendingAddInfo.screenId =
794 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
795 }
Adam Cohendb364c32014-05-20 14:23:40 -0700796 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
797
798 dropLayout.setDropPending(true);
799 final Runnable onComplete = new Runnable() {
800 @Override
801 public void run() {
802 completeTwoStageWidgetDrop(resultCode, appWidgetId);
803 dropLayout.setDropPending(false);
804 }
805 };
806 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
807 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
808 } else {
809 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
810 mPendingAddInfo);
811 sPendingAddItem = args;
812 }
Winson Chung5aaab772012-04-27 15:24:02 -0700813 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800814 return;
815 }
816
Sunny Goyalff572272014-07-23 13:58:07 -0700817 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
818 if (resultCode == RESULT_OK) {
819 // Update the widget view.
820 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
821 pendingAddWidgetId, mPendingAddInfo);
822 if (workspaceLocked) {
823 sPendingAddItem = args;
824 } else {
825 completeAdd(args);
826 }
827 }
828 // Leave the widget in the pending state if the user canceled the configure.
829 return;
830 }
831
Sunny Goyalaad90582015-07-09 14:22:50 -0700832 if (requestCode == REQUEST_CREATE_SHORTCUT) {
833 // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT.
834 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
835 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
836 mPendingAddInfo);
837 if (isWorkspaceLocked()) {
838 sPendingAddItem = args;
839 } else {
840 completeAdd(args);
841 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
842 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
843 }
844 } else if (resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700845 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
846 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800847 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800848 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800849 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800850
851 }
852
853 @Override
854 protected void onActivityResult(
855 final int requestCode, final int resultCode, final Intent data) {
856 handleActivityResult(requestCode, resultCode, data);
857 if (mLauncherCallbacks != null) {
858 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
859 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800860 }
861
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600862 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700863 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600864 int[] grantResults) {
865 if (mLauncherCallbacks != null) {
866 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
867 grantResults);
868 }
869 }
870
Adam Cohendb364c32014-05-20 14:23:40 -0700871 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
872 appWidgetId, ItemInfo info) {
873 PendingAddArguments args = new PendingAddArguments();
874 args.requestCode = requestCode;
875 args.intent = data;
876 args.container = info.container;
877 args.screenId = info.screenId;
878 args.cellX = info.cellX;
879 args.cellY = info.cellY;
880 args.appWidgetId = appWidgetId;
881 return args;
882 }
883
884 /**
885 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
886 *
887 * @param screenId the screen id to check
888 * @return the new screen, or screenId if it exists
889 */
890 private long ensurePendingDropLayoutExists(long screenId) {
891 CellLayout dropLayout =
892 (CellLayout) mWorkspace.getScreenWithId(screenId);
893 if (dropLayout == null) {
894 // it's possible that the add screen was removed because it was
895 // empty and a re-bind occurred
896 mWorkspace.addExtraEmptyScreen();
897 return mWorkspace.commitExtraEmptyScreen();
898 } else {
899 return screenId;
900 }
901 }
902
Adam Cohen091440a2015-03-18 14:16:05 -0700903 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700904 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700905 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800906 Runnable onCompleteRunnable = null;
907 int animationType = 0;
908
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700909 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800910 if (resultCode == RESULT_OK) {
911 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
912 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700913 mPendingAddWidgetInfo);
914 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800915 onCompleteRunnable = new Runnable() {
916 @Override
917 public void run() {
918 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700919 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700920 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
921 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800922 }
923 };
924 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800925 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800926 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800927 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700928 if (mDragLayer.getAnimatedView() != null) {
929 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
930 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
931 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700932 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700933 // The animated view may be null in the case of a rotation during widget configuration
934 onCompleteRunnable.run();
935 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800936 }
937
938 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700939 protected void onStop() {
940 super.onStop();
941 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700942
943 if (mLauncherCallbacks != null) {
944 mLauncherCallbacks.onStop();
945 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700946 }
947
948 @Override
949 protected void onStart() {
950 super.onStart();
951 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700952
953 if (mLauncherCallbacks != null) {
954 mLauncherCallbacks.onStart();
955 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700956 }
957
958 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800959 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200960 long startTime = 0;
961 if (DEBUG_RESUME_TIME) {
962 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400963 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200964 }
Adam Cohen9211d422014-10-07 18:14:53 -0700965
966 if (mLauncherCallbacks != null) {
967 mLauncherCallbacks.preOnResume();
968 }
969
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800970 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700971
Winson Chung4a2afa32012-07-19 14:53:05 -0700972 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700973 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700974 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800975 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700976 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700977 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700978 // view after launching an app, as they may be depending on the UI to be static to
979 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700980 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700981 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800982 } else if (mOnResumeState == State.WIDGETS) {
983 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700984 }
985 mOnResumeState = State.NONE;
986
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700987 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700988 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
989 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700990
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800991 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700992 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700993 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700994 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400995 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700996 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800997 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700998 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200999 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1000 // execute them here
1001 long startTimeCallbacks = 0;
1002 if (DEBUG_RESUME_TIME) {
1003 startTimeCallbacks = System.currentTimeMillis();
1004 }
1005
Michael Jurka1e2f4652013-07-08 18:03:46 -07001006 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1007 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001008 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001009 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001010 if (DEBUG_RESUME_TIME) {
1011 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1012 (System.currentTimeMillis() - startTimeCallbacks));
1013 }
Michael Jurka447bf842013-05-15 14:52:15 +02001014 }
Michael Jurka54554252013-08-01 12:52:23 +02001015 if (mOnResumeCallbacks.size() > 0) {
1016 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1017 mOnResumeCallbacks.get(i).run();
1018 }
1019 mOnResumeCallbacks.clear();
1020 }
Winson Chunge4e50662012-01-23 14:45:13 -08001021
1022 // Reset the pressed state of icons that were locked in the press state while activities
1023 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001024 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001025 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001026 mWaitingForResume.setStayPressed(false);
1027 }
Winson Chung82963d52013-10-09 11:20:57 -07001028
Adam Cohen06dff352012-06-01 17:17:08 -07001029 // It is possible that widgets can receive updates while launcher is not in the foreground.
1030 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1031 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1032 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001033 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001034 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001035
Michael Jurka447bf842013-05-15 14:52:15 +02001036 if (DEBUG_RESUME_TIME) {
1037 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1038 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001039
1040 if (mWorkspace.getCustomContentCallbacks() != null) {
1041 // If we are resuming and the custom content is the current page, we call onShow().
1042 // It is also poassible that onShow will instead be called slightly after first layout
1043 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1044 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001045 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001046 }
1047 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001048 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001049 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001050
Sunny Goyal756adbc2015-04-16 15:20:51 -07001051 if (!isWorkspaceLoading()) {
1052 // Process any items that were added while Launcher was away.
1053 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1054 }
Adam Cohen9211d422014-10-07 18:14:53 -07001055
1056 if (mLauncherCallbacks != null) {
1057 mLauncherCallbacks.onResume();
1058 }
Adam Cohen06dff352012-06-01 17:17:08 -07001059 }
1060
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001061 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001062 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001063 // Ensure that items added to Launcher are queued until Launcher returns
1064 InstallShortcutReceiver.enableInstallQueue();
1065
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001066 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001067 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001068 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001069 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001070
1071 // We call onHide() aggressively. The custom content callbacks should be able to
1072 // debounce excess onHide calls.
1073 if (mWorkspace.getCustomContentCallbacks() != null) {
1074 mWorkspace.getCustomContentCallbacks().onHide();
1075 }
Romain Guycbb89e42009-06-08 15:52:54 -07001076
Adam Cohen9211d422014-10-07 18:14:53 -07001077 if (mLauncherCallbacks != null) {
1078 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001079 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001080 }
1081
1082 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001083 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1084 // by a onResume or by scrolling otherwise.
1085 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001086
1087 // Custom content is completely hidden
1088 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001089
1090 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1091 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001092
1093 // Indicates whether the user is allowed to scroll away from the custom content.
1094 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001095 }
1096
Adam Cohenc2d6e892014-10-16 09:49:24 -07001097 public interface LauncherOverlay {
1098
1099 /**
1100 * Touch interaction leading to overscroll has begun
1101 */
1102 public void onScrollInteractionBegin();
1103
1104 /**
1105 * Touch interaction related to overscroll has ended
1106 */
1107 public void onScrollInteractionEnd();
1108
1109 /**
1110 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1111 * screen (or in the case of RTL, the rightmost screen).
1112 */
1113 public void onScrollChange(int progress, boolean rtl);
1114
1115 /**
1116 * Screen has stopped scrolling
1117 */
1118 public void onScrollSettled();
1119
1120 /**
1121 * This method can be called by the Launcher in order to force the LauncherOverlay
1122 * to exit fully immersive mode.
1123 */
1124 public void forceExitFullImmersion();
1125 }
1126
Jun Mukai8af0cd82015-05-12 12:32:12 -07001127 public interface LauncherSearchCallbacks {
1128 /**
1129 * Called when the search overlay is shown.
1130 */
1131 public void onSearchOverlayOpened();
1132
1133 /**
1134 * Called when the search overlay is dismissed.
1135 */
1136 public void onSearchOverlayClosed();
1137 }
1138
Adam Cohenc2d6e892014-10-16 09:49:24 -07001139 public interface LauncherOverlayCallbacks {
1140 /**
1141 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1142 * however it doesn't modify any state within the launcher.
1143 */
1144 public boolean canEnterFullImmersion();
1145
1146 /**
1147 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1148 * eg. by occupying the full screen and handling all touch events.
1149 *
1150 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1151 * case, Launcher will modify any necessary state and assumes the overlay is
1152 * handling all interaction. If false, the LauncherOverlay should cancel any
1153 *
1154 */
1155 public boolean enterFullImmersion();
1156
1157 /**
1158 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1159 * full control over UI and state.
1160 */
1161 public void exitFullImmersion();
1162 }
1163
1164 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1165
1166 @Override
1167 public boolean canEnterFullImmersion() {
1168 return mState == State.WORKSPACE;
1169 }
1170
1171 @Override
1172 public boolean enterFullImmersion() {
1173 if (mState == State.WORKSPACE) {
1174 // When fully immersed, disregard any touches which fall through.
1175 mDragLayer.setBlockTouch(true);
1176 return true;
1177 }
1178 return false;
1179 }
1180
1181 @Override
1182 public void exitFullImmersion() {
1183 mDragLayer.setBlockTouch(false);
1184 }
1185 }
1186
Jorim Jaggid017f882014-01-14 17:08:48 -08001187 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001188 if (mLauncherCallbacks != null) {
1189 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001190 } else {
1191 // On devices with a locked orientation, we will at least have the allow rotation
1192 // setting.
1193 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001194 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001195 }
1196
Adam Cohen9211d422014-10-07 18:14:53 -07001197 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001198 CustomContentCallbacks callbacks, String description) {
1199 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001200 }
1201
Adam Cohenedb40762013-07-18 16:45:45 -07001202 // The custom content needs to offset its content to account for the QSB
1203 public int getTopOffsetForCustomContent() {
1204 return mWorkspace.getPaddingTop();
1205 }
1206
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001207 @Override
1208 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001209 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001210 if (mModel.isCurrentCallbacks(this)) {
1211 mModel.stopLoader();
1212 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001213 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1214
Romain Guy13c2e7b2010-03-10 19:45:00 -08001215 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001216 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001217
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001218 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001219 @Override
1220 public void onWindowFocusChanged(boolean hasFocus) {
1221 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001222 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001223
1224 if (mLauncherCallbacks != null) {
1225 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1226 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001227 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001228
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001229 private boolean acceptFilter() {
1230 final InputMethodManager inputManager = (InputMethodManager)
1231 getSystemService(Context.INPUT_METHOD_SERVICE);
1232 return !inputManager.isFullscreenMode();
1233 }
1234
1235 @Override
1236 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001237 final int uniChar = event.getUnicodeChar();
1238 final boolean handled = super.onKeyDown(keyCode, event);
1239 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1240 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001241 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1242 keyCode, event);
1243 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001244 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001245 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001246 // showSearchDialog()
1247 // If there are multiple keystrokes before the search dialog takes focus,
1248 // onSearchRequested() will be called for every keystroke,
1249 // but it is idempotent, so it's fine.
1250 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001251 }
1252 }
1253
Joe Onorato8a9625e2010-01-28 15:55:35 -08001254 // Eat the long press event so the keyboard doesn't come up.
1255 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1256 return true;
1257 }
1258
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001259 return handled;
1260 }
1261
Karl Rosaen138a0412009-04-23 19:00:21 -07001262 private String getTypedText() {
1263 return mDefaultKeySsb.toString();
1264 }
1265
1266 private void clearTypedText() {
1267 mDefaultKeySsb.clear();
1268 mDefaultKeySsb.clearSpans();
1269 Selection.setSelection(mDefaultKeySsb, 0);
1270 }
1271
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001272 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001273 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1274 * State
1275 */
1276 private static State intToState(int stateOrdinal) {
1277 State state = State.WORKSPACE;
1278 final State[] stateValues = State.values();
1279 for (int i = 0; i < stateValues.length; i++) {
1280 if (stateValues[i].ordinal() == stateOrdinal) {
1281 state = stateValues[i];
1282 break;
1283 }
1284 }
1285 return state;
1286 }
1287
1288 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001289 * Restores the previous state, if it exists.
1290 *
1291 * @param savedState The previous state.
1292 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001293 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001294 private void restoreState(Bundle savedState) {
1295 if (savedState == null) {
1296 return;
1297 }
1298
Michael Jurka883f55b2010-10-21 15:47:14 -07001299 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001300 if (state == State.APPS || state == State.WIDGETS) {
1301 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001302 }
1303
Adam Cohen21cd0022013-10-09 18:57:02 -07001304 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1305 PagedView.INVALID_RESTORE_PAGE);
1306 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001307 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001308 }
1309
Winson Chung3d503fb2011-07-13 17:25:49 -07001310 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001311 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001312
Winson Chung3d503fb2011-07-13 17:25:49 -07001313 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1314 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001315 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001316 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1317 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001318 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1319 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001320 AppWidgetProviderInfo info = savedState.getParcelable(
1321 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001322 mPendingAddWidgetInfo = info == null ?
1323 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1324
Adam Cohen4637b5a2013-11-04 18:21:24 -08001325 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001326 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001327 mRestoring = true;
1328 }
1329
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001330 mItemIdToViewId = (HashMap<Integer, Integer>)
1331 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001332 }
1333
1334 /**
1335 * Finds all the views we need and configure them properly.
1336 */
1337 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001338 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001339
Craig Mautner360310b2012-10-26 15:13:08 -07001340 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001341 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001342 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1343 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001344 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001345 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001346
John Spurlock77e1f472013-09-11 10:09:51 -04001347 mLauncherView.setSystemUiVisibility(
1348 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001349 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001350
Winson Chung4c98d922011-05-31 16:50:48 -07001351 // Setup the drag layer
1352 mDragLayer.setup(this, dragController);
1353
Winson Chung3d503fb2011-07-13 17:25:49 -07001354 // Setup the hotseat
1355 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1356 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001357 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001358 }
1359
Jorim Jaggid017f882014-01-14 17:08:48 -08001360 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001361 mWidgetsButton = findViewById(R.id.widget_button);
1362 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001363 @Override
1364 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001365 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001366 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001367 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001368 }
1369 });
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001370 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001371
1372 View wallpaperButton = findViewById(R.id.wallpaper_button);
1373 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001374 @Override
1375 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001376 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001377 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001378 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001379 }
1380 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001381 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1382
1383 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001384 if (hasSettings()) {
1385 settingsButton.setOnClickListener(new OnClickListener() {
1386 @Override
1387 public void onClick(View arg0) {
1388 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001389 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001390 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001391 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001392 });
1393 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1394 } else {
1395 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001396 }
1397
Adam Cohendbdff6b2013-09-18 19:09:15 -07001398 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001399
Winson Chung4c98d922011-05-31 16:50:48 -07001400 // Setup the workspace
1401 mWorkspace.setHapticFeedbackEnabled(false);
1402 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001403 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001404 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001405
Winson Chungf0ea4d32011-06-06 14:27:16 -07001406 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001407 mSearchDropTargetBar = (SearchDropTargetBar)
1408 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001409
Winson Chungef7f8742015-06-04 17:18:17 -07001410 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001411 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001412 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001413 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1414 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1415 } else {
1416 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1417 }
Craig Mautner360310b2012-10-26 15:13:08 -07001418
Winson Chung3d503fb2011-07-13 17:25:49 -07001419 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001420 dragController.setDragScoller(mWorkspace);
1421 dragController.setScrollView(mDragLayer);
1422 dragController.setMoveTarget(mWorkspace);
1423 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001424 if (mSearchDropTargetBar != null) {
1425 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001426 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001427 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001428
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001429 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001430 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001431 mWeightWatcher = new WeightWatcher(this);
1432 mWeightWatcher.setAlpha(0.5f);
1433 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001434 new FrameLayout.LayoutParams(
1435 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001436 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001437 Gravity.BOTTOM)
1438 );
Adam Cohen39a06042013-07-19 14:30:12 -07001439
1440 boolean show = shouldShowWeightWatcher();
1441 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001442 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001443 }
1444
1445 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001446 * Sets the all apps button. This method is called from {@link Hotseat}.
1447 */
1448 public void setAllAppsButton(View allAppsButton) {
1449 mAllAppsButton = allAppsButton;
1450 }
1451
1452 public View getAllAppsButton() {
1453 return mAllAppsButton;
1454 }
1455
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001456 public View getWidgetsButton() {
1457 return mWidgetsButton;
1458 }
1459
Anjali Koppal5ad44842014-03-10 20:34:39 -07001460 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001461 * Creates a view representing a shortcut.
1462 *
1463 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001464 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001465 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001466 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001467 }
1468
1469 /**
1470 * Creates a view representing a shortcut inflated from the specified resource.
1471 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001472 * @param parent The group the shortcut belongs to.
1473 * @param info The data structure describing the shortcut.
1474 *
1475 * @return A View inflated from layoutResId.
1476 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001477 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001478 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001479 parent, false);
1480 favorite.applyFromShortcutInfo(info, mIconCache);
1481 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001482 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001483 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001484 return favorite;
1485 }
1486
1487 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488 * Add a shortcut to the workspace.
1489 *
1490 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001491 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001492 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001493 int cellY) {
1494 int[] cellXY = mTmpAddItemCellCoordinates;
Adam Cohendcd297f2013-06-18 13:13:40 -07001495 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001496
Sunny Goyal5c97f512015-05-19 16:03:28 -07001497 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001498 if (info == null) {
1499 return;
1500 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001501 final View view = createShortcut(info);
1502
Sunny Goyal5c97f512015-05-19 16:03:28 -07001503 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001504 // First we check if we already know the exact location where we want to add this item.
1505 if (cellX >= 0 && cellY >= 0) {
1506 cellXY[0] = cellX;
1507 cellXY[1] = cellY;
1508 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001509
1510 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001511 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001512 true, null,null)) {
1513 return;
1514 }
1515 DragObject dragObject = new DragObject();
1516 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001517 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1518 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001519 return;
1520 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08001521 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001522 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001523 }
1524
1525 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001526 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001527 return;
1528 }
1529
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001530 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001531
1532 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001533 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001534 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001535 }
1536 }
1537
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001538 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001539 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001540 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001541 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001542 */
Adam Cohen091440a2015-03-18 14:16:05 -07001543 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001544 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1545
1546 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001547 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001548 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1549 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001550 }
Romain Guycbb89e42009-06-08 15:52:54 -07001551
Adam Cohen59400422014-03-05 18:07:04 -08001552 if (appWidgetInfo.isCustomWidget) {
1553 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001554 }
1555
Adam Cohen59400422014-03-05 18:07:04 -08001556 LauncherAppWidgetInfo launcherInfo;
1557 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1558 launcherInfo.spanX = info.spanX;
1559 launcherInfo.spanY = info.spanY;
1560 launcherInfo.minSpanX = info.minSpanX;
1561 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001562 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001563
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001564 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001565 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001566
1567 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001568 if (hostView == null) {
1569 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001570 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1571 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001572 } else {
1573 // The AppWidgetHostView has already been inflated and instantiated
1574 launcherInfo.hostView = hostView;
1575 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001576 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001577 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001578 launcherInfo.notifyWidgetSizeChanged(this);
1579
Adam Cohen59400422014-03-05 18:07:04 -08001580 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1581 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001582
1583 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001584 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001585 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001586 }
Romain Guycbb89e42009-06-08 15:52:54 -07001587
Adam Cohended9f8d2010-11-03 13:25:16 -07001588 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1589 @Override
1590 public void onReceive(Context context, Intent intent) {
1591 final String action = intent.getAction();
1592 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1593 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001594 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001595 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001596
Winson Chungc100e8e2011-08-09 16:02:43 -07001597 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001598 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001599 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001600 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001601 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001602 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001603 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1604 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001605 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001606 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1607 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001608 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001609 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1610 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1611 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001612 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001613 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1614 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001615 }
1616 }
1617 };
1618
1619 @Override
1620 public void onAttachedToWindow() {
1621 super.onAttachedToWindow();
1622
1623 // Listen for broadcasts related to user-presence
1624 final IntentFilter filter = new IntentFilter();
1625 filter.addAction(Intent.ACTION_SCREEN_OFF);
1626 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001627 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001628 if (ENABLE_DEBUG_INTENTS) {
1629 filter.addAction(DebugIntents.DELETE_DATABASE);
1630 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1631 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001632 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001633 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001634 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001635 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001636 mVisible = true;
1637 }
1638
Adam Cohen0b395352014-06-09 22:54:36 +00001639 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001640 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001641 * This method is a no-op for other platform versions.
1642 */
Sunny Goyald0091012015-01-20 15:55:34 -08001643 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001644 private void setupTransparentSystemBarsForLollipop() {
1645 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001646 Window window = getWindow();
1647 window.getAttributes().systemUiVisibility |=
1648 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1649 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1650 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1651 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1652 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1653 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1654 window.setStatusBarColor(Color.TRANSPARENT);
1655 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001656 }
1657 }
1658
Adam Cohended9f8d2010-11-03 13:25:16 -07001659 @Override
1660 public void onDetachedFromWindow() {
1661 super.onDetachedFromWindow();
1662 mVisible = false;
1663
Adam Cohend113e0c2010-11-11 10:48:05 -08001664 if (mAttached) {
1665 unregisterReceiver(mReceiver);
1666 mAttached = false;
1667 }
Winson Chungb745afb2015-03-02 11:51:23 -08001668 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001669 }
1670
1671 public void onWindowVisibilityChanged(int visibility) {
1672 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001673 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001674 // The following code used to be in onResume, but it turns out onResume is called when
1675 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1676 // is a more appropriate event to handle
1677 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001678 if (!mWorkspaceLoading) {
1679 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001680 // We want to let Launcher draw itself at least once before we force it to build
1681 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001682 // apps is nice and speedy.
1683 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001684 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001685 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001686 if (mStarted) return;
1687 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001688 // We delay the layer building a bit in order to give
1689 // other message processing a time to run. In particular
1690 // this avoids a delay in hiding the IME if it was
1691 // currently shown, because doing that may involve
1692 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001693 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001694 final ViewTreeObserver.OnDrawListener listener = this;
1695 mWorkspace.post(new Runnable() {
1696 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001697 if (mWorkspace != null &&
1698 mWorkspace.getViewTreeObserver() != null) {
1699 mWorkspace.getViewTreeObserver().
1700 removeOnDrawListener(listener);
1701 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001702 }
1703 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001704 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001705 }
1706 });
1707 }
1708 clearTypedText();
1709 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001710 }
1711
Adam Cohen091440a2015-03-18 14:16:05 -07001712 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001713 mHandler.removeMessages(ADVANCE_MSG);
1714 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1715 mHandler.sendMessageDelayed(msg, delay);
1716 mAutoAdvanceSentTime = System.currentTimeMillis();
1717 }
1718
Adam Cohen091440a2015-03-18 14:16:05 -07001719 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001720 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1721 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1722 mAutoAdvanceRunning = autoAdvanceRunning;
1723 if (autoAdvanceRunning) {
1724 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1725 sendAdvanceMessage(delay);
1726 } else {
1727 if (!mWidgetsToAdvance.isEmpty()) {
1728 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1729 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1730 }
1731 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001732 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001733 }
1734 }
1735 }
1736
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001737 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1738
Adam Cohended9f8d2010-11-03 13:25:16 -07001739 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001740 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001741 if (msg.what == ADVANCE_MSG) {
1742 int i = 0;
1743 for (View key: mWidgetsToAdvance.keySet()) {
1744 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1745 final int delay = mAdvanceStagger * i;
1746 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001747 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001748 public void run() {
1749 ((Advanceable) v).advance();
1750 }
1751 }, delay);
1752 }
1753 i++;
1754 }
1755 sendAdvanceMessage(mAdvanceInterval);
1756 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001757 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001758 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001759 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001760
1761 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001762 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001763 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1764 if (v instanceof Advanceable) {
1765 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001766 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001767 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001768 }
1769 }
1770
1771 void removeWidgetToAutoAdvance(View hostView) {
1772 if (mWidgetsToAdvance.containsKey(hostView)) {
1773 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001774 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001775 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001776 }
1777
Joe Onorato9c1289c2009-08-17 11:03:03 -04001778 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001779 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001780 launcherInfo.hostView = null;
1781 }
1782
Hyunyoung Song3f471442015-04-08 19:01:34 -07001783 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001784 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1785 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001786 }
1787
Winson Chunga6945242014-01-08 14:04:34 -08001788 public DragLayer getDragLayer() {
1789 return mDragLayer;
1790 }
1791
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001792 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001793 return mAppsView;
1794 }
1795
Hyunyoung Song3f471442015-04-08 19:01:34 -07001796 public WidgetsContainerView getWidgetsView() {
1797 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001798 }
1799
Winson Chunga6945242014-01-08 14:04:34 -08001800 public Workspace getWorkspace() {
1801 return mWorkspace;
1802 }
1803
1804 public Hotseat getHotseat() {
1805 return mHotseat;
1806 }
1807
Jorim Jaggid017f882014-01-14 17:08:48 -08001808 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001809 return mOverviewPanel;
1810 }
1811
Winson Chung006ee262015-08-03 14:40:11 -07001812 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001813 return mSearchDropTargetBar;
1814 }
1815
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001816 public LauncherAppWidgetHost getAppWidgetHost() {
1817 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001818 }
Romain Guycbb89e42009-06-08 15:52:54 -07001819
Winson Chunga9abd0e2010-10-27 17:18:37 -07001820 public LauncherModel getModel() {
1821 return mModel;
1822 }
1823
Winson Chunga6945242014-01-08 14:04:34 -08001824 protected SharedPreferences getSharedPrefs() {
1825 return mSharedPrefs;
1826 }
1827
Adam Cohen2e6da152015-05-06 11:42:25 -07001828 public DeviceProfile getDeviceProfile() {
1829 return mDeviceProfile;
1830 }
1831
Bjorn Bringertc459e522013-06-07 19:36:01 +01001832 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001833 getWindow().closeAllPanels();
1834
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001835 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001836 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001837 }
1838
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001839 @Override
1840 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001841 long startTime = 0;
1842 if (DEBUG_RESUME_TIME) {
1843 startTime = System.currentTimeMillis();
1844 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001845 super.onNewIntent(intent);
1846
1847 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001848 Folder openFolder = mWorkspace.getOpenFolder();
1849 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1850 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1851 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1852 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1853 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001854 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001855 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001856
Adam Cohen6fecd412013-10-02 17:41:50 -07001857 if (mWorkspace == null) {
1858 // Can be cases where mWorkspace is null, this prevents a NPE
1859 return;
1860 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001861 // In all these cases, only animate if we're already on home
1862 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001863
Adam Cohen6fecd412013-10-02 17:41:50 -07001864 closeFolder();
1865 exitSpringLoadedDragMode();
1866
1867 // If we are already on home, then just animate back to the workspace,
1868 // otherwise, just wait until onResume to set the state back to Workspace
1869 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001870 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001871 } else {
1872 mOnResumeState = State.WORKSPACE;
1873 }
1874
1875 final View v = getWindow().peekDecorView();
1876 if (v != null && v.getWindowToken() != null) {
1877 InputMethodManager imm = (InputMethodManager)getSystemService(
1878 INPUT_METHOD_SERVICE);
1879 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1880 }
1881
Winson Chungb745afb2015-03-02 11:51:23 -08001882 // Reset the apps view
1883 if (!alreadyOnHome && mAppsView != null) {
1884 mAppsView.scrollToTop();
1885 }
1886
Hyunyoung Song3f471442015-04-08 19:01:34 -07001887 // Reset the widgets view
1888 if (!alreadyOnHome && mWidgetsView != null) {
1889 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001890 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001891
Adam Cohen9211d422014-10-07 18:14:53 -07001892 if (mLauncherCallbacks != null) {
1893 mLauncherCallbacks.onHomeIntent();
1894 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001895 }
Adam Cohened307df2013-10-02 09:37:31 -07001896
Adam Cohen9211d422014-10-07 18:14:53 -07001897 if (mLauncherCallbacks != null) {
1898 mLauncherCallbacks.onNewIntent(intent);
1899 }
Winson15f8b172015-08-19 11:02:39 -07001900
1901 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1902 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1903 // animation.
1904 if (isActionMain) {
1905 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1906 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
1907 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1908 openFolder == null && moveToDefaultScreen) {
1909 mWorkspace.post(new Runnable() {
1910 @Override
1911 public void run() {
1912 mWorkspace.moveToDefaultScreen(true);
1913 }
1914 });
1915 }
1916 }
1917
1918 if (DEBUG_RESUME_TIME) {
1919 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1920 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001921 }
1922
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001923 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001924 public void onRestoreInstanceState(Bundle state) {
1925 super.onRestoreInstanceState(state);
1926 for (int page: mSynchronouslyBoundPages) {
1927 mWorkspace.restoreInstanceStateForChild(page);
1928 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001929 }
1930
1931 @Override
1932 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001933 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001934 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1935 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001936 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001937 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001938
Michael Jurka883f55b2010-10-21 15:47:14 -07001939 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001940 // We close any open folder since it will not be re-opened, and we need to make sure
1941 // this state is reflected.
1942 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001943
Adam Cohendcd297f2013-06-18 13:13:40 -07001944 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001945 mWaitingForResult) {
1946 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001947 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001948 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1949 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001950 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1951 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1952 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001953 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001954 }
1955
Hyunyoung Song3f471442015-04-08 19:01:34 -07001956 // Save the current widgets tray?
1957 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001958 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001959
1960 if (mLauncherCallbacks != null) {
1961 mLauncherCallbacks.onSaveInstanceState(outState);
1962 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001963 }
1964
1965 @Override
1966 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001967 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001968
Winson Chunge7a03942011-08-05 15:05:12 -07001969 // Remove all pending runnables
1970 mHandler.removeMessages(ADVANCE_MSG);
1971 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001972 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001973
Winson Chungcd2b0142011-06-08 16:02:26 -07001974 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001975 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001976
1977 // It's possible to receive onDestroy after a new Launcher activity has
1978 // been created. In this case, don't interfere with the new Launcher.
1979 if (mModel.isCurrentCallbacks(this)) {
1980 mModel.stopLoader();
1981 app.setLauncher(null);
1982 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001983
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001984 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001985 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001986 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001987 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001988 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001989 mAppWidgetHost = null;
1990
1991 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001992
1993 TextKeyListener.getInstance().release();
1994
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001995 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001996
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001997 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001998 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08001999 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002000 mWorkspace = null;
2001 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002002
Michael Jurka2ecf9952012-06-18 12:52:28 -07002003 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002004
2005 if (mLauncherCallbacks != null) {
2006 mLauncherCallbacks.onDestroy();
2007 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002008 }
2009
Adam Cohena9cf38f2011-05-02 15:36:58 -07002010 public DragController getDragController() {
2011 return mDragController;
2012 }
2013
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002014 @Override
2015 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002016 onStartForResult(requestCode);
2017 super.startActivityForResult(intent, requestCode);
2018 }
2019
2020 @Override
2021 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2022 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2023 onStartForResult(requestCode);
2024 try {
2025 super.startIntentSenderForResult(intent, requestCode,
2026 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2027 } catch (IntentSender.SendIntentException e) {
2028 throw new ActivityNotFoundException();
2029 }
2030 }
2031
2032 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002033 if (requestCode >= 0) {
2034 setWaitingForResult(true);
2035 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002036 }
2037
Winson Chung70d72102011-08-12 11:24:35 -07002038 /**
2039 * Indicates that we want global search for this activity by setting the globalSearch
2040 * argument for {@link #startSearch} to true.
2041 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002042 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002043 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002044 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002045
Karl Rosaen138a0412009-04-23 19:00:21 -07002046 if (initialQuery == null) {
2047 // Use any text typed in the launcher as the initial query
2048 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002049 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002050 if (appSearchData == null) {
2051 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002052 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002053 }
Winson Chungadf0c182012-08-23 14:59:07 -07002054 Rect sourceBounds = new Rect();
2055 if (mSearchDropTargetBar != null) {
2056 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2057 }
Romain Guycbb89e42009-06-08 15:52:54 -07002058
Ian Parkinson047036e2014-09-01 15:40:53 +01002059 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002060 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002061 if (clearTextImmediately) {
2062 clearTypedText();
2063 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002064
2065 // We need to show the workspace after starting the search
2066 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002067 }
2068
Ian Parkinson047036e2014-09-01 15:40:53 +01002069 /**
2070 * Start a text search.
2071 *
2072 * @return {@code true} if the search will start immediately, so any further keypresses
2073 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2074 * to buffer keypresses.
2075 */
2076 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002077 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002078 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2079 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2080 sourceBounds);
2081 }
2082
Michael Jurkaa33411c2012-06-14 16:18:21 -07002083 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002084 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002085 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002086 }
2087
2088 /**
2089 * Starts the global search activity. This code is a copied from SearchManager
2090 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002091 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002092 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002093 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002094 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2095 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2096 if (globalSearchActivity == null) {
2097 Log.w(TAG, "No global search activity found.");
2098 return;
2099 }
2100 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2101 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2102 intent.setComponent(globalSearchActivity);
2103 // Make sure that we have a Bundle to put source in
2104 if (appSearchData == null) {
2105 appSearchData = new Bundle();
2106 } else {
2107 appSearchData = new Bundle(appSearchData);
2108 }
Adam Cohen9211d422014-10-07 18:14:53 -07002109 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002110 if (!appSearchData.containsKey("source")) {
2111 appSearchData.putString("source", getPackageName());
2112 }
2113 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2114 if (!TextUtils.isEmpty(initialQuery)) {
2115 intent.putExtra(SearchManager.QUERY, initialQuery);
2116 }
2117 if (selectInitialQuery) {
2118 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2119 }
2120 intent.setSourceBounds(sourceBounds);
2121 try {
2122 startActivity(intent);
2123 } catch (ActivityNotFoundException ex) {
2124 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2125 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002126 }
2127
Winson Chungbedf9232015-07-10 12:38:30 -07002128 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2129 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2130 return;
2131 }
2132
2133 // If not handled, then just start the provided search intent
2134 startActivitySafely(v, searchIntent, null);
2135 }
2136
Yura4f93ec62014-02-04 14:15:21 +00002137 public boolean isOnCustomContent() {
2138 return mWorkspace.isOnOrMovingToCustomContent();
2139 }
2140
Winson Chung70d72102011-08-12 11:24:35 -07002141 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002142 public boolean onPrepareOptionsMenu(Menu menu) {
2143 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002144 if (!isOnCustomContent()) {
2145 // Close any open folders
2146 closeFolder();
2147 // Stop resizing any widgets
2148 mWorkspace.exitWidgetResizeMode();
2149 if (!mWorkspace.isInOverviewMode()) {
2150 // Show the overview mode
2151 showOverviewMode(true);
2152 } else {
2153 showWorkspace(true);
2154 }
Winson Chunge0298742014-01-17 12:03:00 -08002155 }
Adam Cohen9211d422014-10-07 18:14:53 -07002156 if (mLauncherCallbacks != null) {
2157 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2158 }
2159
Michael Jurkab94f3f82013-09-11 18:08:54 +02002160 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002161 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002162
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002163 @Override
2164 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002165 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002166 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002167 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002168 }
2169
Joe Onorato9c1289c2009-08-17 11:03:03 -04002170 public boolean isWorkspaceLocked() {
2171 return mWorkspaceLoading || mWaitingForResult;
2172 }
2173
Adam Cohen517a7f52014-03-01 12:12:59 -08002174 public boolean isWorkspaceLoading() {
2175 return mWorkspaceLoading;
2176 }
2177
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002178 private void setWorkspaceLoading(boolean value) {
2179 boolean isLocked = isWorkspaceLocked();
2180 mWorkspaceLoading = value;
2181 if (isLocked != isWorkspaceLocked()) {
2182 onWorkspaceLockedChanged();
2183 }
2184 }
2185
2186 private void setWaitingForResult(boolean value) {
2187 boolean isLocked = isWorkspaceLocked();
2188 mWaitingForResult = value;
2189 if (isLocked != isWorkspaceLocked()) {
2190 onWorkspaceLockedChanged();
2191 }
2192 }
2193
Adam Cohen9211d422014-10-07 18:14:53 -07002194 protected void onWorkspaceLockedChanged() {
2195 if (mLauncherCallbacks != null) {
2196 mLauncherCallbacks.onWorkspaceLockedChanged();
2197 }
2198 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002199
Michael Jurka0280c3b2010-09-17 15:00:07 -07002200 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002201 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002202 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002203 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2204 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002205 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002206 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002207
Sunny Goyale6b63a32015-01-16 16:14:29 -08002208 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002209 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002210 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2211 }
2212
Sunny Goyale6b63a32015-01-16 16:14:29 -08002213 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002214 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2215 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002216 if (appWidgetInfo.configure != null) {
2217 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002218 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002219
Bjorn Bringert7984c942009-12-09 15:38:25 +00002220 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002221 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2222 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2223
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002224 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002225 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002226 Runnable onComplete = new Runnable() {
2227 @Override
2228 public void run() {
2229 // Exit spring loaded mode if necessary after adding the widget
2230 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2231 null);
2232 }
2233 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002234 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002235 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002236 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002237 }
2238 }
Romain Guycbb89e42009-06-08 15:52:54 -07002239
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002240 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002241 // Close any folders that may be open.
2242 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002243 mWorkspace.moveToCustomContentScreen(animate);
2244 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002245
2246 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2247 int[] cell, int spanX, int spanY) {
2248 switch (info.itemType) {
2249 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2250 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2251 int span[] = new int[2];
2252 span[0] = spanX;
2253 span[1] = spanY;
2254 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2255 container, screenId, cell, span);
2256 break;
2257 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2258 processShortcutFromDrop(info.componentName, container, screenId, cell);
2259 break;
2260 default:
2261 throw new IllegalStateException("Unknown item type: " + info.itemType);
2262 }
2263 }
2264
Adam Cohenfbba09b2011-07-18 21:43:05 -07002265 /**
2266 * Process a shortcut drop.
2267 *
2268 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002269 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002270 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002271 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002272 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2273 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002274 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002275 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002276 mPendingAddInfo.screenId = screenId;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002277
2278 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002279 mPendingAddInfo.cellX = cell[0];
2280 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002281 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002282
2283 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2284 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002285 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002286 }
2287
Adam Cohenfbba09b2011-07-18 21:43:05 -07002288 /**
2289 * Process a widget drop.
2290 *
2291 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002292 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002293 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002294 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002295 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2296 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002297 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002298 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002299 mPendingAddInfo.screenId = info.screenId = screenId;
Adam Cohend41fbf52012-02-16 23:53:59 -08002300 mPendingAddInfo.minSpanX = info.minSpanX;
2301 mPendingAddInfo.minSpanY = info.minSpanY;
2302
Adam Cohenfbba09b2011-07-18 21:43:05 -07002303 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002304 mPendingAddInfo.cellX = cell[0];
2305 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002306 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002307 if (span != null) {
2308 mPendingAddInfo.spanX = span[0];
2309 mPendingAddInfo.spanY = span[1];
2310 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002311
Adam Cohened66b2b2012-01-23 17:28:51 -08002312 AppWidgetHostView hostView = info.boundWidget;
2313 int appWidgetId;
2314 if (hostView != null) {
2315 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002316 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002317
2318 // Clear the boundWidget so that it doesn't get destroyed.
2319 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002320 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002321 // In this case, we either need to start an activity to get permission to bind
2322 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002323 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002324 Bundle options = info.bindOptions;
2325
Sunny Goyalffe83f12014-08-14 17:39:34 -07002326 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2327 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002328 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002329 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002330 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002331 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002332 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2333 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2334 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002335 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2336 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002337 // TODO: we need to make sure that this accounts for the options bundle.
2338 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002339 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2340 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002341 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002342 }
2343
Adam Cohendcd297f2013-06-18 13:13:40 -07002344 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002345 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002346 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002347 folderInfo.title = getText(R.string.folder_name);
2348
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002349 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002350 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2351 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002352 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002353
2354 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002355 FolderIcon newFolder =
2356 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002357 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002358 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002359 // Force measure the new folder icon
2360 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2361 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002362 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002363 }
Romain Guycbb89e42009-06-08 15:52:54 -07002364
Joe Onorato9c1289c2009-08-17 11:03:03 -04002365 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002366 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002367 }
2368
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002369 @Override
2370 public boolean dispatchKeyEvent(KeyEvent event) {
2371 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2372 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002373 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002374 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002375 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002376 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002377 dumpState();
2378 return true;
2379 }
2380 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002381 }
2382 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2383 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002384 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002385 return true;
2386 }
2387 }
2388
2389 return super.dispatchKeyEvent(event);
2390 }
2391
Joe Onorato88ec0992009-11-19 13:16:06 -08002392 @Override
2393 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002394 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2395 return;
2396 }
2397
Sunny Goyal45478022015-06-08 16:52:41 -07002398 if (mDragController.isDragging()) {
2399 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002400 return;
2401 }
2402
Winson Chungb745afb2015-03-02 11:51:23 -08002403 if (isAppsViewVisible()) {
2404 showWorkspace(true);
2405 } else if (isWidgetsViewVisible()) {
2406 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002407 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002408 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002409 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002410 Folder openFolder = mWorkspace.getOpenFolder();
2411 if (openFolder.isEditingName()) {
2412 openFolder.dismissEditingName();
2413 } else {
2414 closeFolder();
2415 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002416 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002417 mWorkspace.exitWidgetResizeMode();
2418
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002419 // Back button is a no-op here, but give at least some feedback for the button press
2420 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002421 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002422 }
2423
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002424 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002425 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002426 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002427 @Override
2428 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002429 if (mAppWidgetHost != null) {
2430 mAppWidgetHost.startListening();
2431 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002432 }
2433
2434 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002435 * Launches the intent referred by the clicked shortcut.
2436 *
2437 * @param v The view representing the clicked shortcut.
2438 */
2439 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002440 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2441 // view has detached (it's possible for this to happen if the view is removed mid touch).
2442 if (v.getWindowToken() == null) {
2443 return;
2444 }
2445
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002446 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002447 return;
2448 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002449
Adam Cohen1697b792013-09-17 19:08:21 -07002450 if (v instanceof Workspace) {
2451 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002452 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002453 }
2454 return;
2455 }
2456
2457 if (v instanceof CellLayout) {
2458 if (mWorkspace.isInOverviewMode()) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002459 mWorkspace.snapToPageFromOverView(mWorkspace.indexOfChild(v));
2460 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002461 }
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002462 return;
Adam Cohenf358a4b2013-07-23 16:47:31 -07002463 }
2464
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002465 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002466 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002467 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002468 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002469 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002470 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002471 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002472 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002473 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002474 } else if (tag instanceof AppInfo) {
2475 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002476 } else if (tag instanceof LauncherAppWidgetInfo) {
2477 if (v instanceof PendingAppWidgetHostView) {
2478 onClickPendingWidget((PendingAppWidgetHostView) v);
2479 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002480 }
2481 }
2482
Sunny Goyal70660032015-05-14 00:07:08 -07002483 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002484 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002485 return false;
2486 }
2487
Michael Jurkaaf442092010-06-10 17:01:57 -07002488 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002489 * Event handler for the app widget view which has not fully restored.
2490 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002491 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002492 if (mIsSafeModeEnabled) {
2493 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2494 return;
2495 }
2496
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002497 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002498 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002499 int widgetId = info.appWidgetId;
2500 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2501 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002502 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2503 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002504 mPendingAddInfo.copyFrom(info);
2505 mPendingAddWidgetId = widgetId;
2506
Sunny Goyalffe83f12014-08-14 17:39:34 -07002507 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2508 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002509 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002510 } else if (info.installProgress < 0) {
2511 // The install has not been queued
2512 final String packageName = info.providerName.getPackageName();
2513 showBrokenAppInstallDialog(packageName,
2514 new DialogInterface.OnClickListener() {
2515 public void onClick(DialogInterface dialog, int id) {
2516 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2517 }
2518 });
2519 } else {
2520 // Download has started.
2521 final String packageName = info.providerName.getPackageName();
2522 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002523 }
2524 }
2525
2526 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002527 * Event handler for the "grid" button that appears on the home screen, which
2528 * enters all apps mode.
2529 *
2530 * @param v The view that was clicked.
2531 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002532 protected void onClickAllAppsButton(View v) {
2533 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002534 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002535 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002536 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002537
2538 if (mLauncherCallbacks != null) {
2539 mLauncherCallbacks.onClickAllAppsButton(v);
2540 }
Winson Chung76648c52015-07-10 14:33:23 -07002541 }
2542 }
2543
2544 protected void onLongClickAllAppsButton(View v) {
2545 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2546 if (!isAppsViewVisible()) {
2547 showAppsView(true /* animated */, false /* resetListToTop */,
2548 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002549 }
2550 }
2551
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002552 private void showBrokenAppInstallDialog(final String packageName,
2553 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002554 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002555 .setTitle(R.string.abandoned_promises_title)
2556 .setMessage(R.string.abandoned_promise_explanation)
2557 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2558 .setNeutralButton(R.string.abandoned_clean_this,
2559 new DialogInterface.OnClickListener() {
2560 public void onClick(DialogInterface dialog, int id) {
2561 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2562 mWorkspace.removeAbandonedPromise(packageName, user);
2563 }
2564 })
2565 .create().show();
2566 return;
2567 }
2568
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002569 /**
2570 * Event handler for an app shortcut click.
2571 *
2572 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2573 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002574 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002575 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2576 Object tag = v.getTag();
2577 if (!(tag instanceof ShortcutInfo)) {
2578 throw new IllegalArgumentException("Input must be a Shortcut");
2579 }
2580
2581 // Open shortcut
2582 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002583
2584 if (shortcut.isDisabled != 0) {
2585 int error = R.string.activity_not_available;
2586 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2587 error = R.string.safemode_shortcut_error;
2588 }
2589 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2590 return;
2591 }
2592
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002593 final Intent intent = shortcut.intent;
2594
2595 // Check for special shortcuts
2596 if (intent.getComponent() != null) {
2597 final String shortcutClass = intent.getComponent().getClassName();
2598
2599 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2600 MemoryDumpActivity.startDump(this);
2601 return;
2602 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2603 toggleShowWeightWatcher();
2604 return;
2605 }
2606 }
2607
Chris Wren40c5ed32014-06-24 18:24:23 -04002608 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002609 if ((v instanceof BubbleTextView)
2610 && shortcut.isPromise()
2611 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002612 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002613 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002614 new DialogInterface.OnClickListener() {
2615 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002616 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002617 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002618 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002619 return;
2620 }
2621
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002622 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002623 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002624
2625 if (mLauncherCallbacks != null) {
2626 mLauncherCallbacks.onClickAppShortcut(v);
2627 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002628 }
2629
Adam Cohen091440a2015-03-18 14:16:05 -07002630 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002631 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002632 final ShortcutInfo shortcut;
2633 final Intent intent;
2634 if (tag instanceof ShortcutInfo) {
2635 shortcut = (ShortcutInfo) tag;
2636 intent = shortcut.intent;
2637 int[] pos = new int[2];
2638 v.getLocationOnScreen(pos);
2639 intent.setSourceBounds(new Rect(pos[0], pos[1],
2640 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002641
Sunny Goyal508da152014-08-14 10:53:27 -07002642 } else if (tag instanceof AppInfo) {
2643 shortcut = null;
2644 intent = ((AppInfo) tag).intent;
2645 } else {
2646 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2647 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002648
2649 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002650 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002651
2652 if (success && v instanceof BubbleTextView) {
2653 mWaitingForResume = (BubbleTextView) v;
2654 mWaitingForResume.setStayPressed(true);
2655 }
2656 }
2657
2658 /**
2659 * Event handler for a folder icon click.
2660 *
2661 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2662 */
2663 protected void onClickFolderIcon(View v) {
2664 if (LOGD) Log.d(TAG, "onClickFolder");
2665 if (!(v instanceof FolderIcon)){
2666 throw new IllegalArgumentException("Input must be a FolderIcon");
2667 }
2668
Sunny Goyal317698b2015-07-29 11:45:41 -07002669 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002670 FolderIcon folderIcon = (FolderIcon) v;
2671 final FolderInfo info = folderIcon.getFolderInfo();
2672 Folder openFolder = mWorkspace.getFolderForTag(info);
2673
2674 // If the folder info reports that the associated folder is open, then verify that
2675 // it is actually opened. There have been a few instances where this gets out of sync.
2676 if (info.opened && openFolder == null) {
2677 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2678 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2679 info.opened = false;
2680 }
2681
2682 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2683 // Close any open folder
2684 closeFolder();
2685 // Open the requested folder
2686 openFolder(folderIcon);
2687 } else {
2688 // Find the open folder...
2689 int folderScreen;
2690 if (openFolder != null) {
2691 folderScreen = mWorkspace.getPageForView(openFolder);
2692 // .. and close it
2693 closeFolder(openFolder);
2694 if (folderScreen != mWorkspace.getCurrentPage()) {
2695 // Close any folder open on the current screen
2696 closeFolder();
2697 // Pull the folder onto this screen
2698 openFolder(folderIcon);
2699 }
2700 }
2701 }
Adam Cohen9211d422014-10-07 18:14:53 -07002702
2703 if (mLauncherCallbacks != null) {
2704 mLauncherCallbacks.onClickFolderIcon(v);
2705 }
Michael Jurka5130e402011-10-13 04:55:35 -07002706 }
2707
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002708 /**
2709 * Event handler for the (Add) Widgets button that appears after a long press
2710 * on the home screen.
2711 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002712 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002713 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002714 if (mIsSafeModeEnabled) {
2715 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2716 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002717 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002718 if (mLauncherCallbacks != null) {
2719 mLauncherCallbacks.onClickAddWidgetButton(view);
2720 }
Adam Cohen9211d422014-10-07 18:14:53 -07002721 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002722 }
2723
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002724 /**
2725 * Event handler for the wallpaper picker button that appears after a long press
2726 * on the home screen.
2727 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002728 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002729 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002730 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2731 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002732
2733 if (mLauncherCallbacks != null) {
2734 mLauncherCallbacks.onClickWallpaperPicker(v);
2735 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002736 }
2737
2738 /**
2739 * Event handler for a click on the settings button that appears after a long press
2740 * on the home screen.
2741 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002742 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002743 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002744 if (mLauncherCallbacks != null) {
2745 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002746 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002747 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002748 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002749 }
2750
Adam Cohen61f560d2013-09-30 15:58:20 -07002751 public View.OnTouchListener getHapticFeedbackTouchListener() {
2752 if (mHapticFeedbackTouchListener == null) {
2753 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002754 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002755 @Override
2756 public boolean onTouch(View v, MotionEvent event) {
2757 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2758 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2759 }
2760 return false;
2761 }
2762 };
2763 }
2764 return mHapticFeedbackTouchListener;
2765 }
2766
Adam Cohen9211d422014-10-07 18:14:53 -07002767 public void onDragStarted(View view) {
2768 if (isOnCustomContent()) {
2769 // Custom content screen doesn't participate in drag and drop. If on custom
2770 // content screen, move to default.
2771 moveWorkspaceToDefaultScreen();
2772 }
2773
2774 if (mLauncherCallbacks != null) {
2775 mLauncherCallbacks.onDragStarted(view);
2776 }
2777 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002778
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002779 /**
2780 * Called when the user stops interacting with the launcher.
2781 * This implies that the user is now on the homescreen and is not doing housekeeping.
2782 */
Adam Cohen9211d422014-10-07 18:14:53 -07002783 protected void onInteractionEnd() {
2784 if (mLauncherCallbacks != null) {
2785 mLauncherCallbacks.onInteractionEnd();
2786 }
2787 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002788
2789 /**
2790 * Called when the user starts interacting with the launcher.
2791 * The possible interactions are:
2792 * - open all apps
2793 * - reorder an app shortcut, or a widget
2794 * - open the overview mode.
2795 * This is a good time to stop doing things that only make sense
2796 * when the user is on the homescreen and not doing housekeeping.
2797 */
Adam Cohen9211d422014-10-07 18:14:53 -07002798 protected void onInteractionBegin() {
2799 if (mLauncherCallbacks != null) {
2800 mLauncherCallbacks.onInteractionBegin();
2801 }
2802 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002803
Winson Chungcd99cd32015-04-29 11:03:24 -07002804 /** Updates the interaction state. */
2805 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002806 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002807 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002808 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2809 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002810 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002811 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002812 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002813 onInteractionEnd();
2814 }
2815 }
2816
Kenny Guyf07af7b2014-07-31 11:39:16 +01002817 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002818 try {
2819 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002820 launcherApps.showAppDetailsForProfile(componentName, user);
2821 } catch (SecurityException e) {
2822 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2823 Log.e(TAG, "Launcher does not have permission to launch settings");
2824 } catch (ActivityNotFoundException e) {
2825 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2826 Log.e(TAG, "Unable to launch settings");
2827 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002828 }
2829
Michael Jurka1e2f4652013-07-08 18:03:46 -07002830 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002831 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2832 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002833 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002834 // System applications cannot be installed. For now, show a toast explaining that.
2835 // We may give them the option of disabling apps this way.
2836 int messageId = R.string.uninstall_system_app_text;
2837 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002838 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002839 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002840 String packageName = componentName.getPackageName();
2841 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002842 Intent intent = new Intent(
2843 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002844 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2845 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002846 if (user != null) {
2847 user.addToIntent(intent, Intent.EXTRA_USER);
2848 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002849 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002850 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002851 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002852 }
2853
Winson Chung8f1eff72015-05-28 17:33:40 -07002854 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002855 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002856 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002857 // Only launch using the new animation if the shortcut has not opted out (this is a
2858 // private contract between launcher and may be ignored in the future).
2859 boolean useLaunchAnimation = (v != null) &&
2860 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002861 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2862 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002863
Kenny Guy1317e2d2014-05-08 18:52:50 +01002864 UserHandleCompat user = null;
2865 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2866 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2867 user = userManager.getUserForSerialNumber(serialNumber);
2868 }
2869
2870 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002871 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002872 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002873 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002874 int left = 0, top = 0;
2875 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2876 if (v instanceof TextView) {
2877 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002878 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2879 if (icon != null) {
2880 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002881 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002882 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002883 width = bounds.width();
2884 height = bounds.height();
2885 }
2886 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002887 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2888 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002889 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002890 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002891 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002892 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002893 // On L devices, we use the device default slide-up transition.
2894 // On L MR1 devices, we a custom version of the slide-up transition which
2895 // doesn't have the delay present in the device default.
2896 opts = ActivityOptions.makeCustomAnimation(this,
2897 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002898 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002899 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002900 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002901
2902 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2903 // Could be launching some bookkeeping activity
2904 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002905 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002906 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002907 launcherApps.startActivityForProfile(intent.getComponent(), user,
2908 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002909 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002910 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002911 } catch (SecurityException e) {
2912 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002913 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002914 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002915 "or use the exported attribute for this activity. "
2916 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002917 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002918 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002919 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002920
Winson Chungbedf9232015-07-10 12:38:30 -07002921 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002922 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002923 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2924 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2925 return false;
2926 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002927 try {
2928 success = startActivity(v, intent, tag);
2929 } catch (ActivityNotFoundException e) {
2930 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2931 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2932 }
2933 return success;
2934 }
2935
Adam Cohen268c4752012-06-06 17:47:33 -07002936 /**
2937 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2938 * in the DragLayer in the exact absolute location of the original FolderIcon.
2939 */
2940 private void copyFolderIconToImage(FolderIcon fi) {
2941 final int width = fi.getMeasuredWidth();
2942 final int height = fi.getMeasuredHeight();
2943
2944 // Lazy load ImageView, Bitmap and Canvas
2945 if (mFolderIconImageView == null) {
2946 mFolderIconImageView = new ImageView(this);
2947 }
2948 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2949 mFolderIconBitmap.getHeight() != height) {
2950 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2951 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2952 }
2953
2954 DragLayer.LayoutParams lp;
2955 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2956 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2957 } else {
2958 lp = new DragLayer.LayoutParams(width, height);
2959 }
2960
Adam Cohen307fe232012-08-16 17:55:58 -07002961 // The layout from which the folder is being opened may be scaled, adjust the starting
2962 // view size by this scale factor.
2963 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002964 lp.customPosition = true;
2965 lp.x = mRectForFolderAnimation.left;
2966 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002967 lp.width = (int) (scale * width);
2968 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002969
2970 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2971 fi.draw(mFolderIconCanvas);
2972 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002973 if (fi.getFolder() != null) {
2974 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2975 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002976 }
Adam Cohen268c4752012-06-06 17:47:33 -07002977 // Just in case this image view is still in the drag layer from a previous animation,
2978 // we remove it and re-add it.
2979 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2980 mDragLayer.removeView(mFolderIconImageView);
2981 }
2982 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002983 if (fi.getFolder() != null) {
2984 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002985 }
Adam Cohen268c4752012-06-06 17:47:33 -07002986 }
2987
Adam Cohen2801caf2011-05-13 20:57:39 -07002988 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002989 if (fi == null) return;
Adam Cohenc51934b2011-07-26 21:07:43 -07002990 FolderInfo info = (FolderInfo) fi.getTag();
2991 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2992 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002993 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2994 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002995 }
2996
Adam Cohen268c4752012-06-06 17:47:33 -07002997 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2998 copyFolderIconToImage(fi);
2999 fi.setVisibility(View.INVISIBLE);
3000
Sunny Goyal5d2fc322015-07-06 22:52:49 -07003001 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(
3002 mFolderIconImageView, 0, 1.5f, 1.5f);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003003 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003004 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3005 }
3006 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003007 oa.start();
3008 }
3009
Adam Cohen268c4752012-06-06 17:47:33 -07003010 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003011 if (fi == null) return;
Adam Cohen268c4752012-06-06 17:47:33 -07003012 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003013
Adam Cohen268c4752012-06-06 17:47:33 -07003014 // We remove and re-draw the FolderIcon in-case it has changed
3015 mDragLayer.removeView(mFolderIconImageView);
3016 copyFolderIconToImage(fi);
Sunny Goyal5d2fc322015-07-06 22:52:49 -07003017 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(mFolderIconImageView, 1, 1, 1);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003018 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003019 oa.addListener(new AnimatorListenerAdapter() {
3020 @Override
3021 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003022 if (cl != null) {
3023 cl.clearFolderLeaveBehind();
3024 // Remove the ImageView copy of the FolderIcon and make the original visible.
3025 mDragLayer.removeView(mFolderIconImageView);
3026 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003027 }
3028 }
3029 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003030 oa.start();
3031 }
3032
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003033 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003034 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003035 * is animated relative to the specified View. If the View is null, no animation
3036 * is played.
3037 *
3038 * @param folderInfo The FolderInfo describing the folder to open.
3039 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003040 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003041 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003042 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3043 if (openFolder != null && openFolder != folder) {
3044 // Close any open folder before opening a folder.
3045 closeFolder();
3046 }
3047
Adam Cohena9cf38f2011-05-02 15:36:58 -07003048 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003049
Adam Cohena9cf38f2011-05-02 15:36:58 -07003050 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003051
Sunny Goyalf4066152015-04-15 09:42:19 -07003052 // While the folder is open, the position of the icon cannot change.
3053 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3054
Adam Cohen4554ee12011-08-03 16:13:21 -07003055 // Just verify that the folder hasn't already been added to the DragLayer.
3056 // There was a one-off crash where the folder had a parent already.
3057 if (folder.getParent() == null) {
3058 mDragLayer.addView(folder);
3059 mDragController.addDropTarget((DropTarget) folder);
3060 } else {
3061 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3062 folder.getParent() + ").");
3063 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003064 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003065 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003066
3067 // Notify the accessibility manager that this folder "window" has appeared and occluded
3068 // the workspace items
3069 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3070 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003071 }
3072
3073 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003074 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003075 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003076 if (folder.isEditingName()) {
3077 folder.dismissEditingName();
3078 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003079 closeFolder(folder);
3080 }
3081 }
3082
Sunny Goyal83a8f042015-05-19 12:52:12 -07003083 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003084 folder.getInfo().opened = false;
3085
3086 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3087 if (parent != null) {
3088 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3089 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003090 if (fi != null) {
3091 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3092 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003093 }
3094 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003095
3096 // Notify the accessibility manager that this folder "window" has disappeard and no
3097 // longer occludeds the workspace items
3098 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003099 }
3100
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003101 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003102 if (!isDraggingEnabled()) return false;
3103 if (isWorkspaceLocked()) return false;
3104 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003105
Winson Chung76648c52015-07-10 14:33:23 -07003106 if (v == mAllAppsButton) {
3107 onLongClickAllAppsButton(v);
3108 return true;
3109 }
3110
Adam Cohen1697b792013-09-17 19:08:21 -07003111 if (v instanceof Workspace) {
3112 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003113 if (!mWorkspace.isTouchActive()) {
3114 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003115 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3116 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3117 return true;
3118 } else {
3119 return false;
3120 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003121 } else {
3122 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003123 }
Adam Cohen1697b792013-09-17 19:08:21 -07003124 }
3125
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003126 CellLayout.CellInfo longClickCellInfo = null;
3127 View itemUnderLongClick = null;
3128 if (v.getTag() instanceof ItemInfo) {
3129 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003130 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003131 itemUnderLongClick = longClickCellInfo.cell;
3132 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003133 }
3134
Winson Chung3d503fb2011-07-13 17:25:49 -07003135 // The hotseat touch handling does not go through Workspace, and we always allow long press
3136 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003137 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003138 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003139 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003140 // User long pressed on empty space
3141 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3142 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003143 if (mWorkspace.isInOverviewMode()) {
3144 mWorkspace.startReordering(v);
3145 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003146 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003147 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003148 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003149 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3150 mHotseat.getOrderInHotseat(
3151 longClickCellInfo.cellX,
3152 longClickCellInfo.cellY));
3153 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003154 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003155 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003156 }
3157 }
3158 }
3159 return true;
3160 }
3161
Winson Chung3d503fb2011-07-13 17:25:49 -07003162 boolean isHotseatLayout(View layout) {
3163 return mHotseat != null && layout != null &&
3164 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3165 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003166
Winson Chung3d503fb2011-07-13 17:25:49 -07003167 /**
3168 * Returns the CellLayout of the specified container at the specified screen.
3169 */
Sunny Goyal92820592015-03-02 11:31:35 -08003170 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003171 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3172 if (mHotseat != null) {
3173 return mHotseat.getLayout();
3174 } else {
3175 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003176 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003177 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003178 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003179 }
3180 }
3181
Winson Chungb745afb2015-03-02 11:51:23 -08003182 /**
3183 * For overridden classes.
3184 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003185 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003186 return isAppsViewVisible();
3187 }
3188
3189 public boolean isAppsViewVisible() {
3190 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3191 }
3192
3193 public boolean isWidgetsViewVisible() {
3194 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003195 }
3196
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003197 private void setWorkspaceBackground(int background) {
3198 switch (background) {
3199 case WORKSPACE_BACKGROUND_TRANSPARENT:
3200 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3201 break;
3202 case WORKSPACE_BACKGROUND_BLACK:
3203 getWindow().setBackgroundDrawable(null);
3204 break;
3205 default:
3206 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3207 }
Craig Mautner360310b2012-10-26 15:13:08 -07003208 }
3209
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003210 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003211 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3212 int curflags = getWindow().getAttributes().flags
3213 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3214 if (wpflags != curflags) {
3215 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3216 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003217 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003218 }
3219
Michael Jurkae326f182011-11-21 14:05:46 -08003220 @Override
3221 public void onTrimMemory(int level) {
3222 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003223 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3224 // The widget preview db can result in holding onto over
3225 // 3MB of memory for caching which isn't necessary.
3226 SQLiteDatabase.releaseMemory();
3227
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003228 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003229 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003230 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003231 if (mLauncherCallbacks != null) {
3232 mLauncherCallbacks.onTrimMemory(level);
3233 }
Michael Jurkae326f182011-11-21 14:05:46 -08003234 }
3235
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003236 public void showWorkspace(boolean animated) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003237 showWorkspace(animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003238 }
3239
Sunny Goyal83a8f042015-05-19 12:52:12 -07003240 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003241 boolean changed = mState != State.WORKSPACE ||
3242 mWorkspace.getState() != Workspace.State.NORMAL;
3243 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003244 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003245 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003246 Workspace.State.NORMAL, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003247
Michael Jurkab3e22d92011-10-31 15:58:33 -07003248 // Set focus to the AppsCustomize button
3249 if (mAllAppsButton != null) {
3250 mAllAppsButton.requestFocus();
3251 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003252 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003253
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003254 // Change the state *after* we've called all the transition code
3255 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003256
Winson Chung5fb63472011-02-02 17:03:37 -08003257 // Resume the auto-advance of widgets
3258 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003259 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003260
Winson Chung0f785722015-04-08 10:27:49 -07003261 if (changed) {
3262 // Send an accessibility event to announce the context change
3263 getWindow().getDecorView()
3264 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003265 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003266 }
3267
Adam Cohened307df2013-10-02 09:37:31 -07003268 void showOverviewMode(boolean animated) {
3269 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003270 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003271 Workspace.State.OVERVIEW, animated, null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003272 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003273 }
3274
Winson Chungb745afb2015-03-02 11:51:23 -08003275 /**
3276 * Shows the apps view.
3277 */
Winson Chung76648c52015-07-10 14:33:23 -07003278 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3279 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003280 if (resetListToTop) {
3281 mAppsView.scrollToTop();
3282 }
Winson Chung4ac30062015-05-08 17:34:17 -07003283 if (updatePredictedApps) {
3284 tryAndUpdatePredictedApps();
3285 }
Winson Chung76648c52015-07-10 14:33:23 -07003286 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003287 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003288
Winson Chungb745afb2015-03-02 11:51:23 -08003289 /**
3290 * Shows the widgets view.
3291 */
3292 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003293 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003294 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003295 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003296 }
Winson Chung76648c52015-07-10 14:33:23 -07003297 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003298
3299 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003300 @Override
3301 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003302 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003303 }
3304 });
Winson Chungb745afb2015-03-02 11:51:23 -08003305 }
3306
3307 /**
3308 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003309 *
3310 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003311 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003312 // TODO: calling method should use the return value so that when {@code false} is returned
3313 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003314 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003315 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3316 mState != State.WIDGETS_SPRING_LOADED) {
3317 return false;
3318 }
3319 if (toState != State.APPS && toState != State.WIDGETS) {
3320 return false;
3321 }
Winson Chungb745afb2015-03-02 11:51:23 -08003322
3323 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003324 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3325 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003326 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003327 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003328 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003329
Michael Jurkab3e22d92011-10-31 15:58:33 -07003330 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003331 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003332
3333 // Pause the auto-advance of widgets until we are out of AllApps
3334 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003335 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003336 closeFolder();
3337
3338 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003339 getWindow().getDecorView()
3340 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003341 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003342 }
3343
Winson Chungcd99cd32015-04-29 11:03:24 -07003344 /**
3345 * Updates the workspace and interaction state on state change, and return the animation to this
3346 * new state.
3347 */
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003348 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState,
Winson Chung006ee262015-08-03 14:40:11 -07003349 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003350 Workspace.State fromState = mWorkspace.getState();
Winson2a87fe82015-08-07 10:37:21 -07003351 Animator anim = mWorkspace.setStateWithAnimation(toState, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003352 updateInteraction(fromState, toState);
3353 return anim;
3354 }
3355
Jun Mukaif0033da2015-08-04 18:34:30 -07003356 public void onLauncherClingShown() {
3357 // When a launcher cling appears, it should cover the underlying layers, so their focus
3358 // should be blocked.
3359 if (mDragLayer.getDescendantFocusability() != ViewGroup.FOCUS_BLOCK_DESCENDANTS) {
3360 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
3361 }
3362 }
3363
3364 public void onLauncherClingDismissed() {
3365 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
3366 }
3367
Hyunyoung Song3f471442015-04-08 19:01:34 -07003368 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003369 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003370 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3371 mState == State.WIDGETS_SPRING_LOADED) {
3372 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003373 }
Winson Chungb745afb2015-03-02 11:51:23 -08003374
Winson Chung006ee262015-08-03 14:40:11 -07003375 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003376 Workspace.State.SPRING_LOADED, true /* animated */,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003377 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003378 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003379 }
Adam Cohen7777d962011-08-18 18:58:38 -07003380
Hyunyoung Song3f471442015-04-08 19:01:34 -07003381 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003382 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003383 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003384
Winson Chunge7a03942011-08-05 15:05:12 -07003385 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003386 @Override
3387 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003388 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003389 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3390 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003391 // Before we show workspace, hide all apps again because
3392 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3393 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003394 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003395 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003396 } else {
3397 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003398 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003399 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003400 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003401 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003402
Michael Jurkad3ef3062010-11-23 16:23:58 -08003403 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003404 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003405 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003406 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003407 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003408 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003409 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003410 }
3411
Winson Chung4ac30062015-05-08 17:34:17 -07003412 /**
3413 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3414 * resumed.
3415 */
3416 private void tryAndUpdatePredictedApps() {
3417 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003418 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003419 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003420 mAppsView.setPredictedApps(apps);
3421 }
3422 }
3423 }
3424
Michael Jurkab3e22d92011-10-31 15:58:33 -07003425 void lockAllApps() {
3426 // TODO
3427 }
3428
3429 void unlockAllApps() {
3430 // TODO
3431 }
3432
Sunny Goyal594d76d2014-11-06 10:12:54 -08003433 protected void disableVoiceButtonProxy(boolean disable) {
3434 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003435 }
3436
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003437 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003438 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3439 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003440 }
3441
Adam Cohen24ce0b32014-01-14 16:18:14 -08003442 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003443 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3444 if (searchProvider == null) {
3445 return null;
3446 }
3447
3448 Bundle opts = new Bundle();
3449 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003450 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003451
3452 SharedPreferences sp = getSharedPreferences(
3453 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3454 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003455 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003456 if (!searchProvider.provider.flattenToString().equals(
3457 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003458 || (widgetInfo == null)
3459 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003460 // A valid widget is not already bound.
3461 if (widgetId > -1) {
3462 mAppWidgetHost.deleteAppWidgetId(widgetId);
3463 widgetId = -1;
3464 }
3465
3466 // Try to bind a new widget
3467 widgetId = mAppWidgetHost.allocateAppWidgetId();
3468
3469 if (!AppWidgetManagerCompat.getInstance(this)
3470 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3471 mAppWidgetHost.deleteAppWidgetId(widgetId);
3472 widgetId = -1;
3473 }
3474
3475 sp.edit()
3476 .putInt(QSB_WIDGET_ID, widgetId)
3477 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3478 .commit();
3479 }
3480
Sunny Goyal8d595092015-07-06 12:22:14 -07003481 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003482 if (widgetId != -1) {
3483 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3484 mQsb.updateAppWidgetOptions(opts);
3485 mQsb.setPadding(0, 0, 0, 0);
3486 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003487 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003488 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003489 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003490 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003491 }
3492
Sunny Goyal22235bc2015-04-03 09:23:43 -07003493 private void reinflateQSBIfNecessary() {
3494 if (mQsb instanceof LauncherAppWidgetHostView &&
3495 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3496 mSearchDropTargetBar.removeView(mQsb);
3497 mQsb = null;
3498 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3499 }
3500 }
3501
Michael Jurkad7c28052012-04-27 15:43:36 -07003502 @Override
3503 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003504 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003505 final List<CharSequence> text = event.getText();
3506 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003507 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003508 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003509 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003510 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003511 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003512 } else if (mWorkspace != null) {
3513 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003514 } else {
3515 text.add(getString(R.string.all_apps_home_button_label));
3516 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003517 return result;
3518 }
3519
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003520 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003521 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003522 */
Adam Cohen091440a2015-03-18 14:16:05 -07003523 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003524 @Override
3525 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003526 closeSystemDialogs();
3527 }
3528 }
3529
3530 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003531 * If the activity is currently paused, signal that we need to run the passed Runnable
3532 * in onResume.
3533 *
3534 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003535 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3536 * wrong when we're not running, and if the activity comes back to what the configuration was
3537 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003538 *
3539 * Implementation of the method from LauncherModel.Callbacks.
3540 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003541 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003542 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003543 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003544 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003545 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003546 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003547 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003548 }
3549 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003550 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003551 return true;
3552 } else {
3553 return false;
3554 }
3555 }
3556
Michael Jurkac402cd92013-05-20 15:49:32 +02003557 private boolean waitUntilResume(Runnable run) {
3558 return waitUntilResume(run, false);
3559 }
3560
Michael Jurka1e2f4652013-07-08 18:03:46 -07003561 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003562 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003563 }
3564
Michael Jurka7607c2f2013-04-03 14:33:19 -07003565 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003566 * If the activity is currently paused, signal that we need to re-run the loader
3567 * in onResume.
3568 *
3569 * This needs to be called from incoming places where resources might have been loaded
3570 * while we are paused. That is becaues the Configuration might be wrong
3571 * when we're not running, and if it comes back to what it was when we
3572 * were paused, we are not restarted.
3573 *
3574 * Implementation of the method from LauncherModel.Callbacks.
3575 *
3576 * @return true if we are currently paused. The caller might be able to
3577 * skip some work in that case since we will come back again.
3578 */
3579 public boolean setLoadOnResume() {
3580 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003581 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003582 mOnResumeNeedsLoad = true;
3583 return true;
3584 } else {
3585 return false;
3586 }
3587 }
3588
3589 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003590 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003591 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003592 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003593 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003594 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003595 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07003596 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07003597 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003598 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003599
Joe Onorato9c1289c2009-08-17 11:03:03 -04003600 /**
3601 * Refreshes the shortcuts shown on the workspace.
3602 *
3603 * Implementation of the method from LauncherModel.Callbacks.
3604 */
3605 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003606 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003607
Michael Jurka7607c2f2013-04-03 14:33:19 -07003608 // If we're starting binding all over again, clear any bind calls we'd postponed in
3609 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3610 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003611 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003612
Winson Chungd64d1762013-08-20 14:37:16 -07003613 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003614 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003615 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003616
Michael Jurka05bf644e2011-11-30 20:28:53 -08003617 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003618 if (mHotseat != null) {
3619 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003620 }
3621 }
3622
Adam Cohendcd297f2013-06-18 13:13:40 -07003623 @Override
3624 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003625 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003626
Adam Cohen5084cba2013-09-03 12:01:16 -07003627 // If there are no screens, we need to have an empty screen
3628 if (orderedScreenIds.size() == 0) {
3629 mWorkspace.addExtraEmptyScreen();
3630 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003631
3632 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003633 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003634 if (hasCustomContentToLeft()) {
3635 mWorkspace.createCustomContentContainer();
3636 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003637 }
Winson Chung64359a52013-07-08 17:17:08 -07003638 }
3639
3640 @Override
3641 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003642 int count = orderedScreenIds.size();
3643 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003644 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003645 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003646 }
3647
Adam Cohen39a06042013-07-19 14:30:12 -07003648 private boolean shouldShowWeightWatcher() {
3649 String spKey = LauncherAppState.getSharedPreferencesKey();
3650 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003651 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003652
3653 return show;
3654 }
3655
3656 private void toggleShowWeightWatcher() {
3657 String spKey = LauncherAppState.getSharedPreferencesKey();
3658 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3659 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3660
3661 show = !show;
3662
3663 SharedPreferences.Editor editor = sp.edit();
3664 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3665 editor.commit();
3666
3667 if (mWeightWatcher != null) {
3668 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3669 }
3670 }
3671
Winson Chungd64d1762013-08-20 14:37:16 -07003672 public void bindAppsAdded(final ArrayList<Long> newScreens,
3673 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003674 final ArrayList<ItemInfo> addAnimated,
3675 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003676 Runnable r = new Runnable() {
3677 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003678 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003679 }
3680 };
3681 if (waitUntilResume(r)) {
3682 return;
3683 }
3684
Winson Chungd64d1762013-08-20 14:37:16 -07003685 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003686 if (newScreens != null) {
3687 bindAddScreens(newScreens);
3688 }
Winson Chungd64d1762013-08-20 14:37:16 -07003689
3690 // We add the items without animation on non-visible pages, and with
3691 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003692 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003693 bindItems(addNotAnimated, 0,
3694 addNotAnimated.size(), false);
3695 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003696 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003697 bindItems(addAnimated, 0,
3698 addAnimated.size(), true);
3699 }
Winson Chungc58497e2013-09-03 17:48:37 -07003700
Winson Chung87412982013-10-03 18:34:14 -07003701 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003702 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003703
Winson Chungb745afb2015-03-02 11:51:23 -08003704 if (addedApps != null && mAppsView != null) {
3705 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003706 }
Winson Chungd64d1762013-08-20 14:37:16 -07003707 }
3708
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003709 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003710 * Bind the items start-end from the list.
3711 *
3712 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003713 */
Winson Chung64359a52013-07-08 17:17:08 -07003714 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3715 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003716 Runnable r = new Runnable() {
3717 public void run() {
3718 bindItems(shortcuts, start, end, forceAnimateIcons);
3719 }
3720 };
3721 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003722 return;
3723 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003724
Winson Chungf0c6ae02012-03-21 16:10:31 -07003725 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003726 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3727 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003728 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003729 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003730 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003731 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003732 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003733
3734 // Short circuit if we are loading dock items for a configuration which has no dock
3735 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3736 mHotseat == null) {
3737 continue;
3738 }
3739
Joe Onorato9c1289c2009-08-17 11:03:03 -04003740 switch (item.itemType) {
3741 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3742 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003743 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003744 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003745
Winson Chung64359a52013-07-08 17:17:08 -07003746 /*
3747 * TODO: FIX collision case
3748 */
Winson Chungce376632013-07-11 16:12:41 -07003749 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3750 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3751 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003752 View v = cl.getChildAt(item.cellX, item.cellY);
3753 Object tag = v.getTag();
3754 String desc = "Collision while binding workspace item: " + item
3755 + ". Collides with " + tag;
Sunny Goyal6c56c682015-07-16 14:09:05 -07003756 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003757 throw (new RuntimeException(desc));
3758 } else {
3759 Log.d(TAG, desc);
3760 }
Winson Chungce376632013-07-11 16:12:41 -07003761 }
Winson Chung64359a52013-07-08 17:17:08 -07003762 }
3763
Adam Cohendcd297f2013-06-18 13:13:40 -07003764 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3765 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003766 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003767 // Animate all the applications up now
3768 shortcut.setAlpha(0f);
3769 shortcut.setScaleX(0f);
3770 shortcut.setScaleY(0f);
3771 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003772 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003773 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003774 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003775 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003776 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003777 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003778 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003779 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3780 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003781 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003782 default:
3783 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003784 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003785 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003786
Winson Chung997a9232013-07-24 15:33:46 -07003787 if (animateIcons) {
3788 // Animate to the correct page
3789 if (newShortcutsScreenId > -1) {
3790 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003791 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003792 final Runnable startBounceAnimRunnable = new Runnable() {
3793 public void run() {
3794 anim.playTogether(bounceAnims);
3795 anim.start();
3796 }
3797 };
Winson Chung997a9232013-07-24 15:33:46 -07003798 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003799 // We post the animation slightly delayed to prevent slowdowns
3800 // when we are loading right after we return to launcher.
3801 mWorkspace.postDelayed(new Runnable() {
3802 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003803 if (mWorkspace != null) {
3804 mWorkspace.snapToPage(newScreenIndex);
3805 mWorkspace.postDelayed(startBounceAnimRunnable,
3806 NEW_APPS_ANIMATION_DELAY);
3807 }
Winson Chung94d67682013-09-25 16:29:40 -07003808 }
3809 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003810 } else {
3811 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003812 }
3813 }
Winson Chung64359a52013-07-08 17:17:08 -07003814 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003815 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003816 }
3817
Joe Onorato9c1289c2009-08-17 11:03:03 -04003818 /**
3819 * Implementation of the method from LauncherModel.Callbacks.
3820 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003821 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003822 Runnable r = new Runnable() {
3823 public void run() {
3824 bindFolders(folders);
3825 }
3826 };
3827 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003828 return;
3829 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003830 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003831 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003832
3833 /**
3834 * Add the views for a widget to the workspace.
3835 *
3836 * Implementation of the method from LauncherModel.Callbacks.
3837 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003838 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003839 Runnable r = new Runnable() {
3840 public void run() {
3841 bindAppWidget(item);
3842 }
3843 };
3844 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003845 return;
3846 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003847
Daniel Sandler843e8602010-06-07 14:59:01 -04003848 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3849 if (DEBUG_WIDGETS) {
3850 Log.d(TAG, "bindAppWidget: " + item);
3851 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003852 final Workspace workspace = mWorkspace;
3853
Adam Cohen59400422014-03-05 18:07:04 -08003854 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003855 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003856
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003857 if (!mIsSafeModeEnabled
3858 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003859 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
3860
Sunny Goyalff572272014-07-23 13:58:07 -07003861 if (appWidgetInfo == null) {
3862 if (DEBUG_WIDGETS) {
3863 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3864 + " belongs to component " + item.providerName
3865 + ", as the povider is null");
3866 }
3867 LauncherModel.deleteItemFromDatabase(this, item);
3868 return;
3869 }
Sunny Goyalff572272014-07-23 13:58:07 -07003870
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003871 // If we do not have a valid id, try to bind an id.
3872 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
3873 // Note: This assumes that the id remap broadcast is received before this step.
3874 // If that is not the case, the id remap will be ignored and user may see the
3875 // click to setup view.
3876 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
3877 pendingInfo.spanX = item.spanX;
3878 pendingInfo.spanY = item.spanY;
3879 pendingInfo.minSpanX = item.minSpanX;
3880 pendingInfo.minSpanY = item.minSpanY;
3881 Bundle options = null;
3882 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003883
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003884 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
3885 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3886 newWidgetId, appWidgetInfo, options);
3887
3888 // TODO consider showing a permission dialog when the widget is clicked.
3889 if (!success) {
3890 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3891 if (DEBUG_WIDGETS) {
3892 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3893 + " belongs to component " + item.providerName
3894 + ", as the launcher is unable to bing a new widget id");
3895 }
3896 LauncherModel.deleteItemFromDatabase(this, item);
3897 return;
Sunny Goyalff572272014-07-23 13:58:07 -07003898 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003899
3900 item.appWidgetId = newWidgetId;
3901
3902 // If the widget has a configure activity, it is still needs to set it up, otherwise
3903 // the widget is ready to go.
3904 item.restoreStatus = (appWidgetInfo.configure == null)
3905 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3906 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3907
3908 LauncherModel.updateItemInDatabase(this, item);
3909 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
3910 && (appWidgetInfo.configure == null)) {
3911 // If the ID is already valid, verify if we need to configure or not.
3912 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3913 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07003914 }
Sunny Goyalff572272014-07-23 13:58:07 -07003915 }
3916
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003917 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003918 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003919 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003920 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3921 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003922 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003923
Sunny Goyal651077b2014-06-30 14:15:31 -07003924 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07003925 item.minSpanX = appWidgetInfo.minSpanX;
3926 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07003927 } else {
3928 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003929 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3930 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003931 view.updateIcon(mIconCache);
3932 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003933 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003934 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003935 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003936
Joe Onorato9c1289c2009-08-17 11:03:03 -04003937 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003938 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003939
Adam Cohendcd297f2013-06-18 13:13:40 -07003940 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003941 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003942 if (!item.isCustomWidget()) {
3943 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3944 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003945
Joe Onorato9c1289c2009-08-17 11:03:03 -04003946 workspace.requestLayout();
3947
Daniel Sandler843e8602010-06-07 14:59:01 -04003948 if (DEBUG_WIDGETS) {
3949 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3950 + (SystemClock.uptimeMillis()-start) + "ms");
3951 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003952 }
3953
Sunny Goyalff572272014-07-23 13:58:07 -07003954 /**
3955 * Restores a pending widget.
3956 *
3957 * @param appWidgetId The app widget id
3958 * @param cellInfo The position on screen where to create the widget.
3959 */
3960 private void completeRestoreAppWidget(final int appWidgetId) {
3961 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3962 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3963 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3964 return;
3965 }
3966
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003967 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003968 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3969
3970 mWorkspace.reinflateWidgetsIfNecessary();
3971 LauncherModel.updateItemInDatabase(this, info);
3972 }
3973
Adam Cohen1462de32012-07-24 22:34:36 -07003974 public void onPageBoundSynchronously(int page) {
3975 mSynchronouslyBoundPages.add(page);
3976 }
3977
Joe Onorato9c1289c2009-08-17 11:03:03 -04003978 /**
3979 * Callback saying that there aren't any more items to bind.
3980 *
3981 * Implementation of the method from LauncherModel.Callbacks.
3982 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003983 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07003984 Runnable r = new Runnable() {
3985 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003986 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07003987 }
3988 };
3989 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003990 return;
3991 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003992 if (mSavedState != null) {
3993 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003994 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003995 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003996 mSavedState = null;
3997 }
3998
Adam Cohen1462de32012-07-24 22:34:36 -07003999 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004000
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004001 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004002 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004003
4004 // If we received the result of any pending adds while the loader was running (e.g. the
4005 // widget configuration forced an orientation change), process them now.
4006 if (sPendingAddItem != null) {
4007 final long screenId = completeAdd(sPendingAddItem);
4008
4009 // TODO: this moves the user to the page where the pending item was added. Ideally,
4010 // the screen would be guaranteed to exist after bind, and the page would be set through
4011 // the workspace restore process.
4012 mWorkspace.post(new Runnable() {
4013 @Override
4014 public void run() {
4015 mWorkspace.snapToScreenId(screenId);
4016 }
4017 });
4018 sPendingAddItem = null;
4019 }
4020
Sunny Goyal756adbc2015-04-16 15:20:51 -07004021 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004022
4023 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004024 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004025 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004026 }
4027
Adam Cohen3ed316a2014-07-23 18:21:20 -07004028 private void sendLoadingCompleteBroadcastIfNecessary() {
4029 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4030 String permission =
4031 getResources().getString(R.string.receive_first_load_broadcast_permission);
4032 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4033 sendBroadcast(intent, permission);
4034 SharedPreferences.Editor editor = mSharedPrefs.edit();
4035 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4036 editor.apply();
4037 }
4038 }
4039
Winson Chunga0b7e862013-09-05 16:03:15 -07004040 public boolean isAllAppsButtonRank(int rank) {
4041 if (mHotseat != null) {
4042 return mHotseat.isAllAppsButtonRank(rank);
4043 }
4044 return false;
4045 }
4046
Winson Chunga2413752012-04-03 14:22:34 -07004047 private boolean canRunNewAppsAnimation() {
4048 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4049 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4050 }
4051
Winson Chungc9168342013-06-26 14:54:55 -07004052 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
Sunny Goyal5d2fc322015-07-06 22:52:49 -07004053 ValueAnimator bounceAnim = LauncherAnimUtils.ofViewAlphaAndScale(v, 1, 1, 1);
Winson Chungc9168342013-06-26 14:54:55 -07004054 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4055 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004056 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004057 return bounceAnim;
4058 }
4059
Adam Cohen27772732013-11-11 14:00:56 +00004060 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004061 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004062 }
4063
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004064 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004065 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004066 }
4067
Winson Chung88fa7412015-08-03 14:25:28 -07004068 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004069 if (mSearchDropTargetBar == null) {
4070 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004071 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004072 if (mQsb != null) {
4073 mSearchDropTargetBar.removeView(mQsb);
4074 mQsb = null;
4075 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004076 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004077 }
4078
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004079 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004080 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4081 * multiple calls to bind the same list.)
4082 */
4083 @Thunk ArrayList<AppInfo> mTmpAppsList;
4084 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4085 public void run() {
4086 bindAllApplications(mTmpAppsList);
4087 mTmpAppsList = null;
4088 }
4089 };
4090
4091 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004092 * Add the icons for all apps.
4093 *
4094 * Implementation of the method from LauncherModel.Callbacks.
4095 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004096 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004097 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4098 mTmpAppsList = apps;
4099 return;
4100 }
4101
Winson Chungb745afb2015-03-02 11:51:23 -08004102 if (mAppsView != null) {
4103 mAppsView.setApps(apps);
4104 }
Adam Cohen9211d422014-10-07 18:14:53 -07004105 if (mLauncherCallbacks != null) {
4106 mLauncherCallbacks.bindAllApplications(apps);
4107 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004108 }
4109
4110 /**
4111 * A package was updated.
4112 *
4113 * Implementation of the method from LauncherModel.Callbacks.
4114 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004115 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004116 Runnable r = new Runnable() {
4117 public void run() {
4118 bindAppsUpdated(apps);
4119 }
4120 };
4121 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004122 return;
4123 }
4124
Winson Chungb745afb2015-03-02 11:51:23 -08004125 if (mAppsView != null) {
4126 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004127 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004128 }
4129
Sunny Goyal4390ace2014-10-13 11:33:11 -07004130 @Override
4131 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4132 Runnable r = new Runnable() {
4133 public void run() {
4134 bindWidgetsRestored(widgets);
4135 }
4136 };
4137 if (waitUntilResume(r)) {
4138 return;
4139 }
4140 mWorkspace.widgetsRestored(widgets);
4141 }
4142
Joe Onorato9c1289c2009-08-17 11:03:03 -04004143 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004144 * Some shortcuts were updated in the background.
4145 *
4146 * Implementation of the method from LauncherModel.Callbacks.
4147 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004148 @Override
4149 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4150 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004151 Runnable r = new Runnable() {
4152 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004153 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004154 }
4155 };
4156 if (waitUntilResume(r)) {
4157 return;
4158 }
4159
Sunny Goyal4390ace2014-10-13 11:33:11 -07004160 if (!updated.isEmpty()) {
4161 mWorkspace.updateShortcuts(updated);
4162 }
4163
4164 if (!removed.isEmpty()) {
4165 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4166 for (ShortcutInfo si : removed) {
4167 removedComponents.add(si.getTargetComponent());
4168 }
4169 mWorkspace.removeItemsByComponentName(removedComponents, user);
4170 // Notify the drag controller
4171 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004172 }
4173 }
4174
4175 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004176 * Update the state of a package, typically related to install state.
4177 *
4178 * Implementation of the method from LauncherModel.Callbacks.
4179 */
Sunny Goyale755d462014-07-22 13:48:29 -07004180 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004181 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4182 Runnable r = new Runnable() {
4183 public void run() {
4184 bindRestoreItemsChange(updates);
4185 }
4186 };
4187 if (waitUntilResume(r)) {
4188 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004189 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004190
Sunny Goyal756adbc2015-04-16 15:20:51 -07004191 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004192 }
4193
4194 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004195 * A package was uninstalled. We take both the super set of packageNames
4196 * in addition to specific applications to remove, the reason being that
4197 * this can be called when a package is updated as well. In that scenario,
4198 * we only remove specific components from the workspace, where as
4199 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004200 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004201 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004202 * Implementation of the method from LauncherModel.Callbacks.
4203 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004204 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004205 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004206 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004207 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004208 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004209 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004210 }
Winson Chungd64d1762013-08-20 14:37:16 -07004211 };
4212 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004213 return;
4214 }
4215
Sunny Goyal1a745e82014-10-02 15:58:31 -07004216 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004217 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4218 for (AppInfo info : appInfos) {
4219 removedComponents.add(info.componentName);
4220 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004221 if (!packageNames.isEmpty()) {
4222 mWorkspace.removeItemsByPackageName(packageNames, user);
4223 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004224 if (!removedComponents.isEmpty()) {
4225 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004226 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004227 // Notify the drag controller
4228 mDragController.onAppsRemoved(packageNames, removedComponents);
4229
Sunny Goyal1a745e82014-10-02 15:58:31 -07004230 } else {
4231 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004232 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004233
Winson Chungdf95eb12013-10-16 14:57:07 -07004234 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004235 if (mAppsView != null) {
4236 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004237 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004238 }
Joe Onoratobe386092009-11-17 17:32:16 -08004239
Michael Jurkac402cd92013-05-20 15:49:32 +02004240 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004241 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004242 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004243 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004244 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004245
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004246 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004247 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004248 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004249 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004250 return;
4251 }
4252
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004253 if (mWidgetsView != null && model != null) {
4254 mWidgetsView.addWidgets(model);
4255 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004256 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004257 }
4258
Winson Chung400438b2011-01-16 17:53:48 -08004259 private int mapConfigurationOriActivityInfoOri(int configOri) {
4260 final Display d = getWindowManager().getDefaultDisplay();
4261 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4262 switch (d.getRotation()) {
4263 case Surface.ROTATION_0:
4264 case Surface.ROTATION_180:
4265 // We are currently in the same basic orientation as the natural orientation
4266 naturalOri = configOri;
4267 break;
4268 case Surface.ROTATION_90:
4269 case Surface.ROTATION_270:
4270 // We are currently in the other basic orientation to the natural orientation
4271 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4272 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4273 break;
4274 }
4275
4276 int[] oriMap = {
4277 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4278 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4279 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4280 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4281 };
4282 // Since the map starts at portrait, we need to offset if this device's natural orientation
4283 // is landscape.
4284 int indexOffset = 0;
4285 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4286 indexOffset = 1;
4287 }
4288 return oriMap[(d.getRotation() + indexOffset) % 4];
4289 }
Adam Cohen446e9402011-09-15 18:21:21 -07004290
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004291 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004292 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004293 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004294 if (Utilities.ATLEAST_JB_MR2) {
4295 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4296 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004297 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4298 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004299 }
Winson Chung4b919f82012-05-01 10:44:08 -07004300 }
4301 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004302
Winson Chung4b919f82012-05-01 10:44:08 -07004303 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004304 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004305 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004306 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004307 } else {
4308 mHandler.postDelayed(new Runnable() {
4309 public void run() {
4310 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4311 }
4312 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004313 }
Winson Chung4b919f82012-05-01 10:44:08 -07004314 }
Winson Chung400438b2011-01-16 17:53:48 -08004315 }
4316
Winson Chunge43a1e72014-01-15 10:33:02 -08004317 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004318 if (mLauncherCallbacks != null) {
4319 return mLauncherCallbacks.isLauncherPreinstalled();
4320 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004321 PackageManager pm = getPackageManager();
4322 try {
4323 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4324 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4325 return true;
4326 } else {
4327 return false;
4328 }
4329 } catch (NameNotFoundException e) {
4330 e.printStackTrace();
4331 return false;
4332 }
4333 }
4334
Adam Cohenea90f832014-05-21 15:03:34 -07004335 /**
4336 * This method indicates whether or not we should suggest default wallpaper dimensions
4337 * when our wallpaper cropper was not yet used to set a wallpaper.
4338 */
4339 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004340 if (mLauncherCallbacks != null) {
4341 return mLauncherCallbacks.overrideWallpaperDimensions();
4342 }
Adam Cohenea90f832014-05-21 15:03:34 -07004343 return true;
4344 }
4345
Adam Cohen432609a2014-03-13 17:03:22 -07004346 /**
4347 * To be overridden by subclasses to indicate that there is an activity to launch
4348 * before showing the standard launcher experience.
4349 */
4350 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004351 if (mLauncherCallbacks != null) {
4352 return mLauncherCallbacks.hasFirstRunActivity();
4353 }
Adam Cohen432609a2014-03-13 17:03:22 -07004354 return false;
4355 }
4356
4357 /**
4358 * To be overridden by subclasses to launch any first run activity
4359 */
4360 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004361 if (mLauncherCallbacks != null) {
4362 return mLauncherCallbacks.getFirstRunActivity();
4363 }
Adam Cohen432609a2014-03-13 17:03:22 -07004364 return null;
4365 }
4366
Winson Chunga6945242014-01-08 14:04:34 -08004367 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004368 return !ActivityManager.isRunningInTestHarness() &&
4369 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004370 }
4371
Adam Cohen4a9423d2014-03-28 14:22:31 -07004372 protected boolean hasRunFirstRunActivity() {
4373 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4374 }
4375
Adam Cohen432609a2014-03-13 17:03:22 -07004376 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004377 if (shouldRunFirstRunActivity() &&
4378 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004379 Intent firstRunIntent = getFirstRunActivity();
4380 if (firstRunIntent != null) {
4381 startActivity(firstRunIntent);
4382 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004383 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004384 }
4385 }
Adam Cohen432609a2014-03-13 17:03:22 -07004386 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004387 }
4388
4389 private void markFirstRunActivityShown() {
4390 SharedPreferences.Editor editor = mSharedPrefs.edit();
4391 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4392 editor.apply();
4393 }
4394
Adam Cohen432609a2014-03-13 17:03:22 -07004395 /**
4396 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4397 * screen that must be displayed and dismissed.
4398 */
4399 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004400 if (mLauncherCallbacks != null) {
4401 return mLauncherCallbacks.hasDismissableIntroScreen();
4402 }
Adam Cohen432609a2014-03-13 17:03:22 -07004403 return false;
4404 }
4405
4406 /**
4407 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4408 */
4409 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004410 if (mLauncherCallbacks != null) {
4411 return mLauncherCallbacks.getIntroScreen();
4412 }
Adam Cohen432609a2014-03-13 17:03:22 -07004413 return null;
4414 }
4415
4416 /**
4417 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4418 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4419 */
4420 private boolean shouldShowIntroScreen() {
4421 return hasDismissableIntroScreen() &&
4422 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4423 }
4424
4425 protected void showIntroScreen() {
4426 View introScreen = getIntroScreen();
4427 changeWallpaperVisiblity(false);
4428 if (introScreen != null) {
4429 mDragLayer.showOverlayView(introScreen);
4430 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004431 if (mLauncherOverlayContainer != null) {
4432 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4433 }
Adam Cohen432609a2014-03-13 17:03:22 -07004434 }
4435
4436 public void dismissIntroScreen() {
4437 markIntroScreenDismissed();
4438 if (showFirstRunActivity()) {
4439 // We delay hiding the intro view until the first run activity is showing. This
4440 // avoids a blip.
4441 mWorkspace.postDelayed(new Runnable() {
4442 @Override
4443 public void run() {
4444 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004445 if (mLauncherOverlayContainer != null) {
4446 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4447 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004448 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004449 }
4450 }, ACTIVITY_START_DELAY);
4451 } else {
4452 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004453 if (mLauncherOverlayContainer != null) {
4454 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4455 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004456 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004457 }
4458 changeWallpaperVisiblity(true);
4459 }
4460
4461 private void markIntroScreenDismissed() {
4462 SharedPreferences.Editor editor = mSharedPrefs.edit();
4463 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4464 editor.apply();
4465 }
4466
Adam Cohen091440a2015-03-18 14:16:05 -07004467 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004468 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4469 // on the device, then we always show the first run cling experience (or if there is no
4470 // launcher2). Otherwise, we prompt the user upon started for migration
4471 LauncherClings launcherClings = new LauncherClings(this);
4472 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4473 if (mModel.canMigrateFromOldLauncherDb(this)) {
4474 launcherClings.showMigrationCling();
4475 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004476 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004477 }
4478 }
4479 }
4480
Winson Chunga6945242014-01-08 14:04:34 -08004481 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004482 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4483 if (mHotseat != null) mHotseat.setAlpha(1f);
4484 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004485 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4486 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004487 }
4488
4489 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004490 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4491 if (mHotseat != null) mHotseat.setAlpha(0f);
4492 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004493 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4494 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004495 }
4496
Winson Chung5ffd51d2015-06-25 11:36:50 -07004497 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004498 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004499 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004500 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004501 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004502 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004503 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4504 if (userHandle != null) {
4505 user = UserHandleCompat.fromUser(userHandle);
4506 }
4507 }
4508 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004509 }
4510
4511 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004512 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004513 if (user == null) {
4514 user = UserHandleCompat.myUserHandle();
4515 }
4516
4517 // Called from search suggestion, add the profile extra to the intent to ensure that we
4518 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004519 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004520 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004521 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004522 return null;
4523 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004524 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004525 }
4526
Winson Chung5ffd51d2015-06-25 11:36:50 -07004527 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004528 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4529 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004530 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004531 UserHandleCompat.myUserHandle());
4532 }
4533
Winson Chung5ffd51d2015-06-25 11:36:50 -07004534 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004535 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4536 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004537 mWorkspace.onExternalDragStartedWithItem(dragView);
4538 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004539 }
4540
Winson Chung5ffd51d2015-06-25 11:36:50 -07004541 protected void moveWorkspaceToDefaultScreen() {
4542 mWorkspace.moveToDefaultScreen(false);
4543 }
4544
Anjali Koppalf5d29132014-02-28 13:33:27 -08004545 @Override
4546 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004547 if (mLauncherCallbacks != null) {
4548 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4549 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004550 }
4551
Winson Chung80baf5a2010-08-09 16:03:15 -07004552 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004553 * Returns a FastBitmapDrawable with the icon, accurately sized.
4554 */
4555 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4556 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4557 d.setFilterBitmap(true);
4558 resizeIconDrawable(d);
4559 return d;
4560 }
4561
4562 /**
4563 * Resizes an icon drawable to the correct icon size.
4564 */
4565 public void resizeIconDrawable(Drawable icon) {
4566 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4567 }
4568
4569 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004570 * Prints out out state for debugging.
4571 */
4572 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004573 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004574 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004575 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4576 Log.d(TAG, "mRestoring=" + mRestoring);
4577 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004578 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004579 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004580 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004581
Daniel Sandler325dc232013-06-05 22:57:57 -04004582 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004583 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004584
4585 @Override
4586 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4587 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004588 synchronized (sDumpLogs) {
4589 writer.println(" ");
4590 writer.println("Debug logs: ");
4591 for (int i = 0; i < sDumpLogs.size(); i++) {
4592 writer.println(" " + sDumpLogs.get(i));
4593 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004594 }
Adam Cohen9211d422014-10-07 18:14:53 -07004595 if (mLauncherCallbacks != null) {
4596 mLauncherCallbacks.dump(prefix, fd, writer, args);
4597 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004598 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004599
4600 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004601 if (DEBUG_DUMP_LOG) {
4602 synchronized (sDumpLogs) {
4603 Log.d(TAG, "");
4604 Log.d(TAG, "*********************");
4605 Log.d(TAG, "Launcher debug logs: ");
4606 for (int i = 0; i < sDumpLogs.size(); i++) {
4607 Log.d(TAG, " " + sDumpLogs.get(i));
4608 }
4609 Log.d(TAG, "*********************");
4610 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004611 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004612 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004613 }
4614
4615 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004616 addDumpLog(tag, log, null, debugLog);
4617 }
4618
4619 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004620 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004621 if (e != null) {
4622 Log.d(tag, log, e);
4623 } else {
4624 Log.d(tag, log);
4625 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004626 }
Winson Chungede41292013-09-19 16:27:36 -07004627 if (DEBUG_DUMP_LOG) {
4628 sDateStamp.setTime(System.currentTimeMillis());
4629 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004630 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4631 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004632 }
Winson Chungede41292013-09-19 16:27:36 -07004633 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004634 }
4635
Adam Cohen59400422014-03-05 18:07:04 -08004636 public static CustomAppWidget getCustomAppWidget(String name) {
4637 return sCustomAppWidgets.get(name);
4638 }
4639
4640 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4641 return sCustomAppWidgets;
4642 }
4643
Winson Chungede41292013-09-19 16:27:36 -07004644 public void dumpLogsToLocalData() {
4645 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004646 new AsyncTask<Void, Void, Void>() {
4647 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004648 boolean success = false;
4649 sDateStamp.setTime(sRunStart);
4650 String FILENAME = sDateStamp.getMonth() + "-"
4651 + sDateStamp.getDay() + "_"
4652 + sDateStamp.getHours() + "-"
4653 + sDateStamp.getMinutes() + "_"
4654 + sDateStamp.getSeconds() + ".txt";
4655
4656 FileOutputStream fos = null;
4657 File outFile = null;
4658 try {
4659 outFile = new File(getFilesDir(), FILENAME);
4660 outFile.createNewFile();
4661 fos = new FileOutputStream(outFile);
4662 } catch (Exception e) {
4663 e.printStackTrace();
4664 }
4665 if (fos != null) {
4666 PrintWriter writer = new PrintWriter(fos);
4667
4668 writer.println(" ");
4669 writer.println("Debug logs: ");
4670 synchronized (sDumpLogs) {
4671 for (int i = 0; i < sDumpLogs.size(); i++) {
4672 writer.println(" " + sDumpLogs.get(i));
4673 }
4674 }
4675 writer.close();
4676 }
4677 try {
4678 if (fos != null) {
4679 fos.close();
4680 success = true;
4681 }
4682 } catch (IOException e) {
4683 e.printStackTrace();
4684 }
Michael Jurka43467462013-11-14 12:03:58 +01004685 return null;
Winson Chungede41292013-09-19 16:27:36 -07004686 }
Michael Jurka43467462013-11-14 12:03:58 +01004687 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004688 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004689 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004690}
Michael Jurka2763be32011-02-24 11:19:57 -08004691
Dan Sandlerd5024042014-01-09 15:01:33 -05004692interface DebugIntents {
4693 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4694 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004695}