blob: 6be6103201c197bca4105f587ef7aadd685f59c8 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Gilles Debunnedd6c9922010-10-25 11:23:41 -070019import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080020import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070021import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070022import android.animation.ObjectAnimator;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070023import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070024import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000025import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070026import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070027import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070028import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040029import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080031import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070032import android.appwidget.AppWidgetManager;
33import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080035import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080036import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040037import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040039import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070041import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070042import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070043import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070044import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080045import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070047import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070049import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070050import android.graphics.Bitmap;
51import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070052import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070053import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070054import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070055import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070056import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040057import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070058import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020059import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020061import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080062import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070063import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070064import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040065import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070066import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067import android.text.Selection;
68import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070069import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070071import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070072import android.view.Display;
73import android.view.Gravity;
74import android.view.HapticFeedbackConstants;
75import android.view.KeyEvent;
76import android.view.LayoutInflater;
77import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070078import android.view.MotionEvent;
79import android.view.Surface;
80import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070081import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080082import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070083import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070084import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070086import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070087import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080088import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070089import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070091import android.widget.Advanceable;
92import android.widget.FrameLayout;
93import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080094import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070095import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070096
Sunny Goyal651077b2014-06-30 14:15:31 -070097import com.android.launcher3.DropTarget.DragObject;
98import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -070099import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700100import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100101import com.android.launcher3.compat.LauncherActivityInfoCompat;
102import com.android.launcher3.compat.LauncherAppsCompat;
103import com.android.launcher3.compat.UserHandleCompat;
104import com.android.launcher3.compat.UserManagerCompat;
Sunny Goyal6c56c682015-07-16 14:09:05 -0700105import com.android.launcher3.config.ProviderConfig;
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
Michael Jurka0a457bf2012-11-19 14:05:05 -0800168 // To turn on these properties, type
169 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800170 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800171
Winson Chung2672ff92012-05-04 16:22:30 -0700172 // The Intent extra that defines whether to ignore the launch animation
173 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400174 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700175
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176 // Type: int
177 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700178 // Type: int
179 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700181 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
182 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800183 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
184 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700185 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800186 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700187 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700188 // Type: int
189 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
190 // Type: int
191 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
192 // Type: parcelable
193 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000194 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800195 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000196 // Type: int[]
197 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800198
Adam Cohen432609a2014-03-13 17:03:22 -0700199 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800200 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
201
Adam Cohen3ed316a2014-07-23 18:21:20 -0700202 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
203 static final String ACTION_FIRST_LOAD_COMPLETE =
204 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
205
Adam Cohen39a06042013-07-19 14:30:12 -0700206 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700207 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700208
Sunny Goyal594d76d2014-11-06 10:12:54 -0800209 private static final String QSB_WIDGET_ID = "qsb_widget_id";
210 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
211
Winson Chunga6945242014-01-08 14:04:34 -0800212 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
213
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700214 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700215 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
216
Adam Cohen091440a2015-03-18 14:16:05 -0700217 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700218 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700219
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700220 private boolean mIsSafeModeEnabled;
221
Adam Cohenc2d6e892014-10-16 09:49:24 -0700222 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
223 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700224 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700225
Joe Onorato9c1289c2009-08-17 11:03:03 -0400226 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700227 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
228 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700229 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800230
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000231 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
232 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
233
Winson Chunga2413752012-04-03 14:22:34 -0700234 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700235 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
236 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700237 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700238
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800239 private final BroadcastReceiver mCloseSystemDialogsReceiver
240 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800241
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800242 private LayoutInflater mInflater;
243
Adam Cohen091440a2015-03-18 14:16:05 -0700244 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700245 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800246 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700247 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800248 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700249 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700250
Sunny Goyalffe83f12014-08-14 17:39:34 -0700251 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700252 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700253
Sunny Goyalaa8ef112015-06-12 20:04:41 -0700254 @Thunk final ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800255 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800256 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700257
Michael Jurka0280c3b2010-09-17 15:00:07 -0700258 private int[] mTmpAddItemCellCoordinates = new int[2];
259
Sunny Goyal316490e2015-06-02 09:38:28 -0700260 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800261 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700262
Michael Jurka838a4ca2011-02-07 13:33:06 -0800263 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700264 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700265
Winson Chungc51db6a2011-10-05 11:44:49 -0700266 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700267
268 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700269 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700270
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700271 // Main container view and the model for the widget tray screen.
272 @Thunk WidgetsContainerView mWidgetsView;
273 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700274
Winson Chungf0ea4d32011-06-06 14:27:16 -0700275 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800276 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800277
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800278 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700279 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
280 // scroll issues (because the workspace may not have been measured yet) and extra work.
281 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
282 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800283
284 private SpannableStringBuilder mDefaultKeySsb = null;
285
Adam Cohen091440a2015-03-18 14:16:05 -0700286 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400287
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800288 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800289 private boolean mRestoring;
290 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700291 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800292
Michael Jurka1e2f4652013-07-08 18:03:46 -0700293 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700294 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
295
Joe Onorato9c1289c2009-08-17 11:03:03 -0400296 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800297 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700298 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800299 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700300 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800301 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400302
Sunny Goyale2df0622015-04-24 11:27:00 -0700303 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700304
Adam Cohen61f560d2013-09-30 15:58:20 -0700305 private View.OnTouchListener mHapticFeedbackTouchListener;
306
Adam Cohended9f8d2010-11-03 13:25:16 -0700307 // Related to the auto-advancing of widgets
308 private final int ADVANCE_MSG = 1;
309 private final int mAdvanceInterval = 20000;
310 private final int mAdvanceStagger = 250;
311 private long mAutoAdvanceSentTime;
312 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700313 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700314 new HashMap<View, AppWidgetProviderInfo>();
315
Winson Chung400438b2011-01-16 17:53:48 -0800316 // Determines how long to wait after a rotation before restoring the screen orientation to
317 // match the sensor state.
318 private final int mRestoreScreenOrientationDelay = 500;
319
Adam Cohen091440a2015-03-18 14:16:05 -0700320 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700321
Adam Cohen1462de32012-07-24 22:34:36 -0700322 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700323 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700324
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700325 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700326 static Date sDateStamp = new Date();
327 static DateFormat sDateFormat =
328 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
329 static long sRunStart = System.currentTimeMillis();
330 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700331
Winson Chung46353de2012-02-16 14:05:10 -0800332 // We only want to get the SharedPreferences once since it does an FS stat each time we get
333 // it from the context.
334 private SharedPreferences mSharedPrefs;
335
Winson Chungf0c6ae02012-03-21 16:10:31 -0700336 // Holds the page that we need to animate to, and the icon views that we need to animate up
337 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700338 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700339 private Bitmap mFolderIconBitmap;
340 private Canvas mFolderIconCanvas;
341 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700342
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700343 private DeviceProfile mDeviceProfile;
344
Winson Chung13eb5272015-05-11 16:30:13 -0700345 // This is set to the view that launched the activity that navigated the user away from
346 // launcher. Since there is no callback for when the activity has finished launching, enable
347 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800348 private BubbleTextView mWaitingForResume;
349
Adam Cohen59400422014-03-05 18:07:04 -0800350 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
351 new HashMap<String, CustomAppWidget>();
352
353 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
354 static {
355 if (ENABLE_CUSTOM_WIDGET_TEST) {
356 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
357 }
358 }
359
Chet Haasea8f996d2015-02-17 12:56:04 -0800360 // TODO: remove this field and call method directly when Launcher3 can depend on M APIs
361 private static Method sClipRevealMethod = null;
362 static {
363 Class<?> activityOptionsClass = ActivityOptions.class;
364 try {
365 sClipRevealMethod = activityOptionsClass.getDeclaredMethod("makeClipRevealAnimation",
366 View.class, int.class, int.class, int.class, int.class);
367 } catch (Exception e) {
368 // Earlier version
369 }
370 }
371
Adam Cohen091440a2015-03-18 14:16:05 -0700372 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700373 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700374 if (mWorkspace != null) {
375 mWorkspace.buildPageHardwareLayers();
376 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700377 }
378 };
379
Adam Cohendb364c32014-05-20 14:23:40 -0700380 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800381
Adam Cohen091440a2015-03-18 14:16:05 -0700382 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800383 int requestCode;
384 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700385 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700386 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800387 int cellX;
388 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700389 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800390 }
391
Daniel Sandlerff02d492013-08-05 02:12:05 -0400392 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700393 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700394 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400395
396 @Thunk void setOrientation() {
397 if (mRotationEnabled) {
398 unlockScreenOrientation(true);
399 } else {
400 setRequestedOrientation(
401 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700402 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400403 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700404
Sunny Goyal7779d622015-06-11 16:18:39 -0700405 private Runnable mUpdateOrientationRunnable = new Runnable() {
406 public void run() {
407 setOrientation();
408 }
409 };
410
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800411 @Override
412 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700413 if (DEBUG_STRICT_MODE) {
414 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
415 .detectDiskReads()
416 .detectDiskWrites()
417 .detectNetwork() // or .detectAll() for all detectable problems
418 .penaltyLog()
419 .build());
420 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
421 .detectLeakedSqlLiteObjects()
422 .detectLeakedClosableObjects()
423 .penaltyLog()
424 .penaltyDeath()
425 .build());
426 }
427
Adam Cohen9211d422014-10-07 18:14:53 -0700428 if (mLauncherCallbacks != null) {
429 mLauncherCallbacks.preOnCreate();
430 }
431
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800432 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400433
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400434 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400435 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700436
Adam Cohen2e6da152015-05-06 11:42:25 -0700437 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700438 mDeviceProfile = getResources().getConfiguration().orientation
439 == Configuration.ORIENTATION_LANDSCAPE ?
440 app.getInvariantDeviceProfile().landscapeProfile
441 : app.getInvariantDeviceProfile().portraitProfile;
442
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400443 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700444 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700445 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800446 mModel = app.setLauncher(this);
447 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700448
Joe Onorato41a12d22009-10-31 18:30:00 -0400449 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800450 mInflater = getLayoutInflater();
Winson Chungb745afb2015-03-02 11:51:23 -0800451 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this, this);
Romain Guycbb89e42009-06-08 15:52:54 -0700452
Daniel Sandlerff02d492013-08-05 02:12:05 -0400453 mStats = new Stats(this);
454
Sunny Goyalffe83f12014-08-14 17:39:34 -0700455 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700456
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700457 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
458 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700459
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700460 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
461 // this also ensures that any synchronous binding below doesn't re-trigger another
462 // LauncherModel load.
463 mPaused = false;
464
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200466 android.os.Debug.startMethodTracing(
467 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800468 }
469
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800470 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700471
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800472 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700473 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800474
Joe Onorato7c312c12009-08-13 21:36:53 -0700475 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700476
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800477 mSavedState = savedInstanceState;
478 restoreState(mSavedState);
479
480 if (PROFILE_STARTUP) {
481 android.os.Debug.stopMethodTracing();
482 }
483
484 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700485 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700486 // If the user leaves launcher, then we should just load items asynchronously when
487 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700488 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700489 } else {
490 // We only load the page synchronously if the user rotates (or triggers a
491 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700492 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700493 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800494 }
495
496 // For handling default keys
497 mDefaultKeySsb = new SpannableStringBuilder();
498 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800499
500 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
501 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800502
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700503 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
504 // In case we are on a device with locked rotation, we should look at preferences to check
505 // if the user has specifically allowed rotation.
506 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400507 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700508 }
509
510 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
511 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400512 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700513
Adam Cohen9211d422014-10-07 18:14:53 -0700514 if (mLauncherCallbacks != null) {
515 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700516 if (mLauncherCallbacks.hasLauncherOverlay()) {
517 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700518 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
519 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
520 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700521 mWorkspace.setLauncherOverlay(mLauncherOverlay);
522 }
Adam Cohen9211d422014-10-07 18:14:53 -0700523 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700524
525 if (shouldShowIntroScreen()) {
526 showIntroScreen();
527 } else {
528 showFirstRunActivity();
529 showFirstRunClings();
530 }
Adam Cohen9211d422014-10-07 18:14:53 -0700531 }
532
Sunny Goyal7779d622015-06-11 16:18:39 -0700533 @Override
534 public void onSettingsChanged(String settings, boolean value) {
535 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
536 mRotationEnabled = value;
537 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
538 mUpdateOrientationRunnable.run();
539 }
540 }
541 }
542
Adam Cohen9211d422014-10-07 18:14:53 -0700543 private LauncherCallbacks mLauncherCallbacks;
544
545 public void onPostCreate(Bundle savedInstanceState) {
546 super.onPostCreate(savedInstanceState);
547 if (mLauncherCallbacks != null) {
548 mLauncherCallbacks.onPostCreate(savedInstanceState);
549 }
550 }
551
552 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
553 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700554 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700555 private boolean mWorkspaceImportanceStored = false;
556 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700557 private int mWorkspaceImportanceForAccessibility =
558 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
559 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
560
561 @Override
562 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700563 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700564 return;
565 }
566 // The underlying workspace and hotseat are temporarily suppressed by the search
567 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700568 if (mWorkspace != null) {
569 mWorkspaceImportanceForAccessibility =
570 mWorkspace.getImportantForAccessibility();
571 mWorkspace.setImportantForAccessibility(
572 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
573 mWorkspaceImportanceStored = true;
574 }
575 if (mHotseat != null) {
576 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
577 mHotseat.setImportantForAccessibility(
578 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
579 mHotseatImportanceStored = true;
580 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700581 }
582
583 @Override
584 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700585 if (mWorkspaceImportanceStored && mWorkspace != null) {
586 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
587 }
588 if (mHotseatImportanceStored && mHotseat != null) {
589 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
590 }
591 mWorkspaceImportanceStored = false;
592 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700593 }
594 });
Adam Cohen9211d422014-10-07 18:14:53 -0700595 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700596 }
597
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700598 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700599 public void onLauncherProviderChange() {
600 if (mLauncherCallbacks != null) {
601 mLauncherCallbacks.onLauncherProviderChange();
602 }
603 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700604
Winson Chungef7f8742015-06-04 17:18:17 -0700605 /**
606 * Updates the bounds of all the overlays to match the new fixed bounds.
607 */
608 public void updateOverlayBounds(Rect newBounds) {
609 mAppsView.setSearchBarBounds(newBounds);
610 mWidgetsView.setSearchBarBounds(newBounds);
611 }
612
Adam Cohen9211d422014-10-07 18:14:53 -0700613 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700614 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700615 if (mLauncherCallbacks != null) {
616 return mLauncherCallbacks.hasCustomContentToLeft();
617 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700618 return false;
619 }
620
Dave Hawkeya8881582013-09-17 15:55:33 -0600621 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500622 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600623 * {@link #addToCustomContentPage}. This will only be invoked if
624 * {@link #hasCustomContentToLeft()} is {@code true}.
625 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500626 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700627 if (mLauncherCallbacks != null) {
628 mLauncherCallbacks.populateCustomContentContainer();
629 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600630 }
631
632 /**
633 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
634 * ensure the custom content page is added or removed if necessary.
635 */
636 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600637 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600638 // Not bound yet, wait for bindScreens to be called.
639 return;
640 }
641
642 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
643 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500644 mWorkspace.createCustomContentContainer();
645 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600646 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
647 mWorkspace.removeCustomContentPage();
648 }
649 }
650
Anton Hanssona2f665f2013-09-26 12:18:32 +0100651 public Stats getStats() {
652 return mStats;
653 }
654
Bjorn Bringertc459e522013-06-07 19:36:01 +0100655 public LayoutInflater getInflater() {
656 return mInflater;
657 }
658
Hyunyoung Song3f471442015-04-08 19:01:34 -0700659 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700660 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
661 // that is subsequently removed from the workspace in startBinding().
662 return !mModel.isLoadingWorkspace();
663 }
664
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800665 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000666 public static int generateViewId() {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100667 if (Build.VERSION.SDK_INT >= 17) {
668 return View.generateViewId();
669 } else {
670 // View.generateViewId() is not available. The following fallback logic is a copy
671 // of its implementation.
672 for (;;) {
673 final int result = sNextGeneratedId.get();
674 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
675 int newValue = result + 1;
676 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
677 if (sNextGeneratedId.compareAndSet(result, newValue)) {
678 return result;
679 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000680 }
681 }
682 }
683
684 public int getViewIdForItem(ItemInfo info) {
685 // This cast is safe given the > 2B range for int.
686 int itemId = (int) info.id;
687 if (mItemIdToViewId.containsKey(itemId)) {
688 return mItemIdToViewId.get(itemId);
689 }
690 int viewId = generateViewId();
691 mItemIdToViewId.put(itemId, viewId);
692 return viewId;
693 }
694
695 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700696 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
697 * a configuration step, this allows the proper animations to run after other transitions.
698 */
Adam Cohendb364c32014-05-20 14:23:40 -0700699 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700700 long screenId = args.screenId;
701 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
702 // When the screen id represents an actual screen (as opposed to a rank) we make sure
703 // that the drop page actually exists.
704 screenId = ensurePendingDropLayoutExists(args.screenId);
705 }
Adam Cohendb364c32014-05-20 14:23:40 -0700706
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800707 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800708 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700709 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700710 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700711 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800712 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700713 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700714 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700715 case REQUEST_RECONFIGURE_APPWIDGET:
716 completeRestoreAppWidget(args.appWidgetId);
717 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800718 }
Michael Jurka27614d22012-04-02 06:40:22 -0700719 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
720 // if you turned the screen off and then back while in All Apps, Launcher would not
721 // return to the workspace. Clearing mAddInfo.container here fixes this issue
722 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700723 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800724 }
725
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800726 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700727 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700728 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700729 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700730 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800731 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700732
Adam Cohenad4e15c2013-10-17 16:21:35 -0700733 Runnable exitSpringLoaded = new Runnable() {
734 @Override
735 public void run() {
736 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
737 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
738 }
739 };
740
Michael Jurka8b805b12012-04-18 14:23:14 -0700741 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700742 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700743 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
744 if (resultCode == RESULT_CANCELED) {
745 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700746 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700747 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700748 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800749 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700750 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700751 }
752 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200753 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
754 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700755 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200756 }
757 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700758 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200759
Adam Cohened66b2b2012-01-23 17:28:51 -0800760 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700761 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700762
Adam Cohendb364c32014-05-20 14:23:40 -0700763 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800764 // We have special handling for widgets
765 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800766 final int appWidgetId;
767 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
768 : -1;
769 if (widgetId < 0) {
770 appWidgetId = pendingAddWidgetId;
771 } else {
772 appWidgetId = widgetId;
773 }
774
Adam Cohenad4e15c2013-10-17 16:21:35 -0700775 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800776 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700777 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
778 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700779 result = RESULT_CANCELED;
780 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700781 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700782 @Override
783 public void run() {
784 exitSpringLoadedDragModeDelayed(false, 0, null);
785 }
786 };
Adam Cohendb364c32014-05-20 14:23:40 -0700787 if (workspaceLocked) {
788 // No need to remove the empty screen if we're mid-binding, as the
789 // the bind will not add the empty screen.
790 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
791 } else {
792 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
793 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
794 }
Winson Chung5aaab772012-04-27 15:24:02 -0700795 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700796 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700797 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
798 // When the screen id represents an actual screen (as opposed to a rank)
799 // we make sure that the drop page actually exists.
800 mPendingAddInfo.screenId =
801 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
802 }
Adam Cohendb364c32014-05-20 14:23:40 -0700803 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
804
805 dropLayout.setDropPending(true);
806 final Runnable onComplete = new Runnable() {
807 @Override
808 public void run() {
809 completeTwoStageWidgetDrop(resultCode, appWidgetId);
810 dropLayout.setDropPending(false);
811 }
812 };
813 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
814 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
815 } else {
816 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
817 mPendingAddInfo);
818 sPendingAddItem = args;
819 }
Winson Chung5aaab772012-04-27 15:24:02 -0700820 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800821 return;
822 }
823
Sunny Goyalff572272014-07-23 13:58:07 -0700824 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
825 if (resultCode == RESULT_OK) {
826 // Update the widget view.
827 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
828 pendingAddWidgetId, mPendingAddInfo);
829 if (workspaceLocked) {
830 sPendingAddItem = args;
831 } else {
832 completeAdd(args);
833 }
834 }
835 // Leave the widget in the pending state if the user canceled the configure.
836 return;
837 }
838
Sunny Goyalaad90582015-07-09 14:22:50 -0700839 if (requestCode == REQUEST_CREATE_SHORTCUT) {
840 // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT.
841 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
842 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
843 mPendingAddInfo);
844 if (isWorkspaceLocked()) {
845 sPendingAddItem = args;
846 } else {
847 completeAdd(args);
848 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
849 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
850 }
851 } else if (resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700852 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
853 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800854 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800855 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800856 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800857
858 }
859
860 @Override
861 protected void onActivityResult(
862 final int requestCode, final int resultCode, final Intent data) {
863 handleActivityResult(requestCode, resultCode, data);
864 if (mLauncherCallbacks != null) {
865 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
866 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800867 }
868
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600869 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700870 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600871 int[] grantResults) {
872 if (mLauncherCallbacks != null) {
873 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
874 grantResults);
875 }
876 }
877
Adam Cohendb364c32014-05-20 14:23:40 -0700878 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
879 appWidgetId, ItemInfo info) {
880 PendingAddArguments args = new PendingAddArguments();
881 args.requestCode = requestCode;
882 args.intent = data;
883 args.container = info.container;
884 args.screenId = info.screenId;
885 args.cellX = info.cellX;
886 args.cellY = info.cellY;
887 args.appWidgetId = appWidgetId;
888 return args;
889 }
890
891 /**
892 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
893 *
894 * @param screenId the screen id to check
895 * @return the new screen, or screenId if it exists
896 */
897 private long ensurePendingDropLayoutExists(long screenId) {
898 CellLayout dropLayout =
899 (CellLayout) mWorkspace.getScreenWithId(screenId);
900 if (dropLayout == null) {
901 // it's possible that the add screen was removed because it was
902 // empty and a re-bind occurred
903 mWorkspace.addExtraEmptyScreen();
904 return mWorkspace.commitExtraEmptyScreen();
905 } else {
906 return screenId;
907 }
908 }
909
Adam Cohen091440a2015-03-18 14:16:05 -0700910 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700911 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700912 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800913 Runnable onCompleteRunnable = null;
914 int animationType = 0;
915
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700916 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800917 if (resultCode == RESULT_OK) {
918 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
919 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700920 mPendingAddWidgetInfo);
921 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800922 onCompleteRunnable = new Runnable() {
923 @Override
924 public void run() {
925 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700926 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700927 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
928 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800929 }
930 };
931 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800932 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800933 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800934 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700935 if (mDragLayer.getAnimatedView() != null) {
936 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
937 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
938 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700939 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700940 // The animated view may be null in the case of a rotation during widget configuration
941 onCompleteRunnable.run();
942 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800943 }
944
945 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700946 protected void onStop() {
947 super.onStop();
948 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700949
950 if (mLauncherCallbacks != null) {
951 mLauncherCallbacks.onStop();
952 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700953 }
954
955 @Override
956 protected void onStart() {
957 super.onStart();
958 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700959
960 if (mLauncherCallbacks != null) {
961 mLauncherCallbacks.onStart();
962 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700963 }
964
965 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800966 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200967 long startTime = 0;
968 if (DEBUG_RESUME_TIME) {
969 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400970 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200971 }
Adam Cohen9211d422014-10-07 18:14:53 -0700972
973 if (mLauncherCallbacks != null) {
974 mLauncherCallbacks.preOnResume();
975 }
976
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800977 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700978
Winson Chung4a2afa32012-07-19 14:53:05 -0700979 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700980 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700981 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800982 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700983 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700984 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700985 // view after launching an app, as they may be depending on the UI to be static to
986 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700987 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700988 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800989 } else if (mOnResumeState == State.WIDGETS) {
990 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700991 }
992 mOnResumeState = State.NONE;
993
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700994 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700995 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
996 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700997
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800998 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700999 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001000 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001001 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001002 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001003 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001004 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001005 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001006 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1007 // execute them here
1008 long startTimeCallbacks = 0;
1009 if (DEBUG_RESUME_TIME) {
1010 startTimeCallbacks = System.currentTimeMillis();
1011 }
1012
Michael Jurka1e2f4652013-07-08 18:03:46 -07001013 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1014 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001015 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001016 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001017 if (DEBUG_RESUME_TIME) {
1018 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1019 (System.currentTimeMillis() - startTimeCallbacks));
1020 }
Michael Jurka447bf842013-05-15 14:52:15 +02001021 }
Michael Jurka54554252013-08-01 12:52:23 +02001022 if (mOnResumeCallbacks.size() > 0) {
1023 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1024 mOnResumeCallbacks.get(i).run();
1025 }
1026 mOnResumeCallbacks.clear();
1027 }
Winson Chunge4e50662012-01-23 14:45:13 -08001028
1029 // Reset the pressed state of icons that were locked in the press state while activities
1030 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001031 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001032 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001033 mWaitingForResume.setStayPressed(false);
1034 }
Winson Chung82963d52013-10-09 11:20:57 -07001035
Adam Cohen06dff352012-06-01 17:17:08 -07001036 // It is possible that widgets can receive updates while launcher is not in the foreground.
1037 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1038 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1039 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001040 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001041 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001042
Michael Jurka447bf842013-05-15 14:52:15 +02001043 if (DEBUG_RESUME_TIME) {
1044 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1045 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001046
1047 if (mWorkspace.getCustomContentCallbacks() != null) {
1048 // If we are resuming and the custom content is the current page, we call onShow().
1049 // It is also poassible that onShow will instead be called slightly after first layout
1050 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1051 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001052 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001053 }
1054 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001055 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001056 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001057
Sunny Goyal756adbc2015-04-16 15:20:51 -07001058 if (!isWorkspaceLoading()) {
1059 // Process any items that were added while Launcher was away.
1060 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1061 }
Adam Cohen9211d422014-10-07 18:14:53 -07001062
1063 if (mLauncherCallbacks != null) {
1064 mLauncherCallbacks.onResume();
1065 }
Adam Cohen06dff352012-06-01 17:17:08 -07001066 }
1067
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001068 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001069 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001070 // Ensure that items added to Launcher are queued until Launcher returns
1071 InstallShortcutReceiver.enableInstallQueue();
1072
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001073 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001074 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001075 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001076 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001077
1078 // We call onHide() aggressively. The custom content callbacks should be able to
1079 // debounce excess onHide calls.
1080 if (mWorkspace.getCustomContentCallbacks() != null) {
1081 mWorkspace.getCustomContentCallbacks().onHide();
1082 }
Romain Guycbb89e42009-06-08 15:52:54 -07001083
Adam Cohen9211d422014-10-07 18:14:53 -07001084 if (mLauncherCallbacks != null) {
1085 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001086 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001087 }
1088
1089 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001090 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1091 // by a onResume or by scrolling otherwise.
1092 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001093
1094 // Custom content is completely hidden
1095 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001096
1097 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1098 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001099
1100 // Indicates whether the user is allowed to scroll away from the custom content.
1101 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001102 }
1103
Adam Cohenc2d6e892014-10-16 09:49:24 -07001104 public interface LauncherOverlay {
1105
1106 /**
1107 * Touch interaction leading to overscroll has begun
1108 */
1109 public void onScrollInteractionBegin();
1110
1111 /**
1112 * Touch interaction related to overscroll has ended
1113 */
1114 public void onScrollInteractionEnd();
1115
1116 /**
1117 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1118 * screen (or in the case of RTL, the rightmost screen).
1119 */
1120 public void onScrollChange(int progress, boolean rtl);
1121
1122 /**
1123 * Screen has stopped scrolling
1124 */
1125 public void onScrollSettled();
1126
1127 /**
1128 * This method can be called by the Launcher in order to force the LauncherOverlay
1129 * to exit fully immersive mode.
1130 */
1131 public void forceExitFullImmersion();
1132 }
1133
Jun Mukai8af0cd82015-05-12 12:32:12 -07001134 public interface LauncherSearchCallbacks {
1135 /**
1136 * Called when the search overlay is shown.
1137 */
1138 public void onSearchOverlayOpened();
1139
1140 /**
1141 * Called when the search overlay is dismissed.
1142 */
1143 public void onSearchOverlayClosed();
1144 }
1145
Adam Cohenc2d6e892014-10-16 09:49:24 -07001146 public interface LauncherOverlayCallbacks {
1147 /**
1148 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1149 * however it doesn't modify any state within the launcher.
1150 */
1151 public boolean canEnterFullImmersion();
1152
1153 /**
1154 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1155 * eg. by occupying the full screen and handling all touch events.
1156 *
1157 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1158 * case, Launcher will modify any necessary state and assumes the overlay is
1159 * handling all interaction. If false, the LauncherOverlay should cancel any
1160 *
1161 */
1162 public boolean enterFullImmersion();
1163
1164 /**
1165 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1166 * full control over UI and state.
1167 */
1168 public void exitFullImmersion();
1169 }
1170
1171 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1172
1173 @Override
1174 public boolean canEnterFullImmersion() {
1175 return mState == State.WORKSPACE;
1176 }
1177
1178 @Override
1179 public boolean enterFullImmersion() {
1180 if (mState == State.WORKSPACE) {
1181 // When fully immersed, disregard any touches which fall through.
1182 mDragLayer.setBlockTouch(true);
1183 return true;
1184 }
1185 return false;
1186 }
1187
1188 @Override
1189 public void exitFullImmersion() {
1190 mDragLayer.setBlockTouch(false);
1191 }
1192 }
1193
Jorim Jaggid017f882014-01-14 17:08:48 -08001194 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001195 if (mLauncherCallbacks != null) {
1196 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001197 } else {
1198 // On devices with a locked orientation, we will at least have the allow rotation
1199 // setting.
1200 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001201 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001202 }
1203
Adam Cohen9211d422014-10-07 18:14:53 -07001204 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001205 CustomContentCallbacks callbacks, String description) {
1206 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001207 }
1208
Adam Cohenedb40762013-07-18 16:45:45 -07001209 // The custom content needs to offset its content to account for the QSB
1210 public int getTopOffsetForCustomContent() {
1211 return mWorkspace.getPaddingTop();
1212 }
1213
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001214 @Override
1215 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001216 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001217 if (mModel.isCurrentCallbacks(this)) {
1218 mModel.stopLoader();
1219 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001220 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1221
Romain Guy13c2e7b2010-03-10 19:45:00 -08001222 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001223 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001224
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001225 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001226 @Override
1227 public void onWindowFocusChanged(boolean hasFocus) {
1228 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001229 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001230
1231 if (mLauncherCallbacks != null) {
1232 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1233 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001234 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001235
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001236 private boolean acceptFilter() {
1237 final InputMethodManager inputManager = (InputMethodManager)
1238 getSystemService(Context.INPUT_METHOD_SERVICE);
1239 return !inputManager.isFullscreenMode();
1240 }
1241
1242 @Override
1243 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001244 final int uniChar = event.getUnicodeChar();
1245 final boolean handled = super.onKeyDown(keyCode, event);
1246 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1247 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001248 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1249 keyCode, event);
1250 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001251 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001252 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001253 // showSearchDialog()
1254 // If there are multiple keystrokes before the search dialog takes focus,
1255 // onSearchRequested() will be called for every keystroke,
1256 // but it is idempotent, so it's fine.
1257 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001258 }
1259 }
1260
Joe Onorato8a9625e2010-01-28 15:55:35 -08001261 // Eat the long press event so the keyboard doesn't come up.
1262 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1263 return true;
1264 }
1265
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001266 return handled;
1267 }
1268
Karl Rosaen138a0412009-04-23 19:00:21 -07001269 private String getTypedText() {
1270 return mDefaultKeySsb.toString();
1271 }
1272
1273 private void clearTypedText() {
1274 mDefaultKeySsb.clear();
1275 mDefaultKeySsb.clearSpans();
1276 Selection.setSelection(mDefaultKeySsb, 0);
1277 }
1278
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001279 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001280 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1281 * State
1282 */
1283 private static State intToState(int stateOrdinal) {
1284 State state = State.WORKSPACE;
1285 final State[] stateValues = State.values();
1286 for (int i = 0; i < stateValues.length; i++) {
1287 if (stateValues[i].ordinal() == stateOrdinal) {
1288 state = stateValues[i];
1289 break;
1290 }
1291 }
1292 return state;
1293 }
1294
1295 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001296 * Restores the previous state, if it exists.
1297 *
1298 * @param savedState The previous state.
1299 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001300 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001301 private void restoreState(Bundle savedState) {
1302 if (savedState == null) {
1303 return;
1304 }
1305
Michael Jurka883f55b2010-10-21 15:47:14 -07001306 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001307 if (state == State.APPS || state == State.WIDGETS) {
1308 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001309 }
1310
Adam Cohen21cd0022013-10-09 18:57:02 -07001311 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1312 PagedView.INVALID_RESTORE_PAGE);
1313 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001314 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001315 }
1316
Winson Chung3d503fb2011-07-13 17:25:49 -07001317 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001318 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001319
Winson Chung3d503fb2011-07-13 17:25:49 -07001320 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1321 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001322 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001323 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1324 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001325 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1326 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001327 AppWidgetProviderInfo info = savedState.getParcelable(
1328 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001329 mPendingAddWidgetInfo = info == null ?
1330 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1331
Adam Cohen4637b5a2013-11-04 18:21:24 -08001332 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001333 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001334 mRestoring = true;
1335 }
1336
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001337 mItemIdToViewId = (HashMap<Integer, Integer>)
1338 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001339 }
1340
1341 /**
1342 * Finds all the views we need and configure them properly.
1343 */
1344 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001345 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001346
Craig Mautner360310b2012-10-26 15:13:08 -07001347 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001348 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001349 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1350 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001351 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001352 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001353
John Spurlock77e1f472013-09-11 10:09:51 -04001354 mLauncherView.setSystemUiVisibility(
1355 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001356 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001357
Winson Chung4c98d922011-05-31 16:50:48 -07001358 // Setup the drag layer
1359 mDragLayer.setup(this, dragController);
1360
Winson Chung3d503fb2011-07-13 17:25:49 -07001361 // Setup the hotseat
1362 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1363 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001364 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001365 }
1366
Jorim Jaggid017f882014-01-14 17:08:48 -08001367 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001368 mWidgetsButton = findViewById(R.id.widget_button);
1369 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001370 @Override
1371 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001372 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001373 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001374 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001375 }
1376 });
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001377 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001378
1379 View wallpaperButton = findViewById(R.id.wallpaper_button);
1380 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001381 @Override
1382 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001383 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001384 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001385 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001386 }
1387 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001388 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1389
1390 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001391 if (hasSettings()) {
1392 settingsButton.setOnClickListener(new OnClickListener() {
1393 @Override
1394 public void onClick(View arg0) {
1395 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001396 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001397 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001398 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001399 });
1400 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1401 } else {
1402 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001403 }
1404
Adam Cohendbdff6b2013-09-18 19:09:15 -07001405 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001406
Winson Chung4c98d922011-05-31 16:50:48 -07001407 // Setup the workspace
1408 mWorkspace.setHapticFeedbackEnabled(false);
1409 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001410 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001411 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001412
Winson Chungf0ea4d32011-06-06 14:27:16 -07001413 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001414 mSearchDropTargetBar = (SearchDropTargetBar)
1415 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001416
Winson Chungef7f8742015-06-04 17:18:17 -07001417 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001418 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001419 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001420 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1421 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1422 } else {
1423 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1424 }
Craig Mautner360310b2012-10-26 15:13:08 -07001425
Winson Chung3d503fb2011-07-13 17:25:49 -07001426 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001427 dragController.setDragScoller(mWorkspace);
1428 dragController.setScrollView(mDragLayer);
1429 dragController.setMoveTarget(mWorkspace);
1430 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001431 if (mSearchDropTargetBar != null) {
1432 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001433 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001434 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001435
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001436 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001437 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001438 mWeightWatcher = new WeightWatcher(this);
1439 mWeightWatcher.setAlpha(0.5f);
1440 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001441 new FrameLayout.LayoutParams(
1442 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001443 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001444 Gravity.BOTTOM)
1445 );
Adam Cohen39a06042013-07-19 14:30:12 -07001446
1447 boolean show = shouldShowWeightWatcher();
1448 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001449 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001450 }
1451
1452 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001453 * Sets the all apps button. This method is called from {@link Hotseat}.
1454 */
1455 public void setAllAppsButton(View allAppsButton) {
1456 mAllAppsButton = allAppsButton;
1457 }
1458
1459 public View getAllAppsButton() {
1460 return mAllAppsButton;
1461 }
1462
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001463 public View getWidgetsButton() {
1464 return mWidgetsButton;
1465 }
1466
Anjali Koppal5ad44842014-03-10 20:34:39 -07001467 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001468 * Creates a view representing a shortcut.
1469 *
1470 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001471 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001472 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001473 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001474 }
1475
1476 /**
1477 * Creates a view representing a shortcut inflated from the specified resource.
1478 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001479 * @param parent The group the shortcut belongs to.
1480 * @param info The data structure describing the shortcut.
1481 *
1482 * @return A View inflated from layoutResId.
1483 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001484 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001485 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001486 parent, false);
1487 favorite.applyFromShortcutInfo(info, mIconCache);
1488 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001489 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001490 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001491 return favorite;
1492 }
1493
1494 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001495 * Add a shortcut to the workspace.
1496 *
1497 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001498 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001499 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001500 int cellY) {
1501 int[] cellXY = mTmpAddItemCellCoordinates;
Adam Cohendcd297f2013-06-18 13:13:40 -07001502 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001503
Sunny Goyal5c97f512015-05-19 16:03:28 -07001504 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001505 if (info == null) {
1506 return;
1507 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001508 final View view = createShortcut(info);
1509
Sunny Goyal5c97f512015-05-19 16:03:28 -07001510 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001511 // First we check if we already know the exact location where we want to add this item.
1512 if (cellX >= 0 && cellY >= 0) {
1513 cellXY[0] = cellX;
1514 cellXY[1] = cellY;
1515 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001516
1517 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001518 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001519 true, null,null)) {
1520 return;
1521 }
1522 DragObject dragObject = new DragObject();
1523 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001524 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1525 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001526 return;
1527 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08001528 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001529 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001530 }
1531
1532 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001533 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001534 return;
1535 }
1536
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001537 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001538
1539 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001540 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001541 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001542 }
1543 }
1544
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001545 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001546 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001547 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001548 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001549 */
Adam Cohen091440a2015-03-18 14:16:05 -07001550 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001551 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1552
1553 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001554 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001555 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1556 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001557 }
Romain Guycbb89e42009-06-08 15:52:54 -07001558
Adam Cohen59400422014-03-05 18:07:04 -08001559 if (appWidgetInfo.isCustomWidget) {
1560 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001561 }
1562
Adam Cohen59400422014-03-05 18:07:04 -08001563 LauncherAppWidgetInfo launcherInfo;
1564 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1565 launcherInfo.spanX = info.spanX;
1566 launcherInfo.spanY = info.spanY;
1567 launcherInfo.minSpanX = info.minSpanX;
1568 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001569 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001570
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001571 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001572 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001573
1574 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001575 if (hostView == null) {
1576 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001577 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1578 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001579 } else {
1580 // The AppWidgetHostView has already been inflated and instantiated
1581 launcherInfo.hostView = hostView;
1582 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001583 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001584 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001585 launcherInfo.notifyWidgetSizeChanged(this);
1586
Adam Cohen59400422014-03-05 18:07:04 -08001587 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1588 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001589
1590 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001591 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001592 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001593 }
Romain Guycbb89e42009-06-08 15:52:54 -07001594
Adam Cohended9f8d2010-11-03 13:25:16 -07001595 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1596 @Override
1597 public void onReceive(Context context, Intent intent) {
1598 final String action = intent.getAction();
1599 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1600 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001601 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001602 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001603
Winson Chungc100e8e2011-08-09 16:02:43 -07001604 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001605 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001606 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001607 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001608 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001609 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001610 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1611 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001612 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001613 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1614 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001615 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001616 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1617 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1618 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001619 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001620 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1621 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001622 }
1623 }
1624 };
1625
1626 @Override
1627 public void onAttachedToWindow() {
1628 super.onAttachedToWindow();
1629
1630 // Listen for broadcasts related to user-presence
1631 final IntentFilter filter = new IntentFilter();
1632 filter.addAction(Intent.ACTION_SCREEN_OFF);
1633 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001634 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001635 if (ENABLE_DEBUG_INTENTS) {
1636 filter.addAction(DebugIntents.DELETE_DATABASE);
1637 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1638 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001639 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001640 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001641 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001642 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001643 mVisible = true;
1644 }
1645
Adam Cohen0b395352014-06-09 22:54:36 +00001646 /**
1647 * Sets up transparent navigation and status bars in LMP.
1648 * This method is a no-op for other platform versions.
1649 */
Sunny Goyald0091012015-01-20 15:55:34 -08001650 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Adam Cohen0b395352014-06-09 22:54:36 +00001651 private void setupTransparentSystemBarsForLmp() {
Kenny Guyd794a3f2014-09-16 15:17:58 +01001652 if (Utilities.isLmpOrAbove()) {
Sunny Goyald0091012015-01-20 15:55:34 -08001653 Window window = getWindow();
1654 window.getAttributes().systemUiVisibility |=
1655 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1656 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1657 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1658 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1659 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1660 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1661 window.setStatusBarColor(Color.TRANSPARENT);
1662 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001663 }
1664 }
1665
Adam Cohended9f8d2010-11-03 13:25:16 -07001666 @Override
1667 public void onDetachedFromWindow() {
1668 super.onDetachedFromWindow();
1669 mVisible = false;
1670
Adam Cohend113e0c2010-11-11 10:48:05 -08001671 if (mAttached) {
1672 unregisterReceiver(mReceiver);
1673 mAttached = false;
1674 }
Winson Chungb745afb2015-03-02 11:51:23 -08001675 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001676 }
1677
1678 public void onWindowVisibilityChanged(int visibility) {
1679 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001680 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001681 // The following code used to be in onResume, but it turns out onResume is called when
1682 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1683 // is a more appropriate event to handle
1684 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001685 if (!mWorkspaceLoading) {
1686 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001687 // We want to let Launcher draw itself at least once before we force it to build
1688 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001689 // apps is nice and speedy.
1690 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001691 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001692 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001693 if (mStarted) return;
1694 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001695 // We delay the layer building a bit in order to give
1696 // other message processing a time to run. In particular
1697 // this avoids a delay in hiding the IME if it was
1698 // currently shown, because doing that may involve
1699 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001700 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001701 final ViewTreeObserver.OnDrawListener listener = this;
1702 mWorkspace.post(new Runnable() {
1703 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001704 if (mWorkspace != null &&
1705 mWorkspace.getViewTreeObserver() != null) {
1706 mWorkspace.getViewTreeObserver().
1707 removeOnDrawListener(listener);
1708 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001709 }
1710 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001711 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001712 }
1713 });
1714 }
1715 clearTypedText();
1716 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001717 }
1718
Adam Cohen091440a2015-03-18 14:16:05 -07001719 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001720 mHandler.removeMessages(ADVANCE_MSG);
1721 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1722 mHandler.sendMessageDelayed(msg, delay);
1723 mAutoAdvanceSentTime = System.currentTimeMillis();
1724 }
1725
Adam Cohen091440a2015-03-18 14:16:05 -07001726 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001727 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1728 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1729 mAutoAdvanceRunning = autoAdvanceRunning;
1730 if (autoAdvanceRunning) {
1731 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1732 sendAdvanceMessage(delay);
1733 } else {
1734 if (!mWidgetsToAdvance.isEmpty()) {
1735 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1736 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1737 }
1738 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001739 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001740 }
1741 }
1742 }
1743
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001744 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1745
Adam Cohended9f8d2010-11-03 13:25:16 -07001746 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001747 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001748 if (msg.what == ADVANCE_MSG) {
1749 int i = 0;
1750 for (View key: mWidgetsToAdvance.keySet()) {
1751 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1752 final int delay = mAdvanceStagger * i;
1753 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001754 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001755 public void run() {
1756 ((Advanceable) v).advance();
1757 }
1758 }, delay);
1759 }
1760 i++;
1761 }
1762 sendAdvanceMessage(mAdvanceInterval);
1763 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001764 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001765 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001766 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001767
1768 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001769 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001770 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1771 if (v instanceof Advanceable) {
1772 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001773 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001774 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001775 }
1776 }
1777
1778 void removeWidgetToAutoAdvance(View hostView) {
1779 if (mWidgetsToAdvance.containsKey(hostView)) {
1780 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001781 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001782 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001783 }
1784
Joe Onorato9c1289c2009-08-17 11:03:03 -04001785 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001786 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001787 launcherInfo.hostView = null;
1788 }
1789
Hyunyoung Song3f471442015-04-08 19:01:34 -07001790 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001791 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1792 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001793 }
1794
Winson Chunga6945242014-01-08 14:04:34 -08001795 public DragLayer getDragLayer() {
1796 return mDragLayer;
1797 }
1798
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001799 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001800 return mAppsView;
1801 }
1802
Hyunyoung Song3f471442015-04-08 19:01:34 -07001803 public WidgetsContainerView getWidgetsView() {
1804 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001805 }
1806
Winson Chunga6945242014-01-08 14:04:34 -08001807 public Workspace getWorkspace() {
1808 return mWorkspace;
1809 }
1810
1811 public Hotseat getHotseat() {
1812 return mHotseat;
1813 }
1814
Jorim Jaggid017f882014-01-14 17:08:48 -08001815 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001816 return mOverviewPanel;
1817 }
1818
1819 public SearchDropTargetBar getSearchBar() {
1820 return mSearchDropTargetBar;
1821 }
1822
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001823 public LauncherAppWidgetHost getAppWidgetHost() {
1824 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001825 }
Romain Guycbb89e42009-06-08 15:52:54 -07001826
Winson Chunga9abd0e2010-10-27 17:18:37 -07001827 public LauncherModel getModel() {
1828 return mModel;
1829 }
1830
Winson Chunga6945242014-01-08 14:04:34 -08001831 protected SharedPreferences getSharedPrefs() {
1832 return mSharedPrefs;
1833 }
1834
Adam Cohen2e6da152015-05-06 11:42:25 -07001835 public DeviceProfile getDeviceProfile() {
1836 return mDeviceProfile;
1837 }
1838
Bjorn Bringertc459e522013-06-07 19:36:01 +01001839 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001840 getWindow().closeAllPanels();
1841
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001842 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001843 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001844 }
1845
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001846 @Override
1847 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001848 long startTime = 0;
1849 if (DEBUG_RESUME_TIME) {
1850 startTime = System.currentTimeMillis();
1851 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001852 super.onNewIntent(intent);
1853
1854 // Close the menu
1855 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001856 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001857 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001858
Adam Cohened307df2013-10-02 09:37:31 -07001859 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1860 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1861 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001862
Adam Cohen6fecd412013-10-02 17:41:50 -07001863 if (mWorkspace == null) {
1864 // Can be cases where mWorkspace is null, this prevents a NPE
1865 return;
1866 }
1867 Folder openFolder = mWorkspace.getOpenFolder();
1868 // In all these cases, only animate if we're already on home
1869 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001870
1871 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1872 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Adam Cohen6fecd412013-10-02 17:41:50 -07001873 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Cohen9211d422014-10-07 18:14:53 -07001874 openFolder == null && moveToDefaultScreen) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001875 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001876 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001877
Adam Cohen6fecd412013-10-02 17:41:50 -07001878 closeFolder();
1879 exitSpringLoadedDragMode();
1880
1881 // If we are already on home, then just animate back to the workspace,
1882 // otherwise, just wait until onResume to set the state back to Workspace
1883 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001884 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001885 } else {
1886 mOnResumeState = State.WORKSPACE;
1887 }
1888
1889 final View v = getWindow().peekDecorView();
1890 if (v != null && v.getWindowToken() != null) {
1891 InputMethodManager imm = (InputMethodManager)getSystemService(
1892 INPUT_METHOD_SERVICE);
1893 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1894 }
1895
Winson Chungb745afb2015-03-02 11:51:23 -08001896 // Reset the apps view
1897 if (!alreadyOnHome && mAppsView != null) {
1898 mAppsView.scrollToTop();
1899 }
1900
Hyunyoung Song3f471442015-04-08 19:01:34 -07001901 // Reset the widgets view
1902 if (!alreadyOnHome && mWidgetsView != null) {
1903 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001904 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001905
Adam Cohen9211d422014-10-07 18:14:53 -07001906 if (mLauncherCallbacks != null) {
1907 mLauncherCallbacks.onHomeIntent();
1908 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001909 }
Adam Cohened307df2013-10-02 09:37:31 -07001910
Michael Jurka447bf842013-05-15 14:52:15 +02001911 if (DEBUG_RESUME_TIME) {
1912 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1913 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001914
Adam Cohen9211d422014-10-07 18:14:53 -07001915 if (mLauncherCallbacks != null) {
1916 mLauncherCallbacks.onNewIntent(intent);
1917 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001918 }
1919
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001920 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001921 public void onRestoreInstanceState(Bundle state) {
1922 super.onRestoreInstanceState(state);
1923 for (int page: mSynchronouslyBoundPages) {
1924 mWorkspace.restoreInstanceStateForChild(page);
1925 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001926 }
1927
1928 @Override
1929 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001930 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001931 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1932 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001933 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001934 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001935
Michael Jurka883f55b2010-10-21 15:47:14 -07001936 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001937 // We close any open folder since it will not be re-opened, and we need to make sure
1938 // this state is reflected.
1939 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001940
Adam Cohendcd297f2013-06-18 13:13:40 -07001941 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001942 mWaitingForResult) {
1943 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001944 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001945 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1946 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001947 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1948 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1949 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001950 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001951 }
1952
Hyunyoung Song3f471442015-04-08 19:01:34 -07001953 // Save the current widgets tray?
1954 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001955 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001956
1957 if (mLauncherCallbacks != null) {
1958 mLauncherCallbacks.onSaveInstanceState(outState);
1959 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001960 }
1961
1962 @Override
1963 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001964 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001965
Winson Chunge7a03942011-08-05 15:05:12 -07001966 // Remove all pending runnables
1967 mHandler.removeMessages(ADVANCE_MSG);
1968 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001969 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001970
Winson Chungcd2b0142011-06-08 16:02:26 -07001971 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001972 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001973
1974 // It's possible to receive onDestroy after a new Launcher activity has
1975 // been created. In this case, don't interfere with the new Launcher.
1976 if (mModel.isCurrentCallbacks(this)) {
1977 mModel.stopLoader();
1978 app.setLauncher(null);
1979 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001980
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001981 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001982 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001983 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001984 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001985 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001986 mAppWidgetHost = null;
1987
1988 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001989
1990 TextKeyListener.getInstance().release();
1991
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001992 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001993
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001994 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001995 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08001996 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001997 mWorkspace = null;
1998 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001999
Michael Jurka2ecf9952012-06-18 12:52:28 -07002000 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002001
2002 if (mLauncherCallbacks != null) {
2003 mLauncherCallbacks.onDestroy();
2004 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002005 }
2006
Adam Cohena9cf38f2011-05-02 15:36:58 -07002007 public DragController getDragController() {
2008 return mDragController;
2009 }
2010
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002011 @Override
2012 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002013 onStartForResult(requestCode);
2014 super.startActivityForResult(intent, requestCode);
2015 }
2016
2017 @Override
2018 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2019 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2020 onStartForResult(requestCode);
2021 try {
2022 super.startIntentSenderForResult(intent, requestCode,
2023 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2024 } catch (IntentSender.SendIntentException e) {
2025 throw new ActivityNotFoundException();
2026 }
2027 }
2028
2029 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002030 if (requestCode >= 0) {
2031 setWaitingForResult(true);
2032 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002033 }
2034
Winson Chung70d72102011-08-12 11:24:35 -07002035 /**
2036 * Indicates that we want global search for this activity by setting the globalSearch
2037 * argument for {@link #startSearch} to true.
2038 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002039 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002040 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002041 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002042
Karl Rosaen138a0412009-04-23 19:00:21 -07002043 if (initialQuery == null) {
2044 // Use any text typed in the launcher as the initial query
2045 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002046 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002047 if (appSearchData == null) {
2048 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002049 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002050 }
Winson Chungadf0c182012-08-23 14:59:07 -07002051 Rect sourceBounds = new Rect();
2052 if (mSearchDropTargetBar != null) {
2053 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2054 }
Romain Guycbb89e42009-06-08 15:52:54 -07002055
Ian Parkinson047036e2014-09-01 15:40:53 +01002056 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002057 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002058 if (clearTextImmediately) {
2059 clearTypedText();
2060 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002061
2062 // We need to show the workspace after starting the search
2063 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002064 }
2065
Ian Parkinson047036e2014-09-01 15:40:53 +01002066 /**
2067 * Start a text search.
2068 *
2069 * @return {@code true} if the search will start immediately, so any further keypresses
2070 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2071 * to buffer keypresses.
2072 */
2073 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002074 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002075 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2076 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2077 sourceBounds);
2078 }
2079
Michael Jurkaa33411c2012-06-14 16:18:21 -07002080 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002081 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002082 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002083 }
2084
2085 /**
2086 * Starts the global search activity. This code is a copied from SearchManager
2087 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002088 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002089 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002090 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002091 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2092 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2093 if (globalSearchActivity == null) {
2094 Log.w(TAG, "No global search activity found.");
2095 return;
2096 }
2097 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2098 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2099 intent.setComponent(globalSearchActivity);
2100 // Make sure that we have a Bundle to put source in
2101 if (appSearchData == null) {
2102 appSearchData = new Bundle();
2103 } else {
2104 appSearchData = new Bundle(appSearchData);
2105 }
Adam Cohen9211d422014-10-07 18:14:53 -07002106 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002107 if (!appSearchData.containsKey("source")) {
2108 appSearchData.putString("source", getPackageName());
2109 }
2110 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2111 if (!TextUtils.isEmpty(initialQuery)) {
2112 intent.putExtra(SearchManager.QUERY, initialQuery);
2113 }
2114 if (selectInitialQuery) {
2115 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2116 }
2117 intent.setSourceBounds(sourceBounds);
2118 try {
2119 startActivity(intent);
2120 } catch (ActivityNotFoundException ex) {
2121 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2122 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002123 }
2124
Yura4f93ec62014-02-04 14:15:21 +00002125 public boolean isOnCustomContent() {
2126 return mWorkspace.isOnOrMovingToCustomContent();
2127 }
2128
Winson Chung70d72102011-08-12 11:24:35 -07002129 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002130 public boolean onPrepareOptionsMenu(Menu menu) {
2131 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002132 if (!isOnCustomContent()) {
2133 // Close any open folders
2134 closeFolder();
2135 // Stop resizing any widgets
2136 mWorkspace.exitWidgetResizeMode();
2137 if (!mWorkspace.isInOverviewMode()) {
2138 // Show the overview mode
2139 showOverviewMode(true);
2140 } else {
2141 showWorkspace(true);
2142 }
Winson Chunge0298742014-01-17 12:03:00 -08002143 }
Adam Cohen9211d422014-10-07 18:14:53 -07002144 if (mLauncherCallbacks != null) {
2145 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2146 }
2147
Michael Jurkab94f3f82013-09-11 18:08:54 +02002148 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002149 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002150
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002151 @Override
2152 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002153 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002154 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002155 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002156 }
2157
Joe Onorato9c1289c2009-08-17 11:03:03 -04002158 public boolean isWorkspaceLocked() {
2159 return mWorkspaceLoading || mWaitingForResult;
2160 }
2161
Adam Cohen517a7f52014-03-01 12:12:59 -08002162 public boolean isWorkspaceLoading() {
2163 return mWorkspaceLoading;
2164 }
2165
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002166 private void setWorkspaceLoading(boolean value) {
2167 boolean isLocked = isWorkspaceLocked();
2168 mWorkspaceLoading = value;
2169 if (isLocked != isWorkspaceLocked()) {
2170 onWorkspaceLockedChanged();
2171 }
2172 }
2173
2174 private void setWaitingForResult(boolean value) {
2175 boolean isLocked = isWorkspaceLocked();
2176 mWaitingForResult = value;
2177 if (isLocked != isWorkspaceLocked()) {
2178 onWorkspaceLockedChanged();
2179 }
2180 }
2181
Adam Cohen9211d422014-10-07 18:14:53 -07002182 protected void onWorkspaceLockedChanged() {
2183 if (mLauncherCallbacks != null) {
2184 mLauncherCallbacks.onWorkspaceLockedChanged();
2185 }
2186 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002187
Michael Jurka0280c3b2010-09-17 15:00:07 -07002188 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002189 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002190 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002191 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2192 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002193 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002194 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002195
Sunny Goyale6b63a32015-01-16 16:14:29 -08002196 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002197 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002198 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2199 }
2200
Sunny Goyale6b63a32015-01-16 16:14:29 -08002201 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002202 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2203 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002204 if (appWidgetInfo.configure != null) {
2205 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002206 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002207
Bjorn Bringert7984c942009-12-09 15:38:25 +00002208 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002209 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2210 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2211
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002212 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002213 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002214 Runnable onComplete = new Runnable() {
2215 @Override
2216 public void run() {
2217 // Exit spring loaded mode if necessary after adding the widget
2218 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2219 null);
2220 }
2221 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002222 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002223 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002224 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002225 }
2226 }
Romain Guycbb89e42009-06-08 15:52:54 -07002227
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002228 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002229 // Close any folders that may be open.
2230 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002231 mWorkspace.moveToCustomContentScreen(animate);
2232 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002233
2234 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2235 int[] cell, int spanX, int spanY) {
2236 switch (info.itemType) {
2237 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2238 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2239 int span[] = new int[2];
2240 span[0] = spanX;
2241 span[1] = spanY;
2242 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2243 container, screenId, cell, span);
2244 break;
2245 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2246 processShortcutFromDrop(info.componentName, container, screenId, cell);
2247 break;
2248 default:
2249 throw new IllegalStateException("Unknown item type: " + info.itemType);
2250 }
2251 }
2252
Adam Cohenfbba09b2011-07-18 21:43:05 -07002253 /**
2254 * Process a shortcut drop.
2255 *
2256 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002257 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002258 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002259 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002260 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2261 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002262 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002263 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002264 mPendingAddInfo.screenId = screenId;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002265
2266 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002267 mPendingAddInfo.cellX = cell[0];
2268 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002269 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002270
2271 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2272 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002273 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002274 }
2275
Adam Cohenfbba09b2011-07-18 21:43:05 -07002276 /**
2277 * Process a widget drop.
2278 *
2279 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002280 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002281 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002282 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002283 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2284 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002285 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002286 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002287 mPendingAddInfo.screenId = info.screenId = screenId;
Adam Cohend41fbf52012-02-16 23:53:59 -08002288 mPendingAddInfo.minSpanX = info.minSpanX;
2289 mPendingAddInfo.minSpanY = info.minSpanY;
2290
Adam Cohenfbba09b2011-07-18 21:43:05 -07002291 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002292 mPendingAddInfo.cellX = cell[0];
2293 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002294 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002295 if (span != null) {
2296 mPendingAddInfo.spanX = span[0];
2297 mPendingAddInfo.spanY = span[1];
2298 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002299
Adam Cohened66b2b2012-01-23 17:28:51 -08002300 AppWidgetHostView hostView = info.boundWidget;
2301 int appWidgetId;
2302 if (hostView != null) {
2303 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002304 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002305
2306 // Clear the boundWidget so that it doesn't get destroyed.
2307 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002308 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002309 // In this case, we either need to start an activity to get permission to bind
2310 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002311 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002312 Bundle options = info.bindOptions;
2313
Sunny Goyalffe83f12014-08-14 17:39:34 -07002314 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2315 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002316 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002317 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002318 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002319 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002320 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2321 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2322 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002323 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2324 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002325 // TODO: we need to make sure that this accounts for the options bundle.
2326 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002327 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2328 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002329 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002330 }
2331
Adam Cohendcd297f2013-06-18 13:13:40 -07002332 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002333 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002334 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002335 folderInfo.title = getText(R.string.folder_name);
2336
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002337 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002338 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2339 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002340 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002341
2342 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002343 FolderIcon newFolder =
2344 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002345 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002346 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002347 // Force measure the new folder icon
2348 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2349 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002350 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002351 }
Romain Guycbb89e42009-06-08 15:52:54 -07002352
Joe Onorato9c1289c2009-08-17 11:03:03 -04002353 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002354 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002355 }
2356
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002357 @Override
2358 public boolean dispatchKeyEvent(KeyEvent event) {
2359 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2360 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002361 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002362 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002363 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002364 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002365 dumpState();
2366 return true;
2367 }
2368 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002369 }
2370 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2371 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002372 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002373 return true;
2374 }
2375 }
2376
2377 return super.dispatchKeyEvent(event);
2378 }
2379
Joe Onorato88ec0992009-11-19 13:16:06 -08002380 @Override
2381 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002382 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2383 return;
2384 }
2385
Sunny Goyal45478022015-06-08 16:52:41 -07002386 if (mDragController.isDragging()) {
2387 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002388 return;
2389 }
2390
Winson Chungb745afb2015-03-02 11:51:23 -08002391 if (isAppsViewVisible()) {
2392 showWorkspace(true);
2393 } else if (isWidgetsViewVisible()) {
2394 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002395 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002396 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002397 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002398 Folder openFolder = mWorkspace.getOpenFolder();
2399 if (openFolder.isEditingName()) {
2400 openFolder.dismissEditingName();
2401 } else {
2402 closeFolder();
2403 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002404 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002405 mWorkspace.exitWidgetResizeMode();
2406
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002407 // Back button is a no-op here, but give at least some feedback for the button press
2408 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002409 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002410 }
2411
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002412 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002413 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002414 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002415 @Override
2416 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002417 if (mAppWidgetHost != null) {
2418 mAppWidgetHost.startListening();
2419 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002420 }
2421
2422 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002423 * Launches the intent referred by the clicked shortcut.
2424 *
2425 * @param v The view representing the clicked shortcut.
2426 */
2427 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002428 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2429 // view has detached (it's possible for this to happen if the view is removed mid touch).
2430 if (v.getWindowToken() == null) {
2431 return;
2432 }
2433
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002434 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002435 return;
2436 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002437
Adam Cohen1697b792013-09-17 19:08:21 -07002438 if (v instanceof Workspace) {
2439 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002440 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002441 }
2442 return;
2443 }
2444
2445 if (v instanceof CellLayout) {
2446 if (mWorkspace.isInOverviewMode()) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002447 mWorkspace.snapToPageFromOverView(mWorkspace.indexOfChild(v));
2448 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002449 }
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002450 return;
Adam Cohenf358a4b2013-07-23 16:47:31 -07002451 }
2452
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002453 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002454 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002455 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002456 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002457 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002458 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002459 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002460 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002461 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002462 } else if (tag instanceof AppInfo) {
2463 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002464 } else if (tag instanceof LauncherAppWidgetInfo) {
2465 if (v instanceof PendingAppWidgetHostView) {
2466 onClickPendingWidget((PendingAppWidgetHostView) v);
2467 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002468 }
2469 }
2470
Sunny Goyal70660032015-05-14 00:07:08 -07002471 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002472 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002473 return false;
2474 }
2475
Michael Jurkaaf442092010-06-10 17:01:57 -07002476 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002477 * Event handler for the app widget view which has not fully restored.
2478 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002479 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002480 if (mIsSafeModeEnabled) {
2481 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2482 return;
2483 }
2484
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002485 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002486 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002487 int widgetId = info.appWidgetId;
2488 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2489 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002490 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2491 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002492 mPendingAddInfo.copyFrom(info);
2493 mPendingAddWidgetId = widgetId;
2494
Sunny Goyalffe83f12014-08-14 17:39:34 -07002495 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2496 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002497 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002498 } else if (info.installProgress < 0) {
2499 // The install has not been queued
2500 final String packageName = info.providerName.getPackageName();
2501 showBrokenAppInstallDialog(packageName,
2502 new DialogInterface.OnClickListener() {
2503 public void onClick(DialogInterface dialog, int id) {
2504 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2505 }
2506 });
2507 } else {
2508 // Download has started.
2509 final String packageName = info.providerName.getPackageName();
2510 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002511 }
2512 }
2513
2514 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002515 * Event handler for the "grid" button that appears on the home screen, which
2516 * enters all apps mode.
2517 *
2518 * @param v The view that was clicked.
2519 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002520 protected void onClickAllAppsButton(View v) {
2521 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002522 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002523 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002524 true /* updatePredictedApps */, false /* focusSearchBar */);
2525 }
2526 }
2527
2528 protected void onLongClickAllAppsButton(View v) {
2529 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2530 if (!isAppsViewVisible()) {
2531 showAppsView(true /* animated */, false /* resetListToTop */,
2532 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002533 }
2534 }
2535
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002536 private void showBrokenAppInstallDialog(final String packageName,
2537 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002538 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002539 .setTitle(R.string.abandoned_promises_title)
2540 .setMessage(R.string.abandoned_promise_explanation)
2541 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2542 .setNeutralButton(R.string.abandoned_clean_this,
2543 new DialogInterface.OnClickListener() {
2544 public void onClick(DialogInterface dialog, int id) {
2545 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2546 mWorkspace.removeAbandonedPromise(packageName, user);
2547 }
2548 })
2549 .create().show();
2550 return;
2551 }
2552
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002553 /**
2554 * Event handler for an app shortcut click.
2555 *
2556 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2557 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002558 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002559 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2560 Object tag = v.getTag();
2561 if (!(tag instanceof ShortcutInfo)) {
2562 throw new IllegalArgumentException("Input must be a Shortcut");
2563 }
2564
2565 // Open shortcut
2566 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002567
2568 if (shortcut.isDisabled != 0) {
2569 int error = R.string.activity_not_available;
2570 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2571 error = R.string.safemode_shortcut_error;
2572 }
2573 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2574 return;
2575 }
2576
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002577 final Intent intent = shortcut.intent;
2578
2579 // Check for special shortcuts
2580 if (intent.getComponent() != null) {
2581 final String shortcutClass = intent.getComponent().getClassName();
2582
2583 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2584 MemoryDumpActivity.startDump(this);
2585 return;
2586 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2587 toggleShowWeightWatcher();
2588 return;
2589 }
2590 }
2591
Chris Wren40c5ed32014-06-24 18:24:23 -04002592 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002593 if ((v instanceof BubbleTextView)
2594 && shortcut.isPromise()
2595 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002596 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002597 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002598 new DialogInterface.OnClickListener() {
2599 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002600 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002601 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002602 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002603 return;
2604 }
2605
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002606 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002607 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002608
2609 if (mLauncherCallbacks != null) {
2610 mLauncherCallbacks.onClickAppShortcut(v);
2611 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002612 }
2613
Adam Cohen091440a2015-03-18 14:16:05 -07002614 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002615 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002616 final ShortcutInfo shortcut;
2617 final Intent intent;
2618 if (tag instanceof ShortcutInfo) {
2619 shortcut = (ShortcutInfo) tag;
2620 intent = shortcut.intent;
2621 int[] pos = new int[2];
2622 v.getLocationOnScreen(pos);
2623 intent.setSourceBounds(new Rect(pos[0], pos[1],
2624 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002625
Sunny Goyal508da152014-08-14 10:53:27 -07002626 } else if (tag instanceof AppInfo) {
2627 shortcut = null;
2628 intent = ((AppInfo) tag).intent;
2629 } else {
2630 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2631 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002632
2633 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002634 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002635
2636 if (success && v instanceof BubbleTextView) {
2637 mWaitingForResume = (BubbleTextView) v;
2638 mWaitingForResume.setStayPressed(true);
2639 }
2640 }
2641
2642 /**
2643 * Event handler for a folder icon click.
2644 *
2645 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2646 */
2647 protected void onClickFolderIcon(View v) {
2648 if (LOGD) Log.d(TAG, "onClickFolder");
2649 if (!(v instanceof FolderIcon)){
2650 throw new IllegalArgumentException("Input must be a FolderIcon");
2651 }
2652
Sunny Goyal317698b2015-07-29 11:45:41 -07002653 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002654 FolderIcon folderIcon = (FolderIcon) v;
2655 final FolderInfo info = folderIcon.getFolderInfo();
2656 Folder openFolder = mWorkspace.getFolderForTag(info);
2657
2658 // If the folder info reports that the associated folder is open, then verify that
2659 // it is actually opened. There have been a few instances where this gets out of sync.
2660 if (info.opened && openFolder == null) {
2661 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2662 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2663 info.opened = false;
2664 }
2665
2666 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2667 // Close any open folder
2668 closeFolder();
2669 // Open the requested folder
2670 openFolder(folderIcon);
2671 } else {
2672 // Find the open folder...
2673 int folderScreen;
2674 if (openFolder != null) {
2675 folderScreen = mWorkspace.getPageForView(openFolder);
2676 // .. and close it
2677 closeFolder(openFolder);
2678 if (folderScreen != mWorkspace.getCurrentPage()) {
2679 // Close any folder open on the current screen
2680 closeFolder();
2681 // Pull the folder onto this screen
2682 openFolder(folderIcon);
2683 }
2684 }
2685 }
Adam Cohen9211d422014-10-07 18:14:53 -07002686
2687 if (mLauncherCallbacks != null) {
2688 mLauncherCallbacks.onClickFolderIcon(v);
2689 }
Michael Jurka5130e402011-10-13 04:55:35 -07002690 }
2691
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002692 /**
2693 * Event handler for the (Add) Widgets button that appears after a long press
2694 * on the home screen.
2695 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002696 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002697 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002698 if (mIsSafeModeEnabled) {
2699 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2700 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002701 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002702 if (mLauncherCallbacks != null) {
2703 mLauncherCallbacks.onClickAddWidgetButton(view);
2704 }
Adam Cohen9211d422014-10-07 18:14:53 -07002705 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002706 }
2707
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002708 /**
2709 * Event handler for the wallpaper picker button that appears after a long press
2710 * on the home screen.
2711 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002712 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002713 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002714 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2715 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002716
2717 if (mLauncherCallbacks != null) {
2718 mLauncherCallbacks.onClickWallpaperPicker(v);
2719 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002720 }
2721
2722 /**
2723 * Event handler for a click on the settings button that appears after a long press
2724 * on the home screen.
2725 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002726 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002727 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002728 if (mLauncherCallbacks != null) {
2729 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002730 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002731 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002732 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002733 }
2734
Adam Cohen61f560d2013-09-30 15:58:20 -07002735 public View.OnTouchListener getHapticFeedbackTouchListener() {
2736 if (mHapticFeedbackTouchListener == null) {
2737 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002738 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002739 @Override
2740 public boolean onTouch(View v, MotionEvent event) {
2741 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2742 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2743 }
2744 return false;
2745 }
2746 };
2747 }
2748 return mHapticFeedbackTouchListener;
2749 }
2750
Adam Cohen9211d422014-10-07 18:14:53 -07002751 public void onDragStarted(View view) {
2752 if (isOnCustomContent()) {
2753 // Custom content screen doesn't participate in drag and drop. If on custom
2754 // content screen, move to default.
2755 moveWorkspaceToDefaultScreen();
2756 }
2757
2758 if (mLauncherCallbacks != null) {
2759 mLauncherCallbacks.onDragStarted(view);
2760 }
2761 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002762
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002763 /**
2764 * Called when the user stops interacting with the launcher.
2765 * This implies that the user is now on the homescreen and is not doing housekeeping.
2766 */
Adam Cohen9211d422014-10-07 18:14:53 -07002767 protected void onInteractionEnd() {
2768 if (mLauncherCallbacks != null) {
2769 mLauncherCallbacks.onInteractionEnd();
2770 }
2771 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002772
2773 /**
2774 * Called when the user starts interacting with the launcher.
2775 * The possible interactions are:
2776 * - open all apps
2777 * - reorder an app shortcut, or a widget
2778 * - open the overview mode.
2779 * This is a good time to stop doing things that only make sense
2780 * when the user is on the homescreen and not doing housekeeping.
2781 */
Adam Cohen9211d422014-10-07 18:14:53 -07002782 protected void onInteractionBegin() {
2783 if (mLauncherCallbacks != null) {
2784 mLauncherCallbacks.onInteractionBegin();
2785 }
2786 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002787
Winson Chungcd99cd32015-04-29 11:03:24 -07002788 /** Updates the interaction state. */
2789 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002790 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002791 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002792 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2793 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002794 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002795 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002796 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002797 onInteractionEnd();
2798 }
2799 }
2800
Kenny Guyf07af7b2014-07-31 11:39:16 +01002801 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002802 try {
2803 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002804 launcherApps.showAppDetailsForProfile(componentName, user);
2805 } catch (SecurityException e) {
2806 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2807 Log.e(TAG, "Launcher does not have permission to launch settings");
2808 } catch (ActivityNotFoundException e) {
2809 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2810 Log.e(TAG, "Unable to launch settings");
2811 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002812 }
2813
Michael Jurka1e2f4652013-07-08 18:03:46 -07002814 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002815 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2816 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002817 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002818 // System applications cannot be installed. For now, show a toast explaining that.
2819 // We may give them the option of disabling apps this way.
2820 int messageId = R.string.uninstall_system_app_text;
2821 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002822 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002823 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002824 String packageName = componentName.getPackageName();
2825 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002826 Intent intent = new Intent(
2827 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002828 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2829 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002830 if (user != null) {
2831 user.addToIntent(intent, Intent.EXTRA_USER);
2832 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002833 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002834 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002835 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002836 }
2837
Winson Chung8f1eff72015-05-28 17:33:40 -07002838 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002839 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002840 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002841 // Only launch using the new animation if the shortcut has not opted out (this is a
2842 // private contract between launcher and may be ignored in the future).
2843 boolean useLaunchAnimation = (v != null) &&
2844 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002845 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2846 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002847
Kenny Guy1317e2d2014-05-08 18:52:50 +01002848 UserHandleCompat user = null;
2849 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2850 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2851 user = userManager.getUserForSerialNumber(serialNumber);
2852 }
2853
2854 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002855 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002856 ActivityOptions opts = null;
2857 if (sClipRevealMethod != null) {
2858 // TODO: call method directly when Launcher3 can depend on M APIs
2859 int left = 0, top = 0;
2860 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2861 if (v instanceof TextView) {
2862 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002863 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2864 if (icon != null) {
2865 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002866 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002867 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002868 width = bounds.width();
2869 height = bounds.height();
2870 }
2871 }
2872 try {
2873 opts = (ActivityOptions) sClipRevealMethod.invoke(null, v,
2874 left, top, width, height);
2875 } catch (IllegalAccessException e) {
2876 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2877 sClipRevealMethod = null;
2878 } catch (InvocationTargetException e) {
2879 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2880 sClipRevealMethod = null;
2881 }
2882 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002883 if (opts == null && !Utilities.isLmpOrAbove()) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002884 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002885 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002886 v.getMeasuredWidth(), v.getMeasuredHeight());
Adam Cohen947e02b2015-05-22 19:23:34 -07002887 } else if (opts == null && Utilities.isLmpMR1()) {
2888 // On L devices, we use the device default slide-up transition.
2889 // On L MR1 devices, we a custom version of the slide-up transition which
2890 // doesn't have the delay present in the device default.
2891 opts = ActivityOptions.makeCustomAnimation(this,
2892 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002893 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002894 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002895 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002896
2897 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2898 // Could be launching some bookkeeping activity
2899 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002900 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002901 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002902 launcherApps.startActivityForProfile(intent.getComponent(), user,
2903 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002904 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002905 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002906 } catch (SecurityException e) {
2907 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002908 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002909 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002910 "or use the exported attribute for this activity. "
2911 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002912 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002913 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002914 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002915
Sunny Goyal383c5072015-06-12 21:18:53 -07002916 @Thunk boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002917 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002918 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2919 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2920 return false;
2921 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002922 try {
2923 success = startActivity(v, intent, tag);
2924 } catch (ActivityNotFoundException e) {
2925 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2926 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2927 }
2928 return success;
2929 }
2930
Adam Cohen268c4752012-06-06 17:47:33 -07002931 /**
2932 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2933 * in the DragLayer in the exact absolute location of the original FolderIcon.
2934 */
2935 private void copyFolderIconToImage(FolderIcon fi) {
2936 final int width = fi.getMeasuredWidth();
2937 final int height = fi.getMeasuredHeight();
2938
2939 // Lazy load ImageView, Bitmap and Canvas
2940 if (mFolderIconImageView == null) {
2941 mFolderIconImageView = new ImageView(this);
2942 }
2943 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2944 mFolderIconBitmap.getHeight() != height) {
2945 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2946 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2947 }
2948
2949 DragLayer.LayoutParams lp;
2950 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2951 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2952 } else {
2953 lp = new DragLayer.LayoutParams(width, height);
2954 }
2955
Adam Cohen307fe232012-08-16 17:55:58 -07002956 // The layout from which the folder is being opened may be scaled, adjust the starting
2957 // view size by this scale factor.
2958 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002959 lp.customPosition = true;
2960 lp.x = mRectForFolderAnimation.left;
2961 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002962 lp.width = (int) (scale * width);
2963 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002964
2965 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2966 fi.draw(mFolderIconCanvas);
2967 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002968 if (fi.getFolder() != null) {
2969 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2970 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002971 }
Adam Cohen268c4752012-06-06 17:47:33 -07002972 // Just in case this image view is still in the drag layer from a previous animation,
2973 // we remove it and re-add it.
2974 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2975 mDragLayer.removeView(mFolderIconImageView);
2976 }
2977 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002978 if (fi.getFolder() != null) {
2979 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002980 }
Adam Cohen268c4752012-06-06 17:47:33 -07002981 }
2982
Adam Cohen2801caf2011-05-13 20:57:39 -07002983 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002984 if (fi == null) return;
Adam Cohenc51934b2011-07-26 21:07:43 -07002985 FolderInfo info = (FolderInfo) fi.getTag();
2986 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2987 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002988 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2989 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002990 }
2991
Adam Cohen268c4752012-06-06 17:47:33 -07002992 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2993 copyFolderIconToImage(fi);
2994 fi.setVisibility(View.INVISIBLE);
2995
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002996 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(
2997 mFolderIconImageView, 0, 1.5f, 1.5f);
Kenny Guyd794a3f2014-09-16 15:17:58 +01002998 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002999 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3000 }
3001 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003002 oa.start();
3003 }
3004
Adam Cohen268c4752012-06-06 17:47:33 -07003005 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003006 if (fi == null) return;
Adam Cohen268c4752012-06-06 17:47:33 -07003007 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003008
Adam Cohen268c4752012-06-06 17:47:33 -07003009 // We remove and re-draw the FolderIcon in-case it has changed
3010 mDragLayer.removeView(mFolderIconImageView);
3011 copyFolderIconToImage(fi);
Sunny Goyal5d2fc322015-07-06 22:52:49 -07003012 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(mFolderIconImageView, 1, 1, 1);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003013 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003014 oa.addListener(new AnimatorListenerAdapter() {
3015 @Override
3016 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003017 if (cl != null) {
3018 cl.clearFolderLeaveBehind();
3019 // Remove the ImageView copy of the FolderIcon and make the original visible.
3020 mDragLayer.removeView(mFolderIconImageView);
3021 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003022 }
3023 }
3024 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003025 oa.start();
3026 }
3027
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003028 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003029 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003030 * is animated relative to the specified View. If the View is null, no animation
3031 * is played.
3032 *
3033 * @param folderInfo The FolderInfo describing the folder to open.
3034 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003035 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003036 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003037 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3038 if (openFolder != null && openFolder != folder) {
3039 // Close any open folder before opening a folder.
3040 closeFolder();
3041 }
3042
Adam Cohena9cf38f2011-05-02 15:36:58 -07003043 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003044
Adam Cohena9cf38f2011-05-02 15:36:58 -07003045 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003046
Sunny Goyalf4066152015-04-15 09:42:19 -07003047 // While the folder is open, the position of the icon cannot change.
3048 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3049
Adam Cohen4554ee12011-08-03 16:13:21 -07003050 // Just verify that the folder hasn't already been added to the DragLayer.
3051 // There was a one-off crash where the folder had a parent already.
3052 if (folder.getParent() == null) {
3053 mDragLayer.addView(folder);
3054 mDragController.addDropTarget((DropTarget) folder);
3055 } else {
3056 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3057 folder.getParent() + ").");
3058 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003059 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003060 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003061
3062 // Notify the accessibility manager that this folder "window" has appeared and occluded
3063 // the workspace items
3064 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3065 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003066 }
3067
3068 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003069 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003070 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003071 if (folder.isEditingName()) {
3072 folder.dismissEditingName();
3073 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003074 closeFolder(folder);
3075 }
3076 }
3077
Sunny Goyal83a8f042015-05-19 12:52:12 -07003078 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003079 folder.getInfo().opened = false;
3080
3081 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3082 if (parent != null) {
3083 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3084 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003085 if (fi != null) {
3086 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3087 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003088 }
3089 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003090
3091 // Notify the accessibility manager that this folder "window" has disappeard and no
3092 // longer occludeds the workspace items
3093 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003094 }
3095
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003096 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003097 if (!isDraggingEnabled()) return false;
3098 if (isWorkspaceLocked()) return false;
3099 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003100
Winson Chung76648c52015-07-10 14:33:23 -07003101 if (v == mAllAppsButton) {
3102 onLongClickAllAppsButton(v);
3103 return true;
3104 }
3105
Adam Cohen1697b792013-09-17 19:08:21 -07003106 if (v instanceof Workspace) {
3107 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003108 if (!mWorkspace.isTouchActive()) {
3109 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003110 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3111 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3112 return true;
3113 } else {
3114 return false;
3115 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003116 } else {
3117 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003118 }
Adam Cohen1697b792013-09-17 19:08:21 -07003119 }
3120
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003121 CellLayout.CellInfo longClickCellInfo = null;
3122 View itemUnderLongClick = null;
3123 if (v.getTag() instanceof ItemInfo) {
3124 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003125 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003126 itemUnderLongClick = longClickCellInfo.cell;
3127 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003128 }
3129
Winson Chung3d503fb2011-07-13 17:25:49 -07003130 // The hotseat touch handling does not go through Workspace, and we always allow long press
3131 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003132 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003133 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003134 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003135 // User long pressed on empty space
3136 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3137 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003138 if (mWorkspace.isInOverviewMode()) {
3139 mWorkspace.startReordering(v);
3140 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003141 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003142 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003143 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003144 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3145 mHotseat.getOrderInHotseat(
3146 longClickCellInfo.cellX,
3147 longClickCellInfo.cellY));
3148 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003149 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003150 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003151 }
3152 }
3153 }
3154 return true;
3155 }
3156
Winson Chung3d503fb2011-07-13 17:25:49 -07003157 boolean isHotseatLayout(View layout) {
3158 return mHotseat != null && layout != null &&
3159 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3160 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003161
Winson Chung3d503fb2011-07-13 17:25:49 -07003162 /**
3163 * Returns the CellLayout of the specified container at the specified screen.
3164 */
Sunny Goyal92820592015-03-02 11:31:35 -08003165 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003166 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3167 if (mHotseat != null) {
3168 return mHotseat.getLayout();
3169 } else {
3170 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003171 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003172 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003173 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003174 }
3175 }
3176
Winson Chungb745afb2015-03-02 11:51:23 -08003177 /**
3178 * For overridden classes.
3179 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003180 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003181 return isAppsViewVisible();
3182 }
3183
3184 public boolean isAppsViewVisible() {
3185 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3186 }
3187
3188 public boolean isWidgetsViewVisible() {
3189 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003190 }
3191
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003192 private void setWorkspaceBackground(int background) {
3193 switch (background) {
3194 case WORKSPACE_BACKGROUND_TRANSPARENT:
3195 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3196 break;
3197 case WORKSPACE_BACKGROUND_BLACK:
3198 getWindow().setBackgroundDrawable(null);
3199 break;
3200 default:
3201 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3202 }
Craig Mautner360310b2012-10-26 15:13:08 -07003203 }
3204
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003205 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003206 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3207 int curflags = getWindow().getAttributes().flags
3208 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3209 if (wpflags != curflags) {
3210 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3211 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003212 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003213 }
3214
Michael Jurkae326f182011-11-21 14:05:46 -08003215 @Override
3216 public void onTrimMemory(int level) {
3217 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003218 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3219 // The widget preview db can result in holding onto over
3220 // 3MB of memory for caching which isn't necessary.
3221 SQLiteDatabase.releaseMemory();
3222
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003223 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003224 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003225 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003226 if (mLauncherCallbacks != null) {
3227 mLauncherCallbacks.onTrimMemory(level);
3228 }
Michael Jurkae326f182011-11-21 14:05:46 -08003229 }
3230
Winson Chungb745afb2015-03-02 11:51:23 -08003231 @Override
3232 public void onStateTransitionHideSearchBar() {
3233 // Hide the search bar
3234 if (mSearchDropTargetBar != null) {
3235 mSearchDropTargetBar.hideSearchBar(false /* animated */);
3236 }
Adam Cohened66b2b2012-01-23 17:28:51 -08003237 }
3238
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003239 public void showWorkspace(boolean animated) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003240 showWorkspace(animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003241 }
3242
Sunny Goyal83a8f042015-05-19 12:52:12 -07003243 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003244 boolean changed = mState != State.WORKSPACE ||
3245 mWorkspace.getState() != Workspace.State.NORMAL;
3246 if (changed) {
Winson Chung2d75f122013-09-23 16:53:31 -07003247 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003248 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003249 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.NORMAL,
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003250 animated, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003251
Winson Chungc7d2b602012-05-16 17:02:20 -07003252 // Show the search bar (only animate if we were showing the drop target bar in spring
3253 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003254 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003255 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003256 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003257
Michael Jurkab3e22d92011-10-31 15:58:33 -07003258 // Set focus to the AppsCustomize button
3259 if (mAllAppsButton != null) {
3260 mAllAppsButton.requestFocus();
3261 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003262 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003263
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003264 // Change the state *after* we've called all the transition code
3265 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003266
Winson Chung5fb63472011-02-02 17:03:37 -08003267 // Resume the auto-advance of widgets
3268 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003269 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003270
Winson Chung0f785722015-04-08 10:27:49 -07003271 if (changed) {
3272 // Send an accessibility event to announce the context change
3273 getWindow().getDecorView()
3274 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003275 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003276 }
3277
Adam Cohened307df2013-10-02 09:37:31 -07003278 void showOverviewMode(boolean animated) {
3279 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003280 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.OVERVIEW,
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003281 animated, null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003282 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003283 }
3284
Winson Chungb745afb2015-03-02 11:51:23 -08003285 /**
3286 * Shows the apps view.
3287 */
Winson Chung76648c52015-07-10 14:33:23 -07003288 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3289 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003290 if (resetListToTop) {
3291 mAppsView.scrollToTop();
3292 }
Winson Chung4ac30062015-05-08 17:34:17 -07003293 if (updatePredictedApps) {
3294 tryAndUpdatePredictedApps();
3295 }
Winson Chung76648c52015-07-10 14:33:23 -07003296 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003297 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003298
Winson Chungb745afb2015-03-02 11:51:23 -08003299 /**
3300 * Shows the widgets view.
3301 */
3302 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003303 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003304 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003305 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003306 }
Winson Chung76648c52015-07-10 14:33:23 -07003307 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003308
3309 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003310 @Override
3311 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003312 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003313 }
3314 });
Winson Chungb745afb2015-03-02 11:51:23 -08003315 }
3316
3317 /**
3318 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003319 *
3320 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003321 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003322 // TODO: calling method should use the return value so that when {@code false} is returned
3323 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003324 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003325 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3326 mState != State.WIDGETS_SPRING_LOADED) {
3327 return false;
3328 }
3329 if (toState != State.APPS && toState != State.WIDGETS) {
3330 return false;
3331 }
Winson Chungb745afb2015-03-02 11:51:23 -08003332
3333 if (toState == State.APPS) {
Winson Chung76648c52015-07-10 14:33:23 -07003334 mStateTransitionAnimation.startAnimationToAllApps(animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003335 } else {
3336 mStateTransitionAnimation.startAnimationToWidgets(animated);
3337 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003338
Michael Jurkab3e22d92011-10-31 15:58:33 -07003339 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003340 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003341
3342 // Pause the auto-advance of widgets until we are out of AllApps
3343 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003344 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003345 closeFolder();
3346
3347 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003348 getWindow().getDecorView()
3349 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003350 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003351 }
3352
Winson Chungcd99cd32015-04-29 11:03:24 -07003353 /**
3354 * Updates the workspace and interaction state on state change, and return the animation to this
3355 * new state.
3356 */
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003357 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState,
Winson Chungef7f8742015-06-04 17:18:17 -07003358 boolean animated, boolean hasOverlaySearchBar, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003359 Workspace.State fromState = mWorkspace.getState();
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003360 Animator anim = mWorkspace.setStateWithAnimation(
3361 toState, animated, hasOverlaySearchBar, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003362 updateInteraction(fromState, toState);
3363 return anim;
3364 }
3365
Jun Mukaif0033da2015-08-04 18:34:30 -07003366 public void onLauncherClingShown() {
3367 // When a launcher cling appears, it should cover the underlying layers, so their focus
3368 // should be blocked.
3369 if (mDragLayer.getDescendantFocusability() != ViewGroup.FOCUS_BLOCK_DESCENDANTS) {
3370 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
3371 }
3372 }
3373
3374 public void onLauncherClingDismissed() {
3375 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
3376 }
3377
Hyunyoung Song3f471442015-04-08 19:01:34 -07003378 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003379 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003380 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3381 mState == State.WIDGETS_SPRING_LOADED) {
3382 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003383 }
Winson Chungb745afb2015-03-02 11:51:23 -08003384
3385 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.SPRING_LOADED,
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003386 true /* animated */, null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003387 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003388 }
Adam Cohen7777d962011-08-18 18:58:38 -07003389
Hyunyoung Song3f471442015-04-08 19:01:34 -07003390 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003391 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003392 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003393
Winson Chunge7a03942011-08-05 15:05:12 -07003394 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003395 @Override
3396 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003397 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003398 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3399 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003400 // Before we show workspace, hide all apps again because
3401 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3402 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003403 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003404 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003405 } else {
3406 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003407 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003408 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003409 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003410 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003411
Michael Jurkad3ef3062010-11-23 16:23:58 -08003412 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003413 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003414 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003415 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003416 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003417 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003418 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003419 }
3420
Winson Chung4ac30062015-05-08 17:34:17 -07003421 /**
3422 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3423 * resumed.
3424 */
3425 private void tryAndUpdatePredictedApps() {
3426 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003427 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003428 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003429 mAppsView.setPredictedApps(apps);
3430 }
3431 }
3432 }
3433
Michael Jurkab3e22d92011-10-31 15:58:33 -07003434 void lockAllApps() {
3435 // TODO
3436 }
3437
3438 void unlockAllApps() {
3439 // TODO
3440 }
3441
Sunny Goyal594d76d2014-11-06 10:12:54 -08003442 protected void disableVoiceButtonProxy(boolean disable) {
3443 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003444 }
3445
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003446 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003447 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3448 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003449 }
3450
Adam Cohen24ce0b32014-01-14 16:18:14 -08003451 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003452 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3453 if (searchProvider == null) {
3454 return null;
3455 }
3456
3457 Bundle opts = new Bundle();
3458 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003459 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003460
3461 SharedPreferences sp = getSharedPreferences(
3462 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3463 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003464 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003465 if (!searchProvider.provider.flattenToString().equals(
3466 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003467 || (widgetInfo == null)
3468 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003469 // A valid widget is not already bound.
3470 if (widgetId > -1) {
3471 mAppWidgetHost.deleteAppWidgetId(widgetId);
3472 widgetId = -1;
3473 }
3474
3475 // Try to bind a new widget
3476 widgetId = mAppWidgetHost.allocateAppWidgetId();
3477
3478 if (!AppWidgetManagerCompat.getInstance(this)
3479 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3480 mAppWidgetHost.deleteAppWidgetId(widgetId);
3481 widgetId = -1;
3482 }
3483
3484 sp.edit()
3485 .putInt(QSB_WIDGET_ID, widgetId)
3486 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3487 .commit();
3488 }
3489
Sunny Goyal8d595092015-07-06 12:22:14 -07003490 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003491 if (widgetId != -1) {
3492 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3493 mQsb.updateAppWidgetOptions(opts);
3494 mQsb.setPadding(0, 0, 0, 0);
3495 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003496 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003497 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003498 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003499 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003500 }
3501
Sunny Goyal22235bc2015-04-03 09:23:43 -07003502 private void reinflateQSBIfNecessary() {
3503 if (mQsb instanceof LauncherAppWidgetHostView &&
3504 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3505 mSearchDropTargetBar.removeView(mQsb);
3506 mQsb = null;
3507 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3508 }
3509 }
3510
Michael Jurkad7c28052012-04-27 15:43:36 -07003511 @Override
3512 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003513 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003514 final List<CharSequence> text = event.getText();
3515 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003516 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003517 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003518 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003519 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003520 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003521 } else if (mWorkspace != null) {
3522 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003523 } else {
3524 text.add(getString(R.string.all_apps_home_button_label));
3525 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003526 return result;
3527 }
3528
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003529 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003530 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003531 */
Adam Cohen091440a2015-03-18 14:16:05 -07003532 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003533 @Override
3534 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003535 closeSystemDialogs();
3536 }
3537 }
3538
3539 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003540 * If the activity is currently paused, signal that we need to run the passed Runnable
3541 * in onResume.
3542 *
3543 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003544 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3545 * wrong when we're not running, and if the activity comes back to what the configuration was
3546 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003547 *
3548 * Implementation of the method from LauncherModel.Callbacks.
3549 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003550 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003551 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003552 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003553 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003554 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003555 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003556 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003557 }
3558 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003559 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003560 return true;
3561 } else {
3562 return false;
3563 }
3564 }
3565
Michael Jurkac402cd92013-05-20 15:49:32 +02003566 private boolean waitUntilResume(Runnable run) {
3567 return waitUntilResume(run, false);
3568 }
3569
Michael Jurka1e2f4652013-07-08 18:03:46 -07003570 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003571 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003572 }
3573
Michael Jurka7607c2f2013-04-03 14:33:19 -07003574 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003575 * If the activity is currently paused, signal that we need to re-run the loader
3576 * in onResume.
3577 *
3578 * This needs to be called from incoming places where resources might have been loaded
3579 * while we are paused. That is becaues the Configuration might be wrong
3580 * when we're not running, and if it comes back to what it was when we
3581 * were paused, we are not restarted.
3582 *
3583 * Implementation of the method from LauncherModel.Callbacks.
3584 *
3585 * @return true if we are currently paused. The caller might be able to
3586 * skip some work in that case since we will come back again.
3587 */
3588 public boolean setLoadOnResume() {
3589 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003590 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003591 mOnResumeNeedsLoad = true;
3592 return true;
3593 } else {
3594 return false;
3595 }
3596 }
3597
3598 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003599 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003600 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003601 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003602 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003603 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003604 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07003605 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07003606 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003607 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003608
Joe Onorato9c1289c2009-08-17 11:03:03 -04003609 /**
3610 * Refreshes the shortcuts shown on the workspace.
3611 *
3612 * Implementation of the method from LauncherModel.Callbacks.
3613 */
3614 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003615 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003616
Michael Jurka7607c2f2013-04-03 14:33:19 -07003617 // If we're starting binding all over again, clear any bind calls we'd postponed in
3618 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3619 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003620 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003621
Winson Chungd64d1762013-08-20 14:37:16 -07003622 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003623 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003624 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003625
Michael Jurka05bf644e2011-11-30 20:28:53 -08003626 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003627 if (mHotseat != null) {
3628 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003629 }
3630 }
3631
Adam Cohendcd297f2013-06-18 13:13:40 -07003632 @Override
3633 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003634 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003635
Adam Cohen5084cba2013-09-03 12:01:16 -07003636 // If there are no screens, we need to have an empty screen
3637 if (orderedScreenIds.size() == 0) {
3638 mWorkspace.addExtraEmptyScreen();
3639 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003640
3641 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003642 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003643 if (hasCustomContentToLeft()) {
3644 mWorkspace.createCustomContentContainer();
3645 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003646 }
Winson Chung64359a52013-07-08 17:17:08 -07003647 }
3648
3649 @Override
3650 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003651 int count = orderedScreenIds.size();
3652 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003653 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003654 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003655 }
3656
Adam Cohen39a06042013-07-19 14:30:12 -07003657 private boolean shouldShowWeightWatcher() {
3658 String spKey = LauncherAppState.getSharedPreferencesKey();
3659 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003660 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003661
3662 return show;
3663 }
3664
3665 private void toggleShowWeightWatcher() {
3666 String spKey = LauncherAppState.getSharedPreferencesKey();
3667 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3668 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3669
3670 show = !show;
3671
3672 SharedPreferences.Editor editor = sp.edit();
3673 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3674 editor.commit();
3675
3676 if (mWeightWatcher != null) {
3677 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3678 }
3679 }
3680
Winson Chungd64d1762013-08-20 14:37:16 -07003681 public void bindAppsAdded(final ArrayList<Long> newScreens,
3682 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003683 final ArrayList<ItemInfo> addAnimated,
3684 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003685 Runnable r = new Runnable() {
3686 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003687 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003688 }
3689 };
3690 if (waitUntilResume(r)) {
3691 return;
3692 }
3693
Winson Chungd64d1762013-08-20 14:37:16 -07003694 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003695 if (newScreens != null) {
3696 bindAddScreens(newScreens);
3697 }
Winson Chungd64d1762013-08-20 14:37:16 -07003698
3699 // We add the items without animation on non-visible pages, and with
3700 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003701 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003702 bindItems(addNotAnimated, 0,
3703 addNotAnimated.size(), false);
3704 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003705 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003706 bindItems(addAnimated, 0,
3707 addAnimated.size(), true);
3708 }
Winson Chungc58497e2013-09-03 17:48:37 -07003709
Winson Chung87412982013-10-03 18:34:14 -07003710 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003711 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003712
Winson Chungb745afb2015-03-02 11:51:23 -08003713 if (addedApps != null && mAppsView != null) {
3714 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003715 }
Winson Chungd64d1762013-08-20 14:37:16 -07003716 }
3717
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003718 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003719 * Bind the items start-end from the list.
3720 *
3721 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003722 */
Winson Chung64359a52013-07-08 17:17:08 -07003723 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3724 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003725 Runnable r = new Runnable() {
3726 public void run() {
3727 bindItems(shortcuts, start, end, forceAnimateIcons);
3728 }
3729 };
3730 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003731 return;
3732 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003733
Winson Chungf0c6ae02012-03-21 16:10:31 -07003734 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003735 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3736 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003737 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003738 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003739 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003740 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003741 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003742
3743 // Short circuit if we are loading dock items for a configuration which has no dock
3744 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3745 mHotseat == null) {
3746 continue;
3747 }
3748
Joe Onorato9c1289c2009-08-17 11:03:03 -04003749 switch (item.itemType) {
3750 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3751 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003752 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003753 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003754
Winson Chung64359a52013-07-08 17:17:08 -07003755 /*
3756 * TODO: FIX collision case
3757 */
Winson Chungce376632013-07-11 16:12:41 -07003758 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3759 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3760 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003761 View v = cl.getChildAt(item.cellX, item.cellY);
3762 Object tag = v.getTag();
3763 String desc = "Collision while binding workspace item: " + item
3764 + ". Collides with " + tag;
Sunny Goyal6c56c682015-07-16 14:09:05 -07003765 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003766 throw (new RuntimeException(desc));
3767 } else {
3768 Log.d(TAG, desc);
3769 }
Winson Chungce376632013-07-11 16:12:41 -07003770 }
Winson Chung64359a52013-07-08 17:17:08 -07003771 }
3772
Adam Cohendcd297f2013-06-18 13:13:40 -07003773 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3774 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003775 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003776 // Animate all the applications up now
3777 shortcut.setAlpha(0f);
3778 shortcut.setScaleX(0f);
3779 shortcut.setScaleY(0f);
3780 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003781 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003782 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003783 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003784 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003785 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003786 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003787 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003788 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3789 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003790 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003791 default:
3792 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003793 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003794 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003795
Winson Chung997a9232013-07-24 15:33:46 -07003796 if (animateIcons) {
3797 // Animate to the correct page
3798 if (newShortcutsScreenId > -1) {
3799 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003800 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003801 final Runnable startBounceAnimRunnable = new Runnable() {
3802 public void run() {
3803 anim.playTogether(bounceAnims);
3804 anim.start();
3805 }
3806 };
Winson Chung997a9232013-07-24 15:33:46 -07003807 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003808 // We post the animation slightly delayed to prevent slowdowns
3809 // when we are loading right after we return to launcher.
3810 mWorkspace.postDelayed(new Runnable() {
3811 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003812 if (mWorkspace != null) {
3813 mWorkspace.snapToPage(newScreenIndex);
3814 mWorkspace.postDelayed(startBounceAnimRunnable,
3815 NEW_APPS_ANIMATION_DELAY);
3816 }
Winson Chung94d67682013-09-25 16:29:40 -07003817 }
3818 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003819 } else {
3820 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003821 }
3822 }
Winson Chung64359a52013-07-08 17:17:08 -07003823 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003824 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003825 }
3826
Joe Onorato9c1289c2009-08-17 11:03:03 -04003827 /**
3828 * Implementation of the method from LauncherModel.Callbacks.
3829 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003830 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003831 Runnable r = new Runnable() {
3832 public void run() {
3833 bindFolders(folders);
3834 }
3835 };
3836 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003837 return;
3838 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003839 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003840 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003841
3842 /**
3843 * Add the views for a widget to the workspace.
3844 *
3845 * Implementation of the method from LauncherModel.Callbacks.
3846 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003847 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003848 Runnable r = new Runnable() {
3849 public void run() {
3850 bindAppWidget(item);
3851 }
3852 };
3853 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003854 return;
3855 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003856
Daniel Sandler843e8602010-06-07 14:59:01 -04003857 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3858 if (DEBUG_WIDGETS) {
3859 Log.d(TAG, "bindAppWidget: " + item);
3860 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003861 final Workspace workspace = mWorkspace;
3862
Adam Cohen59400422014-03-05 18:07:04 -08003863 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003864 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003865
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003866 if (!mIsSafeModeEnabled
3867 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
3868 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
Sunny Goyalff572272014-07-23 13:58:07 -07003869 if (appWidgetInfo == null) {
3870 if (DEBUG_WIDGETS) {
3871 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3872 + " belongs to component " + item.providerName
3873 + ", as the povider is null");
3874 }
3875 LauncherModel.deleteItemFromDatabase(this, item);
3876 return;
3877 }
3878 // Note: This assumes that the id remap broadcast is received before this step.
3879 // If that is not the case, the id remap will be ignored and user may see the
3880 // click to setup view.
Adam Cohen2e6da152015-05-06 11:42:25 -07003881 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
Sunny Goyalff572272014-07-23 13:58:07 -07003882 pendingInfo.spanX = item.spanX;
3883 pendingInfo.spanY = item.spanY;
3884 pendingInfo.minSpanX = item.minSpanX;
3885 pendingInfo.minSpanY = item.minSpanY;
Hyunyoung Song3f471442015-04-08 19:01:34 -07003886 Bundle options = null;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -07003887 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003888
Sunny Goyalff572272014-07-23 13:58:07 -07003889 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07003890 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3891 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07003892
3893 // TODO consider showing a permission dialog when the widget is clicked.
3894 if (!success) {
3895 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3896 if (DEBUG_WIDGETS) {
3897 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3898 + " belongs to component " + item.providerName
3899 + ", as the launcher is unable to bing a new widget id");
3900 }
3901 LauncherModel.deleteItemFromDatabase(this, item);
3902 return;
3903 }
3904
3905 item.appWidgetId = newWidgetId;
3906
3907 // If the widget has a configure activity, it is still needs to set it up, otherwise
3908 // the widget is ready to go.
3909 item.restoreStatus = (appWidgetInfo.configure == null)
3910 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3911 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3912
3913 LauncherModel.updateItemInDatabase(this, item);
3914 }
3915
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003916 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003917 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003918 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003919 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3920 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003921 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003922
Sunny Goyal651077b2014-06-30 14:15:31 -07003923 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07003924 item.minSpanX = appWidgetInfo.minSpanX;
3925 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07003926 } else {
3927 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003928 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3929 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003930 view.updateIcon(mIconCache);
3931 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003932 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003933 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003934 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003935
Joe Onorato9c1289c2009-08-17 11:03:03 -04003936 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003937 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003938
Adam Cohendcd297f2013-06-18 13:13:40 -07003939 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003940 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003941 if (!item.isCustomWidget()) {
3942 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3943 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003944
Joe Onorato9c1289c2009-08-17 11:03:03 -04003945 workspace.requestLayout();
3946
Daniel Sandler843e8602010-06-07 14:59:01 -04003947 if (DEBUG_WIDGETS) {
3948 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3949 + (SystemClock.uptimeMillis()-start) + "ms");
3950 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003951 }
3952
Sunny Goyalff572272014-07-23 13:58:07 -07003953 /**
3954 * Restores a pending widget.
3955 *
3956 * @param appWidgetId The app widget id
3957 * @param cellInfo The position on screen where to create the widget.
3958 */
3959 private void completeRestoreAppWidget(final int appWidgetId) {
3960 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3961 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3962 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3963 return;
3964 }
3965
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003966 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003967 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3968
3969 mWorkspace.reinflateWidgetsIfNecessary();
3970 LauncherModel.updateItemInDatabase(this, info);
3971 }
3972
Adam Cohen1462de32012-07-24 22:34:36 -07003973 public void onPageBoundSynchronously(int page) {
3974 mSynchronouslyBoundPages.add(page);
3975 }
3976
Joe Onorato9c1289c2009-08-17 11:03:03 -04003977 /**
3978 * Callback saying that there aren't any more items to bind.
3979 *
3980 * Implementation of the method from LauncherModel.Callbacks.
3981 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003982 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07003983 Runnable r = new Runnable() {
3984 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003985 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07003986 }
3987 };
3988 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003989 return;
3990 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003991 if (mSavedState != null) {
3992 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003993 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003994 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003995 mSavedState = null;
3996 }
3997
Adam Cohen1462de32012-07-24 22:34:36 -07003998 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003999
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004000 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004001 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004002
4003 // If we received the result of any pending adds while the loader was running (e.g. the
4004 // widget configuration forced an orientation change), process them now.
4005 if (sPendingAddItem != null) {
4006 final long screenId = completeAdd(sPendingAddItem);
4007
4008 // TODO: this moves the user to the page where the pending item was added. Ideally,
4009 // the screen would be guaranteed to exist after bind, and the page would be set through
4010 // the workspace restore process.
4011 mWorkspace.post(new Runnable() {
4012 @Override
4013 public void run() {
4014 mWorkspace.snapToScreenId(screenId);
4015 }
4016 });
4017 sPendingAddItem = null;
4018 }
4019
Sunny Goyal756adbc2015-04-16 15:20:51 -07004020 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004021
4022 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004023 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004024 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004025 }
4026
Adam Cohen3ed316a2014-07-23 18:21:20 -07004027 private void sendLoadingCompleteBroadcastIfNecessary() {
4028 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4029 String permission =
4030 getResources().getString(R.string.receive_first_load_broadcast_permission);
4031 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4032 sendBroadcast(intent, permission);
4033 SharedPreferences.Editor editor = mSharedPrefs.edit();
4034 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4035 editor.apply();
4036 }
4037 }
4038
Winson Chunga0b7e862013-09-05 16:03:15 -07004039 public boolean isAllAppsButtonRank(int rank) {
4040 if (mHotseat != null) {
4041 return mHotseat.isAllAppsButtonRank(rank);
4042 }
4043 return false;
4044 }
4045
Winson Chunga2413752012-04-03 14:22:34 -07004046 private boolean canRunNewAppsAnimation() {
4047 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4048 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4049 }
4050
Winson Chungc9168342013-06-26 14:54:55 -07004051 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
Sunny Goyal5d2fc322015-07-06 22:52:49 -07004052 ValueAnimator bounceAnim = LauncherAnimUtils.ofViewAlphaAndScale(v, 1, 1, 1);
Winson Chungc9168342013-06-26 14:54:55 -07004053 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4054 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004055 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004056 return bounceAnim;
4057 }
4058
Adam Cohen27772732013-11-11 14:00:56 +00004059 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004060 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004061 }
4062
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004063 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004064 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004065 }
4066
Winson Chung88fa7412015-08-03 14:25:28 -07004067 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004068 if (mSearchDropTargetBar == null) {
4069 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004070 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004071 if (mQsb != null) {
4072 mSearchDropTargetBar.removeView(mQsb);
4073 mQsb = null;
4074 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004075 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004076 }
4077
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004078 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004079 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4080 * multiple calls to bind the same list.)
4081 */
4082 @Thunk ArrayList<AppInfo> mTmpAppsList;
4083 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4084 public void run() {
4085 bindAllApplications(mTmpAppsList);
4086 mTmpAppsList = null;
4087 }
4088 };
4089
4090 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004091 * Add the icons for all apps.
4092 *
4093 * Implementation of the method from LauncherModel.Callbacks.
4094 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004095 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004096 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4097 mTmpAppsList = apps;
4098 return;
4099 }
4100
Winson Chungb745afb2015-03-02 11:51:23 -08004101 if (mAppsView != null) {
4102 mAppsView.setApps(apps);
4103 }
Adam Cohen9211d422014-10-07 18:14:53 -07004104 if (mLauncherCallbacks != null) {
4105 mLauncherCallbacks.bindAllApplications(apps);
4106 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004107 }
4108
4109 /**
4110 * A package was updated.
4111 *
4112 * Implementation of the method from LauncherModel.Callbacks.
4113 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004114 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004115 Runnable r = new Runnable() {
4116 public void run() {
4117 bindAppsUpdated(apps);
4118 }
4119 };
4120 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004121 return;
4122 }
4123
Winson Chungb745afb2015-03-02 11:51:23 -08004124 if (mAppsView != null) {
4125 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004126 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004127 }
4128
Sunny Goyal4390ace2014-10-13 11:33:11 -07004129 @Override
4130 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4131 Runnable r = new Runnable() {
4132 public void run() {
4133 bindWidgetsRestored(widgets);
4134 }
4135 };
4136 if (waitUntilResume(r)) {
4137 return;
4138 }
4139 mWorkspace.widgetsRestored(widgets);
4140 }
4141
Joe Onorato9c1289c2009-08-17 11:03:03 -04004142 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004143 * Some shortcuts were updated in the background.
4144 *
4145 * Implementation of the method from LauncherModel.Callbacks.
4146 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004147 @Override
4148 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4149 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004150 Runnable r = new Runnable() {
4151 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004152 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004153 }
4154 };
4155 if (waitUntilResume(r)) {
4156 return;
4157 }
4158
Sunny Goyal4390ace2014-10-13 11:33:11 -07004159 if (!updated.isEmpty()) {
4160 mWorkspace.updateShortcuts(updated);
4161 }
4162
4163 if (!removed.isEmpty()) {
4164 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4165 for (ShortcutInfo si : removed) {
4166 removedComponents.add(si.getTargetComponent());
4167 }
4168 mWorkspace.removeItemsByComponentName(removedComponents, user);
4169 // Notify the drag controller
4170 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004171 }
4172 }
4173
4174 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004175 * Update the state of a package, typically related to install state.
4176 *
4177 * Implementation of the method from LauncherModel.Callbacks.
4178 */
Sunny Goyale755d462014-07-22 13:48:29 -07004179 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004180 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4181 Runnable r = new Runnable() {
4182 public void run() {
4183 bindRestoreItemsChange(updates);
4184 }
4185 };
4186 if (waitUntilResume(r)) {
4187 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004188 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004189
Sunny Goyal756adbc2015-04-16 15:20:51 -07004190 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004191 }
4192
4193 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004194 * A package was uninstalled. We take both the super set of packageNames
4195 * in addition to specific applications to remove, the reason being that
4196 * this can be called when a package is updated as well. In that scenario,
4197 * we only remove specific components from the workspace, where as
4198 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004199 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004200 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004201 * Implementation of the method from LauncherModel.Callbacks.
4202 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004203 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004204 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004205 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004206 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004207 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004208 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004209 }
Winson Chungd64d1762013-08-20 14:37:16 -07004210 };
4211 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004212 return;
4213 }
4214
Sunny Goyal1a745e82014-10-02 15:58:31 -07004215 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004216 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4217 for (AppInfo info : appInfos) {
4218 removedComponents.add(info.componentName);
4219 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004220 if (!packageNames.isEmpty()) {
4221 mWorkspace.removeItemsByPackageName(packageNames, user);
4222 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004223 if (!removedComponents.isEmpty()) {
4224 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004225 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004226 // Notify the drag controller
4227 mDragController.onAppsRemoved(packageNames, removedComponents);
4228
Sunny Goyal1a745e82014-10-02 15:58:31 -07004229 } else {
4230 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004231 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004232
Winson Chungdf95eb12013-10-16 14:57:07 -07004233 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004234 if (mAppsView != null) {
4235 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004236 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004237 }
Joe Onoratobe386092009-11-17 17:32:16 -08004238
Michael Jurkac402cd92013-05-20 15:49:32 +02004239 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004240 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004241 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004242 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004243 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004244
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004245 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004246 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004247 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004248 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004249 return;
4250 }
4251
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004252 if (mWidgetsView != null && model != null) {
4253 mWidgetsView.addWidgets(model);
4254 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004255 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004256 }
4257
Winson Chung400438b2011-01-16 17:53:48 -08004258 private int mapConfigurationOriActivityInfoOri(int configOri) {
4259 final Display d = getWindowManager().getDefaultDisplay();
4260 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4261 switch (d.getRotation()) {
4262 case Surface.ROTATION_0:
4263 case Surface.ROTATION_180:
4264 // We are currently in the same basic orientation as the natural orientation
4265 naturalOri = configOri;
4266 break;
4267 case Surface.ROTATION_90:
4268 case Surface.ROTATION_270:
4269 // We are currently in the other basic orientation to the natural orientation
4270 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4271 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4272 break;
4273 }
4274
4275 int[] oriMap = {
4276 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4277 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4278 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4279 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4280 };
4281 // Since the map starts at portrait, we need to offset if this device's natural orientation
4282 // is landscape.
4283 int indexOffset = 0;
4284 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4285 indexOffset = 1;
4286 }
4287 return oriMap[(d.getRotation() + indexOffset) % 4];
4288 }
Adam Cohen446e9402011-09-15 18:21:21 -07004289
Winson Chung4b919f82012-05-01 10:44:08 -07004290 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004291 if (mRotationEnabled) {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004292 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
4293 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4294 .getConfiguration().orientation));
4295 } else {
4296 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4297 }
Winson Chung4b919f82012-05-01 10:44:08 -07004298 }
4299 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004300
Winson Chung4b919f82012-05-01 10:44:08 -07004301 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004302 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004303 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004304 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004305 } else {
4306 mHandler.postDelayed(new Runnable() {
4307 public void run() {
4308 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4309 }
4310 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004311 }
Winson Chung4b919f82012-05-01 10:44:08 -07004312 }
Winson Chung400438b2011-01-16 17:53:48 -08004313 }
4314
Winson Chunge43a1e72014-01-15 10:33:02 -08004315 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004316 if (mLauncherCallbacks != null) {
4317 return mLauncherCallbacks.isLauncherPreinstalled();
4318 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004319 PackageManager pm = getPackageManager();
4320 try {
4321 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4322 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4323 return true;
4324 } else {
4325 return false;
4326 }
4327 } catch (NameNotFoundException e) {
4328 e.printStackTrace();
4329 return false;
4330 }
4331 }
4332
Adam Cohenea90f832014-05-21 15:03:34 -07004333 /**
4334 * This method indicates whether or not we should suggest default wallpaper dimensions
4335 * when our wallpaper cropper was not yet used to set a wallpaper.
4336 */
4337 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004338 if (mLauncherCallbacks != null) {
4339 return mLauncherCallbacks.overrideWallpaperDimensions();
4340 }
Adam Cohenea90f832014-05-21 15:03:34 -07004341 return true;
4342 }
4343
Adam Cohen432609a2014-03-13 17:03:22 -07004344 /**
4345 * To be overridden by subclasses to indicate that there is an activity to launch
4346 * before showing the standard launcher experience.
4347 */
4348 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004349 if (mLauncherCallbacks != null) {
4350 return mLauncherCallbacks.hasFirstRunActivity();
4351 }
Adam Cohen432609a2014-03-13 17:03:22 -07004352 return false;
4353 }
4354
4355 /**
4356 * To be overridden by subclasses to launch any first run activity
4357 */
4358 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004359 if (mLauncherCallbacks != null) {
4360 return mLauncherCallbacks.getFirstRunActivity();
4361 }
Adam Cohen432609a2014-03-13 17:03:22 -07004362 return null;
4363 }
4364
Winson Chunga6945242014-01-08 14:04:34 -08004365 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004366 return !ActivityManager.isRunningInTestHarness() &&
4367 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004368 }
4369
Adam Cohen4a9423d2014-03-28 14:22:31 -07004370 protected boolean hasRunFirstRunActivity() {
4371 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4372 }
4373
Adam Cohen432609a2014-03-13 17:03:22 -07004374 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004375 if (shouldRunFirstRunActivity() &&
4376 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004377 Intent firstRunIntent = getFirstRunActivity();
4378 if (firstRunIntent != null) {
4379 startActivity(firstRunIntent);
4380 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004381 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004382 }
4383 }
Adam Cohen432609a2014-03-13 17:03:22 -07004384 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004385 }
4386
4387 private void markFirstRunActivityShown() {
4388 SharedPreferences.Editor editor = mSharedPrefs.edit();
4389 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4390 editor.apply();
4391 }
4392
Adam Cohen432609a2014-03-13 17:03:22 -07004393 /**
4394 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4395 * screen that must be displayed and dismissed.
4396 */
4397 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004398 if (mLauncherCallbacks != null) {
4399 return mLauncherCallbacks.hasDismissableIntroScreen();
4400 }
Adam Cohen432609a2014-03-13 17:03:22 -07004401 return false;
4402 }
4403
4404 /**
4405 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4406 */
4407 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004408 if (mLauncherCallbacks != null) {
4409 return mLauncherCallbacks.getIntroScreen();
4410 }
Adam Cohen432609a2014-03-13 17:03:22 -07004411 return null;
4412 }
4413
4414 /**
4415 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4416 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4417 */
4418 private boolean shouldShowIntroScreen() {
4419 return hasDismissableIntroScreen() &&
4420 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4421 }
4422
4423 protected void showIntroScreen() {
4424 View introScreen = getIntroScreen();
4425 changeWallpaperVisiblity(false);
4426 if (introScreen != null) {
4427 mDragLayer.showOverlayView(introScreen);
4428 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004429 if (mLauncherOverlayContainer != null) {
4430 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4431 }
Adam Cohen432609a2014-03-13 17:03:22 -07004432 }
4433
4434 public void dismissIntroScreen() {
4435 markIntroScreenDismissed();
4436 if (showFirstRunActivity()) {
4437 // We delay hiding the intro view until the first run activity is showing. This
4438 // avoids a blip.
4439 mWorkspace.postDelayed(new Runnable() {
4440 @Override
4441 public void run() {
4442 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004443 if (mLauncherOverlayContainer != null) {
4444 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4445 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004446 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004447 }
4448 }, ACTIVITY_START_DELAY);
4449 } else {
4450 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004451 if (mLauncherOverlayContainer != null) {
4452 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4453 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004454 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004455 }
4456 changeWallpaperVisiblity(true);
4457 }
4458
4459 private void markIntroScreenDismissed() {
4460 SharedPreferences.Editor editor = mSharedPrefs.edit();
4461 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4462 editor.apply();
4463 }
4464
Adam Cohen091440a2015-03-18 14:16:05 -07004465 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004466 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4467 // on the device, then we always show the first run cling experience (or if there is no
4468 // launcher2). Otherwise, we prompt the user upon started for migration
4469 LauncherClings launcherClings = new LauncherClings(this);
4470 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4471 if (mModel.canMigrateFromOldLauncherDb(this)) {
4472 launcherClings.showMigrationCling();
4473 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004474 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004475 }
4476 }
4477 }
4478
Winson Chunga6945242014-01-08 14:04:34 -08004479 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004480 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4481 if (mHotseat != null) mHotseat.setAlpha(1f);
4482 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
4483 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004484 }
4485
4486 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004487 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4488 if (mHotseat != null) mHotseat.setAlpha(0f);
4489 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
4490 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004491 }
4492
Winson Chung5ffd51d2015-06-25 11:36:50 -07004493 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004494 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004495 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004496 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004497 UserHandleCompat user = null;
4498 if (Utilities.isLmpOrAbove()) {
4499 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4500 if (userHandle != null) {
4501 user = UserHandleCompat.fromUser(userHandle);
4502 }
4503 }
4504 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004505 }
4506
4507 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004508 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004509 if (user == null) {
4510 user = UserHandleCompat.myUserHandle();
4511 }
4512
4513 // Called from search suggestion, add the profile extra to the intent to ensure that we
4514 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004515 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004516 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004517 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004518 return null;
4519 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004520 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004521 }
4522
Winson Chung5ffd51d2015-06-25 11:36:50 -07004523 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004524 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4525 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004526 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004527 UserHandleCompat.myUserHandle());
4528 }
4529
Winson Chung5ffd51d2015-06-25 11:36:50 -07004530 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004531 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4532 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004533 mWorkspace.onExternalDragStartedWithItem(dragView);
4534 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004535 }
4536
Winson Chung5ffd51d2015-06-25 11:36:50 -07004537 protected void moveWorkspaceToDefaultScreen() {
4538 mWorkspace.moveToDefaultScreen(false);
4539 }
4540
Anjali Koppalf5d29132014-02-28 13:33:27 -08004541 @Override
4542 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004543 if (mLauncherCallbacks != null) {
4544 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4545 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004546 }
4547
Winson Chung80baf5a2010-08-09 16:03:15 -07004548 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004549 * Returns a FastBitmapDrawable with the icon, accurately sized.
4550 */
4551 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4552 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4553 d.setFilterBitmap(true);
4554 resizeIconDrawable(d);
4555 return d;
4556 }
4557
4558 /**
4559 * Resizes an icon drawable to the correct icon size.
4560 */
4561 public void resizeIconDrawable(Drawable icon) {
4562 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4563 }
4564
4565 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004566 * Prints out out state for debugging.
4567 */
4568 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004569 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004570 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004571 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4572 Log.d(TAG, "mRestoring=" + mRestoring);
4573 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004574 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004575 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004576 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004577
Daniel Sandler325dc232013-06-05 22:57:57 -04004578 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004579 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004580
4581 @Override
4582 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4583 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004584 synchronized (sDumpLogs) {
4585 writer.println(" ");
4586 writer.println("Debug logs: ");
4587 for (int i = 0; i < sDumpLogs.size(); i++) {
4588 writer.println(" " + sDumpLogs.get(i));
4589 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004590 }
Adam Cohen9211d422014-10-07 18:14:53 -07004591 if (mLauncherCallbacks != null) {
4592 mLauncherCallbacks.dump(prefix, fd, writer, args);
4593 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004594 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004595
4596 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004597 if (DEBUG_DUMP_LOG) {
4598 synchronized (sDumpLogs) {
4599 Log.d(TAG, "");
4600 Log.d(TAG, "*********************");
4601 Log.d(TAG, "Launcher debug logs: ");
4602 for (int i = 0; i < sDumpLogs.size(); i++) {
4603 Log.d(TAG, " " + sDumpLogs.get(i));
4604 }
4605 Log.d(TAG, "*********************");
4606 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004607 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004608 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004609 }
4610
4611 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004612 addDumpLog(tag, log, null, debugLog);
4613 }
4614
4615 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004616 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004617 if (e != null) {
4618 Log.d(tag, log, e);
4619 } else {
4620 Log.d(tag, log);
4621 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004622 }
Winson Chungede41292013-09-19 16:27:36 -07004623 if (DEBUG_DUMP_LOG) {
4624 sDateStamp.setTime(System.currentTimeMillis());
4625 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004626 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4627 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004628 }
Winson Chungede41292013-09-19 16:27:36 -07004629 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004630 }
4631
Adam Cohen59400422014-03-05 18:07:04 -08004632 public static CustomAppWidget getCustomAppWidget(String name) {
4633 return sCustomAppWidgets.get(name);
4634 }
4635
4636 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4637 return sCustomAppWidgets;
4638 }
4639
Winson Chungede41292013-09-19 16:27:36 -07004640 public void dumpLogsToLocalData() {
4641 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004642 new AsyncTask<Void, Void, Void>() {
4643 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004644 boolean success = false;
4645 sDateStamp.setTime(sRunStart);
4646 String FILENAME = sDateStamp.getMonth() + "-"
4647 + sDateStamp.getDay() + "_"
4648 + sDateStamp.getHours() + "-"
4649 + sDateStamp.getMinutes() + "_"
4650 + sDateStamp.getSeconds() + ".txt";
4651
4652 FileOutputStream fos = null;
4653 File outFile = null;
4654 try {
4655 outFile = new File(getFilesDir(), FILENAME);
4656 outFile.createNewFile();
4657 fos = new FileOutputStream(outFile);
4658 } catch (Exception e) {
4659 e.printStackTrace();
4660 }
4661 if (fos != null) {
4662 PrintWriter writer = new PrintWriter(fos);
4663
4664 writer.println(" ");
4665 writer.println("Debug logs: ");
4666 synchronized (sDumpLogs) {
4667 for (int i = 0; i < sDumpLogs.size(); i++) {
4668 writer.println(" " + sDumpLogs.get(i));
4669 }
4670 }
4671 writer.close();
4672 }
4673 try {
4674 if (fos != null) {
4675 fos.close();
4676 success = true;
4677 }
4678 } catch (IOException e) {
4679 e.printStackTrace();
4680 }
Michael Jurka43467462013-11-14 12:03:58 +01004681 return null;
Winson Chungede41292013-09-19 16:27:36 -07004682 }
Michael Jurka43467462013-11-14 12:03:58 +01004683 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004684 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004685 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004686}
Michael Jurka2763be32011-02-24 11:19:57 -08004687
Dan Sandlerd5024042014-01-09 15:01:33 -05004688interface DebugIntents {
4689 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4690 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004691}