blob: 3b10253c39c99eeed1c843e0bf3e9a387b4af7a9 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Gilles Debunnedd6c9922010-10-25 11:23:41 -070019import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080020import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070021import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070022import android.animation.ObjectAnimator;
23import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070025import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000026import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070029import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040030import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080032import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070033import android.appwidget.AppWidgetManager;
34import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080036import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080037import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040038import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040040import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070042import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070043import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080046import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070048import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070050import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070051import android.graphics.Bitmap;
52import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070053import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070054import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070056import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040058import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070059import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020060import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020062import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080063import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070064import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070065import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040066import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070067import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.text.Selection;
69import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070070import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070072import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070073import android.view.Display;
74import android.view.Gravity;
75import android.view.HapticFeedbackConstants;
76import android.view.KeyEvent;
77import android.view.LayoutInflater;
78import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070079import android.view.MotionEvent;
80import android.view.Surface;
81import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070082import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080083import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070084import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070085import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070086import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070087import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070088import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080089import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070090import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070092import android.widget.Advanceable;
93import android.widget.FrameLayout;
94import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080095import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070096import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070097
Sunny Goyal651077b2014-06-30 14:15:31 -070098import com.android.launcher3.DropTarget.DragObject;
99import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700100import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700101import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100102import com.android.launcher3.compat.LauncherActivityInfoCompat;
103import com.android.launcher3.compat.LauncherAppsCompat;
104import com.android.launcher3.compat.UserHandleCompat;
105import com.android.launcher3.compat.UserManagerCompat;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700106import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700107import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700108import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700109import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700110import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700111import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700112import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700113
Adam Cohen4caf2982013-08-20 18:54:31 -0700114import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700115import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700116import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700117import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.PrintWriter;
Chet Haasea8f996d2015-02-17 12:56:04 -0800119import java.lang.reflect.InvocationTargetException;
120import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700121import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700122import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700123import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700124import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700125import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700126import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700127import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000128import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700129
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800130/**
131 * Default launcher application.
132 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100133public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700134 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chungb745afb2015-03-02 11:51:23 -0800135 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener,
136 LauncherStateTransitionAnimation.Callbacks {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700137 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700138 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800139
Daniel Sandlerf061f822013-06-27 13:59:36 -0400140 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700141 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700142 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400143 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700144 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700145
Dan Sandlerd5024042014-01-09 15:01:33 -0500146 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
147
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800148 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700149 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700150 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700151 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800152
Michael Jurka8b805b12012-04-18 14:23:14 -0700153 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700154 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700155
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700156 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
157 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
158 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
159
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700160 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
161
Mathew Inwood876a8462013-06-14 14:12:41 +0100162 /**
163 * IntentStarter uses request codes starting with this. This must be greater than all activity
164 * request codes used internally.
165 */
166 protected static final int REQUEST_LAST = 100;
167
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 Sandler6053b802013-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;
Winson Chung3d503fb2011-07-13 17:25:49 -0700264
Winson Chungc51db6a2011-10-05 11:44:49 -0700265 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700266
267 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700268 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700269
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700270 // Main container view and the model for the widget tray screen.
271 @Thunk WidgetsContainerView mWidgetsView;
272 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700273
Winson Chungf0ea4d32011-06-06 14:27:16 -0700274 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800275 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800276
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800277 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700278 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
279 // scroll issues (because the workspace may not have been measured yet) and extra work.
280 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
281 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800282
283 private SpannableStringBuilder mDefaultKeySsb = null;
284
Adam Cohen091440a2015-03-18 14:16:05 -0700285 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400286
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800287 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800288 private boolean mRestoring;
289 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700290 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291
Michael Jurka1e2f4652013-07-08 18:03:46 -0700292 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700293 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
294
Joe Onorato9c1289c2009-08-17 11:03:03 -0400295 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800296 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700297 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800298 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700299 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800300 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400301
Sunny Goyale2df0622015-04-24 11:27:00 -0700302 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700303
Adam Cohen61f560d2013-09-30 15:58:20 -0700304 private View.OnTouchListener mHapticFeedbackTouchListener;
305
Adam Cohended9f8d2010-11-03 13:25:16 -0700306 // Related to the auto-advancing of widgets
307 private final int ADVANCE_MSG = 1;
308 private final int mAdvanceInterval = 20000;
309 private final int mAdvanceStagger = 250;
310 private long mAutoAdvanceSentTime;
311 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700312 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700313 new HashMap<View, AppWidgetProviderInfo>();
314
Winson Chung400438b2011-01-16 17:53:48 -0800315 // Determines how long to wait after a rotation before restoring the screen orientation to
316 // match the sensor state.
317 private final int mRestoreScreenOrientationDelay = 500;
318
Adam Cohen091440a2015-03-18 14:16:05 -0700319 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700320
Adam Cohen1462de32012-07-24 22:34:36 -0700321 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700322 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700323
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700324 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700325 static Date sDateStamp = new Date();
326 static DateFormat sDateFormat =
327 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
328 static long sRunStart = System.currentTimeMillis();
329 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700330
Winson Chung46353de2012-02-16 14:05:10 -0800331 // We only want to get the SharedPreferences once since it does an FS stat each time we get
332 // it from the context.
333 private SharedPreferences mSharedPrefs;
334
Winson Chungf0c6ae02012-03-21 16:10:31 -0700335 // Holds the page that we need to animate to, and the icon views that we need to animate up
336 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700337 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700338 private Bitmap mFolderIconBitmap;
339 private Canvas mFolderIconCanvas;
340 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700341
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700342 private DeviceProfile mDeviceProfile;
343
Winson Chung13eb5272015-05-11 16:30:13 -0700344 // This is set to the view that launched the activity that navigated the user away from
345 // launcher. Since there is no callback for when the activity has finished launching, enable
346 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800347 private BubbleTextView mWaitingForResume;
348
Adam Cohen59400422014-03-05 18:07:04 -0800349 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
350 new HashMap<String, CustomAppWidget>();
351
352 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
353 static {
354 if (ENABLE_CUSTOM_WIDGET_TEST) {
355 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
356 }
357 }
358
Chet Haasea8f996d2015-02-17 12:56:04 -0800359 // TODO: remove this field and call method directly when Launcher3 can depend on M APIs
360 private static Method sClipRevealMethod = null;
361 static {
362 Class<?> activityOptionsClass = ActivityOptions.class;
363 try {
364 sClipRevealMethod = activityOptionsClass.getDeclaredMethod("makeClipRevealAnimation",
365 View.class, int.class, int.class, int.class, int.class);
366 } catch (Exception e) {
367 // Earlier version
368 }
369 }
370
Adam Cohen091440a2015-03-18 14:16:05 -0700371 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700372 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700373 if (mWorkspace != null) {
374 mWorkspace.buildPageHardwareLayers();
375 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700376 }
377 };
378
Adam Cohendb364c32014-05-20 14:23:40 -0700379 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800380
Adam Cohen091440a2015-03-18 14:16:05 -0700381 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800382 int requestCode;
383 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700384 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700385 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800386 int cellX;
387 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700388 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800389 }
390
Daniel Sandlerff02d492013-08-05 02:12:05 -0400391 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700392 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700393 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400394
395 @Thunk void setOrientation() {
396 if (mRotationEnabled) {
397 unlockScreenOrientation(true);
398 } else {
399 setRequestedOrientation(
400 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700401 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400402 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700403
Sunny Goyal7779d622015-06-11 16:18:39 -0700404 private Runnable mUpdateOrientationRunnable = new Runnable() {
405 public void run() {
406 setOrientation();
407 }
408 };
409
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800410 @Override
411 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700412 if (DEBUG_STRICT_MODE) {
413 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
414 .detectDiskReads()
415 .detectDiskWrites()
416 .detectNetwork() // or .detectAll() for all detectable problems
417 .penaltyLog()
418 .build());
419 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
420 .detectLeakedSqlLiteObjects()
421 .detectLeakedClosableObjects()
422 .penaltyLog()
423 .penaltyDeath()
424 .build());
425 }
426
Adam Cohen9211d422014-10-07 18:14:53 -0700427 if (mLauncherCallbacks != null) {
428 mLauncherCallbacks.preOnCreate();
429 }
430
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800431 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400432
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400433 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400434 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700435
Adam Cohen2e6da152015-05-06 11:42:25 -0700436 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700437 mDeviceProfile = getResources().getConfiguration().orientation
438 == Configuration.ORIENTATION_LANDSCAPE ?
439 app.getInvariantDeviceProfile().landscapeProfile
440 : app.getInvariantDeviceProfile().portraitProfile;
441
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400442 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700443 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700444 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800445 mModel = app.setLauncher(this);
446 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700447
Joe Onorato41a12d22009-10-31 18:30:00 -0400448 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800449 mInflater = getLayoutInflater();
Winson Chungb745afb2015-03-02 11:51:23 -0800450 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this, this);
Romain Guycbb89e42009-06-08 15:52:54 -0700451
Daniel Sandlerff02d492013-08-05 02:12:05 -0400452 mStats = new Stats(this);
453
Sunny Goyalffe83f12014-08-14 17:39:34 -0700454 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700455
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700456 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
457 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700458
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700459 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
460 // this also ensures that any synchronous binding below doesn't re-trigger another
461 // LauncherModel load.
462 mPaused = false;
463
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800464 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200465 android.os.Debug.startMethodTracing(
466 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800467 }
468
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800469 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700470
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800471 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700472 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800473
Joe Onorato7c312c12009-08-13 21:36:53 -0700474 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700475
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800476 mSavedState = savedInstanceState;
477 restoreState(mSavedState);
478
479 if (PROFILE_STARTUP) {
480 android.os.Debug.stopMethodTracing();
481 }
482
483 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700484 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700485 // If the user leaves launcher, then we should just load items asynchronously when
486 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700487 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700488 } else {
489 // We only load the page synchronously if the user rotates (or triggers a
490 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700491 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700492 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800493 }
494
495 // For handling default keys
496 mDefaultKeySsb = new SpannableStringBuilder();
497 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800498
499 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
500 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800501
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700502 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
503 // In case we are on a device with locked rotation, we should look at preferences to check
504 // if the user has specifically allowed rotation.
505 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400506 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700507 }
508
509 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
510 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400511 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700512
Adam Cohen9211d422014-10-07 18:14:53 -0700513 if (mLauncherCallbacks != null) {
514 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700515 if (mLauncherCallbacks.hasLauncherOverlay()) {
516 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700517 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
518 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
519 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700520 mWorkspace.setLauncherOverlay(mLauncherOverlay);
521 }
Adam Cohen9211d422014-10-07 18:14:53 -0700522 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700523
524 if (shouldShowIntroScreen()) {
525 showIntroScreen();
526 } else {
527 showFirstRunActivity();
528 showFirstRunClings();
529 }
Adam Cohen9211d422014-10-07 18:14:53 -0700530 }
531
Sunny Goyal7779d622015-06-11 16:18:39 -0700532 @Override
533 public void onSettingsChanged(String settings, boolean value) {
534 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
535 mRotationEnabled = value;
536 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
537 mUpdateOrientationRunnable.run();
538 }
539 }
540 }
541
Adam Cohen9211d422014-10-07 18:14:53 -0700542 private LauncherCallbacks mLauncherCallbacks;
543
544 public void onPostCreate(Bundle savedInstanceState) {
545 super.onPostCreate(savedInstanceState);
546 if (mLauncherCallbacks != null) {
547 mLauncherCallbacks.onPostCreate(savedInstanceState);
548 }
549 }
550
551 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
552 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700553 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700554 private boolean mWorkspaceImportanceStored = false;
555 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700556 private int mWorkspaceImportanceForAccessibility =
557 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
558 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
559
560 @Override
561 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700562 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700563 return;
564 }
565 // The underlying workspace and hotseat are temporarily suppressed by the search
566 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700567 if (mWorkspace != null) {
568 mWorkspaceImportanceForAccessibility =
569 mWorkspace.getImportantForAccessibility();
570 mWorkspace.setImportantForAccessibility(
571 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
572 mWorkspaceImportanceStored = true;
573 }
574 if (mHotseat != null) {
575 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
576 mHotseat.setImportantForAccessibility(
577 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
578 mHotseatImportanceStored = true;
579 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700580 }
581
582 @Override
583 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700584 if (mWorkspaceImportanceStored && mWorkspace != null) {
585 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
586 }
587 if (mHotseatImportanceStored && mHotseat != null) {
588 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
589 }
590 mWorkspaceImportanceStored = false;
591 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700592 }
593 });
Adam Cohen9211d422014-10-07 18:14:53 -0700594 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700595 }
596
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700597 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700598 public void onLauncherProviderChange() {
599 if (mLauncherCallbacks != null) {
600 mLauncherCallbacks.onLauncherProviderChange();
601 }
602 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700603
Winson Chungef7f8742015-06-04 17:18:17 -0700604 /**
605 * Updates the bounds of all the overlays to match the new fixed bounds.
606 */
607 public void updateOverlayBounds(Rect newBounds) {
608 mAppsView.setSearchBarBounds(newBounds);
609 mWidgetsView.setSearchBarBounds(newBounds);
610 }
611
Adam Cohen9211d422014-10-07 18:14:53 -0700612 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700613 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700614 if (mLauncherCallbacks != null) {
615 return mLauncherCallbacks.hasCustomContentToLeft();
616 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700617 return false;
618 }
619
Dave Hawkeya8881582013-09-17 15:55:33 -0600620 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500621 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600622 * {@link #addToCustomContentPage}. This will only be invoked if
623 * {@link #hasCustomContentToLeft()} is {@code true}.
624 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500625 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700626 if (mLauncherCallbacks != null) {
627 mLauncherCallbacks.populateCustomContentContainer();
628 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600629 }
630
631 /**
632 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
633 * ensure the custom content page is added or removed if necessary.
634 */
635 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600636 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600637 // Not bound yet, wait for bindScreens to be called.
638 return;
639 }
640
641 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
642 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500643 mWorkspace.createCustomContentContainer();
644 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600645 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
646 mWorkspace.removeCustomContentPage();
647 }
648 }
649
Anton Hanssona2f665f2013-09-26 12:18:32 +0100650 public Stats getStats() {
651 return mStats;
652 }
653
Bjorn Bringertc459e522013-06-07 19:36:01 +0100654 public LayoutInflater getInflater() {
655 return mInflater;
656 }
657
Hyunyoung Song3f471442015-04-08 19:01:34 -0700658 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700659 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
660 // that is subsequently removed from the workspace in startBinding().
661 return !mModel.isLoadingWorkspace();
662 }
663
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800664 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000665 public static int generateViewId() {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100666 if (Build.VERSION.SDK_INT >= 17) {
667 return View.generateViewId();
668 } else {
669 // View.generateViewId() is not available. The following fallback logic is a copy
670 // of its implementation.
671 for (;;) {
672 final int result = sNextGeneratedId.get();
673 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
674 int newValue = result + 1;
675 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
676 if (sNextGeneratedId.compareAndSet(result, newValue)) {
677 return result;
678 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000679 }
680 }
681 }
682
683 public int getViewIdForItem(ItemInfo info) {
684 // This cast is safe given the > 2B range for int.
685 int itemId = (int) info.id;
686 if (mItemIdToViewId.containsKey(itemId)) {
687 return mItemIdToViewId.get(itemId);
688 }
689 int viewId = generateViewId();
690 mItemIdToViewId.put(itemId, viewId);
691 return viewId;
692 }
693
694 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700695 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
696 * a configuration step, this allows the proper animations to run after other transitions.
697 */
Adam Cohendb364c32014-05-20 14:23:40 -0700698 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700699 long screenId = args.screenId;
700 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
701 // When the screen id represents an actual screen (as opposed to a rank) we make sure
702 // that the drop page actually exists.
703 screenId = ensurePendingDropLayoutExists(args.screenId);
704 }
Adam Cohendb364c32014-05-20 14:23:40 -0700705
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800706 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800707 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700708 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700709 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700710 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800711 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700712 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700713 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700714 case REQUEST_RECONFIGURE_APPWIDGET:
715 completeRestoreAppWidget(args.appWidgetId);
716 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800717 }
Michael Jurka27614d22012-04-02 06:40:22 -0700718 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
719 // if you turned the screen off and then back while in All Apps, Launcher would not
720 // return to the workspace. Clearing mAddInfo.container here fixes this issue
721 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700722 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800723 }
724
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800725 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700726 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700727 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700728 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700729 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800730 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700731
Adam Cohenad4e15c2013-10-17 16:21:35 -0700732 Runnable exitSpringLoaded = new Runnable() {
733 @Override
734 public void run() {
735 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
736 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
737 }
738 };
739
Michael Jurka8b805b12012-04-18 14:23:14 -0700740 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700741 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700742 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
743 if (resultCode == RESULT_CANCELED) {
744 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700745 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700746 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700747 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800748 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700749 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700750 }
751 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200752 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
753 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700754 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200755 }
756 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700757 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200758
Adam Cohened66b2b2012-01-23 17:28:51 -0800759 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700760 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700761
Adam Cohendb364c32014-05-20 14:23:40 -0700762 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800763 // We have special handling for widgets
764 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800765 final int appWidgetId;
766 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
767 : -1;
768 if (widgetId < 0) {
769 appWidgetId = pendingAddWidgetId;
770 } else {
771 appWidgetId = widgetId;
772 }
773
Adam Cohenad4e15c2013-10-17 16:21:35 -0700774 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800775 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700776 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
777 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700778 result = RESULT_CANCELED;
779 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700780 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700781 @Override
782 public void run() {
783 exitSpringLoadedDragModeDelayed(false, 0, null);
784 }
785 };
Adam Cohendb364c32014-05-20 14:23:40 -0700786 if (workspaceLocked) {
787 // No need to remove the empty screen if we're mid-binding, as the
788 // the bind will not add the empty screen.
789 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
790 } else {
791 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
792 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
793 }
Winson Chung5aaab772012-04-27 15:24:02 -0700794 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700795 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700796 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
797 // When the screen id represents an actual screen (as opposed to a rank)
798 // we make sure that the drop page actually exists.
799 mPendingAddInfo.screenId =
800 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
801 }
Adam Cohendb364c32014-05-20 14:23:40 -0700802 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
803
804 dropLayout.setDropPending(true);
805 final Runnable onComplete = new Runnable() {
806 @Override
807 public void run() {
808 completeTwoStageWidgetDrop(resultCode, appWidgetId);
809 dropLayout.setDropPending(false);
810 }
811 };
812 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
813 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
814 } else {
815 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
816 mPendingAddInfo);
817 sPendingAddItem = args;
818 }
Winson Chung5aaab772012-04-27 15:24:02 -0700819 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800820 return;
821 }
822
Sunny Goyalff572272014-07-23 13:58:07 -0700823 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
824 if (resultCode == RESULT_OK) {
825 // Update the widget view.
826 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
827 pendingAddWidgetId, mPendingAddInfo);
828 if (workspaceLocked) {
829 sPendingAddItem = args;
830 } else {
831 completeAdd(args);
832 }
833 }
834 // Leave the widget in the pending state if the user canceled the configure.
835 return;
836 }
837
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800838 // The pattern used here is that a user PICKs a specific application,
839 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700840
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800841 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
842 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700843 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700844 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
845 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800846 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700847 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800848 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700849 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700850 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
851 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800852 }
Adam Cohen00074722013-10-11 17:46:09 -0700853 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700854 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700855 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800856 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800857 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800858
859 }
860
861 @Override
862 protected void onActivityResult(
863 final int requestCode, final int resultCode, final Intent data) {
864 handleActivityResult(requestCode, resultCode, data);
865 if (mLauncherCallbacks != null) {
866 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
867 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800868 }
869
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600870 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700871 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600872 int[] grantResults) {
873 if (mLauncherCallbacks != null) {
874 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
875 grantResults);
876 }
877 }
878
Adam Cohendb364c32014-05-20 14:23:40 -0700879 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
880 appWidgetId, ItemInfo info) {
881 PendingAddArguments args = new PendingAddArguments();
882 args.requestCode = requestCode;
883 args.intent = data;
884 args.container = info.container;
885 args.screenId = info.screenId;
886 args.cellX = info.cellX;
887 args.cellY = info.cellY;
888 args.appWidgetId = appWidgetId;
889 return args;
890 }
891
892 /**
893 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
894 *
895 * @param screenId the screen id to check
896 * @return the new screen, or screenId if it exists
897 */
898 private long ensurePendingDropLayoutExists(long screenId) {
899 CellLayout dropLayout =
900 (CellLayout) mWorkspace.getScreenWithId(screenId);
901 if (dropLayout == null) {
902 // it's possible that the add screen was removed because it was
903 // empty and a re-bind occurred
904 mWorkspace.addExtraEmptyScreen();
905 return mWorkspace.commitExtraEmptyScreen();
906 } else {
907 return screenId;
908 }
909 }
910
Adam Cohen091440a2015-03-18 14:16:05 -0700911 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700912 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700913 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800914 Runnable onCompleteRunnable = null;
915 int animationType = 0;
916
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700917 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800918 if (resultCode == RESULT_OK) {
919 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
920 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700921 mPendingAddWidgetInfo);
922 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800923 onCompleteRunnable = new Runnable() {
924 @Override
925 public void run() {
926 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700927 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700928 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
929 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800930 }
931 };
932 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800933 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800934 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800935 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700936 if (mDragLayer.getAnimatedView() != null) {
937 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
938 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
939 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700940 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700941 // The animated view may be null in the case of a rotation during widget configuration
942 onCompleteRunnable.run();
943 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800944 }
945
946 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700947 protected void onStop() {
948 super.onStop();
949 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700950
951 if (mLauncherCallbacks != null) {
952 mLauncherCallbacks.onStop();
953 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700954 }
955
956 @Override
957 protected void onStart() {
958 super.onStart();
959 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700960
961 if (mLauncherCallbacks != null) {
962 mLauncherCallbacks.onStart();
963 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700964 }
965
966 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800967 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200968 long startTime = 0;
969 if (DEBUG_RESUME_TIME) {
970 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400971 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200972 }
Adam Cohen9211d422014-10-07 18:14:53 -0700973
974 if (mLauncherCallbacks != null) {
975 mLauncherCallbacks.preOnResume();
976 }
977
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800978 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700979
Winson Chung4a2afa32012-07-19 14:53:05 -0700980 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700981 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700982 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800983 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700984 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700985 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700986 // view after launching an app, as they may be depending on the UI to be static to
987 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700988 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700989 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800990 } else if (mOnResumeState == State.WIDGETS) {
991 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700992 }
993 mOnResumeState = State.NONE;
994
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700995 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700996 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
997 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700998
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800999 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001000 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001001 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001002 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001003 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001004 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001005 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001006 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001007 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1008 // execute them here
1009 long startTimeCallbacks = 0;
1010 if (DEBUG_RESUME_TIME) {
1011 startTimeCallbacks = System.currentTimeMillis();
1012 }
1013
Michael Jurka1e2f4652013-07-08 18:03:46 -07001014 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1015 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001016 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001017 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001018 if (DEBUG_RESUME_TIME) {
1019 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1020 (System.currentTimeMillis() - startTimeCallbacks));
1021 }
Michael Jurka447bf842013-05-15 14:52:15 +02001022 }
Michael Jurka54554252013-08-01 12:52:23 +02001023 if (mOnResumeCallbacks.size() > 0) {
1024 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1025 mOnResumeCallbacks.get(i).run();
1026 }
1027 mOnResumeCallbacks.clear();
1028 }
Winson Chunge4e50662012-01-23 14:45:13 -08001029
1030 // Reset the pressed state of icons that were locked in the press state while activities
1031 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001032 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001033 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001034 mWaitingForResume.setStayPressed(false);
1035 }
Winson Chung82963d52013-10-09 11:20:57 -07001036
Adam Cohen06dff352012-06-01 17:17:08 -07001037 // It is possible that widgets can receive updates while launcher is not in the foreground.
1038 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1039 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1040 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001041 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001042 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001043
Michael Jurka447bf842013-05-15 14:52:15 +02001044 if (DEBUG_RESUME_TIME) {
1045 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1046 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001047
1048 if (mWorkspace.getCustomContentCallbacks() != null) {
1049 // If we are resuming and the custom content is the current page, we call onShow().
1050 // It is also poassible that onShow will instead be called slightly after first layout
1051 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1052 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001053 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001054 }
1055 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001056 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001057 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001058
Sunny Goyal756adbc2015-04-16 15:20:51 -07001059 if (!isWorkspaceLoading()) {
1060 // Process any items that were added while Launcher was away.
1061 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1062 }
Adam Cohen9211d422014-10-07 18:14:53 -07001063
1064 if (mLauncherCallbacks != null) {
1065 mLauncherCallbacks.onResume();
1066 }
Adam Cohen06dff352012-06-01 17:17:08 -07001067 }
1068
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001069 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001070 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001071 // Ensure that items added to Launcher are queued until Launcher returns
1072 InstallShortcutReceiver.enableInstallQueue();
1073
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001074 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001075 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001076 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001077 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001078
1079 // We call onHide() aggressively. The custom content callbacks should be able to
1080 // debounce excess onHide calls.
1081 if (mWorkspace.getCustomContentCallbacks() != null) {
1082 mWorkspace.getCustomContentCallbacks().onHide();
1083 }
Romain Guycbb89e42009-06-08 15:52:54 -07001084
Adam Cohen9211d422014-10-07 18:14:53 -07001085 if (mLauncherCallbacks != null) {
1086 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001087 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001088 }
1089
1090 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001091 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1092 // by a onResume or by scrolling otherwise.
1093 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001094
1095 // Custom content is completely hidden
1096 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001097
1098 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1099 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001100
1101 // Indicates whether the user is allowed to scroll away from the custom content.
1102 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001103 }
1104
Adam Cohenc2d6e892014-10-16 09:49:24 -07001105 public interface LauncherOverlay {
1106
1107 /**
1108 * Touch interaction leading to overscroll has begun
1109 */
1110 public void onScrollInteractionBegin();
1111
1112 /**
1113 * Touch interaction related to overscroll has ended
1114 */
1115 public void onScrollInteractionEnd();
1116
1117 /**
1118 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1119 * screen (or in the case of RTL, the rightmost screen).
1120 */
1121 public void onScrollChange(int progress, boolean rtl);
1122
1123 /**
1124 * Screen has stopped scrolling
1125 */
1126 public void onScrollSettled();
1127
1128 /**
1129 * This method can be called by the Launcher in order to force the LauncherOverlay
1130 * to exit fully immersive mode.
1131 */
1132 public void forceExitFullImmersion();
1133 }
1134
Jun Mukai8af0cd82015-05-12 12:32:12 -07001135 public interface LauncherSearchCallbacks {
1136 /**
1137 * Called when the search overlay is shown.
1138 */
1139 public void onSearchOverlayOpened();
1140
1141 /**
1142 * Called when the search overlay is dismissed.
1143 */
1144 public void onSearchOverlayClosed();
1145 }
1146
Adam Cohenc2d6e892014-10-16 09:49:24 -07001147 public interface LauncherOverlayCallbacks {
1148 /**
1149 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1150 * however it doesn't modify any state within the launcher.
1151 */
1152 public boolean canEnterFullImmersion();
1153
1154 /**
1155 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1156 * eg. by occupying the full screen and handling all touch events.
1157 *
1158 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1159 * case, Launcher will modify any necessary state and assumes the overlay is
1160 * handling all interaction. If false, the LauncherOverlay should cancel any
1161 *
1162 */
1163 public boolean enterFullImmersion();
1164
1165 /**
1166 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1167 * full control over UI and state.
1168 */
1169 public void exitFullImmersion();
1170 }
1171
1172 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1173
1174 @Override
1175 public boolean canEnterFullImmersion() {
1176 return mState == State.WORKSPACE;
1177 }
1178
1179 @Override
1180 public boolean enterFullImmersion() {
1181 if (mState == State.WORKSPACE) {
1182 // When fully immersed, disregard any touches which fall through.
1183 mDragLayer.setBlockTouch(true);
1184 return true;
1185 }
1186 return false;
1187 }
1188
1189 @Override
1190 public void exitFullImmersion() {
1191 mDragLayer.setBlockTouch(false);
1192 }
1193 }
1194
Jorim Jaggid017f882014-01-14 17:08:48 -08001195 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001196 if (mLauncherCallbacks != null) {
1197 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001198 } else {
1199 // On devices with a locked orientation, we will at least have the allow rotation
1200 // setting.
1201 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001202 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001203 }
1204
Adam Cohen9211d422014-10-07 18:14:53 -07001205 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001206 CustomContentCallbacks callbacks, String description) {
1207 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001208 }
1209
Adam Cohenedb40762013-07-18 16:45:45 -07001210 // The custom content needs to offset its content to account for the QSB
1211 public int getTopOffsetForCustomContent() {
1212 return mWorkspace.getPaddingTop();
1213 }
1214
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001215 @Override
1216 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001217 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001218 if (mModel.isCurrentCallbacks(this)) {
1219 mModel.stopLoader();
1220 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001221 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1222
Romain Guy13c2e7b2010-03-10 19:45:00 -08001223 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001224 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001225
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001226 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001227 @Override
1228 public void onWindowFocusChanged(boolean hasFocus) {
1229 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001230 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001231
1232 if (mLauncherCallbacks != null) {
1233 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1234 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001235 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001236
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001237 private boolean acceptFilter() {
1238 final InputMethodManager inputManager = (InputMethodManager)
1239 getSystemService(Context.INPUT_METHOD_SERVICE);
1240 return !inputManager.isFullscreenMode();
1241 }
1242
1243 @Override
1244 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001245 final int uniChar = event.getUnicodeChar();
1246 final boolean handled = super.onKeyDown(keyCode, event);
1247 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1248 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001249 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1250 keyCode, event);
1251 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001252 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001253 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001254 // showSearchDialog()
1255 // If there are multiple keystrokes before the search dialog takes focus,
1256 // onSearchRequested() will be called for every keystroke,
1257 // but it is idempotent, so it's fine.
1258 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001259 }
1260 }
1261
Joe Onorato8a9625e2010-01-28 15:55:35 -08001262 // Eat the long press event so the keyboard doesn't come up.
1263 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1264 return true;
1265 }
1266
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001267 return handled;
1268 }
1269
Karl Rosaen138a0412009-04-23 19:00:21 -07001270 private String getTypedText() {
1271 return mDefaultKeySsb.toString();
1272 }
1273
1274 private void clearTypedText() {
1275 mDefaultKeySsb.clear();
1276 mDefaultKeySsb.clearSpans();
1277 Selection.setSelection(mDefaultKeySsb, 0);
1278 }
1279
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001280 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001281 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1282 * State
1283 */
1284 private static State intToState(int stateOrdinal) {
1285 State state = State.WORKSPACE;
1286 final State[] stateValues = State.values();
1287 for (int i = 0; i < stateValues.length; i++) {
1288 if (stateValues[i].ordinal() == stateOrdinal) {
1289 state = stateValues[i];
1290 break;
1291 }
1292 }
1293 return state;
1294 }
1295
1296 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001297 * Restores the previous state, if it exists.
1298 *
1299 * @param savedState The previous state.
1300 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001301 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001302 private void restoreState(Bundle savedState) {
1303 if (savedState == null) {
1304 return;
1305 }
1306
Michael Jurka883f55b2010-10-21 15:47:14 -07001307 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001308 if (state == State.APPS || state == State.WIDGETS) {
1309 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001310 }
1311
Adam Cohen21cd0022013-10-09 18:57:02 -07001312 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1313 PagedView.INVALID_RESTORE_PAGE);
1314 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001315 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001316 }
1317
Winson Chung3d503fb2011-07-13 17:25:49 -07001318 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001319 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001320
Winson Chung3d503fb2011-07-13 17:25:49 -07001321 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1322 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001323 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001324 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1325 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001326 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1327 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001328 AppWidgetProviderInfo info = savedState.getParcelable(
1329 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001330 mPendingAddWidgetInfo = info == null ?
1331 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1332
Adam Cohen4637b5a2013-11-04 18:21:24 -08001333 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001334 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001335 mRestoring = true;
1336 }
1337
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001338 mItemIdToViewId = (HashMap<Integer, Integer>)
1339 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001340 }
1341
1342 /**
1343 * Finds all the views we need and configure them properly.
1344 */
1345 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001346 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001347
Craig Mautner360310b2012-10-26 15:13:08 -07001348 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001349 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001350 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1351 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001352 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001353 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001354
John Spurlock77e1f472013-09-11 10:09:51 -04001355 mLauncherView.setSystemUiVisibility(
1356 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001357 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001358
Winson Chung4c98d922011-05-31 16:50:48 -07001359 // Setup the drag layer
1360 mDragLayer.setup(this, dragController);
1361
Winson Chung3d503fb2011-07-13 17:25:49 -07001362 // Setup the hotseat
1363 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1364 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001365 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001366 }
1367
Jorim Jaggid017f882014-01-14 17:08:48 -08001368 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Adam Cohen61f560d2013-09-30 15:58:20 -07001369 View widgetButton = findViewById(R.id.widget_button);
1370 widgetButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001371 @Override
1372 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001373 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001374 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001375 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001376 }
1377 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001378 widgetButton.setOnTouchListener(getHapticFeedbackTouchListener());
1379
1380 View wallpaperButton = findViewById(R.id.wallpaper_button);
1381 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001382 @Override
1383 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001384 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001385 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001386 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001387 }
1388 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001389 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1390
1391 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001392 if (hasSettings()) {
1393 settingsButton.setOnClickListener(new OnClickListener() {
1394 @Override
1395 public void onClick(View arg0) {
1396 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001397 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001398 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001399 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001400 });
1401 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1402 } else {
1403 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001404 }
1405
Adam Cohendbdff6b2013-09-18 19:09:15 -07001406 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001407
Winson Chung4c98d922011-05-31 16:50:48 -07001408 // Setup the workspace
1409 mWorkspace.setHapticFeedbackEnabled(false);
1410 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001411 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001412 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001413
Winson Chungf0ea4d32011-06-06 14:27:16 -07001414 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001415 mSearchDropTargetBar = (SearchDropTargetBar)
1416 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001417
Winson Chungef7f8742015-06-04 17:18:17 -07001418 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001419 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001420 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001421 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1422 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1423 } else {
1424 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1425 }
Craig Mautner360310b2012-10-26 15:13:08 -07001426
Winson Chung3d503fb2011-07-13 17:25:49 -07001427 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001428 dragController.setDragScoller(mWorkspace);
1429 dragController.setScrollView(mDragLayer);
1430 dragController.setMoveTarget(mWorkspace);
1431 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001432 if (mSearchDropTargetBar != null) {
1433 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001434 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001435 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001436
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001437 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001438 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001439 mWeightWatcher = new WeightWatcher(this);
1440 mWeightWatcher.setAlpha(0.5f);
1441 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001442 new FrameLayout.LayoutParams(
1443 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001444 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001445 Gravity.BOTTOM)
1446 );
Adam Cohen39a06042013-07-19 14:30:12 -07001447
1448 boolean show = shouldShowWeightWatcher();
1449 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001450 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001451 }
1452
1453 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001454 * Sets the all apps button. This method is called from {@link Hotseat}.
1455 */
1456 public void setAllAppsButton(View allAppsButton) {
1457 mAllAppsButton = allAppsButton;
1458 }
1459
1460 public View getAllAppsButton() {
1461 return mAllAppsButton;
1462 }
1463
1464 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001465 * Creates a view representing a shortcut.
1466 *
1467 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001468 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001469 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001470 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001471 }
1472
1473 /**
1474 * Creates a view representing a shortcut inflated from the specified resource.
1475 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001476 * @param parent The group the shortcut belongs to.
1477 * @param info The data structure describing the shortcut.
1478 *
1479 * @return A View inflated from layoutResId.
1480 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001481 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001482 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001483 parent, false);
1484 favorite.applyFromShortcutInfo(info, mIconCache);
1485 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001486 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001487 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488 return favorite;
1489 }
1490
1491 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001492 * Add a shortcut to the workspace.
1493 *
1494 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001495 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001496 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001497 int cellY) {
1498 int[] cellXY = mTmpAddItemCellCoordinates;
Adam Cohendcd297f2013-06-18 13:13:40 -07001499 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001500
Sunny Goyal5c97f512015-05-19 16:03:28 -07001501 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001502 if (info == null) {
1503 return;
1504 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001505 final View view = createShortcut(info);
1506
Sunny Goyal5c97f512015-05-19 16:03:28 -07001507 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001508 // First we check if we already know the exact location where we want to add this item.
1509 if (cellX >= 0 && cellY >= 0) {
1510 cellXY[0] = cellX;
1511 cellXY[1] = cellY;
1512 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001513
1514 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001515 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001516 true, null,null)) {
1517 return;
1518 }
1519 DragObject dragObject = new DragObject();
1520 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001521 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1522 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001523 return;
1524 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08001525 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001526 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001527 }
1528
1529 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001530 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001531 return;
1532 }
1533
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001534 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001535
1536 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001537 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001538 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001539 }
1540 }
1541
Adam Cohen2e6da152015-05-06 11:42:25 -07001542 private int[] getSpanForWidget(ComponentName component, int minWidth, int minHeight) {
1543 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(this, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001544 // We want to account for the extra amount of padding that we are adding to the widget
1545 // to ensure that it gets the full amount of space that it has requested
1546 int requiredWidth = minWidth + padding.left + padding.right;
1547 int requiredHeight = minHeight + padding.top + padding.bottom;
Adam Cohen2e6da152015-05-06 11:42:25 -07001548 return CellLayout.rectToCell(this, requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001549 }
1550
Adam Cohen2e6da152015-05-06 11:42:25 -07001551 public int[] getSpanForWidget(AppWidgetProviderInfo info) {
1552 return getSpanForWidget(info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001553 }
1554
Adam Cohen2e6da152015-05-06 11:42:25 -07001555 public int[] getMinSpanForWidget(AppWidgetProviderInfo info) {
1556 return getSpanForWidget(info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001557 }
1558
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001559 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001560 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001561 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001562 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001563 */
Adam Cohen091440a2015-03-18 14:16:05 -07001564 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001565 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1566
1567 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001568 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001569 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1570 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001571 }
Romain Guycbb89e42009-06-08 15:52:54 -07001572
Adam Cohen59400422014-03-05 18:07:04 -08001573 if (appWidgetInfo.isCustomWidget) {
1574 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001575 }
1576
Adam Cohen59400422014-03-05 18:07:04 -08001577 LauncherAppWidgetInfo launcherInfo;
1578 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1579 launcherInfo.spanX = info.spanX;
1580 launcherInfo.spanY = info.spanY;
1581 launcherInfo.minSpanX = info.minSpanX;
1582 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001583 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001584
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001585 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001586 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001587
1588 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001589 if (hostView == null) {
1590 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001591 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1592 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001593 } else {
1594 // The AppWidgetHostView has already been inflated and instantiated
1595 launcherInfo.hostView = hostView;
1596 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001597 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001598 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001599 launcherInfo.notifyWidgetSizeChanged(this);
1600
Adam Cohen59400422014-03-05 18:07:04 -08001601 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1602 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001603
1604 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001605 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001606 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001607 }
Romain Guycbb89e42009-06-08 15:52:54 -07001608
Adam Cohended9f8d2010-11-03 13:25:16 -07001609 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1610 @Override
1611 public void onReceive(Context context, Intent intent) {
1612 final String action = intent.getAction();
1613 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1614 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001615 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001616 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001617
Winson Chungc100e8e2011-08-09 16:02:43 -07001618 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001619 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001620 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001621 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001622 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001623 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001624 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1625 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001626 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001627 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1628 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001629 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001630 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1631 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1632 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001633 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001634 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1635 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001636 }
1637 }
1638 };
1639
1640 @Override
1641 public void onAttachedToWindow() {
1642 super.onAttachedToWindow();
1643
1644 // Listen for broadcasts related to user-presence
1645 final IntentFilter filter = new IntentFilter();
1646 filter.addAction(Intent.ACTION_SCREEN_OFF);
1647 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001648 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001649 if (ENABLE_DEBUG_INTENTS) {
1650 filter.addAction(DebugIntents.DELETE_DATABASE);
1651 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1652 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001653 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001654 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001655 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001656 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001657 mVisible = true;
1658 }
1659
Adam Cohen0b395352014-06-09 22:54:36 +00001660 /**
1661 * Sets up transparent navigation and status bars in LMP.
1662 * This method is a no-op for other platform versions.
1663 */
Sunny Goyald0091012015-01-20 15:55:34 -08001664 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Adam Cohen0b395352014-06-09 22:54:36 +00001665 private void setupTransparentSystemBarsForLmp() {
Kenny Guyd794a3f2014-09-16 15:17:58 +01001666 if (Utilities.isLmpOrAbove()) {
Sunny Goyald0091012015-01-20 15:55:34 -08001667 Window window = getWindow();
1668 window.getAttributes().systemUiVisibility |=
1669 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1670 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1671 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1672 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1673 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1674 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1675 window.setStatusBarColor(Color.TRANSPARENT);
1676 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001677 }
1678 }
1679
Adam Cohended9f8d2010-11-03 13:25:16 -07001680 @Override
1681 public void onDetachedFromWindow() {
1682 super.onDetachedFromWindow();
1683 mVisible = false;
1684
Adam Cohend113e0c2010-11-11 10:48:05 -08001685 if (mAttached) {
1686 unregisterReceiver(mReceiver);
1687 mAttached = false;
1688 }
Winson Chungb745afb2015-03-02 11:51:23 -08001689 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001690 }
1691
1692 public void onWindowVisibilityChanged(int visibility) {
1693 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001694 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001695 // The following code used to be in onResume, but it turns out onResume is called when
1696 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1697 // is a more appropriate event to handle
1698 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001699 if (!mWorkspaceLoading) {
1700 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001701 // We want to let Launcher draw itself at least once before we force it to build
1702 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001703 // apps is nice and speedy.
1704 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001705 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001706 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001707 if (mStarted) return;
1708 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001709 // We delay the layer building a bit in order to give
1710 // other message processing a time to run. In particular
1711 // this avoids a delay in hiding the IME if it was
1712 // currently shown, because doing that may involve
1713 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001714 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001715 final ViewTreeObserver.OnDrawListener listener = this;
1716 mWorkspace.post(new Runnable() {
1717 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001718 if (mWorkspace != null &&
1719 mWorkspace.getViewTreeObserver() != null) {
1720 mWorkspace.getViewTreeObserver().
1721 removeOnDrawListener(listener);
1722 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001723 }
1724 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001725 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001726 }
1727 });
1728 }
1729 clearTypedText();
1730 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001731 }
1732
Adam Cohen091440a2015-03-18 14:16:05 -07001733 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001734 mHandler.removeMessages(ADVANCE_MSG);
1735 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1736 mHandler.sendMessageDelayed(msg, delay);
1737 mAutoAdvanceSentTime = System.currentTimeMillis();
1738 }
1739
Adam Cohen091440a2015-03-18 14:16:05 -07001740 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001741 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1742 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1743 mAutoAdvanceRunning = autoAdvanceRunning;
1744 if (autoAdvanceRunning) {
1745 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1746 sendAdvanceMessage(delay);
1747 } else {
1748 if (!mWidgetsToAdvance.isEmpty()) {
1749 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1750 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1751 }
1752 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001753 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001754 }
1755 }
1756 }
1757
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001758 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1759
Adam Cohended9f8d2010-11-03 13:25:16 -07001760 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001761 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001762 if (msg.what == ADVANCE_MSG) {
1763 int i = 0;
1764 for (View key: mWidgetsToAdvance.keySet()) {
1765 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1766 final int delay = mAdvanceStagger * i;
1767 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001768 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001769 public void run() {
1770 ((Advanceable) v).advance();
1771 }
1772 }, delay);
1773 }
1774 i++;
1775 }
1776 sendAdvanceMessage(mAdvanceInterval);
1777 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001778 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001779 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001780 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001781
1782 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001783 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001784 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1785 if (v instanceof Advanceable) {
1786 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001787 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001788 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001789 }
1790 }
1791
1792 void removeWidgetToAutoAdvance(View hostView) {
1793 if (mWidgetsToAdvance.containsKey(hostView)) {
1794 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001795 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001796 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001797 }
1798
Joe Onorato9c1289c2009-08-17 11:03:03 -04001799 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001800 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001801 launcherInfo.hostView = null;
1802 }
1803
Hyunyoung Song3f471442015-04-08 19:01:34 -07001804 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001805 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1806 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001807 }
1808
Winson Chunga6945242014-01-08 14:04:34 -08001809 public DragLayer getDragLayer() {
1810 return mDragLayer;
1811 }
1812
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001813 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001814 return mAppsView;
1815 }
1816
Hyunyoung Song3f471442015-04-08 19:01:34 -07001817 public WidgetsContainerView getWidgetsView() {
1818 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001819 }
1820
Winson Chunga6945242014-01-08 14:04:34 -08001821 public Workspace getWorkspace() {
1822 return mWorkspace;
1823 }
1824
1825 public Hotseat getHotseat() {
1826 return mHotseat;
1827 }
1828
Jorim Jaggid017f882014-01-14 17:08:48 -08001829 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001830 return mOverviewPanel;
1831 }
1832
1833 public SearchDropTargetBar getSearchBar() {
1834 return mSearchDropTargetBar;
1835 }
1836
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001837 public LauncherAppWidgetHost getAppWidgetHost() {
1838 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001839 }
Romain Guycbb89e42009-06-08 15:52:54 -07001840
Winson Chunga9abd0e2010-10-27 17:18:37 -07001841 public LauncherModel getModel() {
1842 return mModel;
1843 }
1844
Winson Chunga6945242014-01-08 14:04:34 -08001845 protected SharedPreferences getSharedPrefs() {
1846 return mSharedPrefs;
1847 }
1848
Adam Cohen2e6da152015-05-06 11:42:25 -07001849 public DeviceProfile getDeviceProfile() {
1850 return mDeviceProfile;
1851 }
1852
Bjorn Bringertc459e522013-06-07 19:36:01 +01001853 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001854 getWindow().closeAllPanels();
1855
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001856 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001857 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001858 }
1859
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001860 @Override
1861 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001862 long startTime = 0;
1863 if (DEBUG_RESUME_TIME) {
1864 startTime = System.currentTimeMillis();
1865 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001866 super.onNewIntent(intent);
1867
1868 // Close the menu
1869 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001870 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001871 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001872
Adam Cohened307df2013-10-02 09:37:31 -07001873 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1874 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1875 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001876
Adam Cohen6fecd412013-10-02 17:41:50 -07001877 if (mWorkspace == null) {
1878 // Can be cases where mWorkspace is null, this prevents a NPE
1879 return;
1880 }
1881 Folder openFolder = mWorkspace.getOpenFolder();
1882 // In all these cases, only animate if we're already on home
1883 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001884
1885 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1886 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Adam Cohen6fecd412013-10-02 17:41:50 -07001887 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Cohen9211d422014-10-07 18:14:53 -07001888 openFolder == null && moveToDefaultScreen) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001889 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001890 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001891
Adam Cohen6fecd412013-10-02 17:41:50 -07001892 closeFolder();
1893 exitSpringLoadedDragMode();
1894
1895 // If we are already on home, then just animate back to the workspace,
1896 // otherwise, just wait until onResume to set the state back to Workspace
1897 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001898 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001899 } else {
1900 mOnResumeState = State.WORKSPACE;
1901 }
1902
1903 final View v = getWindow().peekDecorView();
1904 if (v != null && v.getWindowToken() != null) {
1905 InputMethodManager imm = (InputMethodManager)getSystemService(
1906 INPUT_METHOD_SERVICE);
1907 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1908 }
1909
Winson Chungb745afb2015-03-02 11:51:23 -08001910 // Reset the apps view
1911 if (!alreadyOnHome && mAppsView != null) {
1912 mAppsView.scrollToTop();
1913 }
1914
Hyunyoung Song3f471442015-04-08 19:01:34 -07001915 // Reset the widgets view
1916 if (!alreadyOnHome && mWidgetsView != null) {
1917 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001918 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001919
Adam Cohen9211d422014-10-07 18:14:53 -07001920 if (mLauncherCallbacks != null) {
1921 mLauncherCallbacks.onHomeIntent();
1922 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001923 }
Adam Cohened307df2013-10-02 09:37:31 -07001924
Michael Jurka447bf842013-05-15 14:52:15 +02001925 if (DEBUG_RESUME_TIME) {
1926 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1927 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001928
Adam Cohen9211d422014-10-07 18:14:53 -07001929 if (mLauncherCallbacks != null) {
1930 mLauncherCallbacks.onNewIntent(intent);
1931 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001932 }
1933
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001934 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001935 public void onRestoreInstanceState(Bundle state) {
1936 super.onRestoreInstanceState(state);
1937 for (int page: mSynchronouslyBoundPages) {
1938 mWorkspace.restoreInstanceStateForChild(page);
1939 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001940 }
1941
1942 @Override
1943 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001944 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001945 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1946 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001947 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001948 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001949
Michael Jurka883f55b2010-10-21 15:47:14 -07001950 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001951 // We close any open folder since it will not be re-opened, and we need to make sure
1952 // this state is reflected.
1953 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001954
Adam Cohendcd297f2013-06-18 13:13:40 -07001955 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001956 mWaitingForResult) {
1957 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001958 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001959 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1960 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001961 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1962 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1963 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001964 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001965 }
1966
Hyunyoung Song3f471442015-04-08 19:01:34 -07001967 // Save the current widgets tray?
1968 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001969 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001970
1971 if (mLauncherCallbacks != null) {
1972 mLauncherCallbacks.onSaveInstanceState(outState);
1973 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001974 }
1975
1976 @Override
1977 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001978 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001979
Winson Chunge7a03942011-08-05 15:05:12 -07001980 // Remove all pending runnables
1981 mHandler.removeMessages(ADVANCE_MSG);
1982 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001983 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001984
Winson Chungcd2b0142011-06-08 16:02:26 -07001985 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001986 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001987
1988 // It's possible to receive onDestroy after a new Launcher activity has
1989 // been created. In this case, don't interfere with the new Launcher.
1990 if (mModel.isCurrentCallbacks(this)) {
1991 mModel.stopLoader();
1992 app.setLauncher(null);
1993 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001994
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001995 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001996 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001997 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001998 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001999 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002000 mAppWidgetHost = null;
2001
2002 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002003
2004 TextKeyListener.getInstance().release();
2005
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002006 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002007
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002008 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002009 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002010 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002011 mWorkspace = null;
2012 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002013
Michael Jurka2ecf9952012-06-18 12:52:28 -07002014 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002015
2016 if (mLauncherCallbacks != null) {
2017 mLauncherCallbacks.onDestroy();
2018 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002019 }
2020
Adam Cohena9cf38f2011-05-02 15:36:58 -07002021 public DragController getDragController() {
2022 return mDragController;
2023 }
2024
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002025 @Override
2026 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002027 onStartForResult(requestCode);
2028 super.startActivityForResult(intent, requestCode);
2029 }
2030
2031 @Override
2032 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2033 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2034 onStartForResult(requestCode);
2035 try {
2036 super.startIntentSenderForResult(intent, requestCode,
2037 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2038 } catch (IntentSender.SendIntentException e) {
2039 throw new ActivityNotFoundException();
2040 }
2041 }
2042
2043 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002044 if (requestCode >= 0) {
2045 setWaitingForResult(true);
2046 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002047 }
2048
Winson Chung70d72102011-08-12 11:24:35 -07002049 /**
2050 * Indicates that we want global search for this activity by setting the globalSearch
2051 * argument for {@link #startSearch} to true.
2052 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002053 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002054 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002055 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002056
Karl Rosaen138a0412009-04-23 19:00:21 -07002057 if (initialQuery == null) {
2058 // Use any text typed in the launcher as the initial query
2059 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002060 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002061 if (appSearchData == null) {
2062 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002063 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002064 }
Winson Chungadf0c182012-08-23 14:59:07 -07002065 Rect sourceBounds = new Rect();
2066 if (mSearchDropTargetBar != null) {
2067 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2068 }
Romain Guycbb89e42009-06-08 15:52:54 -07002069
Ian Parkinson047036e2014-09-01 15:40:53 +01002070 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002071 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002072 if (clearTextImmediately) {
2073 clearTypedText();
2074 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002075
2076 // We need to show the workspace after starting the search
2077 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002078 }
2079
Ian Parkinson047036e2014-09-01 15:40:53 +01002080 /**
2081 * Start a text search.
2082 *
2083 * @return {@code true} if the search will start immediately, so any further keypresses
2084 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2085 * to buffer keypresses.
2086 */
2087 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002088 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002089 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2090 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2091 sourceBounds);
2092 }
2093
Michael Jurkaa33411c2012-06-14 16:18:21 -07002094 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002095 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002096 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002097 }
2098
2099 /**
2100 * Starts the global search activity. This code is a copied from SearchManager
2101 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002102 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002103 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002104 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002105 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2106 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2107 if (globalSearchActivity == null) {
2108 Log.w(TAG, "No global search activity found.");
2109 return;
2110 }
2111 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2112 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2113 intent.setComponent(globalSearchActivity);
2114 // Make sure that we have a Bundle to put source in
2115 if (appSearchData == null) {
2116 appSearchData = new Bundle();
2117 } else {
2118 appSearchData = new Bundle(appSearchData);
2119 }
Adam Cohen9211d422014-10-07 18:14:53 -07002120 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002121 if (!appSearchData.containsKey("source")) {
2122 appSearchData.putString("source", getPackageName());
2123 }
2124 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2125 if (!TextUtils.isEmpty(initialQuery)) {
2126 intent.putExtra(SearchManager.QUERY, initialQuery);
2127 }
2128 if (selectInitialQuery) {
2129 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2130 }
2131 intent.setSourceBounds(sourceBounds);
2132 try {
2133 startActivity(intent);
2134 } catch (ActivityNotFoundException ex) {
2135 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2136 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002137 }
2138
Yura4f93ec62014-02-04 14:15:21 +00002139 public boolean isOnCustomContent() {
2140 return mWorkspace.isOnOrMovingToCustomContent();
2141 }
2142
Winson Chung70d72102011-08-12 11:24:35 -07002143 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002144 public boolean onPrepareOptionsMenu(Menu menu) {
2145 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002146 if (!isOnCustomContent()) {
2147 // Close any open folders
2148 closeFolder();
2149 // Stop resizing any widgets
2150 mWorkspace.exitWidgetResizeMode();
2151 if (!mWorkspace.isInOverviewMode()) {
2152 // Show the overview mode
2153 showOverviewMode(true);
2154 } else {
2155 showWorkspace(true);
2156 }
Winson Chunge0298742014-01-17 12:03:00 -08002157 }
Adam Cohen9211d422014-10-07 18:14:53 -07002158 if (mLauncherCallbacks != null) {
2159 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2160 }
2161
Michael Jurkab94f3f82013-09-11 18:08:54 +02002162 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002163 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002164
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002165 @Override
2166 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002167 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002168 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002169 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002170 }
2171
Joe Onorato9c1289c2009-08-17 11:03:03 -04002172 public boolean isWorkspaceLocked() {
2173 return mWorkspaceLoading || mWaitingForResult;
2174 }
2175
Adam Cohen517a7f52014-03-01 12:12:59 -08002176 public boolean isWorkspaceLoading() {
2177 return mWorkspaceLoading;
2178 }
2179
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002180 private void setWorkspaceLoading(boolean value) {
2181 boolean isLocked = isWorkspaceLocked();
2182 mWorkspaceLoading = value;
2183 if (isLocked != isWorkspaceLocked()) {
2184 onWorkspaceLockedChanged();
2185 }
2186 }
2187
2188 private void setWaitingForResult(boolean value) {
2189 boolean isLocked = isWorkspaceLocked();
2190 mWaitingForResult = value;
2191 if (isLocked != isWorkspaceLocked()) {
2192 onWorkspaceLockedChanged();
2193 }
2194 }
2195
Adam Cohen9211d422014-10-07 18:14:53 -07002196 protected void onWorkspaceLockedChanged() {
2197 if (mLauncherCallbacks != null) {
2198 mLauncherCallbacks.onWorkspaceLockedChanged();
2199 }
2200 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002201
Michael Jurka0280c3b2010-09-17 15:00:07 -07002202 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002203 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002204 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002205 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2206 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002207 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002208 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002209
Sunny Goyale6b63a32015-01-16 16:14:29 -08002210 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002211 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002212 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2213 }
2214
Sunny Goyale6b63a32015-01-16 16:14:29 -08002215 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002216 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2217 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002218 if (appWidgetInfo.configure != null) {
2219 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002220 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002221
Bjorn Bringert7984c942009-12-09 15:38:25 +00002222 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002223 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2224 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2225
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002226 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002227 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002228 Runnable onComplete = new Runnable() {
2229 @Override
2230 public void run() {
2231 // Exit spring loaded mode if necessary after adding the widget
2232 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2233 null);
2234 }
2235 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002236 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002237 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002238 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002239 }
2240 }
Romain Guycbb89e42009-06-08 15:52:54 -07002241
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002242 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002243 // Close any folders that may be open.
2244 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002245 mWorkspace.moveToCustomContentScreen(animate);
2246 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002247
2248 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2249 int[] cell, int spanX, int spanY) {
2250 switch (info.itemType) {
2251 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2252 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2253 int span[] = new int[2];
2254 span[0] = spanX;
2255 span[1] = spanY;
2256 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2257 container, screenId, cell, span);
2258 break;
2259 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2260 processShortcutFromDrop(info.componentName, container, screenId, cell);
2261 break;
2262 default:
2263 throw new IllegalStateException("Unknown item type: " + info.itemType);
2264 }
2265 }
2266
Adam Cohenfbba09b2011-07-18 21:43:05 -07002267 /**
2268 * Process a shortcut drop.
2269 *
2270 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002271 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002272 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002273 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002274 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2275 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002276 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002277 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002278 mPendingAddInfo.screenId = screenId;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002279
2280 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002281 mPendingAddInfo.cellX = cell[0];
2282 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002283 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002284
2285 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2286 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002287 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002288 }
2289
Adam Cohenfbba09b2011-07-18 21:43:05 -07002290 /**
2291 * Process a widget drop.
2292 *
2293 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002294 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002295 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002296 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002297 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2298 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002299 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002300 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002301 mPendingAddInfo.screenId = info.screenId = screenId;
Adam Cohend41fbf52012-02-16 23:53:59 -08002302 mPendingAddInfo.minSpanX = info.minSpanX;
2303 mPendingAddInfo.minSpanY = info.minSpanY;
2304
Adam Cohenfbba09b2011-07-18 21:43:05 -07002305 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002306 mPendingAddInfo.cellX = cell[0];
2307 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002308 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002309 if (span != null) {
2310 mPendingAddInfo.spanX = span[0];
2311 mPendingAddInfo.spanY = span[1];
2312 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002313
Adam Cohened66b2b2012-01-23 17:28:51 -08002314 AppWidgetHostView hostView = info.boundWidget;
2315 int appWidgetId;
2316 if (hostView != null) {
2317 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002318 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002319
2320 // Clear the boundWidget so that it doesn't get destroyed.
2321 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002322 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002323 // In this case, we either need to start an activity to get permission to bind
2324 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002325 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002326 Bundle options = info.bindOptions;
2327
Sunny Goyalffe83f12014-08-14 17:39:34 -07002328 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2329 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002330 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002331 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002332 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002333 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002334 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2335 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2336 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002337 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2338 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002339 // TODO: we need to make sure that this accounts for the options bundle.
2340 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002341 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2342 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002343 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002344 }
2345
Adam Cohendcd297f2013-06-18 13:13:40 -07002346 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002347 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002348 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002349 folderInfo.title = getText(R.string.folder_name);
2350
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002351 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002352 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2353 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002354 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002355
2356 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002357 FolderIcon newFolder =
2358 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002359 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002360 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002361 // Force measure the new folder icon
2362 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2363 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002364 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002365 }
Romain Guycbb89e42009-06-08 15:52:54 -07002366
Joe Onorato9c1289c2009-08-17 11:03:03 -04002367 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002368 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002369 }
2370
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002371 @Override
2372 public boolean dispatchKeyEvent(KeyEvent event) {
2373 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2374 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002375 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002376 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002377 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002378 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002379 dumpState();
2380 return true;
2381 }
2382 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002383 }
2384 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2385 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002386 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002387 return true;
2388 }
2389 }
2390
2391 return super.dispatchKeyEvent(event);
2392 }
2393
Joe Onorato88ec0992009-11-19 13:16:06 -08002394 @Override
2395 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002396 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2397 return;
2398 }
2399
Sunny Goyal45478022015-06-08 16:52:41 -07002400 if (mDragController.isDragging()) {
2401 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002402 return;
2403 }
2404
Winson Chungb745afb2015-03-02 11:51:23 -08002405 if (isAppsViewVisible()) {
2406 showWorkspace(true);
2407 } else if (isWidgetsViewVisible()) {
2408 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002409 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002410 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002411 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002412 Folder openFolder = mWorkspace.getOpenFolder();
2413 if (openFolder.isEditingName()) {
2414 openFolder.dismissEditingName();
2415 } else {
2416 closeFolder();
2417 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002418 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002419 mWorkspace.exitWidgetResizeMode();
2420
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002421 // Back button is a no-op here, but give at least some feedback for the button press
2422 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002423 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002424 }
2425
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002426 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002427 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002428 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002429 @Override
2430 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002431 if (mAppWidgetHost != null) {
2432 mAppWidgetHost.startListening();
2433 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002434 }
2435
2436 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002437 * Launches the intent referred by the clicked shortcut.
2438 *
2439 * @param v The view representing the clicked shortcut.
2440 */
2441 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002442 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2443 // view has detached (it's possible for this to happen if the view is removed mid touch).
2444 if (v.getWindowToken() == null) {
2445 return;
2446 }
2447
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002448 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002449 return;
2450 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002451
Adam Cohen1697b792013-09-17 19:08:21 -07002452 if (v instanceof Workspace) {
2453 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002454 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002455 }
2456 return;
2457 }
2458
2459 if (v instanceof CellLayout) {
2460 if (mWorkspace.isInOverviewMode()) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002461 mWorkspace.snapToPageFromOverView(mWorkspace.indexOfChild(v));
2462 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002463 }
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002464 return;
Adam Cohenf358a4b2013-07-23 16:47:31 -07002465 }
2466
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002467 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002468 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002469 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002470 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002471 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002472 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002473 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002474 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002475 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002476 } else if (tag instanceof AppInfo) {
2477 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002478 } else if (tag instanceof LauncherAppWidgetInfo) {
2479 if (v instanceof PendingAppWidgetHostView) {
2480 onClickPendingWidget((PendingAppWidgetHostView) v);
2481 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002482 }
2483 }
2484
Sunny Goyal70660032015-05-14 00:07:08 -07002485 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002486 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002487 return false;
2488 }
2489
Michael Jurkaaf442092010-06-10 17:01:57 -07002490 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002491 * Event handler for the app widget view which has not fully restored.
2492 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002493 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002494 if (mIsSafeModeEnabled) {
2495 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2496 return;
2497 }
2498
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002499 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002500 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002501 int widgetId = info.appWidgetId;
2502 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2503 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002504 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2505 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002506 mPendingAddInfo.copyFrom(info);
2507 mPendingAddWidgetId = widgetId;
2508
Sunny Goyalffe83f12014-08-14 17:39:34 -07002509 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2510 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002511 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002512 } else if (info.installProgress < 0) {
2513 // The install has not been queued
2514 final String packageName = info.providerName.getPackageName();
2515 showBrokenAppInstallDialog(packageName,
2516 new DialogInterface.OnClickListener() {
2517 public void onClick(DialogInterface dialog, int id) {
2518 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2519 }
2520 });
2521 } else {
2522 // Download has started.
2523 final String packageName = info.providerName.getPackageName();
2524 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002525 }
2526 }
2527
2528 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002529 * Event handler for the "grid" button that appears on the home screen, which
2530 * enters all apps mode.
2531 *
2532 * @param v The view that was clicked.
2533 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002534 protected void onClickAllAppsButton(View v) {
2535 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002536 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002537 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002538 true /* updatePredictedApps */, false /* focusSearchBar */);
2539 }
2540 }
2541
2542 protected void onLongClickAllAppsButton(View v) {
2543 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2544 if (!isAppsViewVisible()) {
2545 showAppsView(true /* animated */, false /* resetListToTop */,
2546 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002547 }
2548 }
2549
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002550 private void showBrokenAppInstallDialog(final String packageName,
2551 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002552 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002553 .setTitle(R.string.abandoned_promises_title)
2554 .setMessage(R.string.abandoned_promise_explanation)
2555 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2556 .setNeutralButton(R.string.abandoned_clean_this,
2557 new DialogInterface.OnClickListener() {
2558 public void onClick(DialogInterface dialog, int id) {
2559 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2560 mWorkspace.removeAbandonedPromise(packageName, user);
2561 }
2562 })
2563 .create().show();
2564 return;
2565 }
2566
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002567 /**
2568 * Event handler for an app shortcut click.
2569 *
2570 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2571 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002572 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002573 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2574 Object tag = v.getTag();
2575 if (!(tag instanceof ShortcutInfo)) {
2576 throw new IllegalArgumentException("Input must be a Shortcut");
2577 }
2578
2579 // Open shortcut
2580 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002581
2582 if (shortcut.isDisabled != 0) {
2583 int error = R.string.activity_not_available;
2584 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2585 error = R.string.safemode_shortcut_error;
2586 }
2587 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2588 return;
2589 }
2590
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002591 final Intent intent = shortcut.intent;
2592
2593 // Check for special shortcuts
2594 if (intent.getComponent() != null) {
2595 final String shortcutClass = intent.getComponent().getClassName();
2596
2597 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2598 MemoryDumpActivity.startDump(this);
2599 return;
2600 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2601 toggleShowWeightWatcher();
2602 return;
2603 }
2604 }
2605
Chris Wren40c5ed32014-06-24 18:24:23 -04002606 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002607 if ((v instanceof BubbleTextView)
2608 && shortcut.isPromise()
2609 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002610 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002611 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002612 new DialogInterface.OnClickListener() {
2613 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002614 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002615 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002616 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002617 return;
2618 }
2619
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002620 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002621 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002622
2623 if (mLauncherCallbacks != null) {
2624 mLauncherCallbacks.onClickAppShortcut(v);
2625 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002626 }
2627
Adam Cohen091440a2015-03-18 14:16:05 -07002628 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002629 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002630 final ShortcutInfo shortcut;
2631 final Intent intent;
2632 if (tag instanceof ShortcutInfo) {
2633 shortcut = (ShortcutInfo) tag;
2634 intent = shortcut.intent;
2635 int[] pos = new int[2];
2636 v.getLocationOnScreen(pos);
2637 intent.setSourceBounds(new Rect(pos[0], pos[1],
2638 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002639
Sunny Goyal508da152014-08-14 10:53:27 -07002640 } else if (tag instanceof AppInfo) {
2641 shortcut = null;
2642 intent = ((AppInfo) tag).intent;
2643 } else {
2644 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2645 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002646
2647 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002648 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002649
2650 if (success && v instanceof BubbleTextView) {
2651 mWaitingForResume = (BubbleTextView) v;
2652 mWaitingForResume.setStayPressed(true);
2653 }
2654 }
2655
2656 /**
2657 * Event handler for a folder icon click.
2658 *
2659 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2660 */
2661 protected void onClickFolderIcon(View v) {
2662 if (LOGD) Log.d(TAG, "onClickFolder");
2663 if (!(v instanceof FolderIcon)){
2664 throw new IllegalArgumentException("Input must be a FolderIcon");
2665 }
2666
2667 FolderIcon folderIcon = (FolderIcon) v;
2668 final FolderInfo info = folderIcon.getFolderInfo();
2669 Folder openFolder = mWorkspace.getFolderForTag(info);
2670
2671 // If the folder info reports that the associated folder is open, then verify that
2672 // it is actually opened. There have been a few instances where this gets out of sync.
2673 if (info.opened && openFolder == null) {
2674 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2675 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2676 info.opened = false;
2677 }
2678
2679 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2680 // Close any open folder
2681 closeFolder();
2682 // Open the requested folder
2683 openFolder(folderIcon);
2684 } else {
2685 // Find the open folder...
2686 int folderScreen;
2687 if (openFolder != null) {
2688 folderScreen = mWorkspace.getPageForView(openFolder);
2689 // .. and close it
2690 closeFolder(openFolder);
2691 if (folderScreen != mWorkspace.getCurrentPage()) {
2692 // Close any folder open on the current screen
2693 closeFolder();
2694 // Pull the folder onto this screen
2695 openFolder(folderIcon);
2696 }
2697 }
2698 }
Adam Cohen9211d422014-10-07 18:14:53 -07002699
2700 if (mLauncherCallbacks != null) {
2701 mLauncherCallbacks.onClickFolderIcon(v);
2702 }
Michael Jurka5130e402011-10-13 04:55:35 -07002703 }
2704
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002705 /**
2706 * Event handler for the (Add) Widgets button that appears after a long press
2707 * on the home screen.
2708 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002709 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002710 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002711 if (mIsSafeModeEnabled) {
2712 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2713 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002714 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002715 if (mLauncherCallbacks != null) {
2716 mLauncherCallbacks.onClickAddWidgetButton(view);
2717 }
Adam Cohen9211d422014-10-07 18:14:53 -07002718 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002719 }
2720
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002721 /**
2722 * Event handler for the wallpaper picker button that appears after a long press
2723 * on the home screen.
2724 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002725 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002726 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002727 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2728 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002729
2730 if (mLauncherCallbacks != null) {
2731 mLauncherCallbacks.onClickWallpaperPicker(v);
2732 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002733 }
2734
2735 /**
2736 * Event handler for a click on the settings button that appears after a long press
2737 * on the home screen.
2738 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002739 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002740 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002741 if (mLauncherCallbacks != null) {
2742 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002743 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002744 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002745 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002746 }
2747
Adam Cohen61f560d2013-09-30 15:58:20 -07002748 public View.OnTouchListener getHapticFeedbackTouchListener() {
2749 if (mHapticFeedbackTouchListener == null) {
2750 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002751 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002752 @Override
2753 public boolean onTouch(View v, MotionEvent event) {
2754 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2755 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2756 }
2757 return false;
2758 }
2759 };
2760 }
2761 return mHapticFeedbackTouchListener;
2762 }
2763
Adam Cohen9211d422014-10-07 18:14:53 -07002764 public void onDragStarted(View view) {
2765 if (isOnCustomContent()) {
2766 // Custom content screen doesn't participate in drag and drop. If on custom
2767 // content screen, move to default.
2768 moveWorkspaceToDefaultScreen();
2769 }
2770
2771 if (mLauncherCallbacks != null) {
2772 mLauncherCallbacks.onDragStarted(view);
2773 }
2774 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002775
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002776 /**
2777 * Called when the user stops interacting with the launcher.
2778 * This implies that the user is now on the homescreen and is not doing housekeeping.
2779 */
Adam Cohen9211d422014-10-07 18:14:53 -07002780 protected void onInteractionEnd() {
2781 if (mLauncherCallbacks != null) {
2782 mLauncherCallbacks.onInteractionEnd();
2783 }
2784 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002785
2786 /**
2787 * Called when the user starts interacting with the launcher.
2788 * The possible interactions are:
2789 * - open all apps
2790 * - reorder an app shortcut, or a widget
2791 * - open the overview mode.
2792 * This is a good time to stop doing things that only make sense
2793 * when the user is on the homescreen and not doing housekeeping.
2794 */
Adam Cohen9211d422014-10-07 18:14:53 -07002795 protected void onInteractionBegin() {
2796 if (mLauncherCallbacks != null) {
2797 mLauncherCallbacks.onInteractionBegin();
2798 }
2799 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002800
Winson Chungcd99cd32015-04-29 11:03:24 -07002801 /** Updates the interaction state. */
2802 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002803 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002804 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002805 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2806 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002807 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002808 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002809 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002810 onInteractionEnd();
2811 }
2812 }
2813
Kenny Guyf07af7b2014-07-31 11:39:16 +01002814 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002815 try {
2816 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002817 launcherApps.showAppDetailsForProfile(componentName, user);
2818 } catch (SecurityException e) {
2819 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2820 Log.e(TAG, "Launcher does not have permission to launch settings");
2821 } catch (ActivityNotFoundException e) {
2822 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2823 Log.e(TAG, "Unable to launch settings");
2824 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002825 }
2826
Michael Jurka1e2f4652013-07-08 18:03:46 -07002827 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002828 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2829 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002830 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002831 // System applications cannot be installed. For now, show a toast explaining that.
2832 // We may give them the option of disabling apps this way.
2833 int messageId = R.string.uninstall_system_app_text;
2834 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002835 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002836 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002837 String packageName = componentName.getPackageName();
2838 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002839 Intent intent = new Intent(
2840 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002841 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2842 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002843 if (user != null) {
2844 user.addToIntent(intent, Intent.EXTRA_USER);
2845 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002846 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002847 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002848 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002849 }
2850
Winson Chung8f1eff72015-05-28 17:33:40 -07002851 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002852 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002853 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002854 // Only launch using the new animation if the shortcut has not opted out (this is a
2855 // private contract between launcher and may be ignored in the future).
2856 boolean useLaunchAnimation = (v != null) &&
2857 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002858 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2859 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002860
Kenny Guy1317e2d2014-05-08 18:52:50 +01002861 UserHandleCompat user = null;
2862 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2863 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2864 user = userManager.getUserForSerialNumber(serialNumber);
2865 }
2866
2867 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002868 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002869 ActivityOptions opts = null;
2870 if (sClipRevealMethod != null) {
2871 // TODO: call method directly when Launcher3 can depend on M APIs
2872 int left = 0, top = 0;
2873 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2874 if (v instanceof TextView) {
2875 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002876 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2877 if (icon != null) {
2878 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002879 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002880 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002881 width = bounds.width();
2882 height = bounds.height();
2883 }
2884 }
2885 try {
2886 opts = (ActivityOptions) sClipRevealMethod.invoke(null, v,
2887 left, top, width, height);
2888 } catch (IllegalAccessException e) {
2889 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2890 sClipRevealMethod = null;
2891 } catch (InvocationTargetException e) {
2892 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2893 sClipRevealMethod = null;
2894 }
2895 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002896 if (opts == null && !Utilities.isLmpOrAbove()) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002897 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002898 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002899 v.getMeasuredWidth(), v.getMeasuredHeight());
Adam Cohen947e02b2015-05-22 19:23:34 -07002900 } else if (opts == null && Utilities.isLmpMR1()) {
2901 // On L devices, we use the device default slide-up transition.
2902 // On L MR1 devices, we a custom version of the slide-up transition which
2903 // doesn't have the delay present in the device default.
2904 opts = ActivityOptions.makeCustomAnimation(this,
2905 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002906 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002907 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002908 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002909
2910 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2911 // Could be launching some bookkeeping activity
2912 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002913 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002914 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002915 launcherApps.startActivityForProfile(intent.getComponent(), user,
2916 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002917 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002918 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002919 } catch (SecurityException e) {
2920 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002921 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002922 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002923 "or use the exported attribute for this activity. "
2924 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002925 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002926 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002927 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002928
Sunny Goyal383c5072015-06-12 21:18:53 -07002929 @Thunk boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002930 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002931 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2932 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2933 return false;
2934 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002935 try {
2936 success = startActivity(v, intent, tag);
2937 } catch (ActivityNotFoundException e) {
2938 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2939 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2940 }
2941 return success;
2942 }
2943
Adam Cohen268c4752012-06-06 17:47:33 -07002944 /**
2945 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2946 * in the DragLayer in the exact absolute location of the original FolderIcon.
2947 */
2948 private void copyFolderIconToImage(FolderIcon fi) {
2949 final int width = fi.getMeasuredWidth();
2950 final int height = fi.getMeasuredHeight();
2951
2952 // Lazy load ImageView, Bitmap and Canvas
2953 if (mFolderIconImageView == null) {
2954 mFolderIconImageView = new ImageView(this);
2955 }
2956 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2957 mFolderIconBitmap.getHeight() != height) {
2958 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2959 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2960 }
2961
2962 DragLayer.LayoutParams lp;
2963 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2964 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2965 } else {
2966 lp = new DragLayer.LayoutParams(width, height);
2967 }
2968
Adam Cohen307fe232012-08-16 17:55:58 -07002969 // The layout from which the folder is being opened may be scaled, adjust the starting
2970 // view size by this scale factor.
2971 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002972 lp.customPosition = true;
2973 lp.x = mRectForFolderAnimation.left;
2974 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002975 lp.width = (int) (scale * width);
2976 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002977
2978 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2979 fi.draw(mFolderIconCanvas);
2980 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002981 if (fi.getFolder() != null) {
2982 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2983 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002984 }
Adam Cohen268c4752012-06-06 17:47:33 -07002985 // Just in case this image view is still in the drag layer from a previous animation,
2986 // we remove it and re-add it.
2987 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2988 mDragLayer.removeView(mFolderIconImageView);
2989 }
2990 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002991 if (fi.getFolder() != null) {
2992 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002993 }
Adam Cohen268c4752012-06-06 17:47:33 -07002994 }
2995
Adam Cohen2801caf2011-05-13 20:57:39 -07002996 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002997 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002998 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2999 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3000 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3001
Adam Cohenc51934b2011-07-26 21:07:43 -07003002 FolderInfo info = (FolderInfo) fi.getTag();
3003 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3004 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003005 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3006 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003007 }
3008
Adam Cohen268c4752012-06-06 17:47:33 -07003009 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3010 copyFolderIconToImage(fi);
3011 fi.setVisibility(View.INVISIBLE);
3012
Michael Jurka2ecf9952012-06-18 12:52:28 -07003013 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003014 scaleX, scaleY);
Kenny Guyd794a3f2014-09-16 15:17:58 +01003015 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003016 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3017 }
3018 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003019 oa.start();
3020 }
3021
Adam Cohen268c4752012-06-06 17:47:33 -07003022 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003023 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003024 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3025 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3026 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3027
Adam Cohen268c4752012-06-06 17:47:33 -07003028 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003029
Adam Cohen268c4752012-06-06 17:47:33 -07003030 // We remove and re-draw the FolderIcon in-case it has changed
3031 mDragLayer.removeView(mFolderIconImageView);
3032 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003033 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003034 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003035 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003036 oa.addListener(new AnimatorListenerAdapter() {
3037 @Override
3038 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003039 if (cl != null) {
3040 cl.clearFolderLeaveBehind();
3041 // Remove the ImageView copy of the FolderIcon and make the original visible.
3042 mDragLayer.removeView(mFolderIconImageView);
3043 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003044 }
3045 }
3046 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003047 oa.start();
3048 }
3049
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003050 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003051 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003052 * is animated relative to the specified View. If the View is null, no animation
3053 * is played.
3054 *
3055 * @param folderInfo The FolderInfo describing the folder to open.
3056 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003057 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003058 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003059 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3060 if (openFolder != null && openFolder != folder) {
3061 // Close any open folder before opening a folder.
3062 closeFolder();
3063 }
3064
Adam Cohena9cf38f2011-05-02 15:36:58 -07003065 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003066
Adam Cohena9cf38f2011-05-02 15:36:58 -07003067 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003068
Sunny Goyalf4066152015-04-15 09:42:19 -07003069 // While the folder is open, the position of the icon cannot change.
3070 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3071
Adam Cohen4554ee12011-08-03 16:13:21 -07003072 // Just verify that the folder hasn't already been added to the DragLayer.
3073 // There was a one-off crash where the folder had a parent already.
3074 if (folder.getParent() == null) {
3075 mDragLayer.addView(folder);
3076 mDragController.addDropTarget((DropTarget) folder);
3077 } else {
3078 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3079 folder.getParent() + ").");
3080 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003081 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003082 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003083
3084 // Notify the accessibility manager that this folder "window" has appeared and occluded
3085 // the workspace items
3086 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3087 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003088 }
3089
3090 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003091 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003092 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003093 if (folder.isEditingName()) {
3094 folder.dismissEditingName();
3095 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003096 closeFolder(folder);
3097 }
3098 }
3099
Sunny Goyal83a8f042015-05-19 12:52:12 -07003100 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003101 folder.getInfo().opened = false;
3102
3103 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3104 if (parent != null) {
3105 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3106 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003107 if (fi != null) {
3108 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3109 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003110 }
3111 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003112
3113 // Notify the accessibility manager that this folder "window" has disappeard and no
3114 // longer occludeds the workspace items
3115 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003116 }
3117
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003118 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003119 if (!isDraggingEnabled()) return false;
3120 if (isWorkspaceLocked()) return false;
3121 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003122
Winson Chung76648c52015-07-10 14:33:23 -07003123 if (v == mAllAppsButton) {
3124 onLongClickAllAppsButton(v);
3125 return true;
3126 }
3127
Adam Cohen1697b792013-09-17 19:08:21 -07003128 if (v instanceof Workspace) {
3129 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003130 if (!mWorkspace.isTouchActive()) {
3131 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003132 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3133 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3134 return true;
3135 } else {
3136 return false;
3137 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003138 } else {
3139 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003140 }
Adam Cohen1697b792013-09-17 19:08:21 -07003141 }
3142
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003143 CellLayout.CellInfo longClickCellInfo = null;
3144 View itemUnderLongClick = null;
3145 if (v.getTag() instanceof ItemInfo) {
3146 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003147 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003148 itemUnderLongClick = longClickCellInfo.cell;
3149 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003150 }
3151
Winson Chung3d503fb2011-07-13 17:25:49 -07003152 // The hotseat touch handling does not go through Workspace, and we always allow long press
3153 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003154 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003155 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003156 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003157 // User long pressed on empty space
3158 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3159 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003160 if (mWorkspace.isInOverviewMode()) {
3161 mWorkspace.startReordering(v);
3162 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003163 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003164 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003165 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003166 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3167 mHotseat.getOrderInHotseat(
3168 longClickCellInfo.cellX,
3169 longClickCellInfo.cellY));
3170 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003171 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003172 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003173 }
3174 }
3175 }
3176 return true;
3177 }
3178
Winson Chung3d503fb2011-07-13 17:25:49 -07003179 boolean isHotseatLayout(View layout) {
3180 return mHotseat != null && layout != null &&
3181 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3182 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003183
Winson Chung3d503fb2011-07-13 17:25:49 -07003184 /**
3185 * Returns the CellLayout of the specified container at the specified screen.
3186 */
Sunny Goyal92820592015-03-02 11:31:35 -08003187 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003188 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3189 if (mHotseat != null) {
3190 return mHotseat.getLayout();
3191 } else {
3192 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003193 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003194 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003195 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003196 }
3197 }
3198
Winson Chungb745afb2015-03-02 11:51:23 -08003199 /**
3200 * For overridden classes.
3201 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003202 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003203 return isAppsViewVisible();
3204 }
3205
3206 public boolean isAppsViewVisible() {
3207 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3208 }
3209
3210 public boolean isWidgetsViewVisible() {
3211 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003212 }
3213
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003214 private void setWorkspaceBackground(int background) {
3215 switch (background) {
3216 case WORKSPACE_BACKGROUND_TRANSPARENT:
3217 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3218 break;
3219 case WORKSPACE_BACKGROUND_BLACK:
3220 getWindow().setBackgroundDrawable(null);
3221 break;
3222 default:
3223 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3224 }
Craig Mautner360310b2012-10-26 15:13:08 -07003225 }
3226
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003227 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003228 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3229 int curflags = getWindow().getAttributes().flags
3230 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3231 if (wpflags != curflags) {
3232 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3233 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003234 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003235 }
3236
Michael Jurkae326f182011-11-21 14:05:46 -08003237 @Override
3238 public void onTrimMemory(int level) {
3239 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003240 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3241 // The widget preview db can result in holding onto over
3242 // 3MB of memory for caching which isn't necessary.
3243 SQLiteDatabase.releaseMemory();
3244
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003245 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003246 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003247 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003248 if (mLauncherCallbacks != null) {
3249 mLauncherCallbacks.onTrimMemory(level);
3250 }
Michael Jurkae326f182011-11-21 14:05:46 -08003251 }
3252
Winson Chungb745afb2015-03-02 11:51:23 -08003253 @Override
3254 public void onStateTransitionHideSearchBar() {
3255 // Hide the search bar
3256 if (mSearchDropTargetBar != null) {
3257 mSearchDropTargetBar.hideSearchBar(false /* animated */);
3258 }
Adam Cohened66b2b2012-01-23 17:28:51 -08003259 }
3260
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003261 public void showWorkspace(boolean animated) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003262 showWorkspace(animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003263 }
3264
Sunny Goyal83a8f042015-05-19 12:52:12 -07003265 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003266 boolean changed = mState != State.WORKSPACE ||
3267 mWorkspace.getState() != Workspace.State.NORMAL;
3268 if (changed) {
Winson Chung2d75f122013-09-23 16:53:31 -07003269 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003270 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003271 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.NORMAL,
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003272 animated, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003273
Winson Chungc7d2b602012-05-16 17:02:20 -07003274 // Show the search bar (only animate if we were showing the drop target bar in spring
3275 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003276 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003277 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003278 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003279
Michael Jurkab3e22d92011-10-31 15:58:33 -07003280 // Set focus to the AppsCustomize button
3281 if (mAllAppsButton != null) {
3282 mAllAppsButton.requestFocus();
3283 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003284 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003285
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003286 // Change the state *after* we've called all the transition code
3287 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003288
Winson Chung5fb63472011-02-02 17:03:37 -08003289 // Resume the auto-advance of widgets
3290 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003291 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003292
Winson Chung0f785722015-04-08 10:27:49 -07003293 if (changed) {
3294 // Send an accessibility event to announce the context change
3295 getWindow().getDecorView()
3296 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003297 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003298 }
3299
Adam Cohened307df2013-10-02 09:37:31 -07003300 void showOverviewMode(boolean animated) {
3301 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003302 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.OVERVIEW,
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003303 animated, null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003304 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003305 }
3306
Winson Chungb745afb2015-03-02 11:51:23 -08003307 /**
3308 * Shows the apps view.
3309 */
Winson Chung76648c52015-07-10 14:33:23 -07003310 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3311 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003312 if (resetListToTop) {
3313 mAppsView.scrollToTop();
3314 }
Winson Chung4ac30062015-05-08 17:34:17 -07003315 if (updatePredictedApps) {
3316 tryAndUpdatePredictedApps();
3317 }
Winson Chung76648c52015-07-10 14:33:23 -07003318 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003319 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003320
Winson Chungb745afb2015-03-02 11:51:23 -08003321 /**
3322 * Shows the widgets view.
3323 */
3324 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003325 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003326 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003327 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003328 }
Winson Chung76648c52015-07-10 14:33:23 -07003329 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003330
3331 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003332 @Override
3333 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003334 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003335 }
3336 });
Winson Chungb745afb2015-03-02 11:51:23 -08003337 }
3338
3339 /**
3340 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003341 *
3342 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003343 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003344 // TODO: calling method should use the return value so that when {@code false} is returned
3345 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003346 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003347 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3348 mState != State.WIDGETS_SPRING_LOADED) {
3349 return false;
3350 }
3351 if (toState != State.APPS && toState != State.WIDGETS) {
3352 return false;
3353 }
Winson Chungb745afb2015-03-02 11:51:23 -08003354
3355 if (toState == State.APPS) {
Winson Chung76648c52015-07-10 14:33:23 -07003356 mStateTransitionAnimation.startAnimationToAllApps(animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003357 } else {
3358 mStateTransitionAnimation.startAnimationToWidgets(animated);
3359 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003360
Michael Jurkab3e22d92011-10-31 15:58:33 -07003361 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003362 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003363
3364 // Pause the auto-advance of widgets until we are out of AllApps
3365 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003366 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003367 closeFolder();
3368
3369 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003370 getWindow().getDecorView()
3371 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003372 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003373 }
3374
Winson Chungcd99cd32015-04-29 11:03:24 -07003375 /**
3376 * Updates the workspace and interaction state on state change, and return the animation to this
3377 * new state.
3378 */
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003379 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState,
Winson Chungef7f8742015-06-04 17:18:17 -07003380 boolean animated, boolean hasOverlaySearchBar, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003381 Workspace.State fromState = mWorkspace.getState();
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003382 Animator anim = mWorkspace.setStateWithAnimation(
3383 toState, animated, hasOverlaySearchBar, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003384 updateInteraction(fromState, toState);
3385 return anim;
3386 }
3387
Hyunyoung Song3f471442015-04-08 19:01:34 -07003388 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003389 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003390 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3391 mState == State.WIDGETS_SPRING_LOADED) {
3392 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003393 }
Winson Chungb745afb2015-03-02 11:51:23 -08003394
3395 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.SPRING_LOADED,
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003396 true /* animated */, null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003397 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003398 }
Adam Cohen7777d962011-08-18 18:58:38 -07003399
Hyunyoung Song3f471442015-04-08 19:01:34 -07003400 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003401 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003402 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003403
Winson Chunge7a03942011-08-05 15:05:12 -07003404 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003405 @Override
3406 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003407 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003408 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3409 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003410 // Before we show workspace, hide all apps again because
3411 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3412 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003413 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003414 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003415 } else {
3416 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003417 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003418 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003419 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003420 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003421
Michael Jurkad3ef3062010-11-23 16:23:58 -08003422 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003423 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003424 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003425 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003426 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003427 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003428 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003429 }
3430
Winson Chung4ac30062015-05-08 17:34:17 -07003431 /**
3432 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3433 * resumed.
3434 */
3435 private void tryAndUpdatePredictedApps() {
3436 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003437 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003438 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003439 mAppsView.setPredictedApps(apps);
3440 }
3441 }
3442 }
3443
Michael Jurkab3e22d92011-10-31 15:58:33 -07003444 void lockAllApps() {
3445 // TODO
3446 }
3447
3448 void unlockAllApps() {
3449 // TODO
3450 }
3451
Sunny Goyal594d76d2014-11-06 10:12:54 -08003452 protected void disableVoiceButtonProxy(boolean disable) {
3453 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003454 }
3455
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003456 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003457 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3458 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003459 }
3460
Adam Cohen24ce0b32014-01-14 16:18:14 -08003461 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003462 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3463 if (searchProvider == null) {
3464 return null;
3465 }
3466
3467 Bundle opts = new Bundle();
3468 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003469 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003470
3471 SharedPreferences sp = getSharedPreferences(
3472 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3473 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003474 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003475 if (!searchProvider.provider.flattenToString().equals(
3476 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003477 || (widgetInfo == null)
3478 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003479 // A valid widget is not already bound.
3480 if (widgetId > -1) {
3481 mAppWidgetHost.deleteAppWidgetId(widgetId);
3482 widgetId = -1;
3483 }
3484
3485 // Try to bind a new widget
3486 widgetId = mAppWidgetHost.allocateAppWidgetId();
3487
3488 if (!AppWidgetManagerCompat.getInstance(this)
3489 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3490 mAppWidgetHost.deleteAppWidgetId(widgetId);
3491 widgetId = -1;
3492 }
3493
3494 sp.edit()
3495 .putInt(QSB_WIDGET_ID, widgetId)
3496 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3497 .commit();
3498 }
3499
Sunny Goyal8d595092015-07-06 12:22:14 -07003500 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003501 if (widgetId != -1) {
3502 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3503 mQsb.updateAppWidgetOptions(opts);
3504 mQsb.setPadding(0, 0, 0, 0);
3505 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003506 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003507 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003508 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003509 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003510 }
3511
Sunny Goyal22235bc2015-04-03 09:23:43 -07003512 private void reinflateQSBIfNecessary() {
3513 if (mQsb instanceof LauncherAppWidgetHostView &&
3514 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3515 mSearchDropTargetBar.removeView(mQsb);
3516 mQsb = null;
3517 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3518 }
3519 }
3520
Michael Jurkad7c28052012-04-27 15:43:36 -07003521 @Override
3522 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003523 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003524 final List<CharSequence> text = event.getText();
3525 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003526 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003527 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003528 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003529 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003530 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003531 } else if (mWorkspace != null) {
3532 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003533 } else {
3534 text.add(getString(R.string.all_apps_home_button_label));
3535 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003536 return result;
3537 }
3538
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003539 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003540 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003541 */
Adam Cohen091440a2015-03-18 14:16:05 -07003542 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003543 @Override
3544 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003545 closeSystemDialogs();
3546 }
3547 }
3548
3549 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003550 * If the activity is currently paused, signal that we need to run the passed Runnable
3551 * in onResume.
3552 *
3553 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003554 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3555 * wrong when we're not running, and if the activity comes back to what the configuration was
3556 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003557 *
3558 * Implementation of the method from LauncherModel.Callbacks.
3559 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003560 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003561 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003562 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003563 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003564 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003565 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003566 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003567 }
3568 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003569 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003570 return true;
3571 } else {
3572 return false;
3573 }
3574 }
3575
Michael Jurkac402cd92013-05-20 15:49:32 +02003576 private boolean waitUntilResume(Runnable run) {
3577 return waitUntilResume(run, false);
3578 }
3579
Michael Jurka1e2f4652013-07-08 18:03:46 -07003580 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003581 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003582 }
3583
Michael Jurka7607c2f2013-04-03 14:33:19 -07003584 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003585 * If the activity is currently paused, signal that we need to re-run the loader
3586 * in onResume.
3587 *
3588 * This needs to be called from incoming places where resources might have been loaded
3589 * while we are paused. That is becaues the Configuration might be wrong
3590 * when we're not running, and if it comes back to what it was when we
3591 * were paused, we are not restarted.
3592 *
3593 * Implementation of the method from LauncherModel.Callbacks.
3594 *
3595 * @return true if we are currently paused. The caller might be able to
3596 * skip some work in that case since we will come back again.
3597 */
3598 public boolean setLoadOnResume() {
3599 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003600 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003601 mOnResumeNeedsLoad = true;
3602 return true;
3603 } else {
3604 return false;
3605 }
3606 }
3607
3608 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003609 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003610 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003611 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003612 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003613 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003614 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07003615 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07003616 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003617 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003618
Joe Onorato9c1289c2009-08-17 11:03:03 -04003619 /**
3620 * Refreshes the shortcuts shown on the workspace.
3621 *
3622 * Implementation of the method from LauncherModel.Callbacks.
3623 */
3624 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003625 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003626
Michael Jurka7607c2f2013-04-03 14:33:19 -07003627 // If we're starting binding all over again, clear any bind calls we'd postponed in
3628 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3629 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003630 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003631
Winson Chungd64d1762013-08-20 14:37:16 -07003632 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003633 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003634 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003635
Michael Jurka05bf644e2011-11-30 20:28:53 -08003636 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003637 if (mHotseat != null) {
3638 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003639 }
3640 }
3641
Adam Cohendcd297f2013-06-18 13:13:40 -07003642 @Override
3643 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003644 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003645
Adam Cohen5084cba2013-09-03 12:01:16 -07003646 // If there are no screens, we need to have an empty screen
3647 if (orderedScreenIds.size() == 0) {
3648 mWorkspace.addExtraEmptyScreen();
3649 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003650
3651 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003652 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003653 if (hasCustomContentToLeft()) {
3654 mWorkspace.createCustomContentContainer();
3655 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003656 }
Winson Chung64359a52013-07-08 17:17:08 -07003657 }
3658
3659 @Override
3660 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003661 int count = orderedScreenIds.size();
3662 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003663 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003664 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003665 }
3666
Adam Cohen39a06042013-07-19 14:30:12 -07003667 private boolean shouldShowWeightWatcher() {
3668 String spKey = LauncherAppState.getSharedPreferencesKey();
3669 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b802013-08-15 15:44:26 -07003670 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003671
3672 return show;
3673 }
3674
3675 private void toggleShowWeightWatcher() {
3676 String spKey = LauncherAppState.getSharedPreferencesKey();
3677 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3678 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3679
3680 show = !show;
3681
3682 SharedPreferences.Editor editor = sp.edit();
3683 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3684 editor.commit();
3685
3686 if (mWeightWatcher != null) {
3687 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3688 }
3689 }
3690
Winson Chungd64d1762013-08-20 14:37:16 -07003691 public void bindAppsAdded(final ArrayList<Long> newScreens,
3692 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003693 final ArrayList<ItemInfo> addAnimated,
3694 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003695 Runnable r = new Runnable() {
3696 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003697 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003698 }
3699 };
3700 if (waitUntilResume(r)) {
3701 return;
3702 }
3703
Winson Chungd64d1762013-08-20 14:37:16 -07003704 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003705 if (newScreens != null) {
3706 bindAddScreens(newScreens);
3707 }
Winson Chungd64d1762013-08-20 14:37:16 -07003708
3709 // We add the items without animation on non-visible pages, and with
3710 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003711 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003712 bindItems(addNotAnimated, 0,
3713 addNotAnimated.size(), false);
3714 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003715 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003716 bindItems(addAnimated, 0,
3717 addAnimated.size(), true);
3718 }
Winson Chungc58497e2013-09-03 17:48:37 -07003719
Winson Chung87412982013-10-03 18:34:14 -07003720 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003721 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003722
Winson Chungb745afb2015-03-02 11:51:23 -08003723 if (addedApps != null && mAppsView != null) {
3724 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003725 }
Winson Chungd64d1762013-08-20 14:37:16 -07003726 }
3727
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003728 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003729 * Bind the items start-end from the list.
3730 *
3731 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003732 */
Winson Chung64359a52013-07-08 17:17:08 -07003733 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3734 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003735 Runnable r = new Runnable() {
3736 public void run() {
3737 bindItems(shortcuts, start, end, forceAnimateIcons);
3738 }
3739 };
3740 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003741 return;
3742 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003743
Winson Chungf0c6ae02012-03-21 16:10:31 -07003744 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003745 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3746 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003747 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003748 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003749 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003750 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003751 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003752
3753 // Short circuit if we are loading dock items for a configuration which has no dock
3754 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3755 mHotseat == null) {
3756 continue;
3757 }
3758
Joe Onorato9c1289c2009-08-17 11:03:03 -04003759 switch (item.itemType) {
3760 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3761 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003762 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003763 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003764
Winson Chung64359a52013-07-08 17:17:08 -07003765 /*
3766 * TODO: FIX collision case
3767 */
Winson Chungce376632013-07-11 16:12:41 -07003768 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3769 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3770 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003771 View v = cl.getChildAt(item.cellX, item.cellY);
3772 Object tag = v.getTag();
3773 String desc = "Collision while binding workspace item: " + item
3774 + ". Collides with " + tag;
3775 if (LauncherAppState.isDogfoodBuild()) {
3776 throw (new RuntimeException(desc));
3777 } else {
3778 Log.d(TAG, desc);
3779 }
Winson Chungce376632013-07-11 16:12:41 -07003780 }
Winson Chung64359a52013-07-08 17:17:08 -07003781 }
3782
Adam Cohendcd297f2013-06-18 13:13:40 -07003783 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3784 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003785 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003786 // Animate all the applications up now
3787 shortcut.setAlpha(0f);
3788 shortcut.setScaleX(0f);
3789 shortcut.setScaleY(0f);
3790 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003791 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003792 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003793 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003794 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003795 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003796 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003797 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003798 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3799 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003800 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003801 default:
3802 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003803 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003804 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003805
Winson Chung997a9232013-07-24 15:33:46 -07003806 if (animateIcons) {
3807 // Animate to the correct page
3808 if (newShortcutsScreenId > -1) {
3809 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003810 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003811 final Runnable startBounceAnimRunnable = new Runnable() {
3812 public void run() {
3813 anim.playTogether(bounceAnims);
3814 anim.start();
3815 }
3816 };
Winson Chung997a9232013-07-24 15:33:46 -07003817 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003818 // We post the animation slightly delayed to prevent slowdowns
3819 // when we are loading right after we return to launcher.
3820 mWorkspace.postDelayed(new Runnable() {
3821 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003822 if (mWorkspace != null) {
3823 mWorkspace.snapToPage(newScreenIndex);
3824 mWorkspace.postDelayed(startBounceAnimRunnable,
3825 NEW_APPS_ANIMATION_DELAY);
3826 }
Winson Chung94d67682013-09-25 16:29:40 -07003827 }
3828 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003829 } else {
3830 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003831 }
3832 }
Winson Chung64359a52013-07-08 17:17:08 -07003833 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003834 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003835 }
3836
Joe Onorato9c1289c2009-08-17 11:03:03 -04003837 /**
3838 * Implementation of the method from LauncherModel.Callbacks.
3839 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003840 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003841 Runnable r = new Runnable() {
3842 public void run() {
3843 bindFolders(folders);
3844 }
3845 };
3846 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003847 return;
3848 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003849 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003850 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003851
3852 /**
3853 * Add the views for a widget to the workspace.
3854 *
3855 * Implementation of the method from LauncherModel.Callbacks.
3856 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003857 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003858 Runnable r = new Runnable() {
3859 public void run() {
3860 bindAppWidget(item);
3861 }
3862 };
3863 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003864 return;
3865 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003866
Daniel Sandler843e8602010-06-07 14:59:01 -04003867 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3868 if (DEBUG_WIDGETS) {
3869 Log.d(TAG, "bindAppWidget: " + item);
3870 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003871 final Workspace workspace = mWorkspace;
3872
Adam Cohen59400422014-03-05 18:07:04 -08003873 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003874 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003875
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003876 if (!mIsSafeModeEnabled
3877 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
3878 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
Sunny Goyalff572272014-07-23 13:58:07 -07003879 if (appWidgetInfo == null) {
3880 if (DEBUG_WIDGETS) {
3881 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3882 + " belongs to component " + item.providerName
3883 + ", as the povider is null");
3884 }
3885 LauncherModel.deleteItemFromDatabase(this, item);
3886 return;
3887 }
3888 // Note: This assumes that the id remap broadcast is received before this step.
3889 // If that is not the case, the id remap will be ignored and user may see the
3890 // click to setup view.
Adam Cohen2e6da152015-05-06 11:42:25 -07003891 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
Sunny Goyalff572272014-07-23 13:58:07 -07003892 pendingInfo.spanX = item.spanX;
3893 pendingInfo.spanY = item.spanY;
3894 pendingInfo.minSpanX = item.minSpanX;
3895 pendingInfo.minSpanY = item.minSpanY;
Hyunyoung Song3f471442015-04-08 19:01:34 -07003896 Bundle options = null;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -07003897 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003898
Sunny Goyalff572272014-07-23 13:58:07 -07003899 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07003900 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3901 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07003902
3903 // TODO consider showing a permission dialog when the widget is clicked.
3904 if (!success) {
3905 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3906 if (DEBUG_WIDGETS) {
3907 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3908 + " belongs to component " + item.providerName
3909 + ", as the launcher is unable to bing a new widget id");
3910 }
3911 LauncherModel.deleteItemFromDatabase(this, item);
3912 return;
3913 }
3914
3915 item.appWidgetId = newWidgetId;
3916
3917 // If the widget has a configure activity, it is still needs to set it up, otherwise
3918 // the widget is ready to go.
3919 item.restoreStatus = (appWidgetInfo.configure == null)
3920 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3921 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3922
3923 LauncherModel.updateItemInDatabase(this, item);
3924 }
3925
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003926 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003927 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003928 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003929 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3930 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003931 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003932
Sunny Goyal651077b2014-06-30 14:15:31 -07003933 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3934 } else {
3935 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003936 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3937 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003938 view.updateIcon(mIconCache);
3939 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003940 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003941 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003942 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003943
Joe Onorato9c1289c2009-08-17 11:03:03 -04003944 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003945 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003946
Adam Cohendcd297f2013-06-18 13:13:40 -07003947 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003948 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003949 if (!item.isCustomWidget()) {
3950 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3951 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003952
Joe Onorato9c1289c2009-08-17 11:03:03 -04003953 workspace.requestLayout();
3954
Daniel Sandler843e8602010-06-07 14:59:01 -04003955 if (DEBUG_WIDGETS) {
3956 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3957 + (SystemClock.uptimeMillis()-start) + "ms");
3958 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003959 }
3960
Sunny Goyalff572272014-07-23 13:58:07 -07003961 /**
3962 * Restores a pending widget.
3963 *
3964 * @param appWidgetId The app widget id
3965 * @param cellInfo The position on screen where to create the widget.
3966 */
3967 private void completeRestoreAppWidget(final int appWidgetId) {
3968 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3969 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3970 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3971 return;
3972 }
3973
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003974 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003975 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3976
3977 mWorkspace.reinflateWidgetsIfNecessary();
3978 LauncherModel.updateItemInDatabase(this, info);
3979 }
3980
Adam Cohen1462de32012-07-24 22:34:36 -07003981 public void onPageBoundSynchronously(int page) {
3982 mSynchronouslyBoundPages.add(page);
3983 }
3984
Joe Onorato9c1289c2009-08-17 11:03:03 -04003985 /**
3986 * Callback saying that there aren't any more items to bind.
3987 *
3988 * Implementation of the method from LauncherModel.Callbacks.
3989 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003990 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07003991 Runnable r = new Runnable() {
3992 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003993 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07003994 }
3995 };
3996 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003997 return;
3998 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003999 if (mSavedState != null) {
4000 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004001 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004002 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004003 mSavedState = null;
4004 }
4005
Adam Cohen1462de32012-07-24 22:34:36 -07004006 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004007
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004008 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004009 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004010
4011 // If we received the result of any pending adds while the loader was running (e.g. the
4012 // widget configuration forced an orientation change), process them now.
4013 if (sPendingAddItem != null) {
4014 final long screenId = completeAdd(sPendingAddItem);
4015
4016 // TODO: this moves the user to the page where the pending item was added. Ideally,
4017 // the screen would be guaranteed to exist after bind, and the page would be set through
4018 // the workspace restore process.
4019 mWorkspace.post(new Runnable() {
4020 @Override
4021 public void run() {
4022 mWorkspace.snapToScreenId(screenId);
4023 }
4024 });
4025 sPendingAddItem = null;
4026 }
4027
Sunny Goyal756adbc2015-04-16 15:20:51 -07004028 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004029
4030 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004031 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004032 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004033 }
4034
Adam Cohen3ed316a2014-07-23 18:21:20 -07004035 private void sendLoadingCompleteBroadcastIfNecessary() {
4036 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4037 String permission =
4038 getResources().getString(R.string.receive_first_load_broadcast_permission);
4039 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4040 sendBroadcast(intent, permission);
4041 SharedPreferences.Editor editor = mSharedPrefs.edit();
4042 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4043 editor.apply();
4044 }
4045 }
4046
Winson Chunga0b7e862013-09-05 16:03:15 -07004047 public boolean isAllAppsButtonRank(int rank) {
4048 if (mHotseat != null) {
4049 return mHotseat.isAllAppsButtonRank(rank);
4050 }
4051 return false;
4052 }
4053
Winson Chunga2413752012-04-03 14:22:34 -07004054 private boolean canRunNewAppsAnimation() {
4055 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4056 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4057 }
4058
Winson Chungc9168342013-06-26 14:54:55 -07004059 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4060 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4061 PropertyValuesHolder.ofFloat("alpha", 1f),
4062 PropertyValuesHolder.ofFloat("scaleX", 1f),
4063 PropertyValuesHolder.ofFloat("scaleY", 1f));
4064 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4065 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004066 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004067 return bounceAnim;
4068 }
4069
Adam Cohen27772732013-11-11 14:00:56 +00004070 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004071 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004072 }
4073
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004074 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004075 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004076 }
4077
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004078 public void bindSearchablesChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004079 if (mSearchDropTargetBar == null) {
4080 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004081 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004082 if (mQsb != null) {
4083 mSearchDropTargetBar.removeView(mQsb);
4084 mQsb = null;
4085 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004086 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004087 }
4088
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004089 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004090 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4091 * multiple calls to bind the same list.)
4092 */
4093 @Thunk ArrayList<AppInfo> mTmpAppsList;
4094 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4095 public void run() {
4096 bindAllApplications(mTmpAppsList);
4097 mTmpAppsList = null;
4098 }
4099 };
4100
4101 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004102 * Add the icons for all apps.
4103 *
4104 * Implementation of the method from LauncherModel.Callbacks.
4105 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004106 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004107 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4108 mTmpAppsList = apps;
4109 return;
4110 }
4111
Winson Chungb745afb2015-03-02 11:51:23 -08004112 if (mAppsView != null) {
4113 mAppsView.setApps(apps);
4114 }
Adam Cohen9211d422014-10-07 18:14:53 -07004115 if (mLauncherCallbacks != null) {
4116 mLauncherCallbacks.bindAllApplications(apps);
4117 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004118 }
4119
4120 /**
4121 * A package was updated.
4122 *
4123 * Implementation of the method from LauncherModel.Callbacks.
4124 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004125 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004126 Runnable r = new Runnable() {
4127 public void run() {
4128 bindAppsUpdated(apps);
4129 }
4130 };
4131 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004132 return;
4133 }
4134
Winson Chungb745afb2015-03-02 11:51:23 -08004135 if (mAppsView != null) {
4136 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004137 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004138 }
4139
Sunny Goyal4390ace2014-10-13 11:33:11 -07004140 @Override
4141 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4142 Runnable r = new Runnable() {
4143 public void run() {
4144 bindWidgetsRestored(widgets);
4145 }
4146 };
4147 if (waitUntilResume(r)) {
4148 return;
4149 }
4150 mWorkspace.widgetsRestored(widgets);
4151 }
4152
Joe Onorato9c1289c2009-08-17 11:03:03 -04004153 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004154 * Some shortcuts were updated in the background.
4155 *
4156 * Implementation of the method from LauncherModel.Callbacks.
4157 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004158 @Override
4159 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4160 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004161 Runnable r = new Runnable() {
4162 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004163 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004164 }
4165 };
4166 if (waitUntilResume(r)) {
4167 return;
4168 }
4169
Sunny Goyal4390ace2014-10-13 11:33:11 -07004170 if (!updated.isEmpty()) {
4171 mWorkspace.updateShortcuts(updated);
4172 }
4173
4174 if (!removed.isEmpty()) {
4175 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4176 for (ShortcutInfo si : removed) {
4177 removedComponents.add(si.getTargetComponent());
4178 }
4179 mWorkspace.removeItemsByComponentName(removedComponents, user);
4180 // Notify the drag controller
4181 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004182 }
4183 }
4184
4185 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004186 * Update the state of a package, typically related to install state.
4187 *
4188 * Implementation of the method from LauncherModel.Callbacks.
4189 */
Sunny Goyale755d462014-07-22 13:48:29 -07004190 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004191 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4192 Runnable r = new Runnable() {
4193 public void run() {
4194 bindRestoreItemsChange(updates);
4195 }
4196 };
4197 if (waitUntilResume(r)) {
4198 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004199 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004200
Sunny Goyal756adbc2015-04-16 15:20:51 -07004201 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004202 }
4203
4204 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004205 * A package was uninstalled. We take both the super set of packageNames
4206 * in addition to specific applications to remove, the reason being that
4207 * this can be called when a package is updated as well. In that scenario,
4208 * we only remove specific components from the workspace, where as
4209 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004210 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004211 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004212 * Implementation of the method from LauncherModel.Callbacks.
4213 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004214 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004215 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004216 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004217 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004218 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004219 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004220 }
Winson Chungd64d1762013-08-20 14:37:16 -07004221 };
4222 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004223 return;
4224 }
4225
Sunny Goyal1a745e82014-10-02 15:58:31 -07004226 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004227 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4228 for (AppInfo info : appInfos) {
4229 removedComponents.add(info.componentName);
4230 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004231 if (!packageNames.isEmpty()) {
4232 mWorkspace.removeItemsByPackageName(packageNames, user);
4233 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004234 if (!removedComponents.isEmpty()) {
4235 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004236 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004237 // Notify the drag controller
4238 mDragController.onAppsRemoved(packageNames, removedComponents);
4239
Sunny Goyal1a745e82014-10-02 15:58:31 -07004240 } else {
4241 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004242 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004243
Winson Chungdf95eb12013-10-16 14:57:07 -07004244 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004245 if (mAppsView != null) {
4246 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004247 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004248 }
Joe Onoratobe386092009-11-17 17:32:16 -08004249
Michael Jurkac402cd92013-05-20 15:49:32 +02004250 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004251 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004252 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004253 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004254 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004255
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004256 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004257 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004258 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004259 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004260 return;
4261 }
4262
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004263 if (mWidgetsView != null && model != null) {
4264 mWidgetsView.addWidgets(model);
4265 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004266 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004267 }
4268
Winson Chung400438b2011-01-16 17:53:48 -08004269 private int mapConfigurationOriActivityInfoOri(int configOri) {
4270 final Display d = getWindowManager().getDefaultDisplay();
4271 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4272 switch (d.getRotation()) {
4273 case Surface.ROTATION_0:
4274 case Surface.ROTATION_180:
4275 // We are currently in the same basic orientation as the natural orientation
4276 naturalOri = configOri;
4277 break;
4278 case Surface.ROTATION_90:
4279 case Surface.ROTATION_270:
4280 // We are currently in the other basic orientation to the natural orientation
4281 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4282 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4283 break;
4284 }
4285
4286 int[] oriMap = {
4287 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4288 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4289 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4290 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4291 };
4292 // Since the map starts at portrait, we need to offset if this device's natural orientation
4293 // is landscape.
4294 int indexOffset = 0;
4295 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4296 indexOffset = 1;
4297 }
4298 return oriMap[(d.getRotation() + indexOffset) % 4];
4299 }
Adam Cohen446e9402011-09-15 18:21:21 -07004300
Winson Chung4b919f82012-05-01 10:44:08 -07004301 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004302 if (mRotationEnabled) {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004303 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
4304 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4305 .getConfiguration().orientation));
4306 } else {
4307 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4308 }
Winson Chung4b919f82012-05-01 10:44:08 -07004309 }
4310 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004311
Winson Chung4b919f82012-05-01 10:44:08 -07004312 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004313 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004314 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004315 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004316 } else {
4317 mHandler.postDelayed(new Runnable() {
4318 public void run() {
4319 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4320 }
4321 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004322 }
Winson Chung4b919f82012-05-01 10:44:08 -07004323 }
Winson Chung400438b2011-01-16 17:53:48 -08004324 }
4325
Winson Chunge43a1e72014-01-15 10:33:02 -08004326 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004327 if (mLauncherCallbacks != null) {
4328 return mLauncherCallbacks.isLauncherPreinstalled();
4329 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004330 PackageManager pm = getPackageManager();
4331 try {
4332 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4333 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4334 return true;
4335 } else {
4336 return false;
4337 }
4338 } catch (NameNotFoundException e) {
4339 e.printStackTrace();
4340 return false;
4341 }
4342 }
4343
Adam Cohenea90f832014-05-21 15:03:34 -07004344 /**
4345 * This method indicates whether or not we should suggest default wallpaper dimensions
4346 * when our wallpaper cropper was not yet used to set a wallpaper.
4347 */
4348 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004349 if (mLauncherCallbacks != null) {
4350 return mLauncherCallbacks.overrideWallpaperDimensions();
4351 }
Adam Cohenea90f832014-05-21 15:03:34 -07004352 return true;
4353 }
4354
Adam Cohen432609a2014-03-13 17:03:22 -07004355 /**
4356 * To be overridden by subclasses to indicate that there is an activity to launch
4357 * before showing the standard launcher experience.
4358 */
4359 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004360 if (mLauncherCallbacks != null) {
4361 return mLauncherCallbacks.hasFirstRunActivity();
4362 }
Adam Cohen432609a2014-03-13 17:03:22 -07004363 return false;
4364 }
4365
4366 /**
4367 * To be overridden by subclasses to launch any first run activity
4368 */
4369 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004370 if (mLauncherCallbacks != null) {
4371 return mLauncherCallbacks.getFirstRunActivity();
4372 }
Adam Cohen432609a2014-03-13 17:03:22 -07004373 return null;
4374 }
4375
Winson Chunga6945242014-01-08 14:04:34 -08004376 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004377 return !ActivityManager.isRunningInTestHarness() &&
4378 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004379 }
4380
Adam Cohen4a9423d2014-03-28 14:22:31 -07004381 protected boolean hasRunFirstRunActivity() {
4382 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4383 }
4384
Adam Cohen432609a2014-03-13 17:03:22 -07004385 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004386 if (shouldRunFirstRunActivity() &&
4387 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004388 Intent firstRunIntent = getFirstRunActivity();
4389 if (firstRunIntent != null) {
4390 startActivity(firstRunIntent);
4391 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004392 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004393 }
4394 }
Adam Cohen432609a2014-03-13 17:03:22 -07004395 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004396 }
4397
4398 private void markFirstRunActivityShown() {
4399 SharedPreferences.Editor editor = mSharedPrefs.edit();
4400 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4401 editor.apply();
4402 }
4403
Adam Cohen432609a2014-03-13 17:03:22 -07004404 /**
4405 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4406 * screen that must be displayed and dismissed.
4407 */
4408 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004409 if (mLauncherCallbacks != null) {
4410 return mLauncherCallbacks.hasDismissableIntroScreen();
4411 }
Adam Cohen432609a2014-03-13 17:03:22 -07004412 return false;
4413 }
4414
4415 /**
4416 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4417 */
4418 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004419 if (mLauncherCallbacks != null) {
4420 return mLauncherCallbacks.getIntroScreen();
4421 }
Adam Cohen432609a2014-03-13 17:03:22 -07004422 return null;
4423 }
4424
4425 /**
4426 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4427 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4428 */
4429 private boolean shouldShowIntroScreen() {
4430 return hasDismissableIntroScreen() &&
4431 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4432 }
4433
4434 protected void showIntroScreen() {
4435 View introScreen = getIntroScreen();
4436 changeWallpaperVisiblity(false);
4437 if (introScreen != null) {
4438 mDragLayer.showOverlayView(introScreen);
4439 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004440 if (mLauncherOverlayContainer != null) {
4441 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4442 }
Adam Cohen432609a2014-03-13 17:03:22 -07004443 }
4444
4445 public void dismissIntroScreen() {
4446 markIntroScreenDismissed();
4447 if (showFirstRunActivity()) {
4448 // We delay hiding the intro view until the first run activity is showing. This
4449 // avoids a blip.
4450 mWorkspace.postDelayed(new Runnable() {
4451 @Override
4452 public void run() {
4453 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004454 if (mLauncherOverlayContainer != null) {
4455 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4456 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004457 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004458 }
4459 }, ACTIVITY_START_DELAY);
4460 } else {
4461 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004462 if (mLauncherOverlayContainer != null) {
4463 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4464 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004465 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004466 }
4467 changeWallpaperVisiblity(true);
4468 }
4469
4470 private void markIntroScreenDismissed() {
4471 SharedPreferences.Editor editor = mSharedPrefs.edit();
4472 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4473 editor.apply();
4474 }
4475
Adam Cohen091440a2015-03-18 14:16:05 -07004476 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004477 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4478 // on the device, then we always show the first run cling experience (or if there is no
4479 // launcher2). Otherwise, we prompt the user upon started for migration
4480 LauncherClings launcherClings = new LauncherClings(this);
4481 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4482 if (mModel.canMigrateFromOldLauncherDb(this)) {
4483 launcherClings.showMigrationCling();
4484 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004485 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004486 }
4487 }
4488 }
4489
Winson Chunga6945242014-01-08 14:04:34 -08004490 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004491 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4492 if (mHotseat != null) mHotseat.setAlpha(1f);
4493 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
4494 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004495 }
4496
4497 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004498 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4499 if (mHotseat != null) mHotseat.setAlpha(0f);
4500 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
4501 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004502 }
4503
Winson Chung5ffd51d2015-06-25 11:36:50 -07004504 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004505 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004506 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004507 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004508 UserHandleCompat user = null;
4509 if (Utilities.isLmpOrAbove()) {
4510 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4511 if (userHandle != null) {
4512 user = UserHandleCompat.fromUser(userHandle);
4513 }
4514 }
4515 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004516 }
4517
4518 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004519 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004520 if (user == null) {
4521 user = UserHandleCompat.myUserHandle();
4522 }
4523
4524 // Called from search suggestion, add the profile extra to the intent to ensure that we
4525 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004526 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004527 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004528 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004529 return null;
4530 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004531 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004532 }
4533
Winson Chung5ffd51d2015-06-25 11:36:50 -07004534 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004535 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4536 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004537 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004538 UserHandleCompat.myUserHandle());
4539 }
4540
Winson Chung5ffd51d2015-06-25 11:36:50 -07004541 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004542 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4543 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004544 mWorkspace.onExternalDragStartedWithItem(dragView);
4545 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004546 }
4547
Winson Chung5ffd51d2015-06-25 11:36:50 -07004548 protected void moveWorkspaceToDefaultScreen() {
4549 mWorkspace.moveToDefaultScreen(false);
4550 }
4551
Anjali Koppalf5d29132014-02-28 13:33:27 -08004552 @Override
4553 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004554 if (mLauncherCallbacks != null) {
4555 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4556 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004557 }
4558
Winson Chung80baf5a2010-08-09 16:03:15 -07004559 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004560 * Returns a FastBitmapDrawable with the icon, accurately sized.
4561 */
4562 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4563 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4564 d.setFilterBitmap(true);
4565 resizeIconDrawable(d);
4566 return d;
4567 }
4568
4569 /**
4570 * Resizes an icon drawable to the correct icon size.
4571 */
4572 public void resizeIconDrawable(Drawable icon) {
4573 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4574 }
4575
4576 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004577 * Prints out out state for debugging.
4578 */
4579 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004580 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004581 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004582 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4583 Log.d(TAG, "mRestoring=" + mRestoring);
4584 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004585 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004586 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004587 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004588
Daniel Sandler325dc232013-06-05 22:57:57 -04004589 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004590 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004591
4592 @Override
4593 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4594 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004595 synchronized (sDumpLogs) {
4596 writer.println(" ");
4597 writer.println("Debug logs: ");
4598 for (int i = 0; i < sDumpLogs.size(); i++) {
4599 writer.println(" " + sDumpLogs.get(i));
4600 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004601 }
Adam Cohen9211d422014-10-07 18:14:53 -07004602 if (mLauncherCallbacks != null) {
4603 mLauncherCallbacks.dump(prefix, fd, writer, args);
4604 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004605 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004606
4607 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004608 if (DEBUG_DUMP_LOG) {
4609 synchronized (sDumpLogs) {
4610 Log.d(TAG, "");
4611 Log.d(TAG, "*********************");
4612 Log.d(TAG, "Launcher debug logs: ");
4613 for (int i = 0; i < sDumpLogs.size(); i++) {
4614 Log.d(TAG, " " + sDumpLogs.get(i));
4615 }
4616 Log.d(TAG, "*********************");
4617 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004618 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004619 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004620 }
4621
4622 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004623 addDumpLog(tag, log, null, debugLog);
4624 }
4625
4626 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004627 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004628 if (e != null) {
4629 Log.d(tag, log, e);
4630 } else {
4631 Log.d(tag, log);
4632 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004633 }
Winson Chungede41292013-09-19 16:27:36 -07004634 if (DEBUG_DUMP_LOG) {
4635 sDateStamp.setTime(System.currentTimeMillis());
4636 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004637 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4638 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004639 }
Winson Chungede41292013-09-19 16:27:36 -07004640 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004641 }
4642
Adam Cohen59400422014-03-05 18:07:04 -08004643 public static CustomAppWidget getCustomAppWidget(String name) {
4644 return sCustomAppWidgets.get(name);
4645 }
4646
4647 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4648 return sCustomAppWidgets;
4649 }
4650
Winson Chungede41292013-09-19 16:27:36 -07004651 public void dumpLogsToLocalData() {
4652 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004653 new AsyncTask<Void, Void, Void>() {
4654 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004655 boolean success = false;
4656 sDateStamp.setTime(sRunStart);
4657 String FILENAME = sDateStamp.getMonth() + "-"
4658 + sDateStamp.getDay() + "_"
4659 + sDateStamp.getHours() + "-"
4660 + sDateStamp.getMinutes() + "_"
4661 + sDateStamp.getSeconds() + ".txt";
4662
4663 FileOutputStream fos = null;
4664 File outFile = null;
4665 try {
4666 outFile = new File(getFilesDir(), FILENAME);
4667 outFile.createNewFile();
4668 fos = new FileOutputStream(outFile);
4669 } catch (Exception e) {
4670 e.printStackTrace();
4671 }
4672 if (fos != null) {
4673 PrintWriter writer = new PrintWriter(fos);
4674
4675 writer.println(" ");
4676 writer.println("Debug logs: ");
4677 synchronized (sDumpLogs) {
4678 for (int i = 0; i < sDumpLogs.size(); i++) {
4679 writer.println(" " + sDumpLogs.get(i));
4680 }
4681 }
4682 writer.close();
4683 }
4684 try {
4685 if (fos != null) {
4686 fos.close();
4687 success = true;
4688 }
4689 } catch (IOException e) {
4690 e.printStackTrace();
4691 }
Michael Jurka43467462013-11-14 12:03:58 +01004692 return null;
Winson Chungede41292013-09-19 16:27:36 -07004693 }
Michael Jurka43467462013-11-14 12:03:58 +01004694 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004695 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004696 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004697}
Michael Jurka2763be32011-02-24 11:19:57 -08004698
Dan Sandlerd5024042014-01-09 15:01:33 -05004699interface DebugIntents {
4700 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4701 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004702}