blob: 867a6e71d4822c5ca72d88635828a43811dda98f [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;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080039import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040041import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070043import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070044import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070045import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070046import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080047import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070049import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050import android.content.res.Configuration;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080051import android.database.ContentObserver;
Adam Cohen3f9c9712014-10-31 11:48:25 -070052import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070053import android.graphics.Bitmap;
54import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070055import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070056import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070058import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070059import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040060import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070061import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020062import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080063import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020064import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080065import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070066import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070067import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040068import android.os.SystemClock;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069import android.text.Selection;
70import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070071import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070073import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070074import android.view.Display;
75import android.view.Gravity;
76import android.view.HapticFeedbackConstants;
77import android.view.KeyEvent;
78import android.view.LayoutInflater;
79import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070080import android.view.MotionEvent;
81import android.view.Surface;
82import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070083import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080084import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070086import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070087import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070088import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070089import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080090import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070091import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080092import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070093import android.widget.Advanceable;
94import android.widget.FrameLayout;
95import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080096import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070097import android.widget.Toast;
Adam Cohen6c5891a2014-07-09 23:53:15 -070098
Sunny Goyal651077b2014-06-30 14:15:31 -070099import com.android.launcher3.DropTarget.DragObject;
100import com.android.launcher3.PagedView.PageSwitchListener;
Sunny Goyal83a8f042015-05-19 12:52:12 -0700101import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700102import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyal5683f872015-05-29 14:54:40 -0700103import com.android.launcher3.allapps.AppSearchManager;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700104import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100105import com.android.launcher3.compat.LauncherActivityInfoCompat;
106import com.android.launcher3.compat.LauncherAppsCompat;
107import com.android.launcher3.compat.UserHandleCompat;
108import com.android.launcher3.compat.UserManagerCompat;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700109import com.android.launcher3.model.WidgetsModel;
Sunny Goyale2df0622015-04-24 11:27:00 -0700110import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700111import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700112import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700113import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700114import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700115
Adam Cohen4caf2982013-08-20 18:54:31 -0700116import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700117import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700118import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700119import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700120import java.io.PrintWriter;
Chet Haasea8f996d2015-02-17 12:56:04 -0800121import java.lang.reflect.InvocationTargetException;
122import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700123import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700124import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700125import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700126import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700127import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700128import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700129import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000130import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700131
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800132/**
133 * Default launcher application.
134 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100135public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700136 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chungb745afb2015-03-02 11:51:23 -0800137 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener,
138 LauncherStateTransitionAnimation.Callbacks {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700139 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700140 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800141
Winson Chung83f59ab2015-05-05 17:21:58 -0700142 // Temporary flag
143 static final boolean DISABLE_ALL_APPS_SEARCH_INTEGRATION = true;
144
Daniel Sandlerf061f822013-06-27 13:59:36 -0400145 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700146 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700147 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400148 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700149 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700150
Dan Sandlerd5024042014-01-09 15:01:33 -0500151 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
152
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800153 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700154 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700155 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700156 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800157
Michael Jurka8b805b12012-04-18 14:23:14 -0700158 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700159 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700160
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700161 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
162 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
163 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
164
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700165 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
166
Mathew Inwood876a8462013-06-14 14:12:41 +0100167 /**
168 * IntentStarter uses request codes starting with this. This must be greater than all activity
169 * request codes used internally.
170 */
171 protected static final int REQUEST_LAST = 100;
172
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800173 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800174
Michael Jurka0a457bf2012-11-19 14:05:05 -0800175 // To turn on these properties, type
176 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800177 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800178
Winson Chung2672ff92012-05-04 16:22:30 -0700179 // The Intent extra that defines whether to ignore the launch animation
180 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400181 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700182
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800183 // Type: int
184 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700185 // Type: int
186 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800187 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700188 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
189 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800190 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
191 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700192 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800193 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700194 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700195 // Type: int
196 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
197 // Type: int
198 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
199 // Type: parcelable
200 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000201 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800202 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000203 // Type: int[]
204 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800205
Adam Cohen432609a2014-03-13 17:03:22 -0700206 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800207 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
208
Adam Cohen3ed316a2014-07-23 18:21:20 -0700209 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
210 static final String ACTION_FIRST_LOAD_COMPLETE =
211 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
212
Adam Cohen39a06042013-07-19 14:30:12 -0700213 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b802013-08-15 15:44:26 -0700214 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700215
Sunny Goyal594d76d2014-11-06 10:12:54 -0800216 private static final String QSB_WIDGET_ID = "qsb_widget_id";
217 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
218
Winson Chunga6945242014-01-08 14:04:34 -0800219 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
220
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700221 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700222 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
223
Adam Cohen091440a2015-03-18 14:16:05 -0700224 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700225 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700226
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700227 private boolean mIsSafeModeEnabled;
228
Adam Cohenc2d6e892014-10-16 09:49:24 -0700229 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
230 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700231 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700232
Joe Onorato9c1289c2009-08-17 11:03:03 -0400233 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700234 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
235 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700236 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800237
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000238 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
239 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
240
Winson Chunga2413752012-04-03 14:22:34 -0700241 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700242 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
243 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700244 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700245
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800246 private final BroadcastReceiver mCloseSystemDialogsReceiver
247 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800248 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
249
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800250 private LayoutInflater mInflater;
251
Adam Cohen091440a2015-03-18 14:16:05 -0700252 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700253 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800254 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700255 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800256 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700257 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700258
Sunny Goyalffe83f12014-08-14 17:39:34 -0700259 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700260 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700261
Adam Cohen091440a2015-03-18 14:16:05 -0700262 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800263 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800264 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700265
Michael Jurka0280c3b2010-09-17 15:00:07 -0700266 private int[] mTmpAddItemCellCoordinates = new int[2];
267
Sunny Goyal316490e2015-06-02 09:38:28 -0700268 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800269 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700270
Michael Jurka838a4ca2011-02-07 13:33:06 -0800271 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700272
Winson Chungc51db6a2011-10-05 11:44:49 -0700273 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700274
275 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700276 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700277
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700278 // Main container view and the model for the widget tray screen.
279 @Thunk WidgetsContainerView mWidgetsView;
280 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700281
Winson Chungf0ea4d32011-06-06 14:27:16 -0700282 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800283 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800284
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700286 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
287 // scroll issues (because the workspace may not have been measured yet) and extra work.
288 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
289 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800290
291 private SpannableStringBuilder mDefaultKeySsb = null;
292
Adam Cohen091440a2015-03-18 14:16:05 -0700293 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400294
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800295 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800296 private boolean mRestoring;
297 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700298 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800299
Michael Jurka1e2f4652013-07-08 18:03:46 -0700300 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700301 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
302
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800303 private Bundle mSavedInstanceState;
304
Joe Onorato9c1289c2009-08-17 11:03:03 -0400305 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800306 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700307 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800308 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700309 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800310 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400311
Sunny Goyale2df0622015-04-24 11:27:00 -0700312 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700313
Adam Cohen61f560d2013-09-30 15:58:20 -0700314 private View.OnTouchListener mHapticFeedbackTouchListener;
315
Adam Cohended9f8d2010-11-03 13:25:16 -0700316 // Related to the auto-advancing of widgets
317 private final int ADVANCE_MSG = 1;
318 private final int mAdvanceInterval = 20000;
319 private final int mAdvanceStagger = 250;
320 private long mAutoAdvanceSentTime;
321 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700322 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700323 new HashMap<View, AppWidgetProviderInfo>();
324
Winson Chung400438b2011-01-16 17:53:48 -0800325 // Determines how long to wait after a rotation before restoring the screen orientation to
326 // match the sensor state.
327 private final int mRestoreScreenOrientationDelay = 500;
328
Adam Cohen091440a2015-03-18 14:16:05 -0700329 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700330
Adam Cohen1462de32012-07-24 22:34:36 -0700331 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700332 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700333
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700334 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700335 static Date sDateStamp = new Date();
336 static DateFormat sDateFormat =
337 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
338 static long sRunStart = System.currentTimeMillis();
339 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700340
Winson Chung46353de2012-02-16 14:05:10 -0800341 // We only want to get the SharedPreferences once since it does an FS stat each time we get
342 // it from the context.
343 private SharedPreferences mSharedPrefs;
344
Winson Chungf0c6ae02012-03-21 16:10:31 -0700345 // Holds the page that we need to animate to, and the icon views that we need to animate up
346 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700347 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700348 private Bitmap mFolderIconBitmap;
349 private Canvas mFolderIconCanvas;
350 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700351
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700352 private DeviceProfile mDeviceProfile;
353
Winson Chung13eb5272015-05-11 16:30:13 -0700354 // This is set to the view that launched the activity that navigated the user away from
355 // launcher. Since there is no callback for when the activity has finished launching, enable
356 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800357 private BubbleTextView mWaitingForResume;
358
Adam Cohen59400422014-03-05 18:07:04 -0800359 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
360 new HashMap<String, CustomAppWidget>();
361
362 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
363 static {
364 if (ENABLE_CUSTOM_WIDGET_TEST) {
365 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
366 }
367 }
368
Chet Haasea8f996d2015-02-17 12:56:04 -0800369 // TODO: remove this field and call method directly when Launcher3 can depend on M APIs
370 private static Method sClipRevealMethod = null;
371 static {
372 Class<?> activityOptionsClass = ActivityOptions.class;
373 try {
374 sClipRevealMethod = activityOptionsClass.getDeclaredMethod("makeClipRevealAnimation",
375 View.class, int.class, int.class, int.class, int.class);
376 } catch (Exception e) {
377 // Earlier version
378 }
379 }
380
Adam Cohen091440a2015-03-18 14:16:05 -0700381 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700382 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700383 if (mWorkspace != null) {
384 mWorkspace.buildPageHardwareLayers();
385 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700386 }
387 };
388
Adam Cohendb364c32014-05-20 14:23:40 -0700389 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800390
Adam Cohen091440a2015-03-18 14:16:05 -0700391 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800392 int requestCode;
393 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700394 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700395 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800396 int cellX;
397 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700398 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800399 }
400
Daniel Sandlerff02d492013-08-05 02:12:05 -0400401 private Stats mStats;
402
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700403 FocusIndicatorView mFocusHandler;
404
Sunny Goyal316490e2015-06-02 09:38:28 -0700405 @Thunk boolean mRotationEnabled = false;
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700406 private boolean mPreferenceObserverRegistered = false;
407
408 final private SharedPreferences.OnSharedPreferenceChangeListener mSettingsObserver =
409 new SharedPreferences.OnSharedPreferenceChangeListener() {
410 @Override
411 public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
412 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(key)) {
413 if (mRotationEnabled = sharedPreferences.getBoolean(
414 Utilities.ALLOW_ROTATION_PREFERENCE_KEY, false)) {
415 unlockScreenOrientation(true);
416 } else {
417 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
418 }
419 }
420 }
421 };
422
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800423 @Override
424 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700425 if (DEBUG_STRICT_MODE) {
426 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
427 .detectDiskReads()
428 .detectDiskWrites()
429 .detectNetwork() // or .detectAll() for all detectable problems
430 .penaltyLog()
431 .build());
432 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
433 .detectLeakedSqlLiteObjects()
434 .detectLeakedClosableObjects()
435 .penaltyLog()
436 .penaltyDeath()
437 .build());
438 }
439
Adam Cohen9211d422014-10-07 18:14:53 -0700440 if (mLauncherCallbacks != null) {
441 mLauncherCallbacks.preOnCreate();
442 }
443
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800444 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400445
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400446 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400447 LauncherAppState app = LauncherAppState.getInstance();
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700448 LauncherAppState.getLauncherProvider().setLauncherProviderChangeListener(this);
Winson Chung6e1c0d32013-10-25 15:24:24 -0700449
Adam Cohen2e6da152015-05-06 11:42:25 -0700450 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700451 mDeviceProfile = getResources().getConfiguration().orientation
452 == Configuration.ORIENTATION_LANDSCAPE ?
453 app.getInvariantDeviceProfile().landscapeProfile
454 : app.getInvariantDeviceProfile().portraitProfile;
455
456 // TODO: Move this to icon cache.
457 Utilities.setIconSize(mDeviceProfile.iconSizePx);
Winson Chung5f8afe62013-08-12 16:19:28 -0700458
459 // the LauncherApplication should call this, but in case of Instrumentation it might not be present yet
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400460 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700461 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700462 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800463 mModel = app.setLauncher(this);
464 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700465
Joe Onorato41a12d22009-10-31 18:30:00 -0400466 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800467 mInflater = getLayoutInflater();
Winson Chungb745afb2015-03-02 11:51:23 -0800468 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this, this);
Romain Guycbb89e42009-06-08 15:52:54 -0700469
Daniel Sandlerff02d492013-08-05 02:12:05 -0400470 mStats = new Stats(this);
471
Sunny Goyalffe83f12014-08-14 17:39:34 -0700472 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700473
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700474 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
475 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700476
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700477 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
478 // this also ensures that any synchronous binding below doesn't re-trigger another
479 // LauncherModel load.
480 mPaused = false;
481
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800482 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200483 android.os.Debug.startMethodTracing(
484 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800485 }
486
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800487 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700488
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800489 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700490 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800491
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800492 registerContentObservers();
493
Joe Onorato7c312c12009-08-13 21:36:53 -0700494 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700495
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800496 mSavedState = savedInstanceState;
497 restoreState(mSavedState);
498
499 if (PROFILE_STARTUP) {
500 android.os.Debug.stopMethodTracing();
501 }
502
503 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700504 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700505 // If the user leaves launcher, then we should just load items asynchronously when
506 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700507 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700508 } else {
509 // We only load the page synchronously if the user rotates (or triggers a
510 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700511 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700512 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800513 }
514
515 // For handling default keys
516 mDefaultKeySsb = new SpannableStringBuilder();
517 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800518
519 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
520 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800521
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700522 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
523 // In case we are on a device with locked rotation, we should look at preferences to check
524 // if the user has specifically allowed rotation.
525 if (!mRotationEnabled) {
526 getSharedPreferences(LauncherFiles.ROTATION_PREF_FILE,
527 Context.MODE_MULTI_PROCESS).registerOnSharedPreferenceChangeListener(
528 mSettingsObserver);
529 mPreferenceObserverRegistered = true;
530 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext());
531 }
532
533 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
534 // we want the screen to auto-rotate based on the current orientation
Adam Cohenf9426d52012-06-04 17:26:21 -0700535 unlockScreenOrientation(true);
Winson Chungaf40f202013-09-18 18:26:31 -0700536
Adam Cohen9211d422014-10-07 18:14:53 -0700537 if (mLauncherCallbacks != null) {
538 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700539 if (mLauncherCallbacks.hasLauncherOverlay()) {
540 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700541 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
542 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
543 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700544 mWorkspace.setLauncherOverlay(mLauncherOverlay);
545 }
Adam Cohen9211d422014-10-07 18:14:53 -0700546 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700547
548 if (shouldShowIntroScreen()) {
549 showIntroScreen();
550 } else {
551 showFirstRunActivity();
552 showFirstRunClings();
553 }
Adam Cohen9211d422014-10-07 18:14:53 -0700554 }
555
556 private LauncherCallbacks mLauncherCallbacks;
557
558 public void onPostCreate(Bundle savedInstanceState) {
559 super.onPostCreate(savedInstanceState);
560 if (mLauncherCallbacks != null) {
561 mLauncherCallbacks.onPostCreate(savedInstanceState);
562 }
563 }
564
565 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
566 mLauncherCallbacks = callbacks;
Winson Chung0f785722015-04-08 10:27:49 -0700567 mLauncherCallbacks.setLauncherAppsCallback(new Launcher.LauncherAppsCallbacks() {
568 @Override
569 public void onAllAppsBoundsChanged(Rect bounds) {
Winson Chungcd99cd32015-04-29 11:03:24 -0700570 if (LOGD) {
571 Log.d(TAG, "onAllAppsBoundsChanged(Rect): " + bounds);
572 }
Winson Chung94804152015-05-08 13:06:44 -0700573 mAppsView.setFixedBounds(bounds);
574 mWidgetsView.setFixedBounds(bounds);
Winson Chung0f785722015-04-08 10:27:49 -0700575 }
576
577 @Override
578 public void dismissAllApps() {
Winson Chung83f59ab2015-05-05 17:21:58 -0700579 if (!DISABLE_ALL_APPS_SEARCH_INTEGRATION) {
580 // Dismiss All Apps if we aren't already paused/invisible
581 if (!mPaused) {
582 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true,
583 null /* onCompleteRunnable */, false /* notifyLauncherCallbacks */);
584 }
Winson Chungcd99cd32015-04-29 11:03:24 -0700585 }
Winson Chung0f785722015-04-08 10:27:49 -0700586 }
Sunny Goyal5683f872015-05-29 14:54:40 -0700587
588 @Override
589 public void setSearchManager(AppSearchManager manager) {
590 mAppsView.setSearchManager(manager);
591 }
Winson Chung0f785722015-04-08 10:27:49 -0700592 });
Jun Mukai8af0cd82015-05-12 12:32:12 -0700593 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
594 private boolean mImportanceStored = false;
595 private int mWorkspaceImportanceForAccessibility =
596 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
597 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
598
599 @Override
600 public void onSearchOverlayOpened() {
601 if (mImportanceStored) {
602 return;
603 }
604 // The underlying workspace and hotseat are temporarily suppressed by the search
605 // overlay. So they sholudn't be accessible.
606 mWorkspaceImportanceForAccessibility = mWorkspace.getImportantForAccessibility();
607 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
608 mWorkspace.setImportantForAccessibility(
609 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
610 mHotseat.setImportantForAccessibility(
611 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
612 mImportanceStored = true;
613 }
614
615 @Override
616 public void onSearchOverlayClosed() {
617 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
618 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
619 mImportanceStored = false;
620 }
621 });
Adam Cohen9211d422014-10-07 18:14:53 -0700622 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700623 }
624
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700625 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700626 public void onLauncherProviderChange() {
627 if (mLauncherCallbacks != null) {
628 mLauncherCallbacks.onLauncherProviderChange();
629 }
630 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700631
Adam Cohen9211d422014-10-07 18:14:53 -0700632 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700633 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700634 if (mLauncherCallbacks != null) {
635 return mLauncherCallbacks.hasCustomContentToLeft();
636 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700637 return false;
638 }
639
Dave Hawkeya8881582013-09-17 15:55:33 -0600640 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500641 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600642 * {@link #addToCustomContentPage}. This will only be invoked if
643 * {@link #hasCustomContentToLeft()} is {@code true}.
644 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500645 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700646 if (mLauncherCallbacks != null) {
647 mLauncherCallbacks.populateCustomContentContainer();
648 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600649 }
650
651 /**
652 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
653 * ensure the custom content page is added or removed if necessary.
654 */
655 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600656 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600657 // Not bound yet, wait for bindScreens to be called.
658 return;
659 }
660
661 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
662 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500663 mWorkspace.createCustomContentContainer();
664 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600665 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
666 mWorkspace.removeCustomContentPage();
667 }
668 }
669
Anton Hanssona2f665f2013-09-26 12:18:32 +0100670 public Stats getStats() {
671 return mStats;
672 }
673
Bjorn Bringertc459e522013-06-07 19:36:01 +0100674 public LayoutInflater getInflater() {
675 return mInflater;
676 }
677
Hyunyoung Song3f471442015-04-08 19:01:34 -0700678 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700679 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
680 // that is subsequently removed from the workspace in startBinding().
681 return !mModel.isLoadingWorkspace();
682 }
683
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800684 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000685 public static int generateViewId() {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100686 if (Build.VERSION.SDK_INT >= 17) {
687 return View.generateViewId();
688 } else {
689 // View.generateViewId() is not available. The following fallback logic is a copy
690 // of its implementation.
691 for (;;) {
692 final int result = sNextGeneratedId.get();
693 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
694 int newValue = result + 1;
695 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
696 if (sNextGeneratedId.compareAndSet(result, newValue)) {
697 return result;
698 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000699 }
700 }
701 }
702
703 public int getViewIdForItem(ItemInfo info) {
704 // This cast is safe given the > 2B range for int.
705 int itemId = (int) info.id;
706 if (mItemIdToViewId.containsKey(itemId)) {
707 return mItemIdToViewId.get(itemId);
708 }
709 int viewId = generateViewId();
710 mItemIdToViewId.put(itemId, viewId);
711 return viewId;
712 }
713
714 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700715 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
716 * a configuration step, this allows the proper animations to run after other transitions.
717 */
Adam Cohendb364c32014-05-20 14:23:40 -0700718 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700719 long screenId = args.screenId;
720 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
721 // When the screen id represents an actual screen (as opposed to a rank) we make sure
722 // that the drop page actually exists.
723 screenId = ensurePendingDropLayoutExists(args.screenId);
724 }
Adam Cohendb364c32014-05-20 14:23:40 -0700725
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800726 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800727 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700728 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700729 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700730 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800731 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700732 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700733 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700734 case REQUEST_RECONFIGURE_APPWIDGET:
735 completeRestoreAppWidget(args.appWidgetId);
736 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800737 }
Michael Jurka27614d22012-04-02 06:40:22 -0700738 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
739 // if you turned the screen off and then back while in All Apps, Launcher would not
740 // return to the workspace. Clearing mAddInfo.container here fixes this issue
741 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700742 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800743 }
744
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800745 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700746 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700747 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700748 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700749 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800750 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700751
Adam Cohenad4e15c2013-10-17 16:21:35 -0700752 Runnable exitSpringLoaded = new Runnable() {
753 @Override
754 public void run() {
755 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
756 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
757 }
758 };
759
Michael Jurka8b805b12012-04-18 14:23:14 -0700760 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700761 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700762 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
763 if (resultCode == RESULT_CANCELED) {
764 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700765 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700766 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700767 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800768 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700769 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700770 }
771 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200772 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
773 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700774 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200775 }
776 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700777 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200778
Adam Cohened66b2b2012-01-23 17:28:51 -0800779 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700780 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700781
Adam Cohendb364c32014-05-20 14:23:40 -0700782 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800783 // We have special handling for widgets
784 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800785 final int appWidgetId;
786 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
787 : -1;
788 if (widgetId < 0) {
789 appWidgetId = pendingAddWidgetId;
790 } else {
791 appWidgetId = widgetId;
792 }
793
Adam Cohenad4e15c2013-10-17 16:21:35 -0700794 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800795 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700796 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
797 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700798 result = RESULT_CANCELED;
799 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700800 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700801 @Override
802 public void run() {
803 exitSpringLoadedDragModeDelayed(false, 0, null);
804 }
805 };
Adam Cohendb364c32014-05-20 14:23:40 -0700806 if (workspaceLocked) {
807 // No need to remove the empty screen if we're mid-binding, as the
808 // the bind will not add the empty screen.
809 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
810 } else {
811 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
812 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
813 }
Winson Chung5aaab772012-04-27 15:24:02 -0700814 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700815 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700816 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
817 // When the screen id represents an actual screen (as opposed to a rank)
818 // we make sure that the drop page actually exists.
819 mPendingAddInfo.screenId =
820 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
821 }
Adam Cohendb364c32014-05-20 14:23:40 -0700822 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
823
824 dropLayout.setDropPending(true);
825 final Runnable onComplete = new Runnable() {
826 @Override
827 public void run() {
828 completeTwoStageWidgetDrop(resultCode, appWidgetId);
829 dropLayout.setDropPending(false);
830 }
831 };
832 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
833 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
834 } else {
835 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
836 mPendingAddInfo);
837 sPendingAddItem = args;
838 }
Winson Chung5aaab772012-04-27 15:24:02 -0700839 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800840 return;
841 }
842
Sunny Goyalff572272014-07-23 13:58:07 -0700843 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
844 if (resultCode == RESULT_OK) {
845 // Update the widget view.
846 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
847 pendingAddWidgetId, mPendingAddInfo);
848 if (workspaceLocked) {
849 sPendingAddItem = args;
850 } else {
851 completeAdd(args);
852 }
853 }
854 // Leave the widget in the pending state if the user canceled the configure.
855 return;
856 }
857
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800858 // The pattern used here is that a user PICKs a specific application,
859 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700860
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800861 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
862 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700863 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700864 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
865 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800866 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700867 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800868 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700869 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700870 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
871 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800872 }
Adam Cohen00074722013-10-11 17:46:09 -0700873 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700874 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700875 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800876 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800877 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800878
879 }
880
881 @Override
882 protected void onActivityResult(
883 final int requestCode, final int resultCode, final Intent data) {
884 handleActivityResult(requestCode, resultCode, data);
885 if (mLauncherCallbacks != null) {
886 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
887 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800888 }
889
Adam Cohendb364c32014-05-20 14:23:40 -0700890 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
891 appWidgetId, ItemInfo info) {
892 PendingAddArguments args = new PendingAddArguments();
893 args.requestCode = requestCode;
894 args.intent = data;
895 args.container = info.container;
896 args.screenId = info.screenId;
897 args.cellX = info.cellX;
898 args.cellY = info.cellY;
899 args.appWidgetId = appWidgetId;
900 return args;
901 }
902
903 /**
904 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
905 *
906 * @param screenId the screen id to check
907 * @return the new screen, or screenId if it exists
908 */
909 private long ensurePendingDropLayoutExists(long screenId) {
910 CellLayout dropLayout =
911 (CellLayout) mWorkspace.getScreenWithId(screenId);
912 if (dropLayout == null) {
913 // it's possible that the add screen was removed because it was
914 // empty and a re-bind occurred
915 mWorkspace.addExtraEmptyScreen();
916 return mWorkspace.commitExtraEmptyScreen();
917 } else {
918 return screenId;
919 }
920 }
921
Adam Cohen091440a2015-03-18 14:16:05 -0700922 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700923 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700924 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800925 Runnable onCompleteRunnable = null;
926 int animationType = 0;
927
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700928 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800929 if (resultCode == RESULT_OK) {
930 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
931 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700932 mPendingAddWidgetInfo);
933 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800934 onCompleteRunnable = new Runnable() {
935 @Override
936 public void run() {
937 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700938 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700939 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
940 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800941 }
942 };
943 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800944 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800945 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800946 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700947 if (mDragLayer.getAnimatedView() != null) {
948 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
949 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
950 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700951 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700952 // The animated view may be null in the case of a rotation during widget configuration
953 onCompleteRunnable.run();
954 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800955 }
956
957 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700958 protected void onStop() {
959 super.onStop();
960 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700961
962 if (mLauncherCallbacks != null) {
963 mLauncherCallbacks.onStop();
964 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700965 }
966
967 @Override
968 protected void onStart() {
969 super.onStart();
970 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700971
972 if (mLauncherCallbacks != null) {
973 mLauncherCallbacks.onStart();
974 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700975 }
976
977 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800978 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200979 long startTime = 0;
980 if (DEBUG_RESUME_TIME) {
981 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400982 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200983 }
Adam Cohen9211d422014-10-07 18:14:53 -0700984
985 if (mLauncherCallbacks != null) {
986 mLauncherCallbacks.preOnResume();
987 }
988
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800989 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700990
Winson Chung4a2afa32012-07-19 14:53:05 -0700991 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700992 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700993 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800994 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700995 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700996 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700997 // view after launching an app, as they may be depending on the UI to be static to
998 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700999 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung13eb5272015-05-11 16:30:13 -07001000 !launchedFromApp /* updatePredictedApps */);
Winson Chungb745afb2015-03-02 11:51:23 -08001001 } else if (mOnResumeState == State.WIDGETS) {
1002 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -07001003 }
1004 mOnResumeState = State.NONE;
1005
Winson Chungcd99cd32015-04-29 11:03:24 -07001006 // Restore the apps state if we are in all apps
Winson Chung4ac30062015-05-08 17:34:17 -07001007 if (!Launcher.DISABLE_ALL_APPS_SEARCH_INTEGRATION) {
1008 // Otherwise, notify the callbacks if we are in all apps mode
1009 if (mState == State.APPS) {
1010 if (mLauncherCallbacks != null) {
1011 mLauncherCallbacks.onAllAppsShown();
1012 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001013 }
1014 }
1015
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07001016 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -07001017 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
1018 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -07001019
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001020 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001021 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001022 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001023 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001024 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001025 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001026 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001027 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001028 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1029 // execute them here
1030 long startTimeCallbacks = 0;
1031 if (DEBUG_RESUME_TIME) {
1032 startTimeCallbacks = System.currentTimeMillis();
1033 }
1034
Michael Jurka1e2f4652013-07-08 18:03:46 -07001035 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1036 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001037 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001038 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001039 if (DEBUG_RESUME_TIME) {
1040 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1041 (System.currentTimeMillis() - startTimeCallbacks));
1042 }
Michael Jurka447bf842013-05-15 14:52:15 +02001043 }
Michael Jurka54554252013-08-01 12:52:23 +02001044 if (mOnResumeCallbacks.size() > 0) {
1045 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1046 mOnResumeCallbacks.get(i).run();
1047 }
1048 mOnResumeCallbacks.clear();
1049 }
Winson Chunge4e50662012-01-23 14:45:13 -08001050
1051 // Reset the pressed state of icons that were locked in the press state while activities
1052 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001053 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001054 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001055 mWaitingForResume.setStayPressed(false);
1056 }
Winson Chung82963d52013-10-09 11:20:57 -07001057
Adam Cohen06dff352012-06-01 17:17:08 -07001058 // It is possible that widgets can receive updates while launcher is not in the foreground.
1059 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1060 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1061 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001062 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001063 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001064
Michael Jurka447bf842013-05-15 14:52:15 +02001065 if (DEBUG_RESUME_TIME) {
1066 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1067 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001068
1069 if (mWorkspace.getCustomContentCallbacks() != null) {
1070 // If we are resuming and the custom content is the current page, we call onShow().
1071 // It is also poassible that onShow will instead be called slightly after first layout
1072 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1073 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001074 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001075 }
1076 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001077 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001078 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001079
Sunny Goyal756adbc2015-04-16 15:20:51 -07001080 if (!isWorkspaceLoading()) {
1081 // Process any items that were added while Launcher was away.
1082 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1083 }
Adam Cohen9211d422014-10-07 18:14:53 -07001084
1085 if (mLauncherCallbacks != null) {
1086 mLauncherCallbacks.onResume();
1087 }
Adam Cohen06dff352012-06-01 17:17:08 -07001088 }
1089
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001090 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001091 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001092 // Ensure that items added to Launcher are queued until Launcher returns
1093 InstallShortcutReceiver.enableInstallQueue();
1094
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001095 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001096 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001097 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001098 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001099
1100 // We call onHide() aggressively. The custom content callbacks should be able to
1101 // debounce excess onHide calls.
1102 if (mWorkspace.getCustomContentCallbacks() != null) {
1103 mWorkspace.getCustomContentCallbacks().onHide();
1104 }
Romain Guycbb89e42009-06-08 15:52:54 -07001105
Adam Cohen9211d422014-10-07 18:14:53 -07001106 if (mLauncherCallbacks != null) {
1107 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001108 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001109 }
1110
1111 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001112 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1113 // by a onResume or by scrolling otherwise.
1114 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001115
1116 // Custom content is completely hidden
1117 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001118
1119 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1120 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001121
1122 // Indicates whether the user is allowed to scroll away from the custom content.
1123 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001124 }
1125
Adam Cohenc2d6e892014-10-16 09:49:24 -07001126 public interface LauncherOverlay {
1127
1128 /**
1129 * Touch interaction leading to overscroll has begun
1130 */
1131 public void onScrollInteractionBegin();
1132
1133 /**
1134 * Touch interaction related to overscroll has ended
1135 */
1136 public void onScrollInteractionEnd();
1137
1138 /**
1139 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1140 * screen (or in the case of RTL, the rightmost screen).
1141 */
1142 public void onScrollChange(int progress, boolean rtl);
1143
1144 /**
1145 * Screen has stopped scrolling
1146 */
1147 public void onScrollSettled();
1148
1149 /**
1150 * This method can be called by the Launcher in order to force the LauncherOverlay
1151 * to exit fully immersive mode.
1152 */
1153 public void forceExitFullImmersion();
1154 }
1155
Winson Chung0f785722015-04-08 10:27:49 -07001156 public interface LauncherAppsCallbacks {
1157 /**
1158 * Updates launcher to the available space that AllApps can take so as not to overlap with
1159 * any other views.
1160 */
1161 public void onAllAppsBoundsChanged(Rect bounds);
1162
1163 /**
1164 * Called to dismiss all apps if it is showing.
1165 */
1166 public void dismissAllApps();
Sunny Goyal5683f872015-05-29 14:54:40 -07001167
1168 /**
1169 * Sets the search manager to be used for app search.
1170 */
1171 public void setSearchManager(AppSearchManager manager);
Winson Chung0f785722015-04-08 10:27:49 -07001172 }
1173
Jun Mukai8af0cd82015-05-12 12:32:12 -07001174 public interface LauncherSearchCallbacks {
1175 /**
1176 * Called when the search overlay is shown.
1177 */
1178 public void onSearchOverlayOpened();
1179
1180 /**
1181 * Called when the search overlay is dismissed.
1182 */
1183 public void onSearchOverlayClosed();
1184 }
1185
Adam Cohenc2d6e892014-10-16 09:49:24 -07001186 public interface LauncherOverlayCallbacks {
1187 /**
1188 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1189 * however it doesn't modify any state within the launcher.
1190 */
1191 public boolean canEnterFullImmersion();
1192
1193 /**
1194 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1195 * eg. by occupying the full screen and handling all touch events.
1196 *
1197 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1198 * case, Launcher will modify any necessary state and assumes the overlay is
1199 * handling all interaction. If false, the LauncherOverlay should cancel any
1200 *
1201 */
1202 public boolean enterFullImmersion();
1203
1204 /**
1205 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1206 * full control over UI and state.
1207 */
1208 public void exitFullImmersion();
1209 }
1210
1211 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1212
1213 @Override
1214 public boolean canEnterFullImmersion() {
1215 return mState == State.WORKSPACE;
1216 }
1217
1218 @Override
1219 public boolean enterFullImmersion() {
1220 if (mState == State.WORKSPACE) {
1221 // When fully immersed, disregard any touches which fall through.
1222 mDragLayer.setBlockTouch(true);
1223 return true;
1224 }
1225 return false;
1226 }
1227
1228 @Override
1229 public void exitFullImmersion() {
1230 mDragLayer.setBlockTouch(false);
1231 }
1232 }
1233
Jorim Jaggid017f882014-01-14 17:08:48 -08001234 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001235 if (mLauncherCallbacks != null) {
1236 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001237 } else {
1238 // On devices with a locked orientation, we will at least have the allow rotation
1239 // setting.
1240 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001241 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001242 }
1243
Adam Cohen9211d422014-10-07 18:14:53 -07001244 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001245 CustomContentCallbacks callbacks, String description) {
1246 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001247 }
1248
Adam Cohenedb40762013-07-18 16:45:45 -07001249 // The custom content needs to offset its content to account for the QSB
1250 public int getTopOffsetForCustomContent() {
1251 return mWorkspace.getPaddingTop();
1252 }
1253
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001254 @Override
1255 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001256 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001257 if (mModel.isCurrentCallbacks(this)) {
1258 mModel.stopLoader();
1259 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001260 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1261
Romain Guy13c2e7b2010-03-10 19:45:00 -08001262 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001263 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001264
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001265 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001266 @Override
1267 public void onWindowFocusChanged(boolean hasFocus) {
1268 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001269 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001270
1271 if (mLauncherCallbacks != null) {
1272 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1273 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001274 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001275
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001276 private boolean acceptFilter() {
1277 final InputMethodManager inputManager = (InputMethodManager)
1278 getSystemService(Context.INPUT_METHOD_SERVICE);
1279 return !inputManager.isFullscreenMode();
1280 }
1281
1282 @Override
1283 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001284 final int uniChar = event.getUnicodeChar();
1285 final boolean handled = super.onKeyDown(keyCode, event);
1286 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1287 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001288 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1289 keyCode, event);
1290 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001291 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001292 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001293 // showSearchDialog()
1294 // If there are multiple keystrokes before the search dialog takes focus,
1295 // onSearchRequested() will be called for every keystroke,
1296 // but it is idempotent, so it's fine.
1297 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001298 }
1299 }
1300
Joe Onorato8a9625e2010-01-28 15:55:35 -08001301 // Eat the long press event so the keyboard doesn't come up.
1302 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1303 return true;
1304 }
1305
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001306 return handled;
1307 }
1308
Karl Rosaen138a0412009-04-23 19:00:21 -07001309 private String getTypedText() {
1310 return mDefaultKeySsb.toString();
1311 }
1312
1313 private void clearTypedText() {
1314 mDefaultKeySsb.clear();
1315 mDefaultKeySsb.clearSpans();
1316 Selection.setSelection(mDefaultKeySsb, 0);
1317 }
1318
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001319 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001320 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1321 * State
1322 */
1323 private static State intToState(int stateOrdinal) {
1324 State state = State.WORKSPACE;
1325 final State[] stateValues = State.values();
1326 for (int i = 0; i < stateValues.length; i++) {
1327 if (stateValues[i].ordinal() == stateOrdinal) {
1328 state = stateValues[i];
1329 break;
1330 }
1331 }
1332 return state;
1333 }
1334
1335 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001336 * Restores the previous state, if it exists.
1337 *
1338 * @param savedState The previous state.
1339 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001340 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001341 private void restoreState(Bundle savedState) {
1342 if (savedState == null) {
1343 return;
1344 }
1345
Michael Jurka883f55b2010-10-21 15:47:14 -07001346 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001347 if (state == State.APPS || state == State.WIDGETS) {
1348 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001349 }
1350
Adam Cohen21cd0022013-10-09 18:57:02 -07001351 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1352 PagedView.INVALID_RESTORE_PAGE);
1353 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001354 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001355 }
1356
Winson Chung3d503fb2011-07-13 17:25:49 -07001357 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001358 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001359
Winson Chung3d503fb2011-07-13 17:25:49 -07001360 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1361 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001362 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001363 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1364 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001365 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1366 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001367 AppWidgetProviderInfo info = savedState.getParcelable(
1368 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001369 mPendingAddWidgetInfo = info == null ?
1370 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1371
Adam Cohen4637b5a2013-11-04 18:21:24 -08001372 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001373 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001374 mRestoring = true;
1375 }
1376
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001377 mItemIdToViewId = (HashMap<Integer, Integer>)
1378 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001379 }
1380
1381 /**
1382 * Finds all the views we need and configure them properly.
1383 */
1384 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001385 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001386
Craig Mautner360310b2012-10-26 15:13:08 -07001387 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001388 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001389 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1390 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001391 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001392 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001393
John Spurlock77e1f472013-09-11 10:09:51 -04001394 mLauncherView.setSystemUiVisibility(
1395 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001396 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001397
Winson Chung4c98d922011-05-31 16:50:48 -07001398 // Setup the drag layer
1399 mDragLayer.setup(this, dragController);
1400
Winson Chung3d503fb2011-07-13 17:25:49 -07001401 // Setup the hotseat
1402 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1403 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001404 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001405 }
1406
Jorim Jaggid017f882014-01-14 17:08:48 -08001407 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Adam Cohen61f560d2013-09-30 15:58:20 -07001408 View widgetButton = findViewById(R.id.widget_button);
1409 widgetButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001410 @Override
1411 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001412 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001413 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001414 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001415 }
1416 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001417 widgetButton.setOnTouchListener(getHapticFeedbackTouchListener());
1418
1419 View wallpaperButton = findViewById(R.id.wallpaper_button);
1420 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001421 @Override
1422 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001423 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001424 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001425 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001426 }
1427 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001428 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1429
1430 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001431 if (hasSettings()) {
1432 settingsButton.setOnClickListener(new OnClickListener() {
1433 @Override
1434 public void onClick(View arg0) {
1435 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001436 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001437 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001438 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001439 });
1440 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1441 } else {
1442 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001443 }
1444
Adam Cohendbdff6b2013-09-18 19:09:15 -07001445 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001446
Winson Chung4c98d922011-05-31 16:50:48 -07001447 // Setup the workspace
1448 mWorkspace.setHapticFeedbackEnabled(false);
1449 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001450 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001451 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001452
Winson Chungf0ea4d32011-06-06 14:27:16 -07001453 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001454 mSearchDropTargetBar = (SearchDropTargetBar)
1455 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001456
Winson Chungb745afb2015-03-02 11:51:23 -08001457 // Setup Apps
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001458 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Winson Chung83f59ab2015-05-05 17:21:58 -07001459 if (isAllAppsSearchOverridden()) {
1460 mAppsView.hideHeaderBar();
Winson Chung0f785722015-04-08 10:27:49 -07001461 }
Winson Chungb745afb2015-03-02 11:51:23 -08001462
Winson Chungf0ea4d32011-06-06 14:27:16 -07001463 // Setup AppsCustomize
Hyunyoung Song3f471442015-04-08 19:01:34 -07001464 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Craig Mautner360310b2012-10-26 15:13:08 -07001465
Winson Chung3d503fb2011-07-13 17:25:49 -07001466 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001467 dragController.setDragScoller(mWorkspace);
1468 dragController.setScrollView(mDragLayer);
1469 dragController.setMoveTarget(mWorkspace);
1470 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001471 if (mSearchDropTargetBar != null) {
1472 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001473 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001474 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001475
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001476 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001477 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001478 mWeightWatcher = new WeightWatcher(this);
1479 mWeightWatcher.setAlpha(0.5f);
1480 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001481 new FrameLayout.LayoutParams(
1482 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001483 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001484 Gravity.BOTTOM)
1485 );
Adam Cohen39a06042013-07-19 14:30:12 -07001486
1487 boolean show = shouldShowWeightWatcher();
1488 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001489 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001490 }
1491
1492 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001493 * Sets the all apps button. This method is called from {@link Hotseat}.
1494 */
1495 public void setAllAppsButton(View allAppsButton) {
1496 mAllAppsButton = allAppsButton;
1497 }
1498
1499 public View getAllAppsButton() {
1500 return mAllAppsButton;
1501 }
1502
1503 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001504 * Creates a view representing a shortcut.
1505 *
1506 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001507 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001508 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001509 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001510 }
1511
1512 /**
1513 * Creates a view representing a shortcut inflated from the specified resource.
1514 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001515 * @param parent The group the shortcut belongs to.
1516 * @param info The data structure describing the shortcut.
1517 *
1518 * @return A View inflated from layoutResId.
1519 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001520 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001521 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001522 parent, false);
1523 favorite.applyFromShortcutInfo(info, mIconCache);
1524 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001525 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001526 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001527 return favorite;
1528 }
1529
1530 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001531 * Add a shortcut to the workspace.
1532 *
1533 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001534 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001535 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001536 int cellY) {
1537 int[] cellXY = mTmpAddItemCellCoordinates;
1538 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001539 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001540
Sunny Goyal5c97f512015-05-19 16:03:28 -07001541 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001542 if (info == null) {
1543 return;
1544 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001545 final View view = createShortcut(info);
1546
Sunny Goyal5c97f512015-05-19 16:03:28 -07001547 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001548 // First we check if we already know the exact location where we want to add this item.
1549 if (cellX >= 0 && cellY >= 0) {
1550 cellXY[0] = cellX;
1551 cellXY[1] = cellY;
1552 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001553
1554 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001555 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001556 true, null,null)) {
1557 return;
1558 }
1559 DragObject dragObject = new DragObject();
1560 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001561 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1562 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001563 return;
1564 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001565 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001566 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001567 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001568 foundCellSpan = (result != null);
1569 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001570 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001571 }
1572
1573 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001574 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001575 return;
1576 }
1577
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001578 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001579
1580 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001581 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001582 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001583 }
1584 }
1585
Adam Cohen2e6da152015-05-06 11:42:25 -07001586 private int[] getSpanForWidget(ComponentName component, int minWidth, int minHeight) {
1587 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(this, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001588 // We want to account for the extra amount of padding that we are adding to the widget
1589 // to ensure that it gets the full amount of space that it has requested
1590 int requiredWidth = minWidth + padding.left + padding.right;
1591 int requiredHeight = minHeight + padding.top + padding.bottom;
Adam Cohen2e6da152015-05-06 11:42:25 -07001592 return CellLayout.rectToCell(this, requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001593 }
1594
Adam Cohen2e6da152015-05-06 11:42:25 -07001595 public int[] getSpanForWidget(AppWidgetProviderInfo info) {
1596 return getSpanForWidget(info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001597 }
1598
Adam Cohen2e6da152015-05-06 11:42:25 -07001599 public int[] getMinSpanForWidget(AppWidgetProviderInfo info) {
1600 return getSpanForWidget(info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001601 }
1602
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001603 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001604 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001605 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001606 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001607 */
Adam Cohen091440a2015-03-18 14:16:05 -07001608 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001609 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1610
1611 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001612 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001613 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1614 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001615 }
Romain Guycbb89e42009-06-08 15:52:54 -07001616
Adam Cohen59400422014-03-05 18:07:04 -08001617 if (appWidgetInfo.isCustomWidget) {
1618 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001619 }
1620
Adam Cohen59400422014-03-05 18:07:04 -08001621 LauncherAppWidgetInfo launcherInfo;
1622 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1623 launcherInfo.spanX = info.spanX;
1624 launcherInfo.spanY = info.spanY;
1625 launcherInfo.minSpanX = info.minSpanX;
1626 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001627 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001628
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001629 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001630 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001631
1632 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001633 if (hostView == null) {
1634 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001635 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1636 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001637 } else {
1638 // The AppWidgetHostView has already been inflated and instantiated
1639 launcherInfo.hostView = hostView;
1640 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001641 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001642 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001643 launcherInfo.notifyWidgetSizeChanged(this);
1644
Adam Cohen59400422014-03-05 18:07:04 -08001645 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1646 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001647
1648 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001649 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001650 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001651 }
Romain Guycbb89e42009-06-08 15:52:54 -07001652
Adam Cohended9f8d2010-11-03 13:25:16 -07001653 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1654 @Override
1655 public void onReceive(Context context, Intent intent) {
1656 final String action = intent.getAction();
1657 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1658 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001659 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001660 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001661
Winson Chungc100e8e2011-08-09 16:02:43 -07001662 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001663 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001664 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001665 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001666 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001667 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001668 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1669 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001670 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001671 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1672 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001673 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001674 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1675 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1676 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001677 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001678 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1679 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001680 }
1681 }
1682 };
1683
1684 @Override
1685 public void onAttachedToWindow() {
1686 super.onAttachedToWindow();
1687
1688 // Listen for broadcasts related to user-presence
1689 final IntentFilter filter = new IntentFilter();
1690 filter.addAction(Intent.ACTION_SCREEN_OFF);
1691 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001692 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001693 if (ENABLE_DEBUG_INTENTS) {
1694 filter.addAction(DebugIntents.DELETE_DATABASE);
1695 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1696 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001697 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001698 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001699 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001700 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001701 mVisible = true;
1702 }
1703
Adam Cohen0b395352014-06-09 22:54:36 +00001704 /**
1705 * Sets up transparent navigation and status bars in LMP.
1706 * This method is a no-op for other platform versions.
1707 */
Sunny Goyald0091012015-01-20 15:55:34 -08001708 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Adam Cohen0b395352014-06-09 22:54:36 +00001709 private void setupTransparentSystemBarsForLmp() {
Kenny Guyd794a3f2014-09-16 15:17:58 +01001710 if (Utilities.isLmpOrAbove()) {
Sunny Goyald0091012015-01-20 15:55:34 -08001711 Window window = getWindow();
1712 window.getAttributes().systemUiVisibility |=
1713 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1714 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1715 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1716 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1717 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1718 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1719 window.setStatusBarColor(Color.TRANSPARENT);
1720 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001721 }
1722 }
1723
Adam Cohended9f8d2010-11-03 13:25:16 -07001724 @Override
1725 public void onDetachedFromWindow() {
1726 super.onDetachedFromWindow();
1727 mVisible = false;
1728
Adam Cohend113e0c2010-11-11 10:48:05 -08001729 if (mAttached) {
1730 unregisterReceiver(mReceiver);
1731 mAttached = false;
1732 }
Winson Chungb745afb2015-03-02 11:51:23 -08001733 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001734 }
1735
1736 public void onWindowVisibilityChanged(int visibility) {
1737 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001738 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001739 // The following code used to be in onResume, but it turns out onResume is called when
1740 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1741 // is a more appropriate event to handle
1742 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001743 if (!mWorkspaceLoading) {
1744 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001745 // We want to let Launcher draw itself at least once before we force it to build
1746 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001747 // apps is nice and speedy.
1748 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001749 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001750 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001751 if (mStarted) return;
1752 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001753 // We delay the layer building a bit in order to give
1754 // other message processing a time to run. In particular
1755 // this avoids a delay in hiding the IME if it was
1756 // currently shown, because doing that may involve
1757 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001758 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001759 final ViewTreeObserver.OnDrawListener listener = this;
1760 mWorkspace.post(new Runnable() {
1761 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001762 if (mWorkspace != null &&
1763 mWorkspace.getViewTreeObserver() != null) {
1764 mWorkspace.getViewTreeObserver().
1765 removeOnDrawListener(listener);
1766 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001767 }
1768 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001769 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001770 }
1771 });
1772 }
1773 clearTypedText();
1774 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001775 }
1776
Adam Cohen091440a2015-03-18 14:16:05 -07001777 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001778 mHandler.removeMessages(ADVANCE_MSG);
1779 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1780 mHandler.sendMessageDelayed(msg, delay);
1781 mAutoAdvanceSentTime = System.currentTimeMillis();
1782 }
1783
Adam Cohen091440a2015-03-18 14:16:05 -07001784 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001785 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1786 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1787 mAutoAdvanceRunning = autoAdvanceRunning;
1788 if (autoAdvanceRunning) {
1789 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1790 sendAdvanceMessage(delay);
1791 } else {
1792 if (!mWidgetsToAdvance.isEmpty()) {
1793 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1794 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1795 }
1796 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001797 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001798 }
1799 }
1800 }
1801
1802 private final Handler mHandler = new Handler() {
1803 @Override
1804 public void handleMessage(Message msg) {
1805 if (msg.what == ADVANCE_MSG) {
1806 int i = 0;
1807 for (View key: mWidgetsToAdvance.keySet()) {
1808 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1809 final int delay = mAdvanceStagger * i;
1810 if (v instanceof Advanceable) {
1811 postDelayed(new Runnable() {
1812 public void run() {
1813 ((Advanceable) v).advance();
1814 }
1815 }, delay);
1816 }
1817 i++;
1818 }
1819 sendAdvanceMessage(mAdvanceInterval);
1820 }
1821 }
1822 };
1823
1824 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001825 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001826 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1827 if (v instanceof Advanceable) {
1828 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001829 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001830 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001831 }
1832 }
1833
1834 void removeWidgetToAutoAdvance(View hostView) {
1835 if (mWidgetsToAdvance.containsKey(hostView)) {
1836 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001837 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001838 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001839 }
1840
Joe Onorato9c1289c2009-08-17 11:03:03 -04001841 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001842 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001843 launcherInfo.hostView = null;
1844 }
1845
Hyunyoung Song3f471442015-04-08 19:01:34 -07001846 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001847 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1848 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001849 }
1850
Winson Chunga6945242014-01-08 14:04:34 -08001851 public DragLayer getDragLayer() {
1852 return mDragLayer;
1853 }
1854
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001855 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001856 return mAppsView;
1857 }
1858
Hyunyoung Song3f471442015-04-08 19:01:34 -07001859 public WidgetsContainerView getWidgetsView() {
1860 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001861 }
1862
Winson Chunga6945242014-01-08 14:04:34 -08001863 public Workspace getWorkspace() {
1864 return mWorkspace;
1865 }
1866
1867 public Hotseat getHotseat() {
1868 return mHotseat;
1869 }
1870
Jorim Jaggid017f882014-01-14 17:08:48 -08001871 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001872 return mOverviewPanel;
1873 }
1874
1875 public SearchDropTargetBar getSearchBar() {
1876 return mSearchDropTargetBar;
1877 }
1878
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001879 public LauncherAppWidgetHost getAppWidgetHost() {
1880 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001881 }
Romain Guycbb89e42009-06-08 15:52:54 -07001882
Winson Chunga9abd0e2010-10-27 17:18:37 -07001883 public LauncherModel getModel() {
1884 return mModel;
1885 }
1886
Winson Chunga6945242014-01-08 14:04:34 -08001887 protected SharedPreferences getSharedPrefs() {
1888 return mSharedPrefs;
1889 }
1890
Adam Cohen2e6da152015-05-06 11:42:25 -07001891 public DeviceProfile getDeviceProfile() {
1892 return mDeviceProfile;
1893 }
1894
Bjorn Bringertc459e522013-06-07 19:36:01 +01001895 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001896 getWindow().closeAllPanels();
1897
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001898 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001899 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001900 }
1901
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001902 @Override
1903 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001904 long startTime = 0;
1905 if (DEBUG_RESUME_TIME) {
1906 startTime = System.currentTimeMillis();
1907 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001908 super.onNewIntent(intent);
1909
1910 // Close the menu
1911 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001912 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001913 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001914
Adam Cohened307df2013-10-02 09:37:31 -07001915 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1916 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1917 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001918
Adam Cohen6fecd412013-10-02 17:41:50 -07001919 if (mWorkspace == null) {
1920 // Can be cases where mWorkspace is null, this prevents a NPE
1921 return;
1922 }
1923 Folder openFolder = mWorkspace.getOpenFolder();
1924 // In all these cases, only animate if we're already on home
1925 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001926
1927 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1928 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Adam Cohen6fecd412013-10-02 17:41:50 -07001929 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Cohen9211d422014-10-07 18:14:53 -07001930 openFolder == null && moveToDefaultScreen) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001931 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001932 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001933
Adam Cohen6fecd412013-10-02 17:41:50 -07001934 closeFolder();
1935 exitSpringLoadedDragMode();
1936
1937 // If we are already on home, then just animate back to the workspace,
1938 // otherwise, just wait until onResume to set the state back to Workspace
1939 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001940 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001941 } else {
1942 mOnResumeState = State.WORKSPACE;
1943 }
1944
1945 final View v = getWindow().peekDecorView();
1946 if (v != null && v.getWindowToken() != null) {
1947 InputMethodManager imm = (InputMethodManager)getSystemService(
1948 INPUT_METHOD_SERVICE);
1949 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1950 }
1951
Winson Chungb745afb2015-03-02 11:51:23 -08001952 // Reset the apps view
1953 if (!alreadyOnHome && mAppsView != null) {
1954 mAppsView.scrollToTop();
1955 }
1956
Hyunyoung Song3f471442015-04-08 19:01:34 -07001957 // Reset the widgets view
1958 if (!alreadyOnHome && mWidgetsView != null) {
1959 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001960 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001961
Adam Cohen9211d422014-10-07 18:14:53 -07001962 if (mLauncherCallbacks != null) {
1963 mLauncherCallbacks.onHomeIntent();
1964 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001965 }
Adam Cohened307df2013-10-02 09:37:31 -07001966
Michael Jurka447bf842013-05-15 14:52:15 +02001967 if (DEBUG_RESUME_TIME) {
1968 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1969 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001970
Adam Cohen9211d422014-10-07 18:14:53 -07001971 if (mLauncherCallbacks != null) {
1972 mLauncherCallbacks.onNewIntent(intent);
1973 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001974 }
1975
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001976 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001977 public void onRestoreInstanceState(Bundle state) {
1978 super.onRestoreInstanceState(state);
1979 for (int page: mSynchronouslyBoundPages) {
1980 mWorkspace.restoreInstanceStateForChild(page);
1981 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001982 }
1983
1984 @Override
1985 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001986 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001987 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1988 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001989 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001990 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001991
Michael Jurka883f55b2010-10-21 15:47:14 -07001992 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001993 // We close any open folder since it will not be re-opened, and we need to make sure
1994 // this state is reflected.
1995 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001996
Adam Cohendcd297f2013-06-18 13:13:40 -07001997 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001998 mWaitingForResult) {
1999 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07002000 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07002001 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
2002 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002003 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
2004 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
2005 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08002006 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002007 }
2008
Hyunyoung Song3f471442015-04-08 19:01:34 -07002009 // Save the current widgets tray?
2010 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00002011 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07002012
2013 if (mLauncherCallbacks != null) {
2014 mLauncherCallbacks.onSaveInstanceState(outState);
2015 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002016 }
2017
2018 @Override
2019 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002020 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002021
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002022 if (mPreferenceObserverRegistered) {
2023 getSharedPreferences(LauncherFiles.ROTATION_PREF_FILE,
2024 Context.MODE_MULTI_PROCESS).unregisterOnSharedPreferenceChangeListener(
2025 mSettingsObserver);
2026 mPreferenceObserverRegistered = false;
2027 }
2028
Winson Chunge7a03942011-08-05 15:05:12 -07002029 // Remove all pending runnables
2030 mHandler.removeMessages(ADVANCE_MSG);
2031 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002032 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002033
Winson Chungcd2b0142011-06-08 16:02:26 -07002034 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002035 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002036
2037 // It's possible to receive onDestroy after a new Launcher activity has
2038 // been created. In this case, don't interfere with the new Launcher.
2039 if (mModel.isCurrentCallbacks(this)) {
2040 mModel.stopLoader();
2041 app.setLauncher(null);
2042 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002043
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002044 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002045 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002046 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002047 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002048 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002049 mAppWidgetHost = null;
2050
2051 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002052
2053 TextKeyListener.getInstance().release();
2054
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002055 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002056 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002057
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002058 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002059 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002060 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002061 mWorkspace = null;
2062 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002063
Michael Jurka2ecf9952012-06-18 12:52:28 -07002064 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002065
2066 if (mLauncherCallbacks != null) {
2067 mLauncherCallbacks.onDestroy();
2068 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002069 }
2070
Adam Cohena9cf38f2011-05-02 15:36:58 -07002071 public DragController getDragController() {
2072 return mDragController;
2073 }
2074
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002075 @Override
2076 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002077 onStartForResult(requestCode);
2078 super.startActivityForResult(intent, requestCode);
2079 }
2080
2081 @Override
2082 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2083 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2084 onStartForResult(requestCode);
2085 try {
2086 super.startIntentSenderForResult(intent, requestCode,
2087 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2088 } catch (IntentSender.SendIntentException e) {
2089 throw new ActivityNotFoundException();
2090 }
2091 }
2092
2093 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002094 if (requestCode >= 0) {
2095 setWaitingForResult(true);
2096 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002097 }
2098
Winson Chung70d72102011-08-12 11:24:35 -07002099 /**
2100 * Indicates that we want global search for this activity by setting the globalSearch
2101 * argument for {@link #startSearch} to true.
2102 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002103 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002104 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002105 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002106
Karl Rosaen138a0412009-04-23 19:00:21 -07002107 if (initialQuery == null) {
2108 // Use any text typed in the launcher as the initial query
2109 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002110 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002111 if (appSearchData == null) {
2112 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002113 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002114 }
Winson Chungadf0c182012-08-23 14:59:07 -07002115 Rect sourceBounds = new Rect();
2116 if (mSearchDropTargetBar != null) {
2117 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2118 }
Romain Guycbb89e42009-06-08 15:52:54 -07002119
Ian Parkinson047036e2014-09-01 15:40:53 +01002120 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002121 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002122 if (clearTextImmediately) {
2123 clearTypedText();
2124 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002125
2126 // We need to show the workspace after starting the search
2127 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002128 }
2129
Ian Parkinson047036e2014-09-01 15:40:53 +01002130 /**
2131 * Start a text search.
2132 *
2133 * @return {@code true} if the search will start immediately, so any further keypresses
2134 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2135 * to buffer keypresses.
2136 */
2137 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002138 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002139 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2140 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2141 sourceBounds);
2142 }
2143
Michael Jurkaa33411c2012-06-14 16:18:21 -07002144 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002145 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002146 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002147 }
2148
2149 /**
2150 * Starts the global search activity. This code is a copied from SearchManager
2151 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002152 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002153 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002154 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002155 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2156 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2157 if (globalSearchActivity == null) {
2158 Log.w(TAG, "No global search activity found.");
2159 return;
2160 }
2161 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2162 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2163 intent.setComponent(globalSearchActivity);
2164 // Make sure that we have a Bundle to put source in
2165 if (appSearchData == null) {
2166 appSearchData = new Bundle();
2167 } else {
2168 appSearchData = new Bundle(appSearchData);
2169 }
Adam Cohen9211d422014-10-07 18:14:53 -07002170 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002171 if (!appSearchData.containsKey("source")) {
2172 appSearchData.putString("source", getPackageName());
2173 }
2174 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2175 if (!TextUtils.isEmpty(initialQuery)) {
2176 intent.putExtra(SearchManager.QUERY, initialQuery);
2177 }
2178 if (selectInitialQuery) {
2179 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2180 }
2181 intent.setSourceBounds(sourceBounds);
2182 try {
2183 startActivity(intent);
2184 } catch (ActivityNotFoundException ex) {
2185 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2186 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002187 }
2188
Yura4f93ec62014-02-04 14:15:21 +00002189 public boolean isOnCustomContent() {
2190 return mWorkspace.isOnOrMovingToCustomContent();
2191 }
2192
Winson Chung70d72102011-08-12 11:24:35 -07002193 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002194 public boolean onPrepareOptionsMenu(Menu menu) {
2195 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002196 if (!isOnCustomContent()) {
2197 // Close any open folders
2198 closeFolder();
2199 // Stop resizing any widgets
2200 mWorkspace.exitWidgetResizeMode();
2201 if (!mWorkspace.isInOverviewMode()) {
2202 // Show the overview mode
2203 showOverviewMode(true);
2204 } else {
2205 showWorkspace(true);
2206 }
Winson Chunge0298742014-01-17 12:03:00 -08002207 }
Adam Cohen9211d422014-10-07 18:14:53 -07002208 if (mLauncherCallbacks != null) {
2209 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2210 }
2211
Michael Jurkab94f3f82013-09-11 18:08:54 +02002212 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002213 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002214
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002215 @Override
2216 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002217 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002218 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002219 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002220 }
2221
Joe Onorato9c1289c2009-08-17 11:03:03 -04002222 public boolean isWorkspaceLocked() {
2223 return mWorkspaceLoading || mWaitingForResult;
2224 }
2225
Adam Cohen517a7f52014-03-01 12:12:59 -08002226 public boolean isWorkspaceLoading() {
2227 return mWorkspaceLoading;
2228 }
2229
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002230 private void setWorkspaceLoading(boolean value) {
2231 boolean isLocked = isWorkspaceLocked();
2232 mWorkspaceLoading = value;
2233 if (isLocked != isWorkspaceLocked()) {
2234 onWorkspaceLockedChanged();
2235 }
2236 }
2237
2238 private void setWaitingForResult(boolean value) {
2239 boolean isLocked = isWorkspaceLocked();
2240 mWaitingForResult = value;
2241 if (isLocked != isWorkspaceLocked()) {
2242 onWorkspaceLockedChanged();
2243 }
2244 }
2245
Adam Cohen9211d422014-10-07 18:14:53 -07002246 protected void onWorkspaceLockedChanged() {
2247 if (mLauncherCallbacks != null) {
2248 mLauncherCallbacks.onWorkspaceLockedChanged();
2249 }
2250 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002251
Michael Jurka0280c3b2010-09-17 15:00:07 -07002252 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002253 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002254 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002255 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2256 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002257 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002258 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002259 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002260
Sunny Goyale6b63a32015-01-16 16:14:29 -08002261 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002262 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002263 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2264 }
2265
Sunny Goyale6b63a32015-01-16 16:14:29 -08002266 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002267 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2268 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002269 if (appWidgetInfo.configure != null) {
2270 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002271 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002272
Bjorn Bringert7984c942009-12-09 15:38:25 +00002273 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002274 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2275 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2276
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002277 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002278 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002279 Runnable onComplete = new Runnable() {
2280 @Override
2281 public void run() {
2282 // Exit spring loaded mode if necessary after adding the widget
2283 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2284 null);
2285 }
2286 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002287 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002288 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002289 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002290 }
2291 }
Romain Guycbb89e42009-06-08 15:52:54 -07002292
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002293 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002294 // Close any folders that may be open.
2295 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002296 mWorkspace.moveToCustomContentScreen(animate);
2297 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002298
2299 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2300 int[] cell, int spanX, int spanY) {
2301 switch (info.itemType) {
2302 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2303 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2304 int span[] = new int[2];
2305 span[0] = spanX;
2306 span[1] = spanY;
2307 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2308 container, screenId, cell, span);
2309 break;
2310 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2311 processShortcutFromDrop(info.componentName, container, screenId, cell);
2312 break;
2313 default:
2314 throw new IllegalStateException("Unknown item type: " + info.itemType);
2315 }
2316 }
2317
Adam Cohenfbba09b2011-07-18 21:43:05 -07002318 /**
2319 * Process a shortcut drop.
2320 *
2321 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002322 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002323 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002324 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002325 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2326 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002327 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002328 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002329 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002330 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002331
2332 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002333 mPendingAddInfo.cellX = cell[0];
2334 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002335 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002336
2337 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2338 createShortcutIntent.setComponent(componentName);
2339 processShortcut(createShortcutIntent);
2340 }
2341
Adam Cohenfbba09b2011-07-18 21:43:05 -07002342 /**
2343 * Process a widget drop.
2344 *
2345 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002346 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002347 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002348 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002349 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2350 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002351 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002352 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002353 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002354 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002355 mPendingAddInfo.minSpanX = info.minSpanX;
2356 mPendingAddInfo.minSpanY = info.minSpanY;
2357
Adam Cohenfbba09b2011-07-18 21:43:05 -07002358 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002359 mPendingAddInfo.cellX = cell[0];
2360 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002361 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002362 if (span != null) {
2363 mPendingAddInfo.spanX = span[0];
2364 mPendingAddInfo.spanY = span[1];
2365 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002366
Adam Cohened66b2b2012-01-23 17:28:51 -08002367 AppWidgetHostView hostView = info.boundWidget;
2368 int appWidgetId;
2369 if (hostView != null) {
2370 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002371 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08002372 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002373 // In this case, we either need to start an activity to get permission to bind
2374 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002375 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002376 Bundle options = info.bindOptions;
2377
Sunny Goyalffe83f12014-08-14 17:39:34 -07002378 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2379 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002380 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002381 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002382 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002383 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002384 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2385 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2386 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002387 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2388 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002389 // TODO: we need to make sure that this accounts for the options bundle.
2390 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002391 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2392 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002393 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002394 }
2395
Joe Onoratodeb98af2010-02-19 14:59:39 -08002396 void processShortcut(Intent intent) {
Kenny Guyed131872014-04-30 03:02:21 +01002397 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_SHORTCUT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002398 }
2399
Winson Chung24ab2f12010-09-16 14:10:47 -07002400 void processWallpaper(Intent intent) {
2401 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
2402 }
2403
Adam Cohendcd297f2013-06-18 13:13:40 -07002404 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002405 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002406 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002407 folderInfo.title = getText(R.string.folder_name);
2408
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002409 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002410 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2411 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002412 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002413
2414 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002415 FolderIcon newFolder =
2416 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002417 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002418 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002419 // Force measure the new folder icon
2420 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2421 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002422 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002423 }
Romain Guycbb89e42009-06-08 15:52:54 -07002424
Joe Onorato9c1289c2009-08-17 11:03:03 -04002425 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002426 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002427 }
2428
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002429 /**
2430 * Registers various content observers. The current implementation registers
2431 * only a favorites observer to keep track of the favorites applications.
2432 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002433 private void registerContentObservers() {
2434 ContentResolver resolver = getContentResolver();
2435 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
2436 true, mWidgetObserver);
2437 }
2438
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002439 @Override
2440 public boolean dispatchKeyEvent(KeyEvent event) {
2441 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2442 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002443 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002444 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002445 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002446 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002447 dumpState();
2448 return true;
2449 }
2450 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002451 }
2452 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2453 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002454 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002455 return true;
2456 }
2457 }
2458
2459 return super.dispatchKeyEvent(event);
2460 }
2461
Joe Onorato88ec0992009-11-19 13:16:06 -08002462 @Override
2463 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002464 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2465 return;
2466 }
2467
Winson Chung3d9490a2015-03-24 17:38:42 -07002468 LauncherAccessibilityDelegate delegate =
2469 LauncherAppState.getInstance().getAccessibilityDelegate();
2470 if (delegate != null && delegate.onBackPressed()) {
Adam Cohenc9735cf2015-01-23 16:11:55 -08002471 return;
2472 }
2473
Winson Chungb745afb2015-03-02 11:51:23 -08002474 if (isAppsViewVisible()) {
2475 showWorkspace(true);
2476 } else if (isWidgetsViewVisible()) {
2477 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002478 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002479 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002480 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002481 Folder openFolder = mWorkspace.getOpenFolder();
2482 if (openFolder.isEditingName()) {
2483 openFolder.dismissEditingName();
2484 } else {
2485 closeFolder();
2486 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002487 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002488 mWorkspace.exitWidgetResizeMode();
2489
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002490 // Back button is a no-op here, but give at least some feedback for the button press
2491 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002492 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002493 }
2494
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002495 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002496 * Re-listen when widgets are reset.
2497 */
Adam Cohen091440a2015-03-18 14:16:05 -07002498 @Thunk void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002499 if (mAppWidgetHost != null) {
2500 mAppWidgetHost.startListening();
2501 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002502 }
2503
2504 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002505 * Launches the intent referred by the clicked shortcut.
2506 *
2507 * @param v The view representing the clicked shortcut.
2508 */
2509 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002510 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2511 // view has detached (it's possible for this to happen if the view is removed mid touch).
2512 if (v.getWindowToken() == null) {
2513 return;
2514 }
2515
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002516 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002517 return;
2518 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002519
Adam Cohen1697b792013-09-17 19:08:21 -07002520 if (v instanceof Workspace) {
2521 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002522 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002523 }
2524 return;
2525 }
2526
2527 if (v instanceof CellLayout) {
2528 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002529 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002530 }
2531 }
2532
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002533 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002534 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002535 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002536 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002537 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002538 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002539 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002540 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002541 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002542 } else if (tag instanceof AppInfo) {
2543 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002544 } else if (tag instanceof LauncherAppWidgetInfo) {
2545 if (v instanceof PendingAppWidgetHostView) {
2546 onClickPendingWidget((PendingAppWidgetHostView) v);
2547 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002548 }
2549 }
2550
Sunny Goyal70660032015-05-14 00:07:08 -07002551 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002552 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002553 return false;
2554 }
2555
Michael Jurkaaf442092010-06-10 17:01:57 -07002556 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002557 * Event handler for the app widget view which has not fully restored.
2558 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002559 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002560 if (mIsSafeModeEnabled) {
2561 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2562 return;
2563 }
2564
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002565 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002566 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002567 int widgetId = info.appWidgetId;
2568 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2569 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002570 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2571 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002572 mPendingAddInfo.copyFrom(info);
2573 mPendingAddWidgetId = widgetId;
2574
Sunny Goyalffe83f12014-08-14 17:39:34 -07002575 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2576 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002577 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002578 } else if (info.installProgress < 0) {
2579 // The install has not been queued
2580 final String packageName = info.providerName.getPackageName();
2581 showBrokenAppInstallDialog(packageName,
2582 new DialogInterface.OnClickListener() {
2583 public void onClick(DialogInterface dialog, int id) {
2584 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2585 }
2586 });
2587 } else {
2588 // Download has started.
2589 final String packageName = info.providerName.getPackageName();
2590 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002591 }
2592 }
2593
2594 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002595 * Event handler for the "grid" button that appears on the home screen, which
2596 * enters all apps mode.
2597 *
2598 * @param v The view that was clicked.
2599 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002600 protected void onClickAllAppsButton(View v) {
2601 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chungb745afb2015-03-02 11:51:23 -08002602 if (isAppsViewVisible()) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002603 showWorkspace(true);
2604 } else {
Winson Chung4ac30062015-05-08 17:34:17 -07002605 // Try and refresh the set of predicted apps before we enter launcher
2606 showAppsView(true /* animated */, false /* resetListToTop */,
2607 true /* updatePredictedApps */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002608 }
2609 }
2610
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002611 private void showBrokenAppInstallDialog(final String packageName,
2612 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002613 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002614 .setTitle(R.string.abandoned_promises_title)
2615 .setMessage(R.string.abandoned_promise_explanation)
2616 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2617 .setNeutralButton(R.string.abandoned_clean_this,
2618 new DialogInterface.OnClickListener() {
2619 public void onClick(DialogInterface dialog, int id) {
2620 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2621 mWorkspace.removeAbandonedPromise(packageName, user);
2622 }
2623 })
2624 .create().show();
2625 return;
2626 }
2627
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002628 /**
2629 * Event handler for an app shortcut click.
2630 *
2631 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2632 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002633 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002634 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2635 Object tag = v.getTag();
2636 if (!(tag instanceof ShortcutInfo)) {
2637 throw new IllegalArgumentException("Input must be a Shortcut");
2638 }
2639
2640 // Open shortcut
2641 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002642
2643 if (shortcut.isDisabled != 0) {
2644 int error = R.string.activity_not_available;
2645 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2646 error = R.string.safemode_shortcut_error;
2647 }
2648 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2649 return;
2650 }
2651
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002652 final Intent intent = shortcut.intent;
2653
2654 // Check for special shortcuts
2655 if (intent.getComponent() != null) {
2656 final String shortcutClass = intent.getComponent().getClassName();
2657
2658 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2659 MemoryDumpActivity.startDump(this);
2660 return;
2661 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2662 toggleShowWeightWatcher();
2663 return;
2664 }
2665 }
2666
Chris Wren40c5ed32014-06-24 18:24:23 -04002667 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002668 if ((v instanceof BubbleTextView)
2669 && shortcut.isPromise()
2670 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002671 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002672 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002673 new DialogInterface.OnClickListener() {
2674 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002675 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002676 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002677 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002678 return;
2679 }
2680
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002681 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002682 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002683
2684 if (mLauncherCallbacks != null) {
2685 mLauncherCallbacks.onClickAppShortcut(v);
2686 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002687 }
2688
Adam Cohen091440a2015-03-18 14:16:05 -07002689 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002690 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002691 final ShortcutInfo shortcut;
2692 final Intent intent;
2693 if (tag instanceof ShortcutInfo) {
2694 shortcut = (ShortcutInfo) tag;
2695 intent = shortcut.intent;
2696 int[] pos = new int[2];
2697 v.getLocationOnScreen(pos);
2698 intent.setSourceBounds(new Rect(pos[0], pos[1],
2699 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002700
Sunny Goyal508da152014-08-14 10:53:27 -07002701 } else if (tag instanceof AppInfo) {
2702 shortcut = null;
2703 intent = ((AppInfo) tag).intent;
2704 } else {
2705 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2706 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002707
2708 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002709 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002710
2711 if (success && v instanceof BubbleTextView) {
2712 mWaitingForResume = (BubbleTextView) v;
2713 mWaitingForResume.setStayPressed(true);
2714 }
2715 }
2716
2717 /**
2718 * Event handler for a folder icon click.
2719 *
2720 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2721 */
2722 protected void onClickFolderIcon(View v) {
2723 if (LOGD) Log.d(TAG, "onClickFolder");
2724 if (!(v instanceof FolderIcon)){
2725 throw new IllegalArgumentException("Input must be a FolderIcon");
2726 }
2727
2728 FolderIcon folderIcon = (FolderIcon) v;
2729 final FolderInfo info = folderIcon.getFolderInfo();
2730 Folder openFolder = mWorkspace.getFolderForTag(info);
2731
2732 // If the folder info reports that the associated folder is open, then verify that
2733 // it is actually opened. There have been a few instances where this gets out of sync.
2734 if (info.opened && openFolder == null) {
2735 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2736 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2737 info.opened = false;
2738 }
2739
2740 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2741 // Close any open folder
2742 closeFolder();
2743 // Open the requested folder
2744 openFolder(folderIcon);
2745 } else {
2746 // Find the open folder...
2747 int folderScreen;
2748 if (openFolder != null) {
2749 folderScreen = mWorkspace.getPageForView(openFolder);
2750 // .. and close it
2751 closeFolder(openFolder);
2752 if (folderScreen != mWorkspace.getCurrentPage()) {
2753 // Close any folder open on the current screen
2754 closeFolder();
2755 // Pull the folder onto this screen
2756 openFolder(folderIcon);
2757 }
2758 }
2759 }
Adam Cohen9211d422014-10-07 18:14:53 -07002760
2761 if (mLauncherCallbacks != null) {
2762 mLauncherCallbacks.onClickFolderIcon(v);
2763 }
Michael Jurka5130e402011-10-13 04:55:35 -07002764 }
2765
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002766 /**
2767 * Event handler for the (Add) Widgets button that appears after a long press
2768 * on the home screen.
2769 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002770 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002771 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002772 if (mIsSafeModeEnabled) {
2773 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2774 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002775 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002776 if (mLauncherCallbacks != null) {
2777 mLauncherCallbacks.onClickAddWidgetButton(view);
2778 }
Adam Cohen9211d422014-10-07 18:14:53 -07002779 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002780 }
2781
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002782 /**
2783 * Event handler for the wallpaper picker button that appears after a long press
2784 * on the home screen.
2785 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002786 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002787 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002788 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2789 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002790
2791 if (mLauncherCallbacks != null) {
2792 mLauncherCallbacks.onClickWallpaperPicker(v);
2793 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002794 }
2795
2796 /**
2797 * Event handler for a click on the settings button that appears after a long press
2798 * on the home screen.
2799 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002800 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002801 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002802 if (mLauncherCallbacks != null) {
2803 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002804 } else {
2805 showSettingsActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002806 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002807 }
2808
Michael Jurka5130e402011-10-13 04:55:35 -07002809 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002810 // Provide the same haptic feedback that the system offers for virtual keys.
2811 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002812 }
2813
Adam Cohen61f560d2013-09-30 15:58:20 -07002814 public void performHapticFeedbackOnTouchDown(View v) {
2815 // Provide the same haptic feedback that the system offers for virtual keys.
2816 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2817 }
2818
2819 public View.OnTouchListener getHapticFeedbackTouchListener() {
2820 if (mHapticFeedbackTouchListener == null) {
2821 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002822 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002823 @Override
2824 public boolean onTouch(View v, MotionEvent event) {
2825 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2826 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2827 }
2828 return false;
2829 }
2830 };
2831 }
2832 return mHapticFeedbackTouchListener;
2833 }
2834
Adam Cohen9211d422014-10-07 18:14:53 -07002835 public void onDragStarted(View view) {
2836 if (isOnCustomContent()) {
2837 // Custom content screen doesn't participate in drag and drop. If on custom
2838 // content screen, move to default.
2839 moveWorkspaceToDefaultScreen();
2840 }
2841
2842 if (mLauncherCallbacks != null) {
2843 mLauncherCallbacks.onDragStarted(view);
2844 }
2845 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002846
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002847 /**
2848 * Called when the user stops interacting with the launcher.
2849 * This implies that the user is now on the homescreen and is not doing housekeeping.
2850 */
Adam Cohen9211d422014-10-07 18:14:53 -07002851 protected void onInteractionEnd() {
2852 if (mLauncherCallbacks != null) {
2853 mLauncherCallbacks.onInteractionEnd();
2854 }
2855 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002856
2857 /**
2858 * Called when the user starts interacting with the launcher.
2859 * The possible interactions are:
2860 * - open all apps
2861 * - reorder an app shortcut, or a widget
2862 * - open the overview mode.
2863 * This is a good time to stop doing things that only make sense
2864 * when the user is on the homescreen and not doing housekeeping.
2865 */
Adam Cohen9211d422014-10-07 18:14:53 -07002866 protected void onInteractionBegin() {
2867 if (mLauncherCallbacks != null) {
2868 mLauncherCallbacks.onInteractionBegin();
2869 }
2870 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002871
Winson Chungcd99cd32015-04-29 11:03:24 -07002872 /** Updates the interaction state. */
2873 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002874 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002875 // overlay
Winson Chung83f59ab2015-05-05 17:21:58 -07002876 boolean fromStateWithOverlay;
2877 boolean toStateWithOverlay;
2878 if (Launcher.DISABLE_ALL_APPS_SEARCH_INTEGRATION) {
2879 fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2880 toStateWithOverlay = toState != Workspace.State.NORMAL;
2881 } else {
2882 fromStateWithOverlay = fromState != Workspace.State.NORMAL &&
2883 fromState != Workspace.State.NORMAL_HIDDEN;
2884 toStateWithOverlay = toState != Workspace.State.NORMAL &&
2885 toState != Workspace.State.NORMAL_HIDDEN;
2886 }
2887 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002888 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002889 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002890 onInteractionEnd();
2891 }
2892 }
2893
Kenny Guyf07af7b2014-07-31 11:39:16 +01002894 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002895 try {
2896 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002897 launcherApps.showAppDetailsForProfile(componentName, user);
2898 } catch (SecurityException e) {
2899 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2900 Log.e(TAG, "Launcher does not have permission to launch settings");
2901 } catch (ActivityNotFoundException e) {
2902 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2903 Log.e(TAG, "Unable to launch settings");
2904 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002905 }
2906
Michael Jurka1e2f4652013-07-08 18:03:46 -07002907 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002908 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2909 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002910 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002911 // System applications cannot be installed. For now, show a toast explaining that.
2912 // We may give them the option of disabling apps this way.
2913 int messageId = R.string.uninstall_system_app_text;
2914 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002915 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002916 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002917 String packageName = componentName.getPackageName();
2918 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002919 Intent intent = new Intent(
2920 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002921 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2922 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002923 if (user != null) {
2924 user.addToIntent(intent, Intent.EXTRA_USER);
2925 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002926 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002927 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002928 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002929 }
2930
Winson Chung8f1eff72015-05-28 17:33:40 -07002931 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002932 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002933 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002934 // Only launch using the new animation if the shortcut has not opted out (this is a
2935 // private contract between launcher and may be ignored in the future).
2936 boolean useLaunchAnimation = (v != null) &&
2937 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002938 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2939 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002940
Kenny Guy1317e2d2014-05-08 18:52:50 +01002941 UserHandleCompat user = null;
2942 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2943 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2944 user = userManager.getUserForSerialNumber(serialNumber);
2945 }
2946
2947 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002948 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002949 ActivityOptions opts = null;
2950 if (sClipRevealMethod != null) {
2951 // TODO: call method directly when Launcher3 can depend on M APIs
2952 int left = 0, top = 0;
2953 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2954 if (v instanceof TextView) {
2955 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002956 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2957 if (icon != null) {
2958 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002959 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002960 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002961 width = bounds.width();
2962 height = bounds.height();
2963 }
2964 }
2965 try {
2966 opts = (ActivityOptions) sClipRevealMethod.invoke(null, v,
2967 left, top, width, height);
2968 } catch (IllegalAccessException e) {
2969 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2970 sClipRevealMethod = null;
2971 } catch (InvocationTargetException e) {
2972 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2973 sClipRevealMethod = null;
2974 }
2975 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002976 if (opts == null && !Utilities.isLmpOrAbove()) {
2977 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002978 v.getMeasuredWidth(), v.getMeasuredHeight());
2979 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002980 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002981 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002982
2983 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2984 // Could be launching some bookkeeping activity
2985 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002986 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002987 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002988 launcherApps.startActivityForProfile(intent.getComponent(), user,
2989 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002990 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002991 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002992 } catch (SecurityException e) {
2993 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002994 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002995 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002996 "or use the exported attribute for this activity. "
2997 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002998 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002999 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003000 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003001
Winson Chung8f1eff72015-05-28 17:33:40 -07003002 private boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07003003 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003004 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
3005 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
3006 return false;
3007 }
Michael Jurka86a720e2012-05-09 11:23:23 -07003008 try {
3009 success = startActivity(v, intent, tag);
3010 } catch (ActivityNotFoundException e) {
3011 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
3012 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
3013 }
3014 return success;
3015 }
3016
Adam Cohen268c4752012-06-06 17:47:33 -07003017 /**
3018 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
3019 * in the DragLayer in the exact absolute location of the original FolderIcon.
3020 */
3021 private void copyFolderIconToImage(FolderIcon fi) {
3022 final int width = fi.getMeasuredWidth();
3023 final int height = fi.getMeasuredHeight();
3024
3025 // Lazy load ImageView, Bitmap and Canvas
3026 if (mFolderIconImageView == null) {
3027 mFolderIconImageView = new ImageView(this);
3028 }
3029 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3030 mFolderIconBitmap.getHeight() != height) {
3031 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3032 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3033 }
3034
3035 DragLayer.LayoutParams lp;
3036 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3037 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3038 } else {
3039 lp = new DragLayer.LayoutParams(width, height);
3040 }
3041
Adam Cohen307fe232012-08-16 17:55:58 -07003042 // The layout from which the folder is being opened may be scaled, adjust the starting
3043 // view size by this scale factor.
3044 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003045 lp.customPosition = true;
3046 lp.x = mRectForFolderAnimation.left;
3047 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003048 lp.width = (int) (scale * width);
3049 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003050
3051 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3052 fi.draw(mFolderIconCanvas);
3053 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003054 if (fi.getFolder() != null) {
3055 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3056 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003057 }
Adam Cohen268c4752012-06-06 17:47:33 -07003058 // Just in case this image view is still in the drag layer from a previous animation,
3059 // we remove it and re-add it.
3060 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3061 mDragLayer.removeView(mFolderIconImageView);
3062 }
3063 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003064 if (fi.getFolder() != null) {
3065 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003066 }
Adam Cohen268c4752012-06-06 17:47:33 -07003067 }
3068
Adam Cohen2801caf2011-05-13 20:57:39 -07003069 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003070 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003071 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3072 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3073 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3074
Adam Cohenc51934b2011-07-26 21:07:43 -07003075 FolderInfo info = (FolderInfo) fi.getTag();
3076 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3077 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003078 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3079 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003080 }
3081
Adam Cohen268c4752012-06-06 17:47:33 -07003082 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3083 copyFolderIconToImage(fi);
3084 fi.setVisibility(View.INVISIBLE);
3085
Michael Jurka2ecf9952012-06-18 12:52:28 -07003086 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003087 scaleX, scaleY);
Kenny Guyd794a3f2014-09-16 15:17:58 +01003088 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003089 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3090 }
3091 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003092 oa.start();
3093 }
3094
Adam Cohen268c4752012-06-06 17:47:33 -07003095 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003096 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003097 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3098 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3099 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3100
Adam Cohen268c4752012-06-06 17:47:33 -07003101 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003102
Adam Cohen268c4752012-06-06 17:47:33 -07003103 // We remove and re-draw the FolderIcon in-case it has changed
3104 mDragLayer.removeView(mFolderIconImageView);
3105 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003106 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003107 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003108 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003109 oa.addListener(new AnimatorListenerAdapter() {
3110 @Override
3111 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003112 if (cl != null) {
3113 cl.clearFolderLeaveBehind();
3114 // Remove the ImageView copy of the FolderIcon and make the original visible.
3115 mDragLayer.removeView(mFolderIconImageView);
3116 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003117 }
3118 }
3119 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003120 oa.start();
3121 }
3122
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003123 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003124 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003125 * is animated relative to the specified View. If the View is null, no animation
3126 * is played.
3127 *
3128 * @param folderInfo The FolderInfo describing the folder to open.
3129 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003130 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003131 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003132 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3133 if (openFolder != null && openFolder != folder) {
3134 // Close any open folder before opening a folder.
3135 closeFolder();
3136 }
3137
Adam Cohena9cf38f2011-05-02 15:36:58 -07003138 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003139
Adam Cohena9cf38f2011-05-02 15:36:58 -07003140 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003141
Sunny Goyalf4066152015-04-15 09:42:19 -07003142 // While the folder is open, the position of the icon cannot change.
3143 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3144
Adam Cohen4554ee12011-08-03 16:13:21 -07003145 // Just verify that the folder hasn't already been added to the DragLayer.
3146 // There was a one-off crash where the folder had a parent already.
3147 if (folder.getParent() == null) {
3148 mDragLayer.addView(folder);
3149 mDragController.addDropTarget((DropTarget) folder);
3150 } else {
3151 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3152 folder.getParent() + ").");
3153 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003154 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003155 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003156
3157 // Notify the accessibility manager that this folder "window" has appeared and occluded
3158 // the workspace items
3159 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3160 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003161 }
3162
3163 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003164 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003165 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003166 if (folder.isEditingName()) {
3167 folder.dismissEditingName();
3168 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003169 closeFolder(folder);
3170 }
3171 }
3172
Sunny Goyal83a8f042015-05-19 12:52:12 -07003173 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003174 folder.getInfo().opened = false;
3175
3176 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3177 if (parent != null) {
3178 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3179 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003180 if (fi != null) {
3181 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3182 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003183 }
3184 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003185
3186 // Notify the accessibility manager that this folder "window" has disappeard and no
3187 // longer occludeds the workspace items
3188 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003189 }
3190
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003191 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003192 if (!isDraggingEnabled()) return false;
3193 if (isWorkspaceLocked()) return false;
3194 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003195
Adam Cohen1697b792013-09-17 19:08:21 -07003196 if (v instanceof Workspace) {
3197 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003198 if (!mWorkspace.isTouchActive()) {
3199 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003200 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3201 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3202 return true;
3203 } else {
3204 return false;
3205 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003206 } else {
3207 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003208 }
Adam Cohen1697b792013-09-17 19:08:21 -07003209 }
3210
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003211 CellLayout.CellInfo longClickCellInfo = null;
3212 View itemUnderLongClick = null;
3213 if (v.getTag() instanceof ItemInfo) {
3214 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003215 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003216 itemUnderLongClick = longClickCellInfo.cell;
3217 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003218 }
3219
Winson Chung3d503fb2011-07-13 17:25:49 -07003220 // The hotseat touch handling does not go through Workspace, and we always allow long press
3221 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003222 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003223 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003224 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003225 // User long pressed on empty space
3226 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3227 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003228 if (mWorkspace.isInOverviewMode()) {
3229 mWorkspace.startReordering(v);
3230 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003231 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003232 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003233 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003234 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3235 mHotseat.getOrderInHotseat(
3236 longClickCellInfo.cellX,
3237 longClickCellInfo.cellY));
3238 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003239 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003240 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003241 }
3242 }
3243 }
3244 return true;
3245 }
3246
Winson Chung3d503fb2011-07-13 17:25:49 -07003247 boolean isHotseatLayout(View layout) {
3248 return mHotseat != null && layout != null &&
3249 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3250 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003251
Winson Chung3d503fb2011-07-13 17:25:49 -07003252 /**
3253 * Returns the CellLayout of the specified container at the specified screen.
3254 */
Sunny Goyal92820592015-03-02 11:31:35 -08003255 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003256 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3257 if (mHotseat != null) {
3258 return mHotseat.getLayout();
3259 } else {
3260 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003261 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003262 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003263 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003264 }
3265 }
3266
Winson Chungb745afb2015-03-02 11:51:23 -08003267 /**
3268 * For overridden classes.
3269 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003270 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003271 return isAppsViewVisible();
3272 }
3273
3274 public boolean isAppsViewVisible() {
3275 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3276 }
3277
3278 public boolean isWidgetsViewVisible() {
3279 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003280 }
3281
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003282 private void setWorkspaceBackground(int background) {
3283 switch (background) {
3284 case WORKSPACE_BACKGROUND_TRANSPARENT:
3285 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3286 break;
3287 case WORKSPACE_BACKGROUND_BLACK:
3288 getWindow().setBackgroundDrawable(null);
3289 break;
3290 default:
3291 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3292 }
Craig Mautner360310b2012-10-26 15:13:08 -07003293 }
3294
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003295 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003296 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3297 int curflags = getWindow().getAttributes().flags
3298 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3299 if (wpflags != curflags) {
3300 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3301 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003302 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003303 }
3304
Michael Jurkae326f182011-11-21 14:05:46 -08003305 @Override
3306 public void onTrimMemory(int level) {
3307 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003308 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3309 // The widget preview db can result in holding onto over
3310 // 3MB of memory for caching which isn't necessary.
3311 SQLiteDatabase.releaseMemory();
3312
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003313 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003314 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003315 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003316 if (mLauncherCallbacks != null) {
3317 mLauncherCallbacks.onTrimMemory(level);
3318 }
Michael Jurkae326f182011-11-21 14:05:46 -08003319 }
3320
Winson Chungb745afb2015-03-02 11:51:23 -08003321 @Override
3322 public void onStateTransitionHideSearchBar() {
3323 // Hide the search bar
3324 if (mSearchDropTargetBar != null) {
3325 mSearchDropTargetBar.hideSearchBar(false /* animated */);
3326 }
Adam Cohened66b2b2012-01-23 17:28:51 -08003327 }
3328
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003329 public void showWorkspace(boolean animated) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003330 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null,
3331 true);
Adam Cohened307df2013-10-02 09:37:31 -07003332 }
3333
Sunny Goyal83a8f042015-05-19 12:52:12 -07003334 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003335 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3336 onCompleteRunnable, true);
3337 }
3338
3339 protected void showWorkspace(int snapToPage, boolean animated) {
3340 showWorkspace(snapToPage, animated, null, true);
3341 }
3342
3343 void showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable,
3344 boolean notifyLauncherCallbacks) {
Winson Chung0f785722015-04-08 10:27:49 -07003345 boolean changed = mState != State.WORKSPACE ||
3346 mWorkspace.getState() != Workspace.State.NORMAL;
3347 if (changed) {
Winson Chung2d75f122013-09-23 16:53:31 -07003348 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003349 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003350 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.NORMAL,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003351 snapToPage, animated, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003352
Winson Chungc7d2b602012-05-16 17:02:20 -07003353 // Show the search bar (only animate if we were showing the drop target bar in spring
3354 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003355 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003356 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003357 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003358
Michael Jurkab3e22d92011-10-31 15:58:33 -07003359 // Set focus to the AppsCustomize button
3360 if (mAllAppsButton != null) {
3361 mAllAppsButton.requestFocus();
3362 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003363 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003364
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003365 // Change the state *after* we've called all the transition code
3366 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003367
Winson Chung5fb63472011-02-02 17:03:37 -08003368 // Resume the auto-advance of widgets
3369 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003370 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003371
Winson Chung0f785722015-04-08 10:27:49 -07003372 if (changed) {
3373 // Send an accessibility event to announce the context change
3374 getWindow().getDecorView()
3375 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chungcd99cd32015-04-29 11:03:24 -07003376 if (notifyLauncherCallbacks) {
3377 // Dismiss all apps when the workspace is shown
Winson Chung83f59ab2015-05-05 17:21:58 -07003378 if (!Launcher.DISABLE_ALL_APPS_SEARCH_INTEGRATION && mLauncherCallbacks != null) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003379 mLauncherCallbacks.onAllAppsHidden();
3380 }
3381 }
Winson Chung0f785722015-04-08 10:27:49 -07003382 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003383 }
3384
Adam Cohened307df2013-10-02 09:37:31 -07003385 void showOverviewMode(boolean animated) {
3386 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003387 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003388 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3389 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003390 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003391 }
3392
Winson Chungb745afb2015-03-02 11:51:23 -08003393 /**
3394 * Shows the apps view.
3395 */
Winson Chung4ac30062015-05-08 17:34:17 -07003396 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps) {
Winson Chungb745afb2015-03-02 11:51:23 -08003397 if (resetListToTop) {
3398 mAppsView.scrollToTop();
3399 }
Winson Chung4ac30062015-05-08 17:34:17 -07003400 if (updatePredictedApps) {
3401 tryAndUpdatePredictedApps();
3402 }
Winson Chungb745afb2015-03-02 11:51:23 -08003403 showAppsOrWidgets(animated, State.APPS);
3404 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003405
Winson Chungb745afb2015-03-02 11:51:23 -08003406 /**
3407 * Shows the widgets view.
3408 */
3409 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003410 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003411 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003412 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003413 }
Winson Chungb745afb2015-03-02 11:51:23 -08003414 showAppsOrWidgets(animated, State.WIDGETS);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003415
3416 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003417 @Override
3418 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003419 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003420 }
3421 });
Winson Chungb745afb2015-03-02 11:51:23 -08003422 }
3423
3424 /**
3425 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003426 *
3427 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003428 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003429 // TODO: calling method should use the return value so that when {@code false} is returned
3430 // the workspace transition doesn't fall into invalid state.
3431 private boolean showAppsOrWidgets(boolean animated, State toState) {
3432 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3433 mState != State.WIDGETS_SPRING_LOADED) {
3434 return false;
3435 }
3436 if (toState != State.APPS && toState != State.WIDGETS) {
3437 return false;
3438 }
Winson Chungb745afb2015-03-02 11:51:23 -08003439
3440 if (toState == State.APPS) {
3441 mStateTransitionAnimation.startAnimationToAllApps(animated);
Winson Chung83f59ab2015-05-05 17:21:58 -07003442 if (!Launcher.DISABLE_ALL_APPS_SEARCH_INTEGRATION && mLauncherCallbacks != null) {
Winson Chung0f785722015-04-08 10:27:49 -07003443 mLauncherCallbacks.onAllAppsShown();
3444 }
Winson Chungb745afb2015-03-02 11:51:23 -08003445 } else {
3446 mStateTransitionAnimation.startAnimationToWidgets(animated);
3447 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003448
Michael Jurkab3e22d92011-10-31 15:58:33 -07003449 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003450 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003451
3452 // Pause the auto-advance of widgets until we are out of AllApps
3453 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003454 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003455 closeFolder();
3456
3457 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003458 getWindow().getDecorView()
3459 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003460 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003461 }
3462
Winson Chungcd99cd32015-04-29 11:03:24 -07003463 /**
3464 * Updates the workspace and interaction state on state change, and return the animation to this
3465 * new state.
3466 */
3467 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
3468 boolean animated, HashMap<View, Integer> layerViews) {
3469 Workspace.State fromState = mWorkspace.getState();
3470 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
3471 updateInteraction(fromState, toState);
3472 return anim;
3473 }
3474
Hyunyoung Song3f471442015-04-08 19:01:34 -07003475 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003476 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003477 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3478 mState == State.WIDGETS_SPRING_LOADED) {
3479 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003480 }
Winson Chungb745afb2015-03-02 11:51:23 -08003481
3482 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003483 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3484 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003485 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003486 }
Adam Cohen7777d962011-08-18 18:58:38 -07003487
Hyunyoung Song3f471442015-04-08 19:01:34 -07003488 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003489 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003490 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003491
Winson Chungcd99cd32015-04-29 11:03:24 -07003492 if (successfulDrop) {
3493 // We need to trigger all apps hidden to notify search to update itself before the
3494 // delayed call to showWorkspace below
Winson Chung83f59ab2015-05-05 17:21:58 -07003495 if (!Launcher.DISABLE_ALL_APPS_SEARCH_INTEGRATION && mLauncherCallbacks != null) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003496 mLauncherCallbacks.onAllAppsHidden();
3497 }
3498 }
3499
Winson Chunge7a03942011-08-05 15:05:12 -07003500 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003501 @Override
3502 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003503 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003504 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3505 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003506 // Before we show workspace, hide all apps again because
3507 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3508 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003509 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003510 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003511 } else {
3512 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003513 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003514 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003515 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003516 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003517
Michael Jurkad3ef3062010-11-23 16:23:58 -08003518 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003519 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003520 showAppsView(true /* animated */, false /* resetListToTop */,
3521 false /* updatePredictedApps */);
Winson Chungb745afb2015-03-02 11:51:23 -08003522 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003523 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003524 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003525 }
3526
Winson Chung4ac30062015-05-08 17:34:17 -07003527 /**
3528 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3529 * resumed.
3530 */
3531 private void tryAndUpdatePredictedApps() {
3532 if (mLauncherCallbacks != null) {
3533 List<ComponentName> apps = mLauncherCallbacks.getPredictedApps();
3534 if (!apps.isEmpty()) {
3535 mAppsView.setPredictedApps(apps);
3536 }
3537 }
3538 }
3539
Michael Jurkab3e22d92011-10-31 15:58:33 -07003540 void lockAllApps() {
3541 // TODO
3542 }
3543
3544 void unlockAllApps() {
3545 // TODO
3546 }
3547
Sunny Goyal594d76d2014-11-06 10:12:54 -08003548 protected void disableVoiceButtonProxy(boolean disable) {
3549 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003550 }
3551
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003552 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003553 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3554 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003555 }
3556
Adam Cohen24ce0b32014-01-14 16:18:14 -08003557 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003558 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3559 if (searchProvider == null) {
3560 return null;
3561 }
3562
3563 Bundle opts = new Bundle();
3564 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003565 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003566
3567 SharedPreferences sp = getSharedPreferences(
3568 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3569 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003570 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003571 if (!searchProvider.provider.flattenToString().equals(
3572 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003573 || (widgetInfo == null)
3574 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003575 // A valid widget is not already bound.
3576 if (widgetId > -1) {
3577 mAppWidgetHost.deleteAppWidgetId(widgetId);
3578 widgetId = -1;
3579 }
3580
3581 // Try to bind a new widget
3582 widgetId = mAppWidgetHost.allocateAppWidgetId();
3583
3584 if (!AppWidgetManagerCompat.getInstance(this)
3585 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3586 mAppWidgetHost.deleteAppWidgetId(widgetId);
3587 widgetId = -1;
3588 }
3589
3590 sp.edit()
3591 .putInt(QSB_WIDGET_ID, widgetId)
3592 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3593 .commit();
3594 }
3595
3596 if (widgetId != -1) {
3597 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3598 mQsb.updateAppWidgetOptions(opts);
3599 mQsb.setPadding(0, 0, 0, 0);
3600 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003601 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003602 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003603 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003604 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003605 }
3606
Sunny Goyal22235bc2015-04-03 09:23:43 -07003607 private void reinflateQSBIfNecessary() {
3608 if (mQsb instanceof LauncherAppWidgetHostView &&
3609 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3610 mSearchDropTargetBar.removeView(mQsb);
3611 mQsb = null;
3612 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3613 }
3614 }
3615
Michael Jurkad7c28052012-04-27 15:43:36 -07003616 @Override
3617 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003618 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003619 final List<CharSequence> text = event.getText();
3620 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003621 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003622 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003623 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003624 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003625 text.add(getString(R.string.widget_button_text));
alanv1d4fde62012-10-17 13:15:47 -07003626 } else {
3627 text.add(getString(R.string.all_apps_home_button_label));
3628 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003629 return result;
3630 }
3631
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003632 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003633 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003634 */
Adam Cohen091440a2015-03-18 14:16:05 -07003635 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003636 @Override
3637 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003638 closeSystemDialogs();
3639 }
3640 }
3641
3642 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003643 * Receives notifications whenever the appwidgets are reset.
3644 */
3645 private class AppWidgetResetObserver extends ContentObserver {
3646 public AppWidgetResetObserver() {
3647 super(new Handler());
3648 }
3649
3650 @Override
3651 public void onChange(boolean selfChange) {
3652 onAppWidgetReset();
3653 }
3654 }
3655
3656 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003657 * If the activity is currently paused, signal that we need to run the passed Runnable
3658 * in onResume.
3659 *
3660 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003661 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3662 * wrong when we're not running, and if the activity comes back to what the configuration was
3663 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003664 *
3665 * Implementation of the method from LauncherModel.Callbacks.
3666 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003667 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003668 */
Michael Jurkac402cd92013-05-20 15:49:32 +02003669 private boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003670 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003671 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003672 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003673 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003674 }
3675 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003676 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003677 return true;
3678 } else {
3679 return false;
3680 }
3681 }
3682
Michael Jurkac402cd92013-05-20 15:49:32 +02003683 private boolean waitUntilResume(Runnable run) {
3684 return waitUntilResume(run, false);
3685 }
3686
Michael Jurka1e2f4652013-07-08 18:03:46 -07003687 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003688 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003689 }
3690
Michael Jurka7607c2f2013-04-03 14:33:19 -07003691 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003692 * If the activity is currently paused, signal that we need to re-run the loader
3693 * in onResume.
3694 *
3695 * This needs to be called from incoming places where resources might have been loaded
3696 * while we are paused. That is becaues the Configuration might be wrong
3697 * when we're not running, and if it comes back to what it was when we
3698 * were paused, we are not restarted.
3699 *
3700 * Implementation of the method from LauncherModel.Callbacks.
3701 *
3702 * @return true if we are currently paused. The caller might be able to
3703 * skip some work in that case since we will come back again.
3704 */
3705 public boolean setLoadOnResume() {
3706 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003707 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003708 mOnResumeNeedsLoad = true;
3709 return true;
3710 } else {
3711 return false;
3712 }
3713 }
3714
3715 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003716 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003717 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003718 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003719 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003720 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003721 } else {
3722 return SCREEN_COUNT / 2;
3723 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003724 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003725
Joe Onorato9c1289c2009-08-17 11:03:03 -04003726 /**
3727 * Refreshes the shortcuts shown on the workspace.
3728 *
3729 * Implementation of the method from LauncherModel.Callbacks.
3730 */
3731 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003732 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003733
Michael Jurka7607c2f2013-04-03 14:33:19 -07003734 // If we're starting binding all over again, clear any bind calls we'd postponed in
3735 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3736 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003737 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003738
Winson Chungd64d1762013-08-20 14:37:16 -07003739 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003740 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003741 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003742
Michael Jurka05bf6442011-11-30 20:28:53 -08003743 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003744 if (mHotseat != null) {
3745 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003746 }
3747 }
3748
Adam Cohendcd297f2013-06-18 13:13:40 -07003749 @Override
3750 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003751 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003752
Adam Cohen5084cba2013-09-03 12:01:16 -07003753 // If there are no screens, we need to have an empty screen
3754 if (orderedScreenIds.size() == 0) {
3755 mWorkspace.addExtraEmptyScreen();
3756 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003757
3758 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003759 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003760 if (hasCustomContentToLeft()) {
3761 mWorkspace.createCustomContentContainer();
3762 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003763 }
Winson Chung64359a52013-07-08 17:17:08 -07003764 }
3765
3766 @Override
3767 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Winson Chunga90303b2013-11-15 13:05:06 -08003768 // Log to disk
3769 Launcher.addDumpLog(TAG, "11683562 - bindAddScreens()", true);
3770 Launcher.addDumpLog(TAG, "11683562 - orderedScreenIds: " +
3771 TextUtils.join(", ", orderedScreenIds), true);
Adam Cohendcd297f2013-06-18 13:13:40 -07003772 int count = orderedScreenIds.size();
3773 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003774 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003775 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003776 }
3777
Adam Cohen39a06042013-07-19 14:30:12 -07003778 private boolean shouldShowWeightWatcher() {
3779 String spKey = LauncherAppState.getSharedPreferencesKey();
3780 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b802013-08-15 15:44:26 -07003781 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003782
3783 return show;
3784 }
3785
3786 private void toggleShowWeightWatcher() {
3787 String spKey = LauncherAppState.getSharedPreferencesKey();
3788 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3789 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3790
3791 show = !show;
3792
3793 SharedPreferences.Editor editor = sp.edit();
3794 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3795 editor.commit();
3796
3797 if (mWeightWatcher != null) {
3798 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3799 }
3800 }
3801
Winson Chungd64d1762013-08-20 14:37:16 -07003802 public void bindAppsAdded(final ArrayList<Long> newScreens,
3803 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003804 final ArrayList<ItemInfo> addAnimated,
3805 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003806 Runnable r = new Runnable() {
3807 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003808 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003809 }
3810 };
3811 if (waitUntilResume(r)) {
3812 return;
3813 }
3814
Winson Chungd64d1762013-08-20 14:37:16 -07003815 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003816 if (newScreens != null) {
3817 bindAddScreens(newScreens);
3818 }
Winson Chungd64d1762013-08-20 14:37:16 -07003819
3820 // We add the items without animation on non-visible pages, and with
3821 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003822 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003823 bindItems(addNotAnimated, 0,
3824 addNotAnimated.size(), false);
3825 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003826 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003827 bindItems(addAnimated, 0,
3828 addAnimated.size(), true);
3829 }
Winson Chungc58497e2013-09-03 17:48:37 -07003830
Winson Chung87412982013-10-03 18:34:14 -07003831 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003832 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003833
Winson Chungb745afb2015-03-02 11:51:23 -08003834 if (addedApps != null && mAppsView != null) {
3835 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003836 }
Winson Chungd64d1762013-08-20 14:37:16 -07003837 }
3838
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003839 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003840 * Bind the items start-end from the list.
3841 *
3842 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003843 */
Winson Chung64359a52013-07-08 17:17:08 -07003844 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3845 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003846 Runnable r = new Runnable() {
3847 public void run() {
3848 bindItems(shortcuts, start, end, forceAnimateIcons);
3849 }
3850 };
3851 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003852 return;
3853 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003854
Winson Chungf0c6ae02012-03-21 16:10:31 -07003855 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003856 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3857 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003858 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003859 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003860 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003861 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003862 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003863
3864 // Short circuit if we are loading dock items for a configuration which has no dock
3865 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3866 mHotseat == null) {
3867 continue;
3868 }
3869
Joe Onorato9c1289c2009-08-17 11:03:03 -04003870 switch (item.itemType) {
3871 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3872 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003873 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003874 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003875
Winson Chung64359a52013-07-08 17:17:08 -07003876 /*
3877 * TODO: FIX collision case
3878 */
Winson Chungce376632013-07-11 16:12:41 -07003879 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3880 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3881 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003882 View v = cl.getChildAt(item.cellX, item.cellY);
3883 Object tag = v.getTag();
3884 String desc = "Collision while binding workspace item: " + item
3885 + ". Collides with " + tag;
3886 if (LauncherAppState.isDogfoodBuild()) {
3887 throw (new RuntimeException(desc));
3888 } else {
3889 Log.d(TAG, desc);
3890 }
Winson Chungce376632013-07-11 16:12:41 -07003891 }
Winson Chung64359a52013-07-08 17:17:08 -07003892 }
3893
Adam Cohendcd297f2013-06-18 13:13:40 -07003894 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3895 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003896 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003897 // Animate all the applications up now
3898 shortcut.setAlpha(0f);
3899 shortcut.setScaleX(0f);
3900 shortcut.setScaleY(0f);
3901 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003902 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003903 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003904 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003905 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003906 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003907 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003908 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003909 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3910 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003911 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003912 default:
3913 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003914 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003915 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003916
Winson Chung997a9232013-07-24 15:33:46 -07003917 if (animateIcons) {
3918 // Animate to the correct page
3919 if (newShortcutsScreenId > -1) {
3920 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003921 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003922 final Runnable startBounceAnimRunnable = new Runnable() {
3923 public void run() {
3924 anim.playTogether(bounceAnims);
3925 anim.start();
3926 }
3927 };
Winson Chung997a9232013-07-24 15:33:46 -07003928 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003929 // We post the animation slightly delayed to prevent slowdowns
3930 // when we are loading right after we return to launcher.
3931 mWorkspace.postDelayed(new Runnable() {
3932 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003933 if (mWorkspace != null) {
3934 mWorkspace.snapToPage(newScreenIndex);
3935 mWorkspace.postDelayed(startBounceAnimRunnable,
3936 NEW_APPS_ANIMATION_DELAY);
3937 }
Winson Chung94d67682013-09-25 16:29:40 -07003938 }
3939 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003940 } else {
3941 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003942 }
3943 }
Winson Chung64359a52013-07-08 17:17:08 -07003944 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003945 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003946 }
3947
Joe Onorato9c1289c2009-08-17 11:03:03 -04003948 /**
3949 * Implementation of the method from LauncherModel.Callbacks.
3950 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003951 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003952 Runnable r = new Runnable() {
3953 public void run() {
3954 bindFolders(folders);
3955 }
3956 };
3957 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003958 return;
3959 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003960 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003961 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003962
3963 /**
3964 * Add the views for a widget to the workspace.
3965 *
3966 * Implementation of the method from LauncherModel.Callbacks.
3967 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003968 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003969 Runnable r = new Runnable() {
3970 public void run() {
3971 bindAppWidget(item);
3972 }
3973 };
3974 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003975 return;
3976 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003977
Daniel Sandler843e8602010-06-07 14:59:01 -04003978 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3979 if (DEBUG_WIDGETS) {
3980 Log.d(TAG, "bindAppWidget: " + item);
3981 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003982 final Workspace workspace = mWorkspace;
3983
Adam Cohen59400422014-03-05 18:07:04 -08003984 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003985 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003986
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003987 if (!mIsSafeModeEnabled
3988 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
3989 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
Sunny Goyalff572272014-07-23 13:58:07 -07003990 if (appWidgetInfo == null) {
3991 if (DEBUG_WIDGETS) {
3992 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3993 + " belongs to component " + item.providerName
3994 + ", as the povider is null");
3995 }
3996 LauncherModel.deleteItemFromDatabase(this, item);
3997 return;
3998 }
3999 // Note: This assumes that the id remap broadcast is received before this step.
4000 // If that is not the case, the id remap will be ignored and user may see the
4001 // click to setup view.
Adam Cohen2e6da152015-05-06 11:42:25 -07004002 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
Sunny Goyalff572272014-07-23 13:58:07 -07004003 pendingInfo.spanX = item.spanX;
4004 pendingInfo.spanY = item.spanY;
4005 pendingInfo.minSpanX = item.minSpanX;
4006 pendingInfo.minSpanY = item.minSpanY;
Hyunyoung Song3f471442015-04-08 19:01:34 -07004007 Bundle options = null;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -07004008 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07004009
Sunny Goyalff572272014-07-23 13:58:07 -07004010 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07004011 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4012 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07004013
4014 // TODO consider showing a permission dialog when the widget is clicked.
4015 if (!success) {
4016 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4017 if (DEBUG_WIDGETS) {
4018 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4019 + " belongs to component " + item.providerName
4020 + ", as the launcher is unable to bing a new widget id");
4021 }
4022 LauncherModel.deleteItemFromDatabase(this, item);
4023 return;
4024 }
4025
4026 item.appWidgetId = newWidgetId;
4027
4028 // If the widget has a configure activity, it is still needs to set it up, otherwise
4029 // the widget is ready to go.
4030 item.restoreStatus = (appWidgetInfo.configure == null)
4031 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4032 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4033
4034 LauncherModel.updateItemInDatabase(this, item);
4035 }
4036
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004037 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004038 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004039 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004040 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4041 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004042 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004043
Sunny Goyal651077b2014-06-30 14:15:31 -07004044 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
4045 } else {
4046 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004047 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4048 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004049 view.updateIcon(mIconCache);
4050 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004051 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004052 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004053 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004054
Joe Onorato9c1289c2009-08-17 11:03:03 -04004055 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004056 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004057
Adam Cohendcd297f2013-06-18 13:13:40 -07004058 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004059 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08004060 if (!item.isCustomWidget()) {
4061 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4062 }
Adam Cohended9f8d2010-11-03 13:25:16 -07004063
Joe Onorato9c1289c2009-08-17 11:03:03 -04004064 workspace.requestLayout();
4065
Daniel Sandler843e8602010-06-07 14:59:01 -04004066 if (DEBUG_WIDGETS) {
4067 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4068 + (SystemClock.uptimeMillis()-start) + "ms");
4069 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004070 }
4071
Sunny Goyalff572272014-07-23 13:58:07 -07004072 /**
4073 * Restores a pending widget.
4074 *
4075 * @param appWidgetId The app widget id
4076 * @param cellInfo The position on screen where to create the widget.
4077 */
4078 private void completeRestoreAppWidget(final int appWidgetId) {
4079 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4080 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4081 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4082 return;
4083 }
4084
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004085 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004086 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4087
4088 mWorkspace.reinflateWidgetsIfNecessary();
4089 LauncherModel.updateItemInDatabase(this, info);
4090 }
4091
Adam Cohen1462de32012-07-24 22:34:36 -07004092 public void onPageBoundSynchronously(int page) {
4093 mSynchronouslyBoundPages.add(page);
4094 }
4095
Joe Onorato9c1289c2009-08-17 11:03:03 -04004096 /**
4097 * Callback saying that there aren't any more items to bind.
4098 *
4099 * Implementation of the method from LauncherModel.Callbacks.
4100 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004101 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004102 Runnable r = new Runnable() {
4103 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004104 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004105 }
4106 };
4107 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004108 return;
4109 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004110 if (mSavedState != null) {
4111 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004112 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004113 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004114 mSavedState = null;
4115 }
4116
Adam Cohen1462de32012-07-24 22:34:36 -07004117 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004118
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004119 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004120 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004121
4122 // If we received the result of any pending adds while the loader was running (e.g. the
4123 // widget configuration forced an orientation change), process them now.
4124 if (sPendingAddItem != null) {
4125 final long screenId = completeAdd(sPendingAddItem);
4126
4127 // TODO: this moves the user to the page where the pending item was added. Ideally,
4128 // the screen would be guaranteed to exist after bind, and the page would be set through
4129 // the workspace restore process.
4130 mWorkspace.post(new Runnable() {
4131 @Override
4132 public void run() {
4133 mWorkspace.snapToScreenId(screenId);
4134 }
4135 });
4136 sPendingAddItem = null;
4137 }
4138
Sunny Goyal756adbc2015-04-16 15:20:51 -07004139 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004140
4141 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004142 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004143 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004144 }
4145
Adam Cohen3ed316a2014-07-23 18:21:20 -07004146 private void sendLoadingCompleteBroadcastIfNecessary() {
4147 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4148 String permission =
4149 getResources().getString(R.string.receive_first_load_broadcast_permission);
4150 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4151 sendBroadcast(intent, permission);
4152 SharedPreferences.Editor editor = mSharedPrefs.edit();
4153 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4154 editor.apply();
4155 }
4156 }
4157
Winson Chunga0b7e862013-09-05 16:03:15 -07004158 public boolean isAllAppsButtonRank(int rank) {
4159 if (mHotseat != null) {
4160 return mHotseat.isAllAppsButtonRank(rank);
4161 }
4162 return false;
4163 }
4164
Winson Chunga2413752012-04-03 14:22:34 -07004165 private boolean canRunNewAppsAnimation() {
4166 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4167 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4168 }
4169
Winson Chungc9168342013-06-26 14:54:55 -07004170 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4171 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4172 PropertyValuesHolder.ofFloat("alpha", 1f),
4173 PropertyValuesHolder.ofFloat("scaleX", 1f),
4174 PropertyValuesHolder.ofFloat("scaleY", 1f));
4175 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4176 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004177 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004178 return bounceAnim;
4179 }
4180
Adam Cohen27772732013-11-11 14:00:56 +00004181 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004182 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004183 }
4184
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004185 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004186 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004187 }
4188
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004189 public void bindSearchablesChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004190 if (mSearchDropTargetBar == null) {
4191 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004192 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004193 if (mQsb != null) {
4194 mSearchDropTargetBar.removeView(mQsb);
4195 mQsb = null;
4196 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004197 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004198 }
4199
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004200 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004201 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4202 * multiple calls to bind the same list.)
4203 */
4204 @Thunk ArrayList<AppInfo> mTmpAppsList;
4205 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4206 public void run() {
4207 bindAllApplications(mTmpAppsList);
4208 mTmpAppsList = null;
4209 }
4210 };
4211
4212 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004213 * Add the icons for all apps.
4214 *
4215 * Implementation of the method from LauncherModel.Callbacks.
4216 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004217 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004218 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4219 mTmpAppsList = apps;
4220 return;
4221 }
4222
Winson Chungb745afb2015-03-02 11:51:23 -08004223 if (mAppsView != null) {
4224 mAppsView.setApps(apps);
4225 }
Adam Cohen9211d422014-10-07 18:14:53 -07004226 if (mLauncherCallbacks != null) {
4227 mLauncherCallbacks.bindAllApplications(apps);
4228 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004229 }
4230
4231 /**
4232 * A package was updated.
4233 *
4234 * Implementation of the method from LauncherModel.Callbacks.
4235 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004236 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004237 Runnable r = new Runnable() {
4238 public void run() {
4239 bindAppsUpdated(apps);
4240 }
4241 };
4242 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004243 return;
4244 }
4245
Winson Chungb745afb2015-03-02 11:51:23 -08004246 if (mAppsView != null) {
4247 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004248 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004249 }
4250
Sunny Goyal4390ace2014-10-13 11:33:11 -07004251 @Override
4252 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4253 Runnable r = new Runnable() {
4254 public void run() {
4255 bindWidgetsRestored(widgets);
4256 }
4257 };
4258 if (waitUntilResume(r)) {
4259 return;
4260 }
4261 mWorkspace.widgetsRestored(widgets);
4262 }
4263
Joe Onorato9c1289c2009-08-17 11:03:03 -04004264 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004265 * Some shortcuts were updated in the background.
4266 *
4267 * Implementation of the method from LauncherModel.Callbacks.
4268 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004269 @Override
4270 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4271 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004272 Runnable r = new Runnable() {
4273 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004274 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004275 }
4276 };
4277 if (waitUntilResume(r)) {
4278 return;
4279 }
4280
Sunny Goyal4390ace2014-10-13 11:33:11 -07004281 if (!updated.isEmpty()) {
4282 mWorkspace.updateShortcuts(updated);
4283 }
4284
4285 if (!removed.isEmpty()) {
4286 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4287 for (ShortcutInfo si : removed) {
4288 removedComponents.add(si.getTargetComponent());
4289 }
4290 mWorkspace.removeItemsByComponentName(removedComponents, user);
4291 // Notify the drag controller
4292 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004293 }
4294 }
4295
4296 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004297 * Update the state of a package, typically related to install state.
4298 *
4299 * Implementation of the method from LauncherModel.Callbacks.
4300 */
Sunny Goyale755d462014-07-22 13:48:29 -07004301 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004302 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4303 Runnable r = new Runnable() {
4304 public void run() {
4305 bindRestoreItemsChange(updates);
4306 }
4307 };
4308 if (waitUntilResume(r)) {
4309 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004310 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004311
Sunny Goyal756adbc2015-04-16 15:20:51 -07004312 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004313 }
4314
4315 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004316 * A package was uninstalled. We take both the super set of packageNames
4317 * in addition to specific applications to remove, the reason being that
4318 * this can be called when a package is updated as well. In that scenario,
4319 * we only remove specific components from the workspace, where as
4320 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004321 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004322 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004323 * Implementation of the method from LauncherModel.Callbacks.
4324 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004325 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004326 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004327 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004328 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004329 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004330 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004331 }
Winson Chungd64d1762013-08-20 14:37:16 -07004332 };
4333 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004334 return;
4335 }
4336
Sunny Goyal1a745e82014-10-02 15:58:31 -07004337 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004338 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4339 for (AppInfo info : appInfos) {
4340 removedComponents.add(info.componentName);
4341 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004342 if (!packageNames.isEmpty()) {
4343 mWorkspace.removeItemsByPackageName(packageNames, user);
4344 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004345 if (!removedComponents.isEmpty()) {
4346 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004347 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004348 // Notify the drag controller
4349 mDragController.onAppsRemoved(packageNames, removedComponents);
4350
Sunny Goyal1a745e82014-10-02 15:58:31 -07004351 } else {
4352 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004353 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004354
Winson Chungdf95eb12013-10-16 14:57:07 -07004355 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004356 if (mAppsView != null) {
4357 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004358 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004359 }
Joe Onoratobe386092009-11-17 17:32:16 -08004360
Michael Jurkac402cd92013-05-20 15:49:32 +02004361 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004362 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004363 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004364 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004365 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004366
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004367 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004368 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004369 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004370 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004371 return;
4372 }
4373
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004374 if (mWidgetsView != null && model != null) {
4375 mWidgetsView.addWidgets(model);
4376 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004377 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004378 }
4379
Winson Chung400438b2011-01-16 17:53:48 -08004380 private int mapConfigurationOriActivityInfoOri(int configOri) {
4381 final Display d = getWindowManager().getDefaultDisplay();
4382 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4383 switch (d.getRotation()) {
4384 case Surface.ROTATION_0:
4385 case Surface.ROTATION_180:
4386 // We are currently in the same basic orientation as the natural orientation
4387 naturalOri = configOri;
4388 break;
4389 case Surface.ROTATION_90:
4390 case Surface.ROTATION_270:
4391 // We are currently in the other basic orientation to the natural orientation
4392 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4393 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4394 break;
4395 }
4396
4397 int[] oriMap = {
4398 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4399 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4400 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4401 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4402 };
4403 // Since the map starts at portrait, we need to offset if this device's natural orientation
4404 // is landscape.
4405 int indexOffset = 0;
4406 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4407 indexOffset = 1;
4408 }
4409 return oriMap[(d.getRotation() + indexOffset) % 4];
4410 }
Adam Cohen446e9402011-09-15 18:21:21 -07004411
Winson Chung4b919f82012-05-01 10:44:08 -07004412 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004413 if (mRotationEnabled) {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004414 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
4415 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4416 .getConfiguration().orientation));
4417 } else {
4418 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4419 }
Winson Chung4b919f82012-05-01 10:44:08 -07004420 }
4421 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004422
Winson Chung4b919f82012-05-01 10:44:08 -07004423 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004424 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004425 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004426 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004427 } else {
4428 mHandler.postDelayed(new Runnable() {
4429 public void run() {
4430 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4431 }
4432 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004433 }
Winson Chung4b919f82012-05-01 10:44:08 -07004434 }
Winson Chung400438b2011-01-16 17:53:48 -08004435 }
4436
Winson Chunge43a1e72014-01-15 10:33:02 -08004437 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004438 if (mLauncherCallbacks != null) {
4439 return mLauncherCallbacks.isLauncherPreinstalled();
4440 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004441 PackageManager pm = getPackageManager();
4442 try {
4443 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4444 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4445 return true;
4446 } else {
4447 return false;
4448 }
4449 } catch (NameNotFoundException e) {
4450 e.printStackTrace();
4451 return false;
4452 }
4453 }
4454
Adam Cohenea90f832014-05-21 15:03:34 -07004455 /**
4456 * This method indicates whether or not we should suggest default wallpaper dimensions
4457 * when our wallpaper cropper was not yet used to set a wallpaper.
4458 */
4459 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004460 if (mLauncherCallbacks != null) {
4461 return mLauncherCallbacks.overrideWallpaperDimensions();
4462 }
Adam Cohenea90f832014-05-21 15:03:34 -07004463 return true;
4464 }
4465
Adam Cohen432609a2014-03-13 17:03:22 -07004466 /**
4467 * To be overridden by subclasses to indicate that there is an activity to launch
4468 * before showing the standard launcher experience.
4469 */
4470 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004471 if (mLauncherCallbacks != null) {
4472 return mLauncherCallbacks.hasFirstRunActivity();
4473 }
Adam Cohen432609a2014-03-13 17:03:22 -07004474 return false;
4475 }
4476
4477 /**
4478 * To be overridden by subclasses to launch any first run activity
4479 */
4480 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004481 if (mLauncherCallbacks != null) {
4482 return mLauncherCallbacks.getFirstRunActivity();
4483 }
Adam Cohen432609a2014-03-13 17:03:22 -07004484 return null;
4485 }
4486
Winson Chung2826a402015-04-17 16:18:53 -07004487 /**
4488 * Returns whether the launcher callbacks overrides search in all apps.
Winson Chung2826a402015-04-17 16:18:53 -07004489 */
4490 @Thunk boolean isAllAppsSearchOverridden() {
Winson Chung83f59ab2015-05-05 17:21:58 -07004491 if (DISABLE_ALL_APPS_SEARCH_INTEGRATION) {
4492 return false;
4493 }
4494
Winson Chung2826a402015-04-17 16:18:53 -07004495 if (mLauncherCallbacks != null) {
4496 return mLauncherCallbacks.overrideAllAppsSearch();
4497 }
4498 return false;
4499 }
4500
Winson Chunga6945242014-01-08 14:04:34 -08004501 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004502 return !ActivityManager.isRunningInTestHarness() &&
4503 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004504 }
4505
Adam Cohen4a9423d2014-03-28 14:22:31 -07004506 protected boolean hasRunFirstRunActivity() {
4507 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4508 }
4509
Adam Cohen432609a2014-03-13 17:03:22 -07004510 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004511 if (shouldRunFirstRunActivity() &&
4512 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004513 Intent firstRunIntent = getFirstRunActivity();
4514 if (firstRunIntent != null) {
4515 startActivity(firstRunIntent);
4516 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004517 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004518 }
4519 }
Adam Cohen432609a2014-03-13 17:03:22 -07004520 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004521 }
4522
4523 private void markFirstRunActivityShown() {
4524 SharedPreferences.Editor editor = mSharedPrefs.edit();
4525 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4526 editor.apply();
4527 }
4528
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004529 private void showSettingsActivity() {
4530 startActivity(new Intent(this, SettingsActivity.class));
4531 }
4532
Adam Cohen432609a2014-03-13 17:03:22 -07004533 /**
4534 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4535 * screen that must be displayed and dismissed.
4536 */
4537 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004538 if (mLauncherCallbacks != null) {
4539 return mLauncherCallbacks.hasDismissableIntroScreen();
4540 }
Adam Cohen432609a2014-03-13 17:03:22 -07004541 return false;
4542 }
4543
4544 /**
4545 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4546 */
4547 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004548 if (mLauncherCallbacks != null) {
4549 return mLauncherCallbacks.getIntroScreen();
4550 }
Adam Cohen432609a2014-03-13 17:03:22 -07004551 return null;
4552 }
4553
4554 /**
4555 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4556 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4557 */
4558 private boolean shouldShowIntroScreen() {
4559 return hasDismissableIntroScreen() &&
4560 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4561 }
4562
4563 protected void showIntroScreen() {
4564 View introScreen = getIntroScreen();
4565 changeWallpaperVisiblity(false);
4566 if (introScreen != null) {
4567 mDragLayer.showOverlayView(introScreen);
4568 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004569 if (mLauncherOverlayContainer != null) {
4570 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4571 }
Adam Cohen432609a2014-03-13 17:03:22 -07004572 }
4573
4574 public void dismissIntroScreen() {
4575 markIntroScreenDismissed();
4576 if (showFirstRunActivity()) {
4577 // We delay hiding the intro view until the first run activity is showing. This
4578 // avoids a blip.
4579 mWorkspace.postDelayed(new Runnable() {
4580 @Override
4581 public void run() {
4582 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004583 if (mLauncherOverlayContainer != null) {
4584 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4585 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004586 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004587 }
4588 }, ACTIVITY_START_DELAY);
4589 } else {
4590 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004591 if (mLauncherOverlayContainer != null) {
4592 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4593 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004594 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004595 }
4596 changeWallpaperVisiblity(true);
4597 }
4598
4599 private void markIntroScreenDismissed() {
4600 SharedPreferences.Editor editor = mSharedPrefs.edit();
4601 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4602 editor.apply();
4603 }
4604
Adam Cohen091440a2015-03-18 14:16:05 -07004605 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004606 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4607 // on the device, then we always show the first run cling experience (or if there is no
4608 // launcher2). Otherwise, we prompt the user upon started for migration
4609 LauncherClings launcherClings = new LauncherClings(this);
4610 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4611 if (mModel.canMigrateFromOldLauncherDb(this)) {
4612 launcherClings.showMigrationCling();
4613 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004614 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004615 }
4616 }
4617 }
4618
Winson Chunga6945242014-01-08 14:04:34 -08004619 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004620 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4621 if (mHotseat != null) mHotseat.setAlpha(1f);
4622 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
4623 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004624 }
4625
4626 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004627 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4628 if (mHotseat != null) mHotseat.setAlpha(0f);
4629 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
4630 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004631 }
4632
Mathew Inwood72fbec12013-11-19 15:45:07 +00004633 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Kenny Guyed131872014-04-30 03:02:21 +01004634 // Called from search suggestion, not supported in other profiles.
4635 final UserHandleCompat myUser = UserHandleCompat.myUserHandle();
4636 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
4637 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(appLaunchIntent,
4638 myUser);
4639 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004640 return null;
4641 }
Sunny Goyal4fbc3822015-02-18 16:46:50 -08004642 return new AppInfo(this, activityInfo, myUser, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004643 }
4644
4645 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4646 Bitmap icon) {
Kenny Guyed131872014-04-30 03:02:21 +01004647 // Called from search suggestion, not supported in other profiles.
4648 return createShortcutDragInfo(shortcutIntent, caption, icon,
4649 UserHandleCompat.myUserHandle());
4650 }
4651
4652 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4653 Bitmap icon, UserHandleCompat user) {
Kenny Guyc2bd8102014-06-30 12:30:31 +01004654 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyd6fe5262014-07-21 17:11:41 +01004655 CharSequence contentDescription = userManager.getBadgedLabelForUser(caption, user);
Kenny Guyc2bd8102014-06-30 12:30:31 +01004656 return new ShortcutInfo(shortcutIntent, caption, contentDescription, icon, user);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004657 }
4658
Mathew Inwoodb90860a2014-04-11 17:17:39 +01004659 protected void moveWorkspaceToDefaultScreen() {
4660 mWorkspace.moveToDefaultScreen(false);
4661 }
4662
Mathew Inwood72fbec12013-11-19 15:45:07 +00004663 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4664 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004665 mWorkspace.onExternalDragStartedWithItem(dragView);
4666 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004667 }
4668
Anjali Koppalf5d29132014-02-28 13:33:27 -08004669 @Override
4670 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004671 if (mLauncherCallbacks != null) {
4672 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4673 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004674 }
4675
Winson Chung80baf5a2010-08-09 16:03:15 -07004676 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004677 * Prints out out state for debugging.
4678 */
4679 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004680 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004681 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004682 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4683 Log.d(TAG, "mRestoring=" + mRestoring);
4684 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4685 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004686 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004687 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004688 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004689
Daniel Sandler325dc232013-06-05 22:57:57 -04004690 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004691 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004692
4693 @Override
4694 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4695 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004696 synchronized (sDumpLogs) {
4697 writer.println(" ");
4698 writer.println("Debug logs: ");
4699 for (int i = 0; i < sDumpLogs.size(); i++) {
4700 writer.println(" " + sDumpLogs.get(i));
4701 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004702 }
Adam Cohen9211d422014-10-07 18:14:53 -07004703 if (mLauncherCallbacks != null) {
4704 mLauncherCallbacks.dump(prefix, fd, writer, args);
4705 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004706 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004707
4708 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004709 if (DEBUG_DUMP_LOG) {
4710 synchronized (sDumpLogs) {
4711 Log.d(TAG, "");
4712 Log.d(TAG, "*********************");
4713 Log.d(TAG, "Launcher debug logs: ");
4714 for (int i = 0; i < sDumpLogs.size(); i++) {
4715 Log.d(TAG, " " + sDumpLogs.get(i));
4716 }
4717 Log.d(TAG, "*********************");
4718 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004719 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004720 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004721 }
4722
4723 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004724 addDumpLog(tag, log, null, debugLog);
4725 }
4726
4727 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004728 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004729 if (e != null) {
4730 Log.d(tag, log, e);
4731 } else {
4732 Log.d(tag, log);
4733 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004734 }
Winson Chungede41292013-09-19 16:27:36 -07004735 if (DEBUG_DUMP_LOG) {
4736 sDateStamp.setTime(System.currentTimeMillis());
4737 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004738 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4739 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004740 }
Winson Chungede41292013-09-19 16:27:36 -07004741 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004742 }
4743
Adam Cohen59400422014-03-05 18:07:04 -08004744 public static CustomAppWidget getCustomAppWidget(String name) {
4745 return sCustomAppWidgets.get(name);
4746 }
4747
4748 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4749 return sCustomAppWidgets;
4750 }
4751
Winson Chungede41292013-09-19 16:27:36 -07004752 public void dumpLogsToLocalData() {
4753 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004754 new AsyncTask<Void, Void, Void>() {
4755 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004756 boolean success = false;
4757 sDateStamp.setTime(sRunStart);
4758 String FILENAME = sDateStamp.getMonth() + "-"
4759 + sDateStamp.getDay() + "_"
4760 + sDateStamp.getHours() + "-"
4761 + sDateStamp.getMinutes() + "_"
4762 + sDateStamp.getSeconds() + ".txt";
4763
4764 FileOutputStream fos = null;
4765 File outFile = null;
4766 try {
4767 outFile = new File(getFilesDir(), FILENAME);
4768 outFile.createNewFile();
4769 fos = new FileOutputStream(outFile);
4770 } catch (Exception e) {
4771 e.printStackTrace();
4772 }
4773 if (fos != null) {
4774 PrintWriter writer = new PrintWriter(fos);
4775
4776 writer.println(" ");
4777 writer.println("Debug logs: ");
4778 synchronized (sDumpLogs) {
4779 for (int i = 0; i < sDumpLogs.size(); i++) {
4780 writer.println(" " + sDumpLogs.get(i));
4781 }
4782 }
4783 writer.close();
4784 }
4785 try {
4786 if (fos != null) {
4787 fos.close();
4788 success = true;
4789 }
4790 } catch (IOException e) {
4791 e.printStackTrace();
4792 }
Michael Jurka43467462013-11-14 12:03:58 +01004793 return null;
Winson Chungede41292013-09-19 16:27:36 -07004794 }
Michael Jurka43467462013-11-14 12:03:58 +01004795 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004796 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004797 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004798}
Michael Jurka2763be32011-02-24 11:19:57 -08004799
Dan Sandlerd5024042014-01-09 15:01:33 -05004800interface DebugIntents {
4801 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4802 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004803}