blob: 3b9ebb6d317976c302b1de0fb46214c80ff11910 [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;
23import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070025import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000026import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070029import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040030import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080032import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070033import android.appwidget.AppWidgetManager;
34import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080036import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080037import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040038import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040040import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070042import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070043import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080046import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070048import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070050import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070051import android.graphics.Bitmap;
52import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070053import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070054import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070056import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040058import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070059import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020060import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020062import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080063import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070064import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070065import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040066import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070067import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.text.Selection;
69import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070070import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070072import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070073import android.view.Display;
74import android.view.Gravity;
75import android.view.HapticFeedbackConstants;
76import android.view.KeyEvent;
77import android.view.LayoutInflater;
78import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070079import android.view.MotionEvent;
80import android.view.Surface;
81import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070082import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080083import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070084import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070085import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070086import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070087import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070088import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080089import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070090import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070092import android.widget.Advanceable;
93import android.widget.FrameLayout;
94import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080095import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070096import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070097
Sunny Goyal651077b2014-06-30 14:15:31 -070098import com.android.launcher3.DropTarget.DragObject;
99import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700100import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700101import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100102import com.android.launcher3.compat.LauncherActivityInfoCompat;
103import com.android.launcher3.compat.LauncherAppsCompat;
104import com.android.launcher3.compat.UserHandleCompat;
105import com.android.launcher3.compat.UserManagerCompat;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700106import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700107import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700108import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700109import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700110import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700111import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700112import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700113
Adam Cohen4caf2982013-08-20 18:54:31 -0700114import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700115import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700116import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700117import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.PrintWriter;
Chet Haasea8f996d2015-02-17 12:56:04 -0800119import java.lang.reflect.InvocationTargetException;
120import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700121import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700122import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700123import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700124import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700125import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700126import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700127import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000128import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700129
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800130/**
131 * Default launcher application.
132 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100133public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700134 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chungb745afb2015-03-02 11:51:23 -0800135 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener,
136 LauncherStateTransitionAnimation.Callbacks {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700137 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
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800168 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169
Michael Jurka0a457bf2012-11-19 14:05:05 -0800170 // To turn on these properties, type
171 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800172 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800173
Winson Chung2672ff92012-05-04 16:22:30 -0700174 // The Intent extra that defines whether to ignore the launch animation
175 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400176 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700177
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800178 // Type: int
179 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700180 // Type: int
181 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700183 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
184 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
186 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700187 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800188 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700189 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700190 // Type: int
191 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
192 // Type: int
193 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
194 // Type: parcelable
195 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000196 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800197 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000198 // Type: int[]
199 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800200
Adam Cohen432609a2014-03-13 17:03:22 -0700201 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800202 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
203
Adam Cohen3ed316a2014-07-23 18:21:20 -0700204 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
205 static final String ACTION_FIRST_LOAD_COMPLETE =
206 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
207
Adam Cohen39a06042013-07-19 14:30:12 -0700208 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700209 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700210
Sunny Goyal594d76d2014-11-06 10:12:54 -0800211 private static final String QSB_WIDGET_ID = "qsb_widget_id";
212 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
213
Winson Chunga6945242014-01-08 14:04:34 -0800214 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
215
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700216 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700217 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
218
Adam Cohen091440a2015-03-18 14:16:05 -0700219 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700220 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700221
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700222 private boolean mIsSafeModeEnabled;
223
Adam Cohenc2d6e892014-10-16 09:49:24 -0700224 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
225 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700226 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700227
Joe Onorato9c1289c2009-08-17 11:03:03 -0400228 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700229 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
230 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700231 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800232
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000233 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
234 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
235
Winson Chunga2413752012-04-03 14:22:34 -0700236 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700237 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
238 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700239 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700240
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800241 private final BroadcastReceiver mCloseSystemDialogsReceiver
242 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800243
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800244 private LayoutInflater mInflater;
245
Adam Cohen091440a2015-03-18 14:16:05 -0700246 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700247 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800248 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700249 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800250 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700251 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700252
Sunny Goyalffe83f12014-08-14 17:39:34 -0700253 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700254 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700255
Adam Cohen091440a2015-03-18 14:16:05 -0700256 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800257 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800258 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700259
Michael Jurka0280c3b2010-09-17 15:00:07 -0700260 private int[] mTmpAddItemCellCoordinates = new int[2];
261
Sunny Goyal316490e2015-06-02 09:38:28 -0700262 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800263 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700264
Michael Jurka838a4ca2011-02-07 13:33:06 -0800265 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700266 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700267
Winson Chungc51db6a2011-10-05 11:44:49 -0700268 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700269
270 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700271 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700272
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700273 // Main container view and the model for the widget tray screen.
274 @Thunk WidgetsContainerView mWidgetsView;
275 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700276
Winson Chungf0ea4d32011-06-06 14:27:16 -0700277 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800278 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800279
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800280 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700281 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
282 // scroll issues (because the workspace may not have been measured yet) and extra work.
283 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
284 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285
286 private SpannableStringBuilder mDefaultKeySsb = null;
287
Adam Cohen091440a2015-03-18 14:16:05 -0700288 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400289
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800290 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291 private boolean mRestoring;
292 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700293 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800294
Michael Jurka1e2f4652013-07-08 18:03:46 -0700295 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700296 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
297
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800298 private Bundle mSavedInstanceState;
299
Joe Onorato9c1289c2009-08-17 11:03:03 -0400300 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800301 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700302 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800303 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700304 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800305 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400306
Sunny Goyale2df0622015-04-24 11:27:00 -0700307 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700308
Adam Cohen61f560d2013-09-30 15:58:20 -0700309 private View.OnTouchListener mHapticFeedbackTouchListener;
310
Adam Cohended9f8d2010-11-03 13:25:16 -0700311 // Related to the auto-advancing of widgets
312 private final int ADVANCE_MSG = 1;
313 private final int mAdvanceInterval = 20000;
314 private final int mAdvanceStagger = 250;
315 private long mAutoAdvanceSentTime;
316 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700317 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700318 new HashMap<View, AppWidgetProviderInfo>();
319
Winson Chung400438b2011-01-16 17:53:48 -0800320 // Determines how long to wait after a rotation before restoring the screen orientation to
321 // match the sensor state.
322 private final int mRestoreScreenOrientationDelay = 500;
323
Adam Cohen091440a2015-03-18 14:16:05 -0700324 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700325
Adam Cohen1462de32012-07-24 22:34:36 -0700326 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700327 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700328
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700329 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700330 static Date sDateStamp = new Date();
331 static DateFormat sDateFormat =
332 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
333 static long sRunStart = System.currentTimeMillis();
334 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700335
Winson Chung46353de2012-02-16 14:05:10 -0800336 // We only want to get the SharedPreferences once since it does an FS stat each time we get
337 // it from the context.
338 private SharedPreferences mSharedPrefs;
339
Winson Chungf0c6ae02012-03-21 16:10:31 -0700340 // Holds the page that we need to animate to, and the icon views that we need to animate up
341 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700342 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700343 private Bitmap mFolderIconBitmap;
344 private Canvas mFolderIconCanvas;
345 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700346
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700347 private DeviceProfile mDeviceProfile;
348
Winson Chung13eb5272015-05-11 16:30:13 -0700349 // This is set to the view that launched the activity that navigated the user away from
350 // launcher. Since there is no callback for when the activity has finished launching, enable
351 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800352 private BubbleTextView mWaitingForResume;
353
Adam Cohen59400422014-03-05 18:07:04 -0800354 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
355 new HashMap<String, CustomAppWidget>();
356
357 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
358 static {
359 if (ENABLE_CUSTOM_WIDGET_TEST) {
360 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
361 }
362 }
363
Chet Haasea8f996d2015-02-17 12:56:04 -0800364 // TODO: remove this field and call method directly when Launcher3 can depend on M APIs
365 private static Method sClipRevealMethod = null;
366 static {
367 Class<?> activityOptionsClass = ActivityOptions.class;
368 try {
369 sClipRevealMethod = activityOptionsClass.getDeclaredMethod("makeClipRevealAnimation",
370 View.class, int.class, int.class, int.class, int.class);
371 } catch (Exception e) {
372 // Earlier version
373 }
374 }
375
Adam Cohen091440a2015-03-18 14:16:05 -0700376 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700377 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700378 if (mWorkspace != null) {
379 mWorkspace.buildPageHardwareLayers();
380 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700381 }
382 };
383
Adam Cohendb364c32014-05-20 14:23:40 -0700384 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800385
Adam Cohen091440a2015-03-18 14:16:05 -0700386 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800387 int requestCode;
388 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700389 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700390 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800391 int cellX;
392 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700393 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800394 }
395
Daniel Sandlerff02d492013-08-05 02:12:05 -0400396 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700397 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700398 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400399
400 @Thunk void setOrientation() {
401 if (mRotationEnabled) {
402 unlockScreenOrientation(true);
403 } else {
404 setRequestedOrientation(
405 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700406 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400407 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700408
Sunny Goyal7779d622015-06-11 16:18:39 -0700409 private Runnable mUpdateOrientationRunnable = new Runnable() {
410 public void run() {
411 setOrientation();
412 }
413 };
414
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800415 @Override
416 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700417 if (DEBUG_STRICT_MODE) {
418 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
419 .detectDiskReads()
420 .detectDiskWrites()
421 .detectNetwork() // or .detectAll() for all detectable problems
422 .penaltyLog()
423 .build());
424 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
425 .detectLeakedSqlLiteObjects()
426 .detectLeakedClosableObjects()
427 .penaltyLog()
428 .penaltyDeath()
429 .build());
430 }
431
Adam Cohen9211d422014-10-07 18:14:53 -0700432 if (mLauncherCallbacks != null) {
433 mLauncherCallbacks.preOnCreate();
434 }
435
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800436 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400437
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400438 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400439 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700440
Adam Cohen2e6da152015-05-06 11:42:25 -0700441 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700442 mDeviceProfile = getResources().getConfiguration().orientation
443 == Configuration.ORIENTATION_LANDSCAPE ?
444 app.getInvariantDeviceProfile().landscapeProfile
445 : app.getInvariantDeviceProfile().portraitProfile;
446
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400447 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700448 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700449 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800450 mModel = app.setLauncher(this);
451 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700452
Joe Onorato41a12d22009-10-31 18:30:00 -0400453 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800454 mInflater = getLayoutInflater();
Winson Chungb745afb2015-03-02 11:51:23 -0800455 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this, this);
Romain Guycbb89e42009-06-08 15:52:54 -0700456
Daniel Sandlerff02d492013-08-05 02:12:05 -0400457 mStats = new Stats(this);
458
Sunny Goyalffe83f12014-08-14 17:39:34 -0700459 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700460
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700461 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
462 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700463
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700464 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
465 // this also ensures that any synchronous binding below doesn't re-trigger another
466 // LauncherModel load.
467 mPaused = false;
468
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800469 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200470 android.os.Debug.startMethodTracing(
471 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800472 }
473
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800474 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700475
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800476 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700477 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800478
Joe Onorato7c312c12009-08-13 21:36:53 -0700479 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700480
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800481 mSavedState = savedInstanceState;
482 restoreState(mSavedState);
483
484 if (PROFILE_STARTUP) {
485 android.os.Debug.stopMethodTracing();
486 }
487
488 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700489 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700490 // If the user leaves launcher, then we should just load items asynchronously when
491 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700492 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700493 } else {
494 // We only load the page synchronously if the user rotates (or triggers a
495 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700496 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700497 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800498 }
499
500 // For handling default keys
501 mDefaultKeySsb = new SpannableStringBuilder();
502 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800503
504 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
505 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800506
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700507 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
508 // In case we are on a device with locked rotation, we should look at preferences to check
509 // if the user has specifically allowed rotation.
510 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400511 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700512 }
513
514 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
515 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400516 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700517
Adam Cohen9211d422014-10-07 18:14:53 -0700518 if (mLauncherCallbacks != null) {
519 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700520 if (mLauncherCallbacks.hasLauncherOverlay()) {
521 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700522 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
523 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
524 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700525 mWorkspace.setLauncherOverlay(mLauncherOverlay);
526 }
Adam Cohen9211d422014-10-07 18:14:53 -0700527 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700528
529 if (shouldShowIntroScreen()) {
530 showIntroScreen();
531 } else {
532 showFirstRunActivity();
533 showFirstRunClings();
534 }
Adam Cohen9211d422014-10-07 18:14:53 -0700535 }
536
Sunny Goyal7779d622015-06-11 16:18:39 -0700537 @Override
538 public void onSettingsChanged(String settings, boolean value) {
539 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
540 mRotationEnabled = value;
541 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
542 mUpdateOrientationRunnable.run();
543 }
544 }
545 }
546
Adam Cohen9211d422014-10-07 18:14:53 -0700547 private LauncherCallbacks mLauncherCallbacks;
548
549 public void onPostCreate(Bundle savedInstanceState) {
550 super.onPostCreate(savedInstanceState);
551 if (mLauncherCallbacks != null) {
552 mLauncherCallbacks.onPostCreate(savedInstanceState);
553 }
554 }
555
556 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
557 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700558 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700559 private boolean mWorkspaceImportanceStored = false;
560 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700561 private int mWorkspaceImportanceForAccessibility =
562 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
563 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
564
565 @Override
566 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700567 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700568 return;
569 }
570 // The underlying workspace and hotseat are temporarily suppressed by the search
571 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700572 if (mWorkspace != null) {
573 mWorkspaceImportanceForAccessibility =
574 mWorkspace.getImportantForAccessibility();
575 mWorkspace.setImportantForAccessibility(
576 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
577 mWorkspaceImportanceStored = true;
578 }
579 if (mHotseat != null) {
580 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
581 mHotseat.setImportantForAccessibility(
582 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
583 mHotseatImportanceStored = true;
584 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700585 }
586
587 @Override
588 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700589 if (mWorkspaceImportanceStored && mWorkspace != null) {
590 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
591 }
592 if (mHotseatImportanceStored && mHotseat != null) {
593 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
594 }
595 mWorkspaceImportanceStored = false;
596 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700597 }
598 });
Adam Cohen9211d422014-10-07 18:14:53 -0700599 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700600 }
601
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700602 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700603 public void onLauncherProviderChange() {
604 if (mLauncherCallbacks != null) {
605 mLauncherCallbacks.onLauncherProviderChange();
606 }
607 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700608
Winson Chungef7f8742015-06-04 17:18:17 -0700609 /**
610 * Updates the bounds of all the overlays to match the new fixed bounds.
611 */
612 public void updateOverlayBounds(Rect newBounds) {
613 mAppsView.setSearchBarBounds(newBounds);
614 mWidgetsView.setSearchBarBounds(newBounds);
615 }
616
Adam Cohen9211d422014-10-07 18:14:53 -0700617 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700618 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700619 if (mLauncherCallbacks != null) {
620 return mLauncherCallbacks.hasCustomContentToLeft();
621 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700622 return false;
623 }
624
Dave Hawkeya8881582013-09-17 15:55:33 -0600625 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500626 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600627 * {@link #addToCustomContentPage}. This will only be invoked if
628 * {@link #hasCustomContentToLeft()} is {@code true}.
629 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500630 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700631 if (mLauncherCallbacks != null) {
632 mLauncherCallbacks.populateCustomContentContainer();
633 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600634 }
635
636 /**
637 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
638 * ensure the custom content page is added or removed if necessary.
639 */
640 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600641 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600642 // Not bound yet, wait for bindScreens to be called.
643 return;
644 }
645
646 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
647 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500648 mWorkspace.createCustomContentContainer();
649 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600650 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
651 mWorkspace.removeCustomContentPage();
652 }
653 }
654
Anton Hanssona2f665f2013-09-26 12:18:32 +0100655 public Stats getStats() {
656 return mStats;
657 }
658
Bjorn Bringertc459e522013-06-07 19:36:01 +0100659 public LayoutInflater getInflater() {
660 return mInflater;
661 }
662
Hyunyoung Song3f471442015-04-08 19:01:34 -0700663 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700664 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
665 // that is subsequently removed from the workspace in startBinding().
666 return !mModel.isLoadingWorkspace();
667 }
668
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800669 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000670 public static int generateViewId() {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100671 if (Build.VERSION.SDK_INT >= 17) {
672 return View.generateViewId();
673 } else {
674 // View.generateViewId() is not available. The following fallback logic is a copy
675 // of its implementation.
676 for (;;) {
677 final int result = sNextGeneratedId.get();
678 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
679 int newValue = result + 1;
680 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
681 if (sNextGeneratedId.compareAndSet(result, newValue)) {
682 return result;
683 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000684 }
685 }
686 }
687
688 public int getViewIdForItem(ItemInfo info) {
689 // This cast is safe given the > 2B range for int.
690 int itemId = (int) info.id;
691 if (mItemIdToViewId.containsKey(itemId)) {
692 return mItemIdToViewId.get(itemId);
693 }
694 int viewId = generateViewId();
695 mItemIdToViewId.put(itemId, viewId);
696 return viewId;
697 }
698
699 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700700 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
701 * a configuration step, this allows the proper animations to run after other transitions.
702 */
Adam Cohendb364c32014-05-20 14:23:40 -0700703 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700704 long screenId = args.screenId;
705 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
706 // When the screen id represents an actual screen (as opposed to a rank) we make sure
707 // that the drop page actually exists.
708 screenId = ensurePendingDropLayoutExists(args.screenId);
709 }
Adam Cohendb364c32014-05-20 14:23:40 -0700710
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800711 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800712 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700713 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700714 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700715 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800716 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700717 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700718 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700719 case REQUEST_RECONFIGURE_APPWIDGET:
720 completeRestoreAppWidget(args.appWidgetId);
721 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800722 }
Michael Jurka27614d22012-04-02 06:40:22 -0700723 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
724 // if you turned the screen off and then back while in All Apps, Launcher would not
725 // return to the workspace. Clearing mAddInfo.container here fixes this issue
726 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700727 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800728 }
729
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800730 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700731 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700732 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700733 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700734 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800735 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700736
Adam Cohenad4e15c2013-10-17 16:21:35 -0700737 Runnable exitSpringLoaded = new Runnable() {
738 @Override
739 public void run() {
740 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
741 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
742 }
743 };
744
Michael Jurka8b805b12012-04-18 14:23:14 -0700745 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700746 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700747 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
748 if (resultCode == RESULT_CANCELED) {
749 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700750 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700751 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700752 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800753 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700754 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700755 }
756 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200757 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
758 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700759 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200760 }
761 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700762 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200763
Adam Cohened66b2b2012-01-23 17:28:51 -0800764 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700765 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700766
Adam Cohendb364c32014-05-20 14:23:40 -0700767 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800768 // We have special handling for widgets
769 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800770 final int appWidgetId;
771 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
772 : -1;
773 if (widgetId < 0) {
774 appWidgetId = pendingAddWidgetId;
775 } else {
776 appWidgetId = widgetId;
777 }
778
Adam Cohenad4e15c2013-10-17 16:21:35 -0700779 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800780 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700781 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
782 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700783 result = RESULT_CANCELED;
784 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700785 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700786 @Override
787 public void run() {
788 exitSpringLoadedDragModeDelayed(false, 0, null);
789 }
790 };
Adam Cohendb364c32014-05-20 14:23:40 -0700791 if (workspaceLocked) {
792 // No need to remove the empty screen if we're mid-binding, as the
793 // the bind will not add the empty screen.
794 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
795 } else {
796 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
797 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
798 }
Winson Chung5aaab772012-04-27 15:24:02 -0700799 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700800 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700801 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
802 // When the screen id represents an actual screen (as opposed to a rank)
803 // we make sure that the drop page actually exists.
804 mPendingAddInfo.screenId =
805 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
806 }
Adam Cohendb364c32014-05-20 14:23:40 -0700807 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
808
809 dropLayout.setDropPending(true);
810 final Runnable onComplete = new Runnable() {
811 @Override
812 public void run() {
813 completeTwoStageWidgetDrop(resultCode, appWidgetId);
814 dropLayout.setDropPending(false);
815 }
816 };
817 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
818 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
819 } else {
820 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
821 mPendingAddInfo);
822 sPendingAddItem = args;
823 }
Winson Chung5aaab772012-04-27 15:24:02 -0700824 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800825 return;
826 }
827
Sunny Goyalff572272014-07-23 13:58:07 -0700828 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
829 if (resultCode == RESULT_OK) {
830 // Update the widget view.
831 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
832 pendingAddWidgetId, mPendingAddInfo);
833 if (workspaceLocked) {
834 sPendingAddItem = args;
835 } else {
836 completeAdd(args);
837 }
838 }
839 // Leave the widget in the pending state if the user canceled the configure.
840 return;
841 }
842
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800843 // The pattern used here is that a user PICKs a specific application,
844 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700845
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800846 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
847 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700848 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700849 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
850 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800851 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700852 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800853 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700854 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700855 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
856 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800857 }
Adam Cohen00074722013-10-11 17:46:09 -0700858 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700859 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700860 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800861 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800862 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800863
864 }
865
866 @Override
867 protected void onActivityResult(
868 final int requestCode, final int resultCode, final Intent data) {
869 handleActivityResult(requestCode, resultCode, data);
870 if (mLauncherCallbacks != null) {
871 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
872 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800873 }
874
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600875 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700876 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600877 int[] grantResults) {
878 if (mLauncherCallbacks != null) {
879 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
880 grantResults);
881 }
882 }
883
Adam Cohendb364c32014-05-20 14:23:40 -0700884 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
885 appWidgetId, ItemInfo info) {
886 PendingAddArguments args = new PendingAddArguments();
887 args.requestCode = requestCode;
888 args.intent = data;
889 args.container = info.container;
890 args.screenId = info.screenId;
891 args.cellX = info.cellX;
892 args.cellY = info.cellY;
893 args.appWidgetId = appWidgetId;
894 return args;
895 }
896
897 /**
898 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
899 *
900 * @param screenId the screen id to check
901 * @return the new screen, or screenId if it exists
902 */
903 private long ensurePendingDropLayoutExists(long screenId) {
904 CellLayout dropLayout =
905 (CellLayout) mWorkspace.getScreenWithId(screenId);
906 if (dropLayout == null) {
907 // it's possible that the add screen was removed because it was
908 // empty and a re-bind occurred
909 mWorkspace.addExtraEmptyScreen();
910 return mWorkspace.commitExtraEmptyScreen();
911 } else {
912 return screenId;
913 }
914 }
915
Adam Cohen091440a2015-03-18 14:16:05 -0700916 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700917 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700918 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800919 Runnable onCompleteRunnable = null;
920 int animationType = 0;
921
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700922 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800923 if (resultCode == RESULT_OK) {
924 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
925 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700926 mPendingAddWidgetInfo);
927 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800928 onCompleteRunnable = new Runnable() {
929 @Override
930 public void run() {
931 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700932 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700933 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
934 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800935 }
936 };
937 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800938 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800939 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800940 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700941 if (mDragLayer.getAnimatedView() != null) {
942 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
943 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
944 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700945 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700946 // The animated view may be null in the case of a rotation during widget configuration
947 onCompleteRunnable.run();
948 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800949 }
950
951 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700952 protected void onStop() {
953 super.onStop();
954 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700955
956 if (mLauncherCallbacks != null) {
957 mLauncherCallbacks.onStop();
958 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700959 }
960
961 @Override
962 protected void onStart() {
963 super.onStart();
964 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700965
966 if (mLauncherCallbacks != null) {
967 mLauncherCallbacks.onStart();
968 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700969 }
970
971 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800972 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200973 long startTime = 0;
974 if (DEBUG_RESUME_TIME) {
975 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400976 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200977 }
Adam Cohen9211d422014-10-07 18:14:53 -0700978
979 if (mLauncherCallbacks != null) {
980 mLauncherCallbacks.preOnResume();
981 }
982
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800983 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700984
Winson Chung4a2afa32012-07-19 14:53:05 -0700985 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700986 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700987 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800988 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700989 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700990 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700991 // view after launching an app, as they may be depending on the UI to be static to
992 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700993 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700994 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800995 } else if (mOnResumeState == State.WIDGETS) {
996 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700997 }
998 mOnResumeState = State.NONE;
999
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07001000 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -07001001 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
1002 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -07001003
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001004 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001005 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001006 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001007 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001008 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001009 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001010 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001011 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001012 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1013 // execute them here
1014 long startTimeCallbacks = 0;
1015 if (DEBUG_RESUME_TIME) {
1016 startTimeCallbacks = System.currentTimeMillis();
1017 }
1018
Michael Jurka1e2f4652013-07-08 18:03:46 -07001019 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1020 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001021 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001022 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001023 if (DEBUG_RESUME_TIME) {
1024 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1025 (System.currentTimeMillis() - startTimeCallbacks));
1026 }
Michael Jurka447bf842013-05-15 14:52:15 +02001027 }
Michael Jurka54554252013-08-01 12:52:23 +02001028 if (mOnResumeCallbacks.size() > 0) {
1029 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1030 mOnResumeCallbacks.get(i).run();
1031 }
1032 mOnResumeCallbacks.clear();
1033 }
Winson Chunge4e50662012-01-23 14:45:13 -08001034
1035 // Reset the pressed state of icons that were locked in the press state while activities
1036 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001037 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001038 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001039 mWaitingForResume.setStayPressed(false);
1040 }
Winson Chung82963d52013-10-09 11:20:57 -07001041
Adam Cohen06dff352012-06-01 17:17:08 -07001042 // It is possible that widgets can receive updates while launcher is not in the foreground.
1043 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1044 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1045 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001046 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001047 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001048
Michael Jurka447bf842013-05-15 14:52:15 +02001049 if (DEBUG_RESUME_TIME) {
1050 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1051 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001052
1053 if (mWorkspace.getCustomContentCallbacks() != null) {
1054 // If we are resuming and the custom content is the current page, we call onShow().
1055 // It is also poassible that onShow will instead be called slightly after first layout
1056 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1057 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001058 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001059 }
1060 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001061 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001062 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001063
Sunny Goyal756adbc2015-04-16 15:20:51 -07001064 if (!isWorkspaceLoading()) {
1065 // Process any items that were added while Launcher was away.
1066 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1067 }
Adam Cohen9211d422014-10-07 18:14:53 -07001068
1069 if (mLauncherCallbacks != null) {
1070 mLauncherCallbacks.onResume();
1071 }
Adam Cohen06dff352012-06-01 17:17:08 -07001072 }
1073
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001074 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001075 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001076 // Ensure that items added to Launcher are queued until Launcher returns
1077 InstallShortcutReceiver.enableInstallQueue();
1078
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001079 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001080 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001081 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001082 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001083
1084 // We call onHide() aggressively. The custom content callbacks should be able to
1085 // debounce excess onHide calls.
1086 if (mWorkspace.getCustomContentCallbacks() != null) {
1087 mWorkspace.getCustomContentCallbacks().onHide();
1088 }
Romain Guycbb89e42009-06-08 15:52:54 -07001089
Adam Cohen9211d422014-10-07 18:14:53 -07001090 if (mLauncherCallbacks != null) {
1091 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001092 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001093 }
1094
1095 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001096 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1097 // by a onResume or by scrolling otherwise.
1098 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001099
1100 // Custom content is completely hidden
1101 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001102
1103 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1104 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001105
1106 // Indicates whether the user is allowed to scroll away from the custom content.
1107 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001108 }
1109
Adam Cohenc2d6e892014-10-16 09:49:24 -07001110 public interface LauncherOverlay {
1111
1112 /**
1113 * Touch interaction leading to overscroll has begun
1114 */
1115 public void onScrollInteractionBegin();
1116
1117 /**
1118 * Touch interaction related to overscroll has ended
1119 */
1120 public void onScrollInteractionEnd();
1121
1122 /**
1123 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1124 * screen (or in the case of RTL, the rightmost screen).
1125 */
1126 public void onScrollChange(int progress, boolean rtl);
1127
1128 /**
1129 * Screen has stopped scrolling
1130 */
1131 public void onScrollSettled();
1132
1133 /**
1134 * This method can be called by the Launcher in order to force the LauncherOverlay
1135 * to exit fully immersive mode.
1136 */
1137 public void forceExitFullImmersion();
1138 }
1139
Jun Mukai8af0cd82015-05-12 12:32:12 -07001140 public interface LauncherSearchCallbacks {
1141 /**
1142 * Called when the search overlay is shown.
1143 */
1144 public void onSearchOverlayOpened();
1145
1146 /**
1147 * Called when the search overlay is dismissed.
1148 */
1149 public void onSearchOverlayClosed();
1150 }
1151
Adam Cohenc2d6e892014-10-16 09:49:24 -07001152 public interface LauncherOverlayCallbacks {
1153 /**
1154 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1155 * however it doesn't modify any state within the launcher.
1156 */
1157 public boolean canEnterFullImmersion();
1158
1159 /**
1160 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1161 * eg. by occupying the full screen and handling all touch events.
1162 *
1163 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1164 * case, Launcher will modify any necessary state and assumes the overlay is
1165 * handling all interaction. If false, the LauncherOverlay should cancel any
1166 *
1167 */
1168 public boolean enterFullImmersion();
1169
1170 /**
1171 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1172 * full control over UI and state.
1173 */
1174 public void exitFullImmersion();
1175 }
1176
1177 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1178
1179 @Override
1180 public boolean canEnterFullImmersion() {
1181 return mState == State.WORKSPACE;
1182 }
1183
1184 @Override
1185 public boolean enterFullImmersion() {
1186 if (mState == State.WORKSPACE) {
1187 // When fully immersed, disregard any touches which fall through.
1188 mDragLayer.setBlockTouch(true);
1189 return true;
1190 }
1191 return false;
1192 }
1193
1194 @Override
1195 public void exitFullImmersion() {
1196 mDragLayer.setBlockTouch(false);
1197 }
1198 }
1199
Jorim Jaggid017f882014-01-14 17:08:48 -08001200 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001201 if (mLauncherCallbacks != null) {
1202 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001203 } else {
1204 // On devices with a locked orientation, we will at least have the allow rotation
1205 // setting.
1206 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001207 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001208 }
1209
Adam Cohen9211d422014-10-07 18:14:53 -07001210 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001211 CustomContentCallbacks callbacks, String description) {
1212 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001213 }
1214
Adam Cohenedb40762013-07-18 16:45:45 -07001215 // The custom content needs to offset its content to account for the QSB
1216 public int getTopOffsetForCustomContent() {
1217 return mWorkspace.getPaddingTop();
1218 }
1219
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001220 @Override
1221 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001222 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001223 if (mModel.isCurrentCallbacks(this)) {
1224 mModel.stopLoader();
1225 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001226 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1227
Romain Guy13c2e7b2010-03-10 19:45:00 -08001228 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001229 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001230
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001231 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001232 @Override
1233 public void onWindowFocusChanged(boolean hasFocus) {
1234 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001235 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001236
1237 if (mLauncherCallbacks != null) {
1238 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1239 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001240 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001241
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001242 private boolean acceptFilter() {
1243 final InputMethodManager inputManager = (InputMethodManager)
1244 getSystemService(Context.INPUT_METHOD_SERVICE);
1245 return !inputManager.isFullscreenMode();
1246 }
1247
1248 @Override
1249 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001250 final int uniChar = event.getUnicodeChar();
1251 final boolean handled = super.onKeyDown(keyCode, event);
1252 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1253 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001254 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1255 keyCode, event);
1256 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001257 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001258 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001259 // showSearchDialog()
1260 // If there are multiple keystrokes before the search dialog takes focus,
1261 // onSearchRequested() will be called for every keystroke,
1262 // but it is idempotent, so it's fine.
1263 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001264 }
1265 }
1266
Joe Onorato8a9625e2010-01-28 15:55:35 -08001267 // Eat the long press event so the keyboard doesn't come up.
1268 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1269 return true;
1270 }
1271
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001272 return handled;
1273 }
1274
Karl Rosaen138a0412009-04-23 19:00:21 -07001275 private String getTypedText() {
1276 return mDefaultKeySsb.toString();
1277 }
1278
1279 private void clearTypedText() {
1280 mDefaultKeySsb.clear();
1281 mDefaultKeySsb.clearSpans();
1282 Selection.setSelection(mDefaultKeySsb, 0);
1283 }
1284
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001285 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001286 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1287 * State
1288 */
1289 private static State intToState(int stateOrdinal) {
1290 State state = State.WORKSPACE;
1291 final State[] stateValues = State.values();
1292 for (int i = 0; i < stateValues.length; i++) {
1293 if (stateValues[i].ordinal() == stateOrdinal) {
1294 state = stateValues[i];
1295 break;
1296 }
1297 }
1298 return state;
1299 }
1300
1301 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001302 * Restores the previous state, if it exists.
1303 *
1304 * @param savedState The previous state.
1305 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001306 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001307 private void restoreState(Bundle savedState) {
1308 if (savedState == null) {
1309 return;
1310 }
1311
Michael Jurka883f55b2010-10-21 15:47:14 -07001312 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001313 if (state == State.APPS || state == State.WIDGETS) {
1314 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001315 }
1316
Adam Cohen21cd0022013-10-09 18:57:02 -07001317 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1318 PagedView.INVALID_RESTORE_PAGE);
1319 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001320 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001321 }
1322
Winson Chung3d503fb2011-07-13 17:25:49 -07001323 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001324 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001325
Winson Chung3d503fb2011-07-13 17:25:49 -07001326 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1327 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001328 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001329 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1330 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001331 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1332 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001333 AppWidgetProviderInfo info = savedState.getParcelable(
1334 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001335 mPendingAddWidgetInfo = info == null ?
1336 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1337
Adam Cohen4637b5a2013-11-04 18:21:24 -08001338 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001339 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001340 mRestoring = true;
1341 }
1342
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001343 mItemIdToViewId = (HashMap<Integer, Integer>)
1344 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001345 }
1346
1347 /**
1348 * Finds all the views we need and configure them properly.
1349 */
1350 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001351 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001352
Craig Mautner360310b2012-10-26 15:13:08 -07001353 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001354 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001355 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1356 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001357 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001358 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001359
John Spurlock77e1f472013-09-11 10:09:51 -04001360 mLauncherView.setSystemUiVisibility(
1361 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001362 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001363
Winson Chung4c98d922011-05-31 16:50:48 -07001364 // Setup the drag layer
1365 mDragLayer.setup(this, dragController);
1366
Winson Chung3d503fb2011-07-13 17:25:49 -07001367 // Setup the hotseat
1368 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1369 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001370 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001371 }
1372
Jorim Jaggid017f882014-01-14 17:08:48 -08001373 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001374 mWidgetsButton = findViewById(R.id.widget_button);
1375 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001376 @Override
1377 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001378 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001379 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001380 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001381 }
1382 });
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001383 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001384
1385 View wallpaperButton = findViewById(R.id.wallpaper_button);
1386 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001387 @Override
1388 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001389 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001390 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001391 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001392 }
1393 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001394 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1395
1396 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001397 if (hasSettings()) {
1398 settingsButton.setOnClickListener(new OnClickListener() {
1399 @Override
1400 public void onClick(View arg0) {
1401 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001402 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001403 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001404 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001405 });
1406 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1407 } else {
1408 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001409 }
1410
Adam Cohendbdff6b2013-09-18 19:09:15 -07001411 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001412
Winson Chung4c98d922011-05-31 16:50:48 -07001413 // Setup the workspace
1414 mWorkspace.setHapticFeedbackEnabled(false);
1415 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001416 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001417 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001418
Winson Chungf0ea4d32011-06-06 14:27:16 -07001419 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001420 mSearchDropTargetBar = (SearchDropTargetBar)
1421 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001422
Winson Chungef7f8742015-06-04 17:18:17 -07001423 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001424 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001425 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001426 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1427 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1428 } else {
1429 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1430 }
Craig Mautner360310b2012-10-26 15:13:08 -07001431
Winson Chung3d503fb2011-07-13 17:25:49 -07001432 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001433 dragController.setDragScoller(mWorkspace);
1434 dragController.setScrollView(mDragLayer);
1435 dragController.setMoveTarget(mWorkspace);
1436 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001437 if (mSearchDropTargetBar != null) {
1438 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001439 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001440 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001441
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001442 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001443 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001444 mWeightWatcher = new WeightWatcher(this);
1445 mWeightWatcher.setAlpha(0.5f);
1446 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001447 new FrameLayout.LayoutParams(
1448 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001449 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001450 Gravity.BOTTOM)
1451 );
Adam Cohen39a06042013-07-19 14:30:12 -07001452
1453 boolean show = shouldShowWeightWatcher();
1454 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001455 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001456 }
1457
1458 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001459 * Sets the all apps button. This method is called from {@link Hotseat}.
1460 */
1461 public void setAllAppsButton(View allAppsButton) {
1462 mAllAppsButton = allAppsButton;
1463 }
1464
1465 public View getAllAppsButton() {
1466 return mAllAppsButton;
1467 }
1468
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001469 public View getWidgetsButton() {
1470 return mWidgetsButton;
1471 }
1472
Anjali Koppal5ad44842014-03-10 20:34:39 -07001473 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001474 * Creates a view representing a shortcut.
1475 *
1476 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001477 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001478 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001479 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001480 }
1481
1482 /**
1483 * Creates a view representing a shortcut inflated from the specified resource.
1484 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001485 * @param parent The group the shortcut belongs to.
1486 * @param info The data structure describing the shortcut.
1487 *
1488 * @return A View inflated from layoutResId.
1489 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001490 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001491 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001492 parent, false);
1493 favorite.applyFromShortcutInfo(info, mIconCache);
1494 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001495 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001496 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001497 return favorite;
1498 }
1499
1500 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001501 * Add a shortcut to the workspace.
1502 *
1503 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001504 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001505 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001506 int cellY) {
1507 int[] cellXY = mTmpAddItemCellCoordinates;
1508 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001509 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001510
Sunny Goyal5c97f512015-05-19 16:03:28 -07001511 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001512 if (info == null) {
1513 return;
1514 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001515 final View view = createShortcut(info);
1516
Sunny Goyal5c97f512015-05-19 16:03:28 -07001517 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001518 // First we check if we already know the exact location where we want to add this item.
1519 if (cellX >= 0 && cellY >= 0) {
1520 cellXY[0] = cellX;
1521 cellXY[1] = cellY;
1522 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001523
1524 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001525 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001526 true, null,null)) {
1527 return;
1528 }
1529 DragObject dragObject = new DragObject();
1530 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001531 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1532 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001533 return;
1534 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001535 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001536 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001537 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001538 foundCellSpan = (result != null);
1539 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001540 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001541 }
1542
1543 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001544 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001545 return;
1546 }
1547
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001548 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001549
1550 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001551 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001552 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001553 }
1554 }
1555
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001556 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001557 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001558 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001559 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001560 */
Adam Cohen091440a2015-03-18 14:16:05 -07001561 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001562 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1563
1564 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001565 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001566 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1567 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001568 }
Romain Guycbb89e42009-06-08 15:52:54 -07001569
Adam Cohen59400422014-03-05 18:07:04 -08001570 if (appWidgetInfo.isCustomWidget) {
1571 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001572 }
1573
Adam Cohen59400422014-03-05 18:07:04 -08001574 LauncherAppWidgetInfo launcherInfo;
1575 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1576 launcherInfo.spanX = info.spanX;
1577 launcherInfo.spanY = info.spanY;
1578 launcherInfo.minSpanX = info.minSpanX;
1579 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001580 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001581
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001582 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001583 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001584
1585 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001586 if (hostView == null) {
1587 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001588 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1589 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001590 } else {
1591 // The AppWidgetHostView has already been inflated and instantiated
1592 launcherInfo.hostView = hostView;
1593 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001594 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001595 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001596 launcherInfo.notifyWidgetSizeChanged(this);
1597
Adam Cohen59400422014-03-05 18:07:04 -08001598 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1599 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001600
1601 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001602 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001603 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001604 }
Romain Guycbb89e42009-06-08 15:52:54 -07001605
Adam Cohended9f8d2010-11-03 13:25:16 -07001606 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1607 @Override
1608 public void onReceive(Context context, Intent intent) {
1609 final String action = intent.getAction();
1610 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1611 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001612 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001613 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001614
Winson Chungc100e8e2011-08-09 16:02:43 -07001615 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001616 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001617 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001618 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001619 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001620 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001621 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1622 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001623 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001624 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1625 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001626 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001627 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1628 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1629 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001630 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001631 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1632 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001633 }
1634 }
1635 };
1636
1637 @Override
1638 public void onAttachedToWindow() {
1639 super.onAttachedToWindow();
1640
1641 // Listen for broadcasts related to user-presence
1642 final IntentFilter filter = new IntentFilter();
1643 filter.addAction(Intent.ACTION_SCREEN_OFF);
1644 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001645 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001646 if (ENABLE_DEBUG_INTENTS) {
1647 filter.addAction(DebugIntents.DELETE_DATABASE);
1648 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1649 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001650 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001651 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001652 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001653 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001654 mVisible = true;
1655 }
1656
Adam Cohen0b395352014-06-09 22:54:36 +00001657 /**
1658 * Sets up transparent navigation and status bars in LMP.
1659 * This method is a no-op for other platform versions.
1660 */
Sunny Goyald0091012015-01-20 15:55:34 -08001661 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Adam Cohen0b395352014-06-09 22:54:36 +00001662 private void setupTransparentSystemBarsForLmp() {
Kenny Guyd794a3f2014-09-16 15:17:58 +01001663 if (Utilities.isLmpOrAbove()) {
Sunny Goyald0091012015-01-20 15:55:34 -08001664 Window window = getWindow();
1665 window.getAttributes().systemUiVisibility |=
1666 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1667 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1668 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1669 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1670 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1671 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1672 window.setStatusBarColor(Color.TRANSPARENT);
1673 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001674 }
1675 }
1676
Adam Cohended9f8d2010-11-03 13:25:16 -07001677 @Override
1678 public void onDetachedFromWindow() {
1679 super.onDetachedFromWindow();
1680 mVisible = false;
1681
Adam Cohend113e0c2010-11-11 10:48:05 -08001682 if (mAttached) {
1683 unregisterReceiver(mReceiver);
1684 mAttached = false;
1685 }
Winson Chungb745afb2015-03-02 11:51:23 -08001686 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001687 }
1688
1689 public void onWindowVisibilityChanged(int visibility) {
1690 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001691 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001692 // The following code used to be in onResume, but it turns out onResume is called when
1693 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1694 // is a more appropriate event to handle
1695 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001696 if (!mWorkspaceLoading) {
1697 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001698 // We want to let Launcher draw itself at least once before we force it to build
1699 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001700 // apps is nice and speedy.
1701 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001702 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001703 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001704 if (mStarted) return;
1705 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001706 // We delay the layer building a bit in order to give
1707 // other message processing a time to run. In particular
1708 // this avoids a delay in hiding the IME if it was
1709 // currently shown, because doing that may involve
1710 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001711 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001712 final ViewTreeObserver.OnDrawListener listener = this;
1713 mWorkspace.post(new Runnable() {
1714 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001715 if (mWorkspace != null &&
1716 mWorkspace.getViewTreeObserver() != null) {
1717 mWorkspace.getViewTreeObserver().
1718 removeOnDrawListener(listener);
1719 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001720 }
1721 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001722 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001723 }
1724 });
1725 }
1726 clearTypedText();
1727 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001728 }
1729
Adam Cohen091440a2015-03-18 14:16:05 -07001730 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001731 mHandler.removeMessages(ADVANCE_MSG);
1732 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1733 mHandler.sendMessageDelayed(msg, delay);
1734 mAutoAdvanceSentTime = System.currentTimeMillis();
1735 }
1736
Adam Cohen091440a2015-03-18 14:16:05 -07001737 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001738 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1739 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1740 mAutoAdvanceRunning = autoAdvanceRunning;
1741 if (autoAdvanceRunning) {
1742 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1743 sendAdvanceMessage(delay);
1744 } else {
1745 if (!mWidgetsToAdvance.isEmpty()) {
1746 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1747 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1748 }
1749 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001750 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001751 }
1752 }
1753 }
1754
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001755 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1756
Adam Cohended9f8d2010-11-03 13:25:16 -07001757 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001758 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001759 if (msg.what == ADVANCE_MSG) {
1760 int i = 0;
1761 for (View key: mWidgetsToAdvance.keySet()) {
1762 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1763 final int delay = mAdvanceStagger * i;
1764 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001765 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001766 public void run() {
1767 ((Advanceable) v).advance();
1768 }
1769 }, delay);
1770 }
1771 i++;
1772 }
1773 sendAdvanceMessage(mAdvanceInterval);
1774 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001775 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001776 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001777 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001778
1779 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001780 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001781 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1782 if (v instanceof Advanceable) {
1783 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001784 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001785 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001786 }
1787 }
1788
1789 void removeWidgetToAutoAdvance(View hostView) {
1790 if (mWidgetsToAdvance.containsKey(hostView)) {
1791 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001792 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001793 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001794 }
1795
Joe Onorato9c1289c2009-08-17 11:03:03 -04001796 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001797 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001798 launcherInfo.hostView = null;
1799 }
1800
Hyunyoung Song3f471442015-04-08 19:01:34 -07001801 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001802 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1803 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001804 }
1805
Winson Chunga6945242014-01-08 14:04:34 -08001806 public DragLayer getDragLayer() {
1807 return mDragLayer;
1808 }
1809
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001810 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001811 return mAppsView;
1812 }
1813
Hyunyoung Song3f471442015-04-08 19:01:34 -07001814 public WidgetsContainerView getWidgetsView() {
1815 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001816 }
1817
Winson Chunga6945242014-01-08 14:04:34 -08001818 public Workspace getWorkspace() {
1819 return mWorkspace;
1820 }
1821
1822 public Hotseat getHotseat() {
1823 return mHotseat;
1824 }
1825
Jorim Jaggid017f882014-01-14 17:08:48 -08001826 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001827 return mOverviewPanel;
1828 }
1829
1830 public SearchDropTargetBar getSearchBar() {
1831 return mSearchDropTargetBar;
1832 }
1833
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001834 public LauncherAppWidgetHost getAppWidgetHost() {
1835 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001836 }
Romain Guycbb89e42009-06-08 15:52:54 -07001837
Winson Chunga9abd0e2010-10-27 17:18:37 -07001838 public LauncherModel getModel() {
1839 return mModel;
1840 }
1841
Winson Chunga6945242014-01-08 14:04:34 -08001842 protected SharedPreferences getSharedPrefs() {
1843 return mSharedPrefs;
1844 }
1845
Adam Cohen2e6da152015-05-06 11:42:25 -07001846 public DeviceProfile getDeviceProfile() {
1847 return mDeviceProfile;
1848 }
1849
Bjorn Bringertc459e522013-06-07 19:36:01 +01001850 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001851 getWindow().closeAllPanels();
1852
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001853 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001854 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001855 }
1856
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001857 @Override
1858 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001859 long startTime = 0;
1860 if (DEBUG_RESUME_TIME) {
1861 startTime = System.currentTimeMillis();
1862 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001863 super.onNewIntent(intent);
1864
1865 // Close the menu
1866 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001867 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001868 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001869
Adam Cohened307df2013-10-02 09:37:31 -07001870 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1871 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1872 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001873
Adam Cohen6fecd412013-10-02 17:41:50 -07001874 if (mWorkspace == null) {
1875 // Can be cases where mWorkspace is null, this prevents a NPE
1876 return;
1877 }
1878 Folder openFolder = mWorkspace.getOpenFolder();
1879 // In all these cases, only animate if we're already on home
1880 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001881
1882 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1883 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Adam Cohen6fecd412013-10-02 17:41:50 -07001884 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Cohen9211d422014-10-07 18:14:53 -07001885 openFolder == null && moveToDefaultScreen) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001886 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001887 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001888
Adam Cohen6fecd412013-10-02 17:41:50 -07001889 closeFolder();
1890 exitSpringLoadedDragMode();
1891
1892 // If we are already on home, then just animate back to the workspace,
1893 // otherwise, just wait until onResume to set the state back to Workspace
1894 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001895 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001896 } else {
1897 mOnResumeState = State.WORKSPACE;
1898 }
1899
1900 final View v = getWindow().peekDecorView();
1901 if (v != null && v.getWindowToken() != null) {
1902 InputMethodManager imm = (InputMethodManager)getSystemService(
1903 INPUT_METHOD_SERVICE);
1904 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1905 }
1906
Winson Chungb745afb2015-03-02 11:51:23 -08001907 // Reset the apps view
1908 if (!alreadyOnHome && mAppsView != null) {
1909 mAppsView.scrollToTop();
1910 }
1911
Hyunyoung Song3f471442015-04-08 19:01:34 -07001912 // Reset the widgets view
1913 if (!alreadyOnHome && mWidgetsView != null) {
1914 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001915 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001916
Adam Cohen9211d422014-10-07 18:14:53 -07001917 if (mLauncherCallbacks != null) {
1918 mLauncherCallbacks.onHomeIntent();
1919 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001920 }
Adam Cohened307df2013-10-02 09:37:31 -07001921
Michael Jurka447bf842013-05-15 14:52:15 +02001922 if (DEBUG_RESUME_TIME) {
1923 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1924 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001925
Adam Cohen9211d422014-10-07 18:14:53 -07001926 if (mLauncherCallbacks != null) {
1927 mLauncherCallbacks.onNewIntent(intent);
1928 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001929 }
1930
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001931 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001932 public void onRestoreInstanceState(Bundle state) {
1933 super.onRestoreInstanceState(state);
1934 for (int page: mSynchronouslyBoundPages) {
1935 mWorkspace.restoreInstanceStateForChild(page);
1936 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001937 }
1938
1939 @Override
1940 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001941 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001942 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1943 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001944 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001945 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001946
Michael Jurka883f55b2010-10-21 15:47:14 -07001947 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001948 // We close any open folder since it will not be re-opened, and we need to make sure
1949 // this state is reflected.
1950 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001951
Adam Cohendcd297f2013-06-18 13:13:40 -07001952 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001953 mWaitingForResult) {
1954 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001955 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001956 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1957 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001958 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1959 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1960 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001961 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001962 }
1963
Hyunyoung Song3f471442015-04-08 19:01:34 -07001964 // Save the current widgets tray?
1965 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001966 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001967
1968 if (mLauncherCallbacks != null) {
1969 mLauncherCallbacks.onSaveInstanceState(outState);
1970 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001971 }
1972
1973 @Override
1974 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001975 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001976
Winson Chunge7a03942011-08-05 15:05:12 -07001977 // Remove all pending runnables
1978 mHandler.removeMessages(ADVANCE_MSG);
1979 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001980 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001981
Winson Chungcd2b0142011-06-08 16:02:26 -07001982 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001983 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001984
1985 // It's possible to receive onDestroy after a new Launcher activity has
1986 // been created. In this case, don't interfere with the new Launcher.
1987 if (mModel.isCurrentCallbacks(this)) {
1988 mModel.stopLoader();
1989 app.setLauncher(null);
1990 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001991
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001992 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001993 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001994 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001995 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001996 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001997 mAppWidgetHost = null;
1998
1999 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002000
2001 TextKeyListener.getInstance().release();
2002
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002003 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002004
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002005 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002006 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002007 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002008 mWorkspace = null;
2009 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002010
Michael Jurka2ecf9952012-06-18 12:52:28 -07002011 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002012
2013 if (mLauncherCallbacks != null) {
2014 mLauncherCallbacks.onDestroy();
2015 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002016 }
2017
Adam Cohena9cf38f2011-05-02 15:36:58 -07002018 public DragController getDragController() {
2019 return mDragController;
2020 }
2021
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002022 @Override
2023 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002024 onStartForResult(requestCode);
2025 super.startActivityForResult(intent, requestCode);
2026 }
2027
2028 @Override
2029 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2030 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2031 onStartForResult(requestCode);
2032 try {
2033 super.startIntentSenderForResult(intent, requestCode,
2034 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2035 } catch (IntentSender.SendIntentException e) {
2036 throw new ActivityNotFoundException();
2037 }
2038 }
2039
2040 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002041 if (requestCode >= 0) {
2042 setWaitingForResult(true);
2043 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002044 }
2045
Winson Chung70d72102011-08-12 11:24:35 -07002046 /**
2047 * Indicates that we want global search for this activity by setting the globalSearch
2048 * argument for {@link #startSearch} to true.
2049 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002050 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002051 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002052 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002053
Karl Rosaen138a0412009-04-23 19:00:21 -07002054 if (initialQuery == null) {
2055 // Use any text typed in the launcher as the initial query
2056 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002057 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002058 if (appSearchData == null) {
2059 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002060 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002061 }
Winson Chungadf0c182012-08-23 14:59:07 -07002062 Rect sourceBounds = new Rect();
2063 if (mSearchDropTargetBar != null) {
2064 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2065 }
Romain Guycbb89e42009-06-08 15:52:54 -07002066
Ian Parkinson047036e2014-09-01 15:40:53 +01002067 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002068 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002069 if (clearTextImmediately) {
2070 clearTypedText();
2071 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002072
2073 // We need to show the workspace after starting the search
2074 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002075 }
2076
Ian Parkinson047036e2014-09-01 15:40:53 +01002077 /**
2078 * Start a text search.
2079 *
2080 * @return {@code true} if the search will start immediately, so any further keypresses
2081 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2082 * to buffer keypresses.
2083 */
2084 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002085 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002086 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2087 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2088 sourceBounds);
2089 }
2090
Michael Jurkaa33411c2012-06-14 16:18:21 -07002091 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002092 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002093 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002094 }
2095
2096 /**
2097 * Starts the global search activity. This code is a copied from SearchManager
2098 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002099 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002100 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002101 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002102 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2103 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2104 if (globalSearchActivity == null) {
2105 Log.w(TAG, "No global search activity found.");
2106 return;
2107 }
2108 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2109 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2110 intent.setComponent(globalSearchActivity);
2111 // Make sure that we have a Bundle to put source in
2112 if (appSearchData == null) {
2113 appSearchData = new Bundle();
2114 } else {
2115 appSearchData = new Bundle(appSearchData);
2116 }
Adam Cohen9211d422014-10-07 18:14:53 -07002117 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002118 if (!appSearchData.containsKey("source")) {
2119 appSearchData.putString("source", getPackageName());
2120 }
2121 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2122 if (!TextUtils.isEmpty(initialQuery)) {
2123 intent.putExtra(SearchManager.QUERY, initialQuery);
2124 }
2125 if (selectInitialQuery) {
2126 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2127 }
2128 intent.setSourceBounds(sourceBounds);
2129 try {
2130 startActivity(intent);
2131 } catch (ActivityNotFoundException ex) {
2132 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2133 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002134 }
2135
Yura4f93ec62014-02-04 14:15:21 +00002136 public boolean isOnCustomContent() {
2137 return mWorkspace.isOnOrMovingToCustomContent();
2138 }
2139
Winson Chung70d72102011-08-12 11:24:35 -07002140 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002141 public boolean onPrepareOptionsMenu(Menu menu) {
2142 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002143 if (!isOnCustomContent()) {
2144 // Close any open folders
2145 closeFolder();
2146 // Stop resizing any widgets
2147 mWorkspace.exitWidgetResizeMode();
2148 if (!mWorkspace.isInOverviewMode()) {
2149 // Show the overview mode
2150 showOverviewMode(true);
2151 } else {
2152 showWorkspace(true);
2153 }
Winson Chunge0298742014-01-17 12:03:00 -08002154 }
Adam Cohen9211d422014-10-07 18:14:53 -07002155 if (mLauncherCallbacks != null) {
2156 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2157 }
2158
Michael Jurkab94f3f82013-09-11 18:08:54 +02002159 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002160 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002161
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002162 @Override
2163 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002164 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002165 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002166 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002167 }
2168
Joe Onorato9c1289c2009-08-17 11:03:03 -04002169 public boolean isWorkspaceLocked() {
2170 return mWorkspaceLoading || mWaitingForResult;
2171 }
2172
Adam Cohen517a7f52014-03-01 12:12:59 -08002173 public boolean isWorkspaceLoading() {
2174 return mWorkspaceLoading;
2175 }
2176
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002177 private void setWorkspaceLoading(boolean value) {
2178 boolean isLocked = isWorkspaceLocked();
2179 mWorkspaceLoading = value;
2180 if (isLocked != isWorkspaceLocked()) {
2181 onWorkspaceLockedChanged();
2182 }
2183 }
2184
2185 private void setWaitingForResult(boolean value) {
2186 boolean isLocked = isWorkspaceLocked();
2187 mWaitingForResult = value;
2188 if (isLocked != isWorkspaceLocked()) {
2189 onWorkspaceLockedChanged();
2190 }
2191 }
2192
Adam Cohen9211d422014-10-07 18:14:53 -07002193 protected void onWorkspaceLockedChanged() {
2194 if (mLauncherCallbacks != null) {
2195 mLauncherCallbacks.onWorkspaceLockedChanged();
2196 }
2197 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002198
Michael Jurka0280c3b2010-09-17 15:00:07 -07002199 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002200 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002201 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002202 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2203 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002204 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002205 mPendingAddInfo.dropPos = null;
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;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002277 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002278
2279 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002280 mPendingAddInfo.cellX = cell[0];
2281 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002282 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002283
2284 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2285 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002286 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002287 }
2288
Adam Cohenfbba09b2011-07-18 21:43:05 -07002289 /**
2290 * Process a widget drop.
2291 *
2292 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002293 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002294 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002295 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002296 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2297 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002298 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002299 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002300 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002301 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002302 mPendingAddInfo.minSpanX = info.minSpanX;
2303 mPendingAddInfo.minSpanY = info.minSpanY;
2304
Adam Cohenfbba09b2011-07-18 21:43:05 -07002305 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002306 mPendingAddInfo.cellX = cell[0];
2307 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002308 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002309 if (span != null) {
2310 mPendingAddInfo.spanX = span[0];
2311 mPendingAddInfo.spanY = span[1];
2312 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002313
Adam Cohened66b2b2012-01-23 17:28:51 -08002314 AppWidgetHostView hostView = info.boundWidget;
2315 int appWidgetId;
2316 if (hostView != null) {
2317 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002318 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002319
2320 // Clear the boundWidget so that it doesn't get destroyed.
2321 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002322 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002323 // In this case, we either need to start an activity to get permission to bind
2324 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002325 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002326 Bundle options = info.bindOptions;
2327
Sunny Goyalffe83f12014-08-14 17:39:34 -07002328 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2329 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002330 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002331 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002332 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002333 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002334 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2335 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2336 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002337 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2338 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002339 // TODO: we need to make sure that this accounts for the options bundle.
2340 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002341 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2342 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002343 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002344 }
2345
Adam Cohendcd297f2013-06-18 13:13:40 -07002346 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002347 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002348 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002349 folderInfo.title = getText(R.string.folder_name);
2350
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002351 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002352 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2353 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002354 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002355
2356 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002357 FolderIcon newFolder =
2358 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002359 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002360 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002361 // Force measure the new folder icon
2362 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2363 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002364 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002365 }
Romain Guycbb89e42009-06-08 15:52:54 -07002366
Joe Onorato9c1289c2009-08-17 11:03:03 -04002367 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002368 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002369 }
2370
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002371 @Override
2372 public boolean dispatchKeyEvent(KeyEvent event) {
2373 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2374 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002375 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002376 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002377 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002378 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002379 dumpState();
2380 return true;
2381 }
2382 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002383 }
2384 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2385 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002386 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002387 return true;
2388 }
2389 }
2390
2391 return super.dispatchKeyEvent(event);
2392 }
2393
Joe Onorato88ec0992009-11-19 13:16:06 -08002394 @Override
2395 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002396 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2397 return;
2398 }
2399
Sunny Goyal45478022015-06-08 16:52:41 -07002400 if (mDragController.isDragging()) {
2401 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002402 return;
2403 }
2404
Winson Chungb745afb2015-03-02 11:51:23 -08002405 if (isAppsViewVisible()) {
2406 showWorkspace(true);
2407 } else if (isWidgetsViewVisible()) {
2408 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002409 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002410 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002411 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002412 Folder openFolder = mWorkspace.getOpenFolder();
2413 if (openFolder.isEditingName()) {
2414 openFolder.dismissEditingName();
2415 } else {
2416 closeFolder();
2417 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002418 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002419 mWorkspace.exitWidgetResizeMode();
2420
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002421 // Back button is a no-op here, but give at least some feedback for the button press
2422 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002423 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002424 }
2425
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002426 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002427 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002428 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002429 @Override
2430 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002431 if (mAppWidgetHost != null) {
2432 mAppWidgetHost.startListening();
2433 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002434 }
2435
2436 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002437 * Launches the intent referred by the clicked shortcut.
2438 *
2439 * @param v The view representing the clicked shortcut.
2440 */
2441 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002442 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2443 // view has detached (it's possible for this to happen if the view is removed mid touch).
2444 if (v.getWindowToken() == null) {
2445 return;
2446 }
2447
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002448 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002449 return;
2450 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002451
Adam Cohen1697b792013-09-17 19:08:21 -07002452 if (v instanceof Workspace) {
2453 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002454 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002455 }
2456 return;
2457 }
2458
2459 if (v instanceof CellLayout) {
2460 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002461 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002462 }
2463 }
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 */);
2537 }
2538 }
2539
2540 protected void onLongClickAllAppsButton(View v) {
2541 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2542 if (!isAppsViewVisible()) {
2543 showAppsView(true /* animated */, false /* resetListToTop */,
2544 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002545 }
2546 }
2547
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002548 private void showBrokenAppInstallDialog(final String packageName,
2549 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002550 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002551 .setTitle(R.string.abandoned_promises_title)
2552 .setMessage(R.string.abandoned_promise_explanation)
2553 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2554 .setNeutralButton(R.string.abandoned_clean_this,
2555 new DialogInterface.OnClickListener() {
2556 public void onClick(DialogInterface dialog, int id) {
2557 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2558 mWorkspace.removeAbandonedPromise(packageName, user);
2559 }
2560 })
2561 .create().show();
2562 return;
2563 }
2564
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002565 /**
2566 * Event handler for an app shortcut click.
2567 *
2568 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2569 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002570 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002571 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2572 Object tag = v.getTag();
2573 if (!(tag instanceof ShortcutInfo)) {
2574 throw new IllegalArgumentException("Input must be a Shortcut");
2575 }
2576
2577 // Open shortcut
2578 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002579
2580 if (shortcut.isDisabled != 0) {
2581 int error = R.string.activity_not_available;
2582 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2583 error = R.string.safemode_shortcut_error;
2584 }
2585 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2586 return;
2587 }
2588
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002589 final Intent intent = shortcut.intent;
2590
2591 // Check for special shortcuts
2592 if (intent.getComponent() != null) {
2593 final String shortcutClass = intent.getComponent().getClassName();
2594
2595 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2596 MemoryDumpActivity.startDump(this);
2597 return;
2598 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2599 toggleShowWeightWatcher();
2600 return;
2601 }
2602 }
2603
Chris Wren40c5ed32014-06-24 18:24:23 -04002604 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002605 if ((v instanceof BubbleTextView)
2606 && shortcut.isPromise()
2607 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002608 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002609 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002610 new DialogInterface.OnClickListener() {
2611 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002612 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002613 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002614 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002615 return;
2616 }
2617
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002618 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002619 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002620
2621 if (mLauncherCallbacks != null) {
2622 mLauncherCallbacks.onClickAppShortcut(v);
2623 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002624 }
2625
Adam Cohen091440a2015-03-18 14:16:05 -07002626 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002627 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002628 final ShortcutInfo shortcut;
2629 final Intent intent;
2630 if (tag instanceof ShortcutInfo) {
2631 shortcut = (ShortcutInfo) tag;
2632 intent = shortcut.intent;
2633 int[] pos = new int[2];
2634 v.getLocationOnScreen(pos);
2635 intent.setSourceBounds(new Rect(pos[0], pos[1],
2636 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002637
Sunny Goyal508da152014-08-14 10:53:27 -07002638 } else if (tag instanceof AppInfo) {
2639 shortcut = null;
2640 intent = ((AppInfo) tag).intent;
2641 } else {
2642 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2643 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002644
2645 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002646 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002647
2648 if (success && v instanceof BubbleTextView) {
2649 mWaitingForResume = (BubbleTextView) v;
2650 mWaitingForResume.setStayPressed(true);
2651 }
2652 }
2653
2654 /**
2655 * Event handler for a folder icon click.
2656 *
2657 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2658 */
2659 protected void onClickFolderIcon(View v) {
2660 if (LOGD) Log.d(TAG, "onClickFolder");
2661 if (!(v instanceof FolderIcon)){
2662 throw new IllegalArgumentException("Input must be a FolderIcon");
2663 }
2664
Sunny Goyal317698b2015-07-29 11:45:41 -07002665 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002666 FolderIcon folderIcon = (FolderIcon) v;
2667 final FolderInfo info = folderIcon.getFolderInfo();
2668 Folder openFolder = mWorkspace.getFolderForTag(info);
2669
2670 // If the folder info reports that the associated folder is open, then verify that
2671 // it is actually opened. There have been a few instances where this gets out of sync.
2672 if (info.opened && openFolder == null) {
2673 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2674 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2675 info.opened = false;
2676 }
2677
2678 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2679 // Close any open folder
2680 closeFolder();
2681 // Open the requested folder
2682 openFolder(folderIcon);
2683 } else {
2684 // Find the open folder...
2685 int folderScreen;
2686 if (openFolder != null) {
2687 folderScreen = mWorkspace.getPageForView(openFolder);
2688 // .. and close it
2689 closeFolder(openFolder);
2690 if (folderScreen != mWorkspace.getCurrentPage()) {
2691 // Close any folder open on the current screen
2692 closeFolder();
2693 // Pull the folder onto this screen
2694 openFolder(folderIcon);
2695 }
2696 }
2697 }
Adam Cohen9211d422014-10-07 18:14:53 -07002698
2699 if (mLauncherCallbacks != null) {
2700 mLauncherCallbacks.onClickFolderIcon(v);
2701 }
Michael Jurka5130e402011-10-13 04:55:35 -07002702 }
2703
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002704 /**
2705 * Event handler for the (Add) Widgets button that appears after a long press
2706 * on the home screen.
2707 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002708 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002709 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002710 if (mIsSafeModeEnabled) {
2711 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2712 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002713 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002714 if (mLauncherCallbacks != null) {
2715 mLauncherCallbacks.onClickAddWidgetButton(view);
2716 }
Adam Cohen9211d422014-10-07 18:14:53 -07002717 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002718 }
2719
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002720 /**
2721 * Event handler for the wallpaper picker button that appears after a long press
2722 * on the home screen.
2723 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002724 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002725 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002726 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2727 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002728
2729 if (mLauncherCallbacks != null) {
2730 mLauncherCallbacks.onClickWallpaperPicker(v);
2731 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002732 }
2733
2734 /**
2735 * Event handler for a click on the settings button that appears after a long press
2736 * on the home screen.
2737 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002738 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002739 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002740 if (mLauncherCallbacks != null) {
2741 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002742 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002743 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002744 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002745 }
2746
Adam Cohen61f560d2013-09-30 15:58:20 -07002747 public View.OnTouchListener getHapticFeedbackTouchListener() {
2748 if (mHapticFeedbackTouchListener == null) {
2749 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002750 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002751 @Override
2752 public boolean onTouch(View v, MotionEvent event) {
2753 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2754 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2755 }
2756 return false;
2757 }
2758 };
2759 }
2760 return mHapticFeedbackTouchListener;
2761 }
2762
Adam Cohen9211d422014-10-07 18:14:53 -07002763 public void onDragStarted(View view) {
2764 if (isOnCustomContent()) {
2765 // Custom content screen doesn't participate in drag and drop. If on custom
2766 // content screen, move to default.
2767 moveWorkspaceToDefaultScreen();
2768 }
2769
2770 if (mLauncherCallbacks != null) {
2771 mLauncherCallbacks.onDragStarted(view);
2772 }
2773 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002774
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002775 /**
2776 * Called when the user stops interacting with the launcher.
2777 * This implies that the user is now on the homescreen and is not doing housekeeping.
2778 */
Adam Cohen9211d422014-10-07 18:14:53 -07002779 protected void onInteractionEnd() {
2780 if (mLauncherCallbacks != null) {
2781 mLauncherCallbacks.onInteractionEnd();
2782 }
2783 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002784
2785 /**
2786 * Called when the user starts interacting with the launcher.
2787 * The possible interactions are:
2788 * - open all apps
2789 * - reorder an app shortcut, or a widget
2790 * - open the overview mode.
2791 * This is a good time to stop doing things that only make sense
2792 * when the user is on the homescreen and not doing housekeeping.
2793 */
Adam Cohen9211d422014-10-07 18:14:53 -07002794 protected void onInteractionBegin() {
2795 if (mLauncherCallbacks != null) {
2796 mLauncherCallbacks.onInteractionBegin();
2797 }
2798 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002799
Winson Chungcd99cd32015-04-29 11:03:24 -07002800 /** Updates the interaction state. */
2801 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002802 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002803 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002804 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2805 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002806 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002807 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002808 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002809 onInteractionEnd();
2810 }
2811 }
2812
Kenny Guyf07af7b2014-07-31 11:39:16 +01002813 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002814 try {
2815 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002816 launcherApps.showAppDetailsForProfile(componentName, user);
2817 } catch (SecurityException e) {
2818 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2819 Log.e(TAG, "Launcher does not have permission to launch settings");
2820 } catch (ActivityNotFoundException e) {
2821 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2822 Log.e(TAG, "Unable to launch settings");
2823 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002824 }
2825
Michael Jurka1e2f4652013-07-08 18:03:46 -07002826 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002827 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2828 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002829 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002830 // System applications cannot be installed. For now, show a toast explaining that.
2831 // We may give them the option of disabling apps this way.
2832 int messageId = R.string.uninstall_system_app_text;
2833 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002834 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002835 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002836 String packageName = componentName.getPackageName();
2837 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002838 Intent intent = new Intent(
2839 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002840 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2841 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002842 if (user != null) {
2843 user.addToIntent(intent, Intent.EXTRA_USER);
2844 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002845 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002846 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002847 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002848 }
2849
Winson Chung8f1eff72015-05-28 17:33:40 -07002850 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002851 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002852 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002853 // Only launch using the new animation if the shortcut has not opted out (this is a
2854 // private contract between launcher and may be ignored in the future).
2855 boolean useLaunchAnimation = (v != null) &&
2856 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002857 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2858 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002859
Kenny Guy1317e2d2014-05-08 18:52:50 +01002860 UserHandleCompat user = null;
2861 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2862 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2863 user = userManager.getUserForSerialNumber(serialNumber);
2864 }
2865
2866 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002867 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002868 ActivityOptions opts = null;
2869 if (sClipRevealMethod != null) {
2870 // TODO: call method directly when Launcher3 can depend on M APIs
2871 int left = 0, top = 0;
2872 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2873 if (v instanceof TextView) {
2874 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002875 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2876 if (icon != null) {
2877 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002878 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002879 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002880 width = bounds.width();
2881 height = bounds.height();
2882 }
2883 }
2884 try {
2885 opts = (ActivityOptions) sClipRevealMethod.invoke(null, v,
2886 left, top, width, height);
2887 } catch (IllegalAccessException e) {
2888 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2889 sClipRevealMethod = null;
2890 } catch (InvocationTargetException e) {
2891 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2892 sClipRevealMethod = null;
2893 }
2894 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002895 if (opts == null && !Utilities.isLmpOrAbove()) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002896 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002897 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002898 v.getMeasuredWidth(), v.getMeasuredHeight());
Adam Cohen947e02b2015-05-22 19:23:34 -07002899 } else if (opts == null && Utilities.isLmpMR1()) {
2900 // On L devices, we use the device default slide-up transition.
2901 // On L MR1 devices, we a custom version of the slide-up transition which
2902 // doesn't have the delay present in the device default.
2903 opts = ActivityOptions.makeCustomAnimation(this,
2904 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002905 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002906 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002907 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002908
2909 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2910 // Could be launching some bookkeeping activity
2911 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002912 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002913 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002914 launcherApps.startActivityForProfile(intent.getComponent(), user,
2915 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002916 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002917 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002918 } catch (SecurityException e) {
2919 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002920 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002921 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002922 "or use the exported attribute for this activity. "
2923 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002924 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002925 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002926 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002927
Sunny Goyal383c5072015-06-12 21:18:53 -07002928 @Thunk boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002929 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002930 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2931 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2932 return false;
2933 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002934 try {
2935 success = startActivity(v, intent, tag);
2936 } catch (ActivityNotFoundException e) {
2937 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2938 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2939 }
2940 return success;
2941 }
2942
Adam Cohen268c4752012-06-06 17:47:33 -07002943 /**
2944 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2945 * in the DragLayer in the exact absolute location of the original FolderIcon.
2946 */
2947 private void copyFolderIconToImage(FolderIcon fi) {
2948 final int width = fi.getMeasuredWidth();
2949 final int height = fi.getMeasuredHeight();
2950
2951 // Lazy load ImageView, Bitmap and Canvas
2952 if (mFolderIconImageView == null) {
2953 mFolderIconImageView = new ImageView(this);
2954 }
2955 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2956 mFolderIconBitmap.getHeight() != height) {
2957 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2958 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2959 }
2960
2961 DragLayer.LayoutParams lp;
2962 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2963 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2964 } else {
2965 lp = new DragLayer.LayoutParams(width, height);
2966 }
2967
Adam Cohen307fe232012-08-16 17:55:58 -07002968 // The layout from which the folder is being opened may be scaled, adjust the starting
2969 // view size by this scale factor.
2970 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002971 lp.customPosition = true;
2972 lp.x = mRectForFolderAnimation.left;
2973 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002974 lp.width = (int) (scale * width);
2975 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002976
2977 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2978 fi.draw(mFolderIconCanvas);
2979 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002980 if (fi.getFolder() != null) {
2981 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2982 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002983 }
Adam Cohen268c4752012-06-06 17:47:33 -07002984 // Just in case this image view is still in the drag layer from a previous animation,
2985 // we remove it and re-add it.
2986 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2987 mDragLayer.removeView(mFolderIconImageView);
2988 }
2989 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002990 if (fi.getFolder() != null) {
2991 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002992 }
Adam Cohen268c4752012-06-06 17:47:33 -07002993 }
2994
Adam Cohen2801caf2011-05-13 20:57:39 -07002995 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002996 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002997 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2998 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2999 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3000
Adam Cohenc51934b2011-07-26 21:07:43 -07003001 FolderInfo info = (FolderInfo) fi.getTag();
3002 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3003 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003004 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3005 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003006 }
3007
Adam Cohen268c4752012-06-06 17:47:33 -07003008 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3009 copyFolderIconToImage(fi);
3010 fi.setVisibility(View.INVISIBLE);
3011
Michael Jurka2ecf9952012-06-18 12:52:28 -07003012 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003013 scaleX, scaleY);
Kenny Guyd794a3f2014-09-16 15:17:58 +01003014 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003015 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3016 }
3017 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003018 oa.start();
3019 }
3020
Adam Cohen268c4752012-06-06 17:47:33 -07003021 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003022 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003023 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3024 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3025 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3026
Adam Cohen268c4752012-06-06 17:47:33 -07003027 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003028
Adam Cohen268c4752012-06-06 17:47:33 -07003029 // We remove and re-draw the FolderIcon in-case it has changed
3030 mDragLayer.removeView(mFolderIconImageView);
3031 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003032 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003033 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003034 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003035 oa.addListener(new AnimatorListenerAdapter() {
3036 @Override
3037 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003038 if (cl != null) {
3039 cl.clearFolderLeaveBehind();
3040 // Remove the ImageView copy of the FolderIcon and make the original visible.
3041 mDragLayer.removeView(mFolderIconImageView);
3042 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003043 }
3044 }
3045 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003046 oa.start();
3047 }
3048
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003049 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003050 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003051 * is animated relative to the specified View. If the View is null, no animation
3052 * is played.
3053 *
3054 * @param folderInfo The FolderInfo describing the folder to open.
3055 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003056 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003057 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003058 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3059 if (openFolder != null && openFolder != folder) {
3060 // Close any open folder before opening a folder.
3061 closeFolder();
3062 }
3063
Adam Cohena9cf38f2011-05-02 15:36:58 -07003064 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003065
Adam Cohena9cf38f2011-05-02 15:36:58 -07003066 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003067
Sunny Goyalf4066152015-04-15 09:42:19 -07003068 // While the folder is open, the position of the icon cannot change.
3069 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3070
Adam Cohen4554ee12011-08-03 16:13:21 -07003071 // Just verify that the folder hasn't already been added to the DragLayer.
3072 // There was a one-off crash where the folder had a parent already.
3073 if (folder.getParent() == null) {
3074 mDragLayer.addView(folder);
3075 mDragController.addDropTarget((DropTarget) folder);
3076 } else {
3077 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3078 folder.getParent() + ").");
3079 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003080 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003081 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003082
3083 // Notify the accessibility manager that this folder "window" has appeared and occluded
3084 // the workspace items
3085 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3086 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003087 }
3088
3089 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003090 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003091 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003092 if (folder.isEditingName()) {
3093 folder.dismissEditingName();
3094 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003095 closeFolder(folder);
3096 }
3097 }
3098
Sunny Goyal83a8f042015-05-19 12:52:12 -07003099 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003100 folder.getInfo().opened = false;
3101
3102 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3103 if (parent != null) {
3104 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3105 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003106 if (fi != null) {
3107 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3108 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003109 }
3110 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003111
3112 // Notify the accessibility manager that this folder "window" has disappeard and no
3113 // longer occludeds the workspace items
3114 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003115 }
3116
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003117 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003118 if (!isDraggingEnabled()) return false;
3119 if (isWorkspaceLocked()) return false;
3120 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003121
Winson Chung76648c52015-07-10 14:33:23 -07003122 if (v == mAllAppsButton) {
3123 onLongClickAllAppsButton(v);
3124 return true;
3125 }
3126
Adam Cohen1697b792013-09-17 19:08:21 -07003127 if (v instanceof Workspace) {
3128 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003129 if (!mWorkspace.isTouchActive()) {
3130 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003131 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3132 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3133 return true;
3134 } else {
3135 return false;
3136 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003137 } else {
3138 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003139 }
Adam Cohen1697b792013-09-17 19:08:21 -07003140 }
3141
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003142 CellLayout.CellInfo longClickCellInfo = null;
3143 View itemUnderLongClick = null;
3144 if (v.getTag() instanceof ItemInfo) {
3145 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003146 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003147 itemUnderLongClick = longClickCellInfo.cell;
3148 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003149 }
3150
Winson Chung3d503fb2011-07-13 17:25:49 -07003151 // The hotseat touch handling does not go through Workspace, and we always allow long press
3152 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003153 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003154 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003155 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003156 // User long pressed on empty space
3157 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3158 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003159 if (mWorkspace.isInOverviewMode()) {
3160 mWorkspace.startReordering(v);
3161 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003162 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003163 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003164 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003165 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3166 mHotseat.getOrderInHotseat(
3167 longClickCellInfo.cellX,
3168 longClickCellInfo.cellY));
3169 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003170 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003171 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003172 }
3173 }
3174 }
3175 return true;
3176 }
3177
Winson Chung3d503fb2011-07-13 17:25:49 -07003178 boolean isHotseatLayout(View layout) {
3179 return mHotseat != null && layout != null &&
3180 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3181 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003182
Winson Chung3d503fb2011-07-13 17:25:49 -07003183 /**
3184 * Returns the CellLayout of the specified container at the specified screen.
3185 */
Sunny Goyal92820592015-03-02 11:31:35 -08003186 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003187 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3188 if (mHotseat != null) {
3189 return mHotseat.getLayout();
3190 } else {
3191 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003192 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003193 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003194 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003195 }
3196 }
3197
Winson Chungb745afb2015-03-02 11:51:23 -08003198 /**
3199 * For overridden classes.
3200 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003201 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003202 return isAppsViewVisible();
3203 }
3204
3205 public boolean isAppsViewVisible() {
3206 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3207 }
3208
3209 public boolean isWidgetsViewVisible() {
3210 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003211 }
3212
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003213 private void setWorkspaceBackground(int background) {
3214 switch (background) {
3215 case WORKSPACE_BACKGROUND_TRANSPARENT:
3216 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3217 break;
3218 case WORKSPACE_BACKGROUND_BLACK:
3219 getWindow().setBackgroundDrawable(null);
3220 break;
3221 default:
3222 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3223 }
Craig Mautner360310b2012-10-26 15:13:08 -07003224 }
3225
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003226 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003227 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3228 int curflags = getWindow().getAttributes().flags
3229 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3230 if (wpflags != curflags) {
3231 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3232 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003233 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003234 }
3235
Michael Jurkae326f182011-11-21 14:05:46 -08003236 @Override
3237 public void onTrimMemory(int level) {
3238 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003239 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3240 // The widget preview db can result in holding onto over
3241 // 3MB of memory for caching which isn't necessary.
3242 SQLiteDatabase.releaseMemory();
3243
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003244 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003245 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003246 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003247 if (mLauncherCallbacks != null) {
3248 mLauncherCallbacks.onTrimMemory(level);
3249 }
Michael Jurkae326f182011-11-21 14:05:46 -08003250 }
3251
Winson Chungb745afb2015-03-02 11:51:23 -08003252 @Override
3253 public void onStateTransitionHideSearchBar() {
3254 // Hide the search bar
3255 if (mSearchDropTargetBar != null) {
3256 mSearchDropTargetBar.hideSearchBar(false /* animated */);
3257 }
Adam Cohened66b2b2012-01-23 17:28:51 -08003258 }
3259
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003260 public void showWorkspace(boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003261 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003262 }
3263
Sunny Goyal83a8f042015-05-19 12:52:12 -07003264 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003265 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003266 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003267 }
3268
3269 protected void showWorkspace(int snapToPage, boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003270 showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003271 }
3272
Winson Chungef7f8742015-06-04 17:18:17 -07003273 void showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003274 boolean changed = mState != State.WORKSPACE ||
3275 mWorkspace.getState() != Workspace.State.NORMAL;
3276 if (changed) {
Winson Chung2d75f122013-09-23 16:53:31 -07003277 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003278 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003279 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.NORMAL,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003280 snapToPage, animated, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003281
Winson Chungc7d2b602012-05-16 17:02:20 -07003282 // Show the search bar (only animate if we were showing the drop target bar in spring
3283 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003284 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003285 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003286 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003287
Michael Jurkab3e22d92011-10-31 15:58:33 -07003288 // Set focus to the AppsCustomize button
3289 if (mAllAppsButton != null) {
3290 mAllAppsButton.requestFocus();
3291 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003292 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003293
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003294 // Change the state *after* we've called all the transition code
3295 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003296
Winson Chung5fb63472011-02-02 17:03:37 -08003297 // Resume the auto-advance of widgets
3298 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003299 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003300
Winson Chung0f785722015-04-08 10:27:49 -07003301 if (changed) {
3302 // Send an accessibility event to announce the context change
3303 getWindow().getDecorView()
3304 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003305 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003306 }
3307
Adam Cohened307df2013-10-02 09:37:31 -07003308 void showOverviewMode(boolean animated) {
3309 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003310 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003311 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3312 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003313 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003314 }
3315
Winson Chungb745afb2015-03-02 11:51:23 -08003316 /**
3317 * Shows the apps view.
3318 */
Winson Chung76648c52015-07-10 14:33:23 -07003319 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3320 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003321 if (resetListToTop) {
3322 mAppsView.scrollToTop();
3323 }
Winson Chung4ac30062015-05-08 17:34:17 -07003324 if (updatePredictedApps) {
3325 tryAndUpdatePredictedApps();
3326 }
Winson Chung76648c52015-07-10 14:33:23 -07003327 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003328 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003329
Winson Chungb745afb2015-03-02 11:51:23 -08003330 /**
3331 * Shows the widgets view.
3332 */
3333 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003334 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003335 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003336 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003337 }
Winson Chung76648c52015-07-10 14:33:23 -07003338 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003339
3340 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003341 @Override
3342 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003343 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003344 }
3345 });
Winson Chungb745afb2015-03-02 11:51:23 -08003346 }
3347
3348 /**
3349 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003350 *
3351 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003352 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003353 // TODO: calling method should use the return value so that when {@code false} is returned
3354 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003355 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003356 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3357 mState != State.WIDGETS_SPRING_LOADED) {
3358 return false;
3359 }
3360 if (toState != State.APPS && toState != State.WIDGETS) {
3361 return false;
3362 }
Winson Chungb745afb2015-03-02 11:51:23 -08003363
3364 if (toState == State.APPS) {
Winson Chung76648c52015-07-10 14:33:23 -07003365 mStateTransitionAnimation.startAnimationToAllApps(animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003366 } else {
3367 mStateTransitionAnimation.startAnimationToWidgets(animated);
3368 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003369
Michael Jurkab3e22d92011-10-31 15:58:33 -07003370 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003371 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003372
3373 // Pause the auto-advance of widgets until we are out of AllApps
3374 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003375 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003376 closeFolder();
3377
3378 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003379 getWindow().getDecorView()
3380 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003381 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003382 }
3383
Winson Chungcd99cd32015-04-29 11:03:24 -07003384 /**
3385 * Updates the workspace and interaction state on state change, and return the animation to this
3386 * new state.
3387 */
3388 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chungef7f8742015-06-04 17:18:17 -07003389 boolean animated, boolean hasOverlaySearchBar, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003390 Workspace.State fromState = mWorkspace.getState();
Winson Chungef7f8742015-06-04 17:18:17 -07003391 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated,
3392 hasOverlaySearchBar, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003393 updateInteraction(fromState, toState);
3394 return anim;
3395 }
3396
Hyunyoung Song3f471442015-04-08 19:01:34 -07003397 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003398 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003399 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3400 mState == State.WIDGETS_SPRING_LOADED) {
3401 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003402 }
Winson Chungb745afb2015-03-02 11:51:23 -08003403
3404 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003405 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3406 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003407 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003408 }
Adam Cohen7777d962011-08-18 18:58:38 -07003409
Hyunyoung Song3f471442015-04-08 19:01:34 -07003410 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003411 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003412 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003413
Winson Chunge7a03942011-08-05 15:05:12 -07003414 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003415 @Override
3416 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003417 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003418 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3419 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003420 // Before we show workspace, hide all apps again because
3421 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3422 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003423 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003424 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003425 } else {
3426 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003427 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003428 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003429 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003430 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003431
Michael Jurkad3ef3062010-11-23 16:23:58 -08003432 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003433 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003434 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003435 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003436 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003437 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003438 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003439 }
3440
Winson Chung4ac30062015-05-08 17:34:17 -07003441 /**
3442 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3443 * resumed.
3444 */
3445 private void tryAndUpdatePredictedApps() {
3446 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003447 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003448 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003449 mAppsView.setPredictedApps(apps);
3450 }
3451 }
3452 }
3453
Michael Jurkab3e22d92011-10-31 15:58:33 -07003454 void lockAllApps() {
3455 // TODO
3456 }
3457
3458 void unlockAllApps() {
3459 // TODO
3460 }
3461
Sunny Goyal594d76d2014-11-06 10:12:54 -08003462 protected void disableVoiceButtonProxy(boolean disable) {
3463 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003464 }
3465
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003466 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003467 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3468 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003469 }
3470
Adam Cohen24ce0b32014-01-14 16:18:14 -08003471 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003472 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3473 if (searchProvider == null) {
3474 return null;
3475 }
3476
3477 Bundle opts = new Bundle();
3478 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003479 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003480
3481 SharedPreferences sp = getSharedPreferences(
3482 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3483 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003484 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003485 if (!searchProvider.provider.flattenToString().equals(
3486 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003487 || (widgetInfo == null)
3488 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003489 // A valid widget is not already bound.
3490 if (widgetId > -1) {
3491 mAppWidgetHost.deleteAppWidgetId(widgetId);
3492 widgetId = -1;
3493 }
3494
3495 // Try to bind a new widget
3496 widgetId = mAppWidgetHost.allocateAppWidgetId();
3497
3498 if (!AppWidgetManagerCompat.getInstance(this)
3499 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3500 mAppWidgetHost.deleteAppWidgetId(widgetId);
3501 widgetId = -1;
3502 }
3503
3504 sp.edit()
3505 .putInt(QSB_WIDGET_ID, widgetId)
3506 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3507 .commit();
3508 }
3509
Sunny Goyal8d595092015-07-06 12:22:14 -07003510 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003511 if (widgetId != -1) {
3512 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3513 mQsb.updateAppWidgetOptions(opts);
3514 mQsb.setPadding(0, 0, 0, 0);
3515 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003516 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003517 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003518 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003519 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003520 }
3521
Sunny Goyal22235bc2015-04-03 09:23:43 -07003522 private void reinflateQSBIfNecessary() {
3523 if (mQsb instanceof LauncherAppWidgetHostView &&
3524 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3525 mSearchDropTargetBar.removeView(mQsb);
3526 mQsb = null;
3527 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3528 }
3529 }
3530
Michael Jurkad7c28052012-04-27 15:43:36 -07003531 @Override
3532 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003533 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003534 final List<CharSequence> text = event.getText();
3535 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003536 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003537 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003538 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003539 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003540 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003541 } else if (mWorkspace != null) {
3542 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003543 } else {
3544 text.add(getString(R.string.all_apps_home_button_label));
3545 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003546 return result;
3547 }
3548
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003549 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003550 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003551 */
Adam Cohen091440a2015-03-18 14:16:05 -07003552 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003553 @Override
3554 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003555 closeSystemDialogs();
3556 }
3557 }
3558
3559 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003560 * If the activity is currently paused, signal that we need to run the passed Runnable
3561 * in onResume.
3562 *
3563 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003564 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3565 * wrong when we're not running, and if the activity comes back to what the configuration was
3566 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003567 *
3568 * Implementation of the method from LauncherModel.Callbacks.
3569 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003570 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003571 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003572 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003573 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003574 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003575 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003576 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003577 }
3578 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003579 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003580 return true;
3581 } else {
3582 return false;
3583 }
3584 }
3585
Michael Jurkac402cd92013-05-20 15:49:32 +02003586 private boolean waitUntilResume(Runnable run) {
3587 return waitUntilResume(run, false);
3588 }
3589
Michael Jurka1e2f4652013-07-08 18:03:46 -07003590 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003591 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003592 }
3593
Michael Jurka7607c2f2013-04-03 14:33:19 -07003594 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003595 * If the activity is currently paused, signal that we need to re-run the loader
3596 * in onResume.
3597 *
3598 * This needs to be called from incoming places where resources might have been loaded
3599 * while we are paused. That is becaues the Configuration might be wrong
3600 * when we're not running, and if it comes back to what it was when we
3601 * were paused, we are not restarted.
3602 *
3603 * Implementation of the method from LauncherModel.Callbacks.
3604 *
3605 * @return true if we are currently paused. The caller might be able to
3606 * skip some work in that case since we will come back again.
3607 */
3608 public boolean setLoadOnResume() {
3609 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003610 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003611 mOnResumeNeedsLoad = true;
3612 return true;
3613 } else {
3614 return false;
3615 }
3616 }
3617
3618 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003619 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003620 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003621 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003622 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003623 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003624 } else {
3625 return SCREEN_COUNT / 2;
3626 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003627 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003628
Joe Onorato9c1289c2009-08-17 11:03:03 -04003629 /**
3630 * Refreshes the shortcuts shown on the workspace.
3631 *
3632 * Implementation of the method from LauncherModel.Callbacks.
3633 */
3634 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003635 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003636
Michael Jurka7607c2f2013-04-03 14:33:19 -07003637 // If we're starting binding all over again, clear any bind calls we'd postponed in
3638 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3639 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003640 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003641
Winson Chungd64d1762013-08-20 14:37:16 -07003642 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003643 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003644 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003645
Michael Jurka05bf644e2011-11-30 20:28:53 -08003646 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003647 if (mHotseat != null) {
3648 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003649 }
3650 }
3651
Adam Cohendcd297f2013-06-18 13:13:40 -07003652 @Override
3653 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003654 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003655
Adam Cohen5084cba2013-09-03 12:01:16 -07003656 // If there are no screens, we need to have an empty screen
3657 if (orderedScreenIds.size() == 0) {
3658 mWorkspace.addExtraEmptyScreen();
3659 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003660
3661 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003662 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003663 if (hasCustomContentToLeft()) {
3664 mWorkspace.createCustomContentContainer();
3665 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003666 }
Winson Chung64359a52013-07-08 17:17:08 -07003667 }
3668
3669 @Override
3670 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003671 int count = orderedScreenIds.size();
3672 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003673 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003674 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003675 }
3676
Adam Cohen39a06042013-07-19 14:30:12 -07003677 private boolean shouldShowWeightWatcher() {
3678 String spKey = LauncherAppState.getSharedPreferencesKey();
3679 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003680 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003681
3682 return show;
3683 }
3684
3685 private void toggleShowWeightWatcher() {
3686 String spKey = LauncherAppState.getSharedPreferencesKey();
3687 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3688 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3689
3690 show = !show;
3691
3692 SharedPreferences.Editor editor = sp.edit();
3693 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3694 editor.commit();
3695
3696 if (mWeightWatcher != null) {
3697 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3698 }
3699 }
3700
Winson Chungd64d1762013-08-20 14:37:16 -07003701 public void bindAppsAdded(final ArrayList<Long> newScreens,
3702 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003703 final ArrayList<ItemInfo> addAnimated,
3704 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003705 Runnable r = new Runnable() {
3706 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003707 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003708 }
3709 };
3710 if (waitUntilResume(r)) {
3711 return;
3712 }
3713
Winson Chungd64d1762013-08-20 14:37:16 -07003714 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003715 if (newScreens != null) {
3716 bindAddScreens(newScreens);
3717 }
Winson Chungd64d1762013-08-20 14:37:16 -07003718
3719 // We add the items without animation on non-visible pages, and with
3720 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003721 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003722 bindItems(addNotAnimated, 0,
3723 addNotAnimated.size(), false);
3724 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003725 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003726 bindItems(addAnimated, 0,
3727 addAnimated.size(), true);
3728 }
Winson Chungc58497e2013-09-03 17:48:37 -07003729
Winson Chung87412982013-10-03 18:34:14 -07003730 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003731 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003732
Winson Chungb745afb2015-03-02 11:51:23 -08003733 if (addedApps != null && mAppsView != null) {
3734 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003735 }
Winson Chungd64d1762013-08-20 14:37:16 -07003736 }
3737
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003738 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003739 * Bind the items start-end from the list.
3740 *
3741 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003742 */
Winson Chung64359a52013-07-08 17:17:08 -07003743 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3744 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003745 Runnable r = new Runnable() {
3746 public void run() {
3747 bindItems(shortcuts, start, end, forceAnimateIcons);
3748 }
3749 };
3750 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003751 return;
3752 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003753
Winson Chungf0c6ae02012-03-21 16:10:31 -07003754 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003755 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3756 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003757 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003758 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003759 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003760 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003761 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003762
3763 // Short circuit if we are loading dock items for a configuration which has no dock
3764 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3765 mHotseat == null) {
3766 continue;
3767 }
3768
Joe Onorato9c1289c2009-08-17 11:03:03 -04003769 switch (item.itemType) {
3770 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3771 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003772 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003773 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003774
Winson Chung64359a52013-07-08 17:17:08 -07003775 /*
3776 * TODO: FIX collision case
3777 */
Winson Chungce376632013-07-11 16:12:41 -07003778 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3779 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3780 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003781 View v = cl.getChildAt(item.cellX, item.cellY);
3782 Object tag = v.getTag();
3783 String desc = "Collision while binding workspace item: " + item
3784 + ". Collides with " + tag;
3785 if (LauncherAppState.isDogfoodBuild()) {
3786 throw (new RuntimeException(desc));
3787 } else {
3788 Log.d(TAG, desc);
3789 }
Winson Chungce376632013-07-11 16:12:41 -07003790 }
Winson Chung64359a52013-07-08 17:17:08 -07003791 }
3792
Adam Cohendcd297f2013-06-18 13:13:40 -07003793 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3794 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003795 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003796 // Animate all the applications up now
3797 shortcut.setAlpha(0f);
3798 shortcut.setScaleX(0f);
3799 shortcut.setScaleY(0f);
3800 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003801 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003802 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003803 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003804 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003805 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003806 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003807 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003808 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3809 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003810 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003811 default:
3812 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003813 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003814 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003815
Winson Chung997a9232013-07-24 15:33:46 -07003816 if (animateIcons) {
3817 // Animate to the correct page
3818 if (newShortcutsScreenId > -1) {
3819 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003820 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003821 final Runnable startBounceAnimRunnable = new Runnable() {
3822 public void run() {
3823 anim.playTogether(bounceAnims);
3824 anim.start();
3825 }
3826 };
Winson Chung997a9232013-07-24 15:33:46 -07003827 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003828 // We post the animation slightly delayed to prevent slowdowns
3829 // when we are loading right after we return to launcher.
3830 mWorkspace.postDelayed(new Runnable() {
3831 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003832 if (mWorkspace != null) {
3833 mWorkspace.snapToPage(newScreenIndex);
3834 mWorkspace.postDelayed(startBounceAnimRunnable,
3835 NEW_APPS_ANIMATION_DELAY);
3836 }
Winson Chung94d67682013-09-25 16:29:40 -07003837 }
3838 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003839 } else {
3840 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003841 }
3842 }
Winson Chung64359a52013-07-08 17:17:08 -07003843 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003844 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003845 }
3846
Joe Onorato9c1289c2009-08-17 11:03:03 -04003847 /**
3848 * Implementation of the method from LauncherModel.Callbacks.
3849 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003850 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003851 Runnable r = new Runnable() {
3852 public void run() {
3853 bindFolders(folders);
3854 }
3855 };
3856 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003857 return;
3858 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003859 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003860 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003861
3862 /**
3863 * Add the views for a widget to the workspace.
3864 *
3865 * Implementation of the method from LauncherModel.Callbacks.
3866 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003867 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003868 Runnable r = new Runnable() {
3869 public void run() {
3870 bindAppWidget(item);
3871 }
3872 };
3873 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003874 return;
3875 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003876
Daniel Sandler843e8602010-06-07 14:59:01 -04003877 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3878 if (DEBUG_WIDGETS) {
3879 Log.d(TAG, "bindAppWidget: " + item);
3880 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003881 final Workspace workspace = mWorkspace;
3882
Adam Cohen59400422014-03-05 18:07:04 -08003883 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003884 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003885
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003886 if (!mIsSafeModeEnabled
3887 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
3888 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
Sunny Goyalff572272014-07-23 13:58:07 -07003889 if (appWidgetInfo == null) {
3890 if (DEBUG_WIDGETS) {
3891 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3892 + " belongs to component " + item.providerName
3893 + ", as the povider is null");
3894 }
3895 LauncherModel.deleteItemFromDatabase(this, item);
3896 return;
3897 }
3898 // Note: This assumes that the id remap broadcast is received before this step.
3899 // If that is not the case, the id remap will be ignored and user may see the
3900 // click to setup view.
Adam Cohen2e6da152015-05-06 11:42:25 -07003901 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
Sunny Goyalff572272014-07-23 13:58:07 -07003902 pendingInfo.spanX = item.spanX;
3903 pendingInfo.spanY = item.spanY;
3904 pendingInfo.minSpanX = item.minSpanX;
3905 pendingInfo.minSpanY = item.minSpanY;
Hyunyoung Song3f471442015-04-08 19:01:34 -07003906 Bundle options = null;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -07003907 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003908
Sunny Goyalff572272014-07-23 13:58:07 -07003909 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07003910 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3911 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07003912
3913 // TODO consider showing a permission dialog when the widget is clicked.
3914 if (!success) {
3915 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3916 if (DEBUG_WIDGETS) {
3917 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3918 + " belongs to component " + item.providerName
3919 + ", as the launcher is unable to bing a new widget id");
3920 }
3921 LauncherModel.deleteItemFromDatabase(this, item);
3922 return;
3923 }
3924
3925 item.appWidgetId = newWidgetId;
3926
3927 // If the widget has a configure activity, it is still needs to set it up, otherwise
3928 // the widget is ready to go.
3929 item.restoreStatus = (appWidgetInfo.configure == null)
3930 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3931 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3932
3933 LauncherModel.updateItemInDatabase(this, item);
3934 }
3935
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003936 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003937 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003938 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003939 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3940 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003941 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003942
Sunny Goyal651077b2014-06-30 14:15:31 -07003943 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07003944 item.minSpanX = appWidgetInfo.minSpanX;
3945 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07003946 } else {
3947 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003948 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3949 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003950 view.updateIcon(mIconCache);
3951 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003952 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003953 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003954 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003955
Joe Onorato9c1289c2009-08-17 11:03:03 -04003956 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003957 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003958
Adam Cohendcd297f2013-06-18 13:13:40 -07003959 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003960 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003961 if (!item.isCustomWidget()) {
3962 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3963 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003964
Joe Onorato9c1289c2009-08-17 11:03:03 -04003965 workspace.requestLayout();
3966
Daniel Sandler843e8602010-06-07 14:59:01 -04003967 if (DEBUG_WIDGETS) {
3968 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3969 + (SystemClock.uptimeMillis()-start) + "ms");
3970 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003971 }
3972
Sunny Goyalff572272014-07-23 13:58:07 -07003973 /**
3974 * Restores a pending widget.
3975 *
3976 * @param appWidgetId The app widget id
3977 * @param cellInfo The position on screen where to create the widget.
3978 */
3979 private void completeRestoreAppWidget(final int appWidgetId) {
3980 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3981 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3982 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3983 return;
3984 }
3985
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003986 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003987 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3988
3989 mWorkspace.reinflateWidgetsIfNecessary();
3990 LauncherModel.updateItemInDatabase(this, info);
3991 }
3992
Adam Cohen1462de32012-07-24 22:34:36 -07003993 public void onPageBoundSynchronously(int page) {
3994 mSynchronouslyBoundPages.add(page);
3995 }
3996
Joe Onorato9c1289c2009-08-17 11:03:03 -04003997 /**
3998 * Callback saying that there aren't any more items to bind.
3999 *
4000 * Implementation of the method from LauncherModel.Callbacks.
4001 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004002 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004003 Runnable r = new Runnable() {
4004 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004005 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004006 }
4007 };
4008 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004009 return;
4010 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004011 if (mSavedState != null) {
4012 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004013 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004014 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004015 mSavedState = null;
4016 }
4017
Adam Cohen1462de32012-07-24 22:34:36 -07004018 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004019
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004020 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004021 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004022
4023 // If we received the result of any pending adds while the loader was running (e.g. the
4024 // widget configuration forced an orientation change), process them now.
4025 if (sPendingAddItem != null) {
4026 final long screenId = completeAdd(sPendingAddItem);
4027
4028 // TODO: this moves the user to the page where the pending item was added. Ideally,
4029 // the screen would be guaranteed to exist after bind, and the page would be set through
4030 // the workspace restore process.
4031 mWorkspace.post(new Runnable() {
4032 @Override
4033 public void run() {
4034 mWorkspace.snapToScreenId(screenId);
4035 }
4036 });
4037 sPendingAddItem = null;
4038 }
4039
Sunny Goyal756adbc2015-04-16 15:20:51 -07004040 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004041
4042 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004043 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004044 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004045 }
4046
Adam Cohen3ed316a2014-07-23 18:21:20 -07004047 private void sendLoadingCompleteBroadcastIfNecessary() {
4048 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4049 String permission =
4050 getResources().getString(R.string.receive_first_load_broadcast_permission);
4051 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4052 sendBroadcast(intent, permission);
4053 SharedPreferences.Editor editor = mSharedPrefs.edit();
4054 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4055 editor.apply();
4056 }
4057 }
4058
Winson Chunga0b7e862013-09-05 16:03:15 -07004059 public boolean isAllAppsButtonRank(int rank) {
4060 if (mHotseat != null) {
4061 return mHotseat.isAllAppsButtonRank(rank);
4062 }
4063 return false;
4064 }
4065
Winson Chunga2413752012-04-03 14:22:34 -07004066 private boolean canRunNewAppsAnimation() {
4067 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4068 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4069 }
4070
Winson Chungc9168342013-06-26 14:54:55 -07004071 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4072 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4073 PropertyValuesHolder.ofFloat("alpha", 1f),
4074 PropertyValuesHolder.ofFloat("scaleX", 1f),
4075 PropertyValuesHolder.ofFloat("scaleY", 1f));
4076 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4077 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004078 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004079 return bounceAnim;
4080 }
4081
Adam Cohen27772732013-11-11 14:00:56 +00004082 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004083 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004084 }
4085
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004086 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004087 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004088 }
4089
Winson Chung88fa7412015-08-03 14:25:28 -07004090 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004091 if (mSearchDropTargetBar == null) {
4092 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004093 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004094 if (mQsb != null) {
4095 mSearchDropTargetBar.removeView(mQsb);
4096 mQsb = null;
4097 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004098 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004099 }
4100
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004101 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004102 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4103 * multiple calls to bind the same list.)
4104 */
4105 @Thunk ArrayList<AppInfo> mTmpAppsList;
4106 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4107 public void run() {
4108 bindAllApplications(mTmpAppsList);
4109 mTmpAppsList = null;
4110 }
4111 };
4112
4113 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004114 * Add the icons for all apps.
4115 *
4116 * Implementation of the method from LauncherModel.Callbacks.
4117 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004118 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004119 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4120 mTmpAppsList = apps;
4121 return;
4122 }
4123
Winson Chungb745afb2015-03-02 11:51:23 -08004124 if (mAppsView != null) {
4125 mAppsView.setApps(apps);
4126 }
Adam Cohen9211d422014-10-07 18:14:53 -07004127 if (mLauncherCallbacks != null) {
4128 mLauncherCallbacks.bindAllApplications(apps);
4129 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004130 }
4131
4132 /**
4133 * A package was updated.
4134 *
4135 * Implementation of the method from LauncherModel.Callbacks.
4136 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004137 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004138 Runnable r = new Runnable() {
4139 public void run() {
4140 bindAppsUpdated(apps);
4141 }
4142 };
4143 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004144 return;
4145 }
4146
Winson Chungb745afb2015-03-02 11:51:23 -08004147 if (mAppsView != null) {
4148 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004149 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004150 }
4151
Sunny Goyal4390ace2014-10-13 11:33:11 -07004152 @Override
4153 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4154 Runnable r = new Runnable() {
4155 public void run() {
4156 bindWidgetsRestored(widgets);
4157 }
4158 };
4159 if (waitUntilResume(r)) {
4160 return;
4161 }
4162 mWorkspace.widgetsRestored(widgets);
4163 }
4164
Joe Onorato9c1289c2009-08-17 11:03:03 -04004165 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004166 * Some shortcuts were updated in the background.
4167 *
4168 * Implementation of the method from LauncherModel.Callbacks.
4169 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004170 @Override
4171 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4172 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004173 Runnable r = new Runnable() {
4174 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004175 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004176 }
4177 };
4178 if (waitUntilResume(r)) {
4179 return;
4180 }
4181
Sunny Goyal4390ace2014-10-13 11:33:11 -07004182 if (!updated.isEmpty()) {
4183 mWorkspace.updateShortcuts(updated);
4184 }
4185
4186 if (!removed.isEmpty()) {
4187 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4188 for (ShortcutInfo si : removed) {
4189 removedComponents.add(si.getTargetComponent());
4190 }
4191 mWorkspace.removeItemsByComponentName(removedComponents, user);
4192 // Notify the drag controller
4193 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004194 }
4195 }
4196
4197 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004198 * Update the state of a package, typically related to install state.
4199 *
4200 * Implementation of the method from LauncherModel.Callbacks.
4201 */
Sunny Goyale755d462014-07-22 13:48:29 -07004202 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004203 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4204 Runnable r = new Runnable() {
4205 public void run() {
4206 bindRestoreItemsChange(updates);
4207 }
4208 };
4209 if (waitUntilResume(r)) {
4210 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004211 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004212
Sunny Goyal756adbc2015-04-16 15:20:51 -07004213 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004214 }
4215
4216 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004217 * A package was uninstalled. We take both the super set of packageNames
4218 * in addition to specific applications to remove, the reason being that
4219 * this can be called when a package is updated as well. In that scenario,
4220 * we only remove specific components from the workspace, where as
4221 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004222 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004223 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004224 * Implementation of the method from LauncherModel.Callbacks.
4225 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004226 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004227 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004228 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004229 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004230 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004231 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004232 }
Winson Chungd64d1762013-08-20 14:37:16 -07004233 };
4234 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004235 return;
4236 }
4237
Sunny Goyal1a745e82014-10-02 15:58:31 -07004238 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004239 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4240 for (AppInfo info : appInfos) {
4241 removedComponents.add(info.componentName);
4242 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004243 if (!packageNames.isEmpty()) {
4244 mWorkspace.removeItemsByPackageName(packageNames, user);
4245 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004246 if (!removedComponents.isEmpty()) {
4247 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004248 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004249 // Notify the drag controller
4250 mDragController.onAppsRemoved(packageNames, removedComponents);
4251
Sunny Goyal1a745e82014-10-02 15:58:31 -07004252 } else {
4253 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004254 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004255
Winson Chungdf95eb12013-10-16 14:57:07 -07004256 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004257 if (mAppsView != null) {
4258 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004259 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004260 }
Joe Onoratobe386092009-11-17 17:32:16 -08004261
Michael Jurkac402cd92013-05-20 15:49:32 +02004262 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004263 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004264 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004265 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004266 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004267
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004268 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004269 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004270 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004271 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004272 return;
4273 }
4274
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004275 if (mWidgetsView != null && model != null) {
4276 mWidgetsView.addWidgets(model);
4277 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004278 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004279 }
4280
Winson Chung400438b2011-01-16 17:53:48 -08004281 private int mapConfigurationOriActivityInfoOri(int configOri) {
4282 final Display d = getWindowManager().getDefaultDisplay();
4283 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4284 switch (d.getRotation()) {
4285 case Surface.ROTATION_0:
4286 case Surface.ROTATION_180:
4287 // We are currently in the same basic orientation as the natural orientation
4288 naturalOri = configOri;
4289 break;
4290 case Surface.ROTATION_90:
4291 case Surface.ROTATION_270:
4292 // We are currently in the other basic orientation to the natural orientation
4293 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4294 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4295 break;
4296 }
4297
4298 int[] oriMap = {
4299 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4300 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4301 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4302 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4303 };
4304 // Since the map starts at portrait, we need to offset if this device's natural orientation
4305 // is landscape.
4306 int indexOffset = 0;
4307 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4308 indexOffset = 1;
4309 }
4310 return oriMap[(d.getRotation() + indexOffset) % 4];
4311 }
Adam Cohen446e9402011-09-15 18:21:21 -07004312
Winson Chung4b919f82012-05-01 10:44:08 -07004313 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004314 if (mRotationEnabled) {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004315 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
4316 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4317 .getConfiguration().orientation));
4318 } else {
4319 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4320 }
Winson Chung4b919f82012-05-01 10:44:08 -07004321 }
4322 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004323
Winson Chung4b919f82012-05-01 10:44:08 -07004324 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004325 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004326 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004327 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004328 } else {
4329 mHandler.postDelayed(new Runnable() {
4330 public void run() {
4331 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4332 }
4333 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004334 }
Winson Chung4b919f82012-05-01 10:44:08 -07004335 }
Winson Chung400438b2011-01-16 17:53:48 -08004336 }
4337
Winson Chunge43a1e72014-01-15 10:33:02 -08004338 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004339 if (mLauncherCallbacks != null) {
4340 return mLauncherCallbacks.isLauncherPreinstalled();
4341 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004342 PackageManager pm = getPackageManager();
4343 try {
4344 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4345 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4346 return true;
4347 } else {
4348 return false;
4349 }
4350 } catch (NameNotFoundException e) {
4351 e.printStackTrace();
4352 return false;
4353 }
4354 }
4355
Adam Cohenea90f832014-05-21 15:03:34 -07004356 /**
4357 * This method indicates whether or not we should suggest default wallpaper dimensions
4358 * when our wallpaper cropper was not yet used to set a wallpaper.
4359 */
4360 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004361 if (mLauncherCallbacks != null) {
4362 return mLauncherCallbacks.overrideWallpaperDimensions();
4363 }
Adam Cohenea90f832014-05-21 15:03:34 -07004364 return true;
4365 }
4366
Adam Cohen432609a2014-03-13 17:03:22 -07004367 /**
4368 * To be overridden by subclasses to indicate that there is an activity to launch
4369 * before showing the standard launcher experience.
4370 */
4371 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004372 if (mLauncherCallbacks != null) {
4373 return mLauncherCallbacks.hasFirstRunActivity();
4374 }
Adam Cohen432609a2014-03-13 17:03:22 -07004375 return false;
4376 }
4377
4378 /**
4379 * To be overridden by subclasses to launch any first run activity
4380 */
4381 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004382 if (mLauncherCallbacks != null) {
4383 return mLauncherCallbacks.getFirstRunActivity();
4384 }
Adam Cohen432609a2014-03-13 17:03:22 -07004385 return null;
4386 }
4387
Winson Chunga6945242014-01-08 14:04:34 -08004388 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004389 return !ActivityManager.isRunningInTestHarness() &&
4390 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004391 }
4392
Adam Cohen4a9423d2014-03-28 14:22:31 -07004393 protected boolean hasRunFirstRunActivity() {
4394 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4395 }
4396
Adam Cohen432609a2014-03-13 17:03:22 -07004397 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004398 if (shouldRunFirstRunActivity() &&
4399 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004400 Intent firstRunIntent = getFirstRunActivity();
4401 if (firstRunIntent != null) {
4402 startActivity(firstRunIntent);
4403 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004404 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004405 }
4406 }
Adam Cohen432609a2014-03-13 17:03:22 -07004407 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004408 }
4409
4410 private void markFirstRunActivityShown() {
4411 SharedPreferences.Editor editor = mSharedPrefs.edit();
4412 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4413 editor.apply();
4414 }
4415
Adam Cohen432609a2014-03-13 17:03:22 -07004416 /**
4417 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4418 * screen that must be displayed and dismissed.
4419 */
4420 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004421 if (mLauncherCallbacks != null) {
4422 return mLauncherCallbacks.hasDismissableIntroScreen();
4423 }
Adam Cohen432609a2014-03-13 17:03:22 -07004424 return false;
4425 }
4426
4427 /**
4428 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4429 */
4430 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004431 if (mLauncherCallbacks != null) {
4432 return mLauncherCallbacks.getIntroScreen();
4433 }
Adam Cohen432609a2014-03-13 17:03:22 -07004434 return null;
4435 }
4436
4437 /**
4438 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4439 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4440 */
4441 private boolean shouldShowIntroScreen() {
4442 return hasDismissableIntroScreen() &&
4443 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4444 }
4445
4446 protected void showIntroScreen() {
4447 View introScreen = getIntroScreen();
4448 changeWallpaperVisiblity(false);
4449 if (introScreen != null) {
4450 mDragLayer.showOverlayView(introScreen);
4451 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004452 if (mLauncherOverlayContainer != null) {
4453 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4454 }
Adam Cohen432609a2014-03-13 17:03:22 -07004455 }
4456
4457 public void dismissIntroScreen() {
4458 markIntroScreenDismissed();
4459 if (showFirstRunActivity()) {
4460 // We delay hiding the intro view until the first run activity is showing. This
4461 // avoids a blip.
4462 mWorkspace.postDelayed(new Runnable() {
4463 @Override
4464 public void run() {
4465 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004466 if (mLauncherOverlayContainer != null) {
4467 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4468 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004469 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004470 }
4471 }, ACTIVITY_START_DELAY);
4472 } else {
4473 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004474 if (mLauncherOverlayContainer != null) {
4475 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4476 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004477 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004478 }
4479 changeWallpaperVisiblity(true);
4480 }
4481
4482 private void markIntroScreenDismissed() {
4483 SharedPreferences.Editor editor = mSharedPrefs.edit();
4484 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4485 editor.apply();
4486 }
4487
Adam Cohen091440a2015-03-18 14:16:05 -07004488 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004489 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4490 // on the device, then we always show the first run cling experience (or if there is no
4491 // launcher2). Otherwise, we prompt the user upon started for migration
4492 LauncherClings launcherClings = new LauncherClings(this);
4493 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4494 if (mModel.canMigrateFromOldLauncherDb(this)) {
4495 launcherClings.showMigrationCling();
4496 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004497 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004498 }
4499 }
4500 }
4501
Winson Chunga6945242014-01-08 14:04:34 -08004502 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004503 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4504 if (mHotseat != null) mHotseat.setAlpha(1f);
4505 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
4506 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004507 }
4508
4509 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004510 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4511 if (mHotseat != null) mHotseat.setAlpha(0f);
4512 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
4513 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004514 }
4515
Winson Chung5ffd51d2015-06-25 11:36:50 -07004516 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004517 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004518 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004519 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004520 UserHandleCompat user = null;
4521 if (Utilities.isLmpOrAbove()) {
4522 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4523 if (userHandle != null) {
4524 user = UserHandleCompat.fromUser(userHandle);
4525 }
4526 }
4527 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004528 }
4529
4530 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004531 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004532 if (user == null) {
4533 user = UserHandleCompat.myUserHandle();
4534 }
4535
4536 // Called from search suggestion, add the profile extra to the intent to ensure that we
4537 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004538 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004539 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004540 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004541 return null;
4542 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004543 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004544 }
4545
Winson Chung5ffd51d2015-06-25 11:36:50 -07004546 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004547 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4548 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004549 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004550 UserHandleCompat.myUserHandle());
4551 }
4552
Winson Chung5ffd51d2015-06-25 11:36:50 -07004553 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004554 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4555 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004556 mWorkspace.onExternalDragStartedWithItem(dragView);
4557 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004558 }
4559
Winson Chung5ffd51d2015-06-25 11:36:50 -07004560 protected void moveWorkspaceToDefaultScreen() {
4561 mWorkspace.moveToDefaultScreen(false);
4562 }
4563
Anjali Koppalf5d29132014-02-28 13:33:27 -08004564 @Override
4565 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004566 if (mLauncherCallbacks != null) {
4567 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4568 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004569 }
4570
Winson Chung80baf5a2010-08-09 16:03:15 -07004571 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004572 * Returns a FastBitmapDrawable with the icon, accurately sized.
4573 */
4574 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4575 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4576 d.setFilterBitmap(true);
4577 resizeIconDrawable(d);
4578 return d;
4579 }
4580
4581 /**
4582 * Resizes an icon drawable to the correct icon size.
4583 */
4584 public void resizeIconDrawable(Drawable icon) {
4585 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4586 }
4587
4588 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004589 * Prints out out state for debugging.
4590 */
4591 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004592 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004593 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004594 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4595 Log.d(TAG, "mRestoring=" + mRestoring);
4596 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4597 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004598 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004599 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004600 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004601
Daniel Sandler325dc232013-06-05 22:57:57 -04004602 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004603 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004604
4605 @Override
4606 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4607 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004608 synchronized (sDumpLogs) {
4609 writer.println(" ");
4610 writer.println("Debug logs: ");
4611 for (int i = 0; i < sDumpLogs.size(); i++) {
4612 writer.println(" " + sDumpLogs.get(i));
4613 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004614 }
Adam Cohen9211d422014-10-07 18:14:53 -07004615 if (mLauncherCallbacks != null) {
4616 mLauncherCallbacks.dump(prefix, fd, writer, args);
4617 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004618 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004619
4620 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004621 if (DEBUG_DUMP_LOG) {
4622 synchronized (sDumpLogs) {
4623 Log.d(TAG, "");
4624 Log.d(TAG, "*********************");
4625 Log.d(TAG, "Launcher debug logs: ");
4626 for (int i = 0; i < sDumpLogs.size(); i++) {
4627 Log.d(TAG, " " + sDumpLogs.get(i));
4628 }
4629 Log.d(TAG, "*********************");
4630 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004631 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004632 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004633 }
4634
4635 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004636 addDumpLog(tag, log, null, debugLog);
4637 }
4638
4639 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004640 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004641 if (e != null) {
4642 Log.d(tag, log, e);
4643 } else {
4644 Log.d(tag, log);
4645 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004646 }
Winson Chungede41292013-09-19 16:27:36 -07004647 if (DEBUG_DUMP_LOG) {
4648 sDateStamp.setTime(System.currentTimeMillis());
4649 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004650 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4651 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004652 }
Winson Chungede41292013-09-19 16:27:36 -07004653 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004654 }
4655
Adam Cohen59400422014-03-05 18:07:04 -08004656 public static CustomAppWidget getCustomAppWidget(String name) {
4657 return sCustomAppWidgets.get(name);
4658 }
4659
4660 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4661 return sCustomAppWidgets;
4662 }
4663
Winson Chungede41292013-09-19 16:27:36 -07004664 public void dumpLogsToLocalData() {
4665 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004666 new AsyncTask<Void, Void, Void>() {
4667 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004668 boolean success = false;
4669 sDateStamp.setTime(sRunStart);
4670 String FILENAME = sDateStamp.getMonth() + "-"
4671 + sDateStamp.getDay() + "_"
4672 + sDateStamp.getHours() + "-"
4673 + sDateStamp.getMinutes() + "_"
4674 + sDateStamp.getSeconds() + ".txt";
4675
4676 FileOutputStream fos = null;
4677 File outFile = null;
4678 try {
4679 outFile = new File(getFilesDir(), FILENAME);
4680 outFile.createNewFile();
4681 fos = new FileOutputStream(outFile);
4682 } catch (Exception e) {
4683 e.printStackTrace();
4684 }
4685 if (fos != null) {
4686 PrintWriter writer = new PrintWriter(fos);
4687
4688 writer.println(" ");
4689 writer.println("Debug logs: ");
4690 synchronized (sDumpLogs) {
4691 for (int i = 0; i < sDumpLogs.size(); i++) {
4692 writer.println(" " + sDumpLogs.get(i));
4693 }
4694 }
4695 writer.close();
4696 }
4697 try {
4698 if (fos != null) {
4699 fos.close();
4700 success = true;
4701 }
4702 } catch (IOException e) {
4703 e.printStackTrace();
4704 }
Michael Jurka43467462013-11-14 12:03:58 +01004705 return null;
Winson Chungede41292013-09-19 16:27:36 -07004706 }
Michael Jurka43467462013-11-14 12:03:58 +01004707 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004708 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004709 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004710}
Michael Jurka2763be32011-02-24 11:19:57 -08004711
Dan Sandlerd5024042014-01-09 15:01:33 -05004712interface DebugIntents {
4713 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4714 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004715}