blob: 4ae9c7d26c7dbbaa0987bce3ebd890fcc28664ee [file] [log] [blame]
Michael Jurka01f0ed42010-08-20 00:41:17 -07001
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002/*
3 * Copyright (C) 2008 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
Joe Onoratoa5902522009-07-30 13:37:37 -070018package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019
Michael Jurka974c3862012-05-22 22:00:31 -070020import android.accounts.Account;
21import android.accounts.AccountManager;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070022import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080023import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070025import android.animation.ObjectAnimator;
26import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070027import android.animation.ValueAnimator;
Winson Chung70442722012-02-10 15:43:22 -080028import android.animation.ValueAnimator.AnimatorUpdateListener;
Michael Jurka946ad472010-07-09 18:05:18 -070029import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070030import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070031import android.app.ActivityOptions;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080033import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070034import android.appwidget.AppWidgetManager;
35import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080037import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080038import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040039import android.content.ComponentName;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080040import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Context;
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;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070047import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070049import android.content.res.Resources;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080050import android.database.ContentObserver;
Adam Cohen268c4752012-06-06 17:47:33 -070051import android.graphics.Bitmap;
52import android.graphics.Canvas;
53import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070054import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040056import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070057import android.os.AsyncTask;
Adam Cohen9e05a5e2012-09-10 15:53:09 -070058import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080059import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020060import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080061import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070062import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070063import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040064import android.os.SystemClock;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070065import android.provider.Settings;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080066import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067import android.text.Selection;
68import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070069import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070071import android.util.Log;
Winson Chung400438b2011-01-16 17:53:48 -080072import android.view.Display;
Joe Onorato0d44e942009-11-16 18:20:51 -080073import android.view.HapticFeedbackConstants;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080074import android.view.KeyEvent;
75import android.view.LayoutInflater;
76import android.view.Menu;
77import android.view.MenuItem;
Michael Jurka0e260592010-06-30 17:07:39 -070078import android.view.MotionEvent;
Winson Chung400438b2011-01-16 17:53:48 -080079import android.view.Surface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080import android.view.View;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080081import android.view.View.OnLongClickListener;
Winson Chung82f55532011-08-09 14:14:23 -070082import android.view.ViewGroup;
Michael Jurkab737ee62011-11-15 15:57:22 -080083import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080084import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Dianne Hackbornbb003a52011-08-30 14:40:07 -070085import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080086import android.view.accessibility.AccessibilityEvent;
Adam Cohencff6af82011-09-13 14:51:53 -070087import android.view.animation.AccelerateDecelerateInterpolator;
Winson Chung7a74ac92011-09-20 17:43:51 -070088import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080089import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090import android.view.inputmethod.InputMethodManager;
Adam Cohended9f8d2010-11-03 13:25:16 -070091import android.widget.Advanceable;
Michael Jurkaaf442092010-06-10 17:01:57 -070092import android.widget.ImageView;
Winson Chung68846fd2010-10-29 11:00:27 -070093import android.widget.TextView;
94import android.widget.Toast;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070095
Adam Cohendf2cc412011-04-27 16:56:57 -070096import com.android.common.Search;
97import com.android.launcher.R;
Adam Cohen558baaf2011-08-15 15:22:57 -070098import com.android.launcher2.DropTarget.DragObject;
Romain Guyedcce092010-03-04 13:03:17 -080099
Adam Cohenc0dcf592011-06-01 15:30:43 -0700100import java.io.DataInputStream;
101import java.io.DataOutputStream;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700102import java.io.FileDescriptor;
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700103import java.io.FileInputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700104import java.io.FileNotFoundException;
105import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700106import java.io.PrintWriter;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700107import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700108import java.util.Collection;
109import java.util.Collections;
110import java.util.Comparator;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700111import java.util.HashMap;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700112import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700113import java.util.List;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700114import java.util.Set;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700115
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800116/**
117 * Default launcher application.
118 */
Michael Jurka946ad472010-07-09 18:05:18 -0700119public final class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700120 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chungcd810732012-06-18 16:45:43 -0700121 View.OnTouchListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800122 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700123 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800124
Joe Onorato9c1289c2009-08-17 11:03:03 -0400125 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400126 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700127 static final boolean DEBUG_STRICT_MODE = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700128
Winson Chung70d72102011-08-12 11:24:35 -0700129 private static final int MENU_GROUP_WALLPAPER = 1;
130 private static final int MENU_WALLPAPER_SETTINGS = Menu.FIRST + 1;
131 private static final int MENU_MANAGE_APPS = MENU_WALLPAPER_SETTINGS + 1;
Winson Chung236d4312011-08-22 15:12:27 -0700132 private static final int MENU_SYSTEM_SETTINGS = MENU_MANAGE_APPS + 1;
133 private static final int MENU_HELP = MENU_SYSTEM_SETTINGS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800134
135 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700136 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800137 private static final int REQUEST_PICK_APPLICATION = 6;
138 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700139 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700140 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800141
Michael Jurka8b805b12012-04-18 14:23:14 -0700142 private static final int REQUEST_BIND_APPWIDGET = 11;
143
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800144 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
145
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800146 static final int SCREEN_COUNT = 5;
147 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800148
Romain Guy98d01652009-06-30 16:21:04 -0700149 private static final String PREFERENCES = "launcher.preferences";
Michael Jurkaf3bade62012-06-12 11:00:21 -0700150 static final String FORCE_ENABLE_ROTATION_PROPERTY = "debug.force_enable_rotation";
151 static final String DUMP_STATE_PROPERTY = "debug.dumpstate";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800152
Winson Chung2672ff92012-05-04 16:22:30 -0700153 // The Intent extra that defines whether to ignore the launch animation
154 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
155 "com.android.launcher.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
156
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800157 // Type: int
158 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700159 // Type: int
160 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800161 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700162 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
163 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800164 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
165 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700166 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800167 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700168 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169 // Type: boolean
170 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
171 // Type: long
172 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700173 // Type: int
174 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
175 // Type: int
176 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
177 // Type: parcelable
178 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700180 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700181 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
182 "com.android.launcher.toolbar_search_icon";
183 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
184 "com.android.launcher.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700185
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700186 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700187 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700188 private State mState = State.WORKSPACE;
189 private AnimatorSet mStateAnimation;
Michael Jurkab737ee62011-11-15 15:57:22 -0800190 private AnimatorSet mDividerAnimator;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700191
Joe Onorato9c1289c2009-08-17 11:03:03 -0400192 static final int APPWIDGET_HOST_ID = 1024;
Winson Chung557d6ed2011-07-08 15:34:52 -0700193 private static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
194 private static final int EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT = 600;
Winson Chung7a74ac92011-09-20 17:43:51 -0700195 private static final int SHOW_CLING_DURATION = 550;
Winson Chung7d7541e2011-09-16 20:14:36 -0700196 private static final int DISMISS_CLING_DURATION = 250;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800197
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800198 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800199 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800200
Winson Chunga2413752012-04-03 14:22:34 -0700201 // How long to wait before the new-shortcut animation automatically pans the workspace
202 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 10;
203
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800204 private final BroadcastReceiver mCloseSystemDialogsReceiver
205 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800206 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
207
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800208 private LayoutInflater mInflater;
209
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800210 private Workspace mWorkspace;
Michael Jurkab737ee62011-11-15 15:57:22 -0800211 private View mQsbDivider;
212 private View mDockDivider;
213 private DragLayer mDragLayer;
214 private DragController mDragController;
Romain Guycbb89e42009-06-08 15:52:54 -0700215
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700216 private AppWidgetManager mAppWidgetManager;
217 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700218
Michael Jurkac9d95c52011-08-29 14:03:34 -0700219 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700220 private AppWidgetProviderInfo mPendingAddWidgetInfo;
221
Michael Jurka0280c3b2010-09-17 15:00:07 -0700222 private int[] mTmpAddItemCellCoordinates = new int[2];
223
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800224 private FolderInfo mFolderInfo;
225
Winson Chung3d503fb2011-07-13 17:25:49 -0700226 private Hotseat mHotseat;
Michael Jurka838a4ca2011-02-07 13:33:06 -0800227 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700228
Winson Chungc51db6a2011-10-05 11:44:49 -0700229 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700230 private AppsCustomizeTabHost mAppsCustomizeTabHost;
231 private AppsCustomizePagedView mAppsCustomizeContent;
232 private boolean mAutoAdvanceRunning = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800233
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800234 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700235 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
236 // scroll issues (because the workspace may not have been measured yet) and extra work.
237 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
238 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800239
240 private SpannableStringBuilder mDefaultKeySsb = null;
241
Joe Onorato9c1289c2009-08-17 11:03:03 -0400242 private boolean mWorkspaceLoading = true;
243
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800244 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800245 private boolean mRestoring;
246 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700247 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800248
Winson Chung4a2afa32012-07-19 14:53:05 -0700249 // Keep track of whether the user has left launcher
250 private static boolean sPausedFromUserAction = false;
251
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800252 private Bundle mSavedInstanceState;
253
Joe Onorato9c1289c2009-08-17 11:03:03 -0400254 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800255 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800256 private boolean mUserPresent = true;
257 private boolean mVisible = false;
258 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400259
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700260 private static LocaleConfiguration sLocaleConfiguration = null;
261
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700262 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700263
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700264 private Intent mAppMarketIntent = null;
265
Adam Cohended9f8d2010-11-03 13:25:16 -0700266 // Related to the auto-advancing of widgets
267 private final int ADVANCE_MSG = 1;
268 private final int mAdvanceInterval = 20000;
269 private final int mAdvanceStagger = 250;
270 private long mAutoAdvanceSentTime;
271 private long mAutoAdvanceTimeLeft = -1;
272 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
273 new HashMap<View, AppWidgetProviderInfo>();
274
Winson Chung400438b2011-01-16 17:53:48 -0800275 // Determines how long to wait after a rotation before restoring the screen orientation to
276 // match the sensor state.
277 private final int mRestoreScreenOrientationDelay = 500;
278
Michael Jurka4ef207b2010-11-29 17:05:45 -0800279 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700280 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
281 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
282 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800283
Adam Cohen1462de32012-07-24 22:34:36 -0700284 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
285
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700286 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
287
Winson Chung46353de2012-02-16 14:05:10 -0800288 // We only want to get the SharedPreferences once since it does an FS stat each time we get
289 // it from the context.
290 private SharedPreferences mSharedPrefs;
291
Winson Chungf0c6ae02012-03-21 16:10:31 -0700292 // Holds the page that we need to animate to, and the icon views that we need to animate up
293 // when we scroll to that page on resume.
294 private int mNewShortcutAnimatePage = -1;
295 private ArrayList<View> mNewShortcutAnimateViews = new ArrayList<View>();
Adam Cohen268c4752012-06-06 17:47:33 -0700296 private ImageView mFolderIconImageView;
297 private Bitmap mFolderIconBitmap;
298 private Canvas mFolderIconCanvas;
299 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700300
Michael Jurkaddd62e92011-02-16 17:49:14 -0800301 private BubbleTextView mWaitingForResume;
302
Michael Jurkac1f5d262011-09-30 19:32:27 -0700303 private Runnable mBuildLayersRunnable = new Runnable() {
304 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700305 if (mWorkspace != null) {
306 mWorkspace.buildPageHardwareLayers();
307 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700308 }
309 };
310
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800311 private static ArrayList<PendingAddArguments> sPendingAddList
312 = new ArrayList<PendingAddArguments>();
313
314 private static class PendingAddArguments {
315 int requestCode;
316 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700317 long container;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800318 int screen;
319 int cellX;
320 int cellY;
321 }
322
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700323
324 private boolean doesFileExist(String filename) {
325 FileInputStream fis = null;
326 try {
327 fis = openFileInput(filename);
328 fis.close();
329 return true;
330 } catch (java.io.FileNotFoundException e) {
331 return false;
332 } catch (java.io.IOException e) {
333 return true;
334 }
335 }
336
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800337 @Override
338 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700339 if (DEBUG_STRICT_MODE) {
340 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
341 .detectDiskReads()
342 .detectDiskWrites()
343 .detectNetwork() // or .detectAll() for all detectable problems
344 .penaltyLog()
345 .build());
346 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
347 .detectLeakedSqlLiteObjects()
348 .detectLeakedClosableObjects()
349 .penaltyLog()
350 .penaltyDeath()
351 .build());
352 }
353
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800354 super.onCreate(savedInstanceState);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800355 LauncherApplication app = ((LauncherApplication)getApplication());
Winson Chungf0c6ae02012-03-21 16:10:31 -0700356 mSharedPrefs = getSharedPreferences(LauncherApplication.getSharedPreferencesKey(),
357 Context.MODE_PRIVATE);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800358 mModel = app.setLauncher(this);
359 mIconCache = app.getIconCache();
Joe Onorato41a12d22009-10-31 18:30:00 -0400360 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800361 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700362
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700363 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700364 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
365 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700366
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700367 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
368 // this also ensures that any synchronous binding below doesn't re-trigger another
369 // LauncherModel load.
370 mPaused = false;
371
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800372 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200373 android.os.Debug.startMethodTracing(
374 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800375 }
376
377 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800378 setContentView(R.layout.launcher);
379 setupViews();
Winson Chung7d7541e2011-09-16 20:14:36 -0700380 showFirstRunWorkspaceCling();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800381
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800382 registerContentObservers();
383
Joe Onorato7c312c12009-08-13 21:36:53 -0700384 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700385
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800386 mSavedState = savedInstanceState;
387 restoreState(mSavedState);
388
Winson Chunga12a2502010-12-20 14:41:35 -0800389 // Update customization drawer _after_ restoring the states
Winson Chung785d2eb2011-04-14 16:08:02 -0700390 if (mAppsCustomizeContent != null) {
391 mAppsCustomizeContent.onPackagesUpdated();
392 }
Winson Chunga12a2502010-12-20 14:41:35 -0800393
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800394 if (PROFILE_STARTUP) {
395 android.os.Debug.stopMethodTracing();
396 }
397
398 if (!mRestoring) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700399 if (sPausedFromUserAction) {
400 // If the user leaves launcher, then we should just load items asynchronously when
401 // they return.
402 mModel.startLoader(true, -1);
403 } else {
404 // We only load the page synchronously if the user rotates (or triggers a
405 // configuration change) while launcher is in the foreground
406 mModel.startLoader(true, mWorkspace.getCurrentPage());
407 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800408 }
409
Michael Jurkac57b7a82011-08-09 22:02:20 -0700410 if (!mModel.isAllAppsLoaded()) {
411 ViewGroup appsCustomizeContentParent = (ViewGroup) mAppsCustomizeContent.getParent();
412 mInflater.inflate(R.layout.apps_customize_progressbar, appsCustomizeContentParent);
413 }
414
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800415 // For handling default keys
416 mDefaultKeySsb = new SpannableStringBuilder();
417 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800418
419 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
420 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800421
Adam Cohenf9426d52012-06-04 17:26:21 -0700422 updateGlobalIcons();
423
424 // On large interfaces, we want the screen to auto-rotate based on the current orientation
425 unlockScreenOrientation(true);
426 }
427
Winson Chung4a2afa32012-07-19 14:53:05 -0700428 protected void onUserLeaveHint() {
429 super.onUserLeaveHint();
430 sPausedFromUserAction = true;
431 }
432
Adam Cohenf9426d52012-06-04 17:26:21 -0700433 private void updateGlobalIcons() {
Winson Chungc51db6a2011-10-05 11:44:49 -0700434 boolean searchVisible = false;
435 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800436 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700437 int coi = getCurrentOrientationIndexForGlobalIcons();
438 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
439 sAppMarketIcon[coi] == null) {
Winson Chungc51db6a2011-10-05 11:44:49 -0700440 updateAppMarketIcon();
441 searchVisible = updateGlobalSearchIcon();
442 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700443 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700444 if (sGlobalSearchIcon[coi] != null) {
445 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700446 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700447 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700448 if (sVoiceSearchIcon[coi] != null) {
449 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700450 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700451 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700452 if (sAppMarketIcon[coi] != null) {
453 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800454 }
Winson Chungadf0c182012-08-23 14:59:07 -0700455 if (mSearchDropTargetBar != null) {
456 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
457 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800458 }
Romain Guycbb89e42009-06-08 15:52:54 -0700459
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800460 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700461 if (sLocaleConfiguration == null) {
462 new AsyncTask<Void, Void, LocaleConfiguration>() {
463 @Override
464 protected LocaleConfiguration doInBackground(Void... unused) {
465 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
466 readConfiguration(Launcher.this, localeConfiguration);
467 return localeConfiguration;
468 }
469
470 @Override
471 protected void onPostExecute(LocaleConfiguration result) {
472 sLocaleConfiguration = result;
473 checkForLocaleChange(); // recursive, but now with a locale configuration
474 }
475 }.execute();
476 return;
477 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700478
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800479 final Configuration configuration = getResources().getConfiguration();
480
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700481 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800482 final String locale = configuration.locale.toString();
483
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700484 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800485 final int mcc = configuration.mcc;
486
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700487 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800488 final int mnc = configuration.mnc;
489
Romain Guy84f296c2009-11-04 15:00:44 -0800490 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800491
Romain Guy84f296c2009-11-04 15:00:44 -0800492 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700493 sLocaleConfiguration.locale = locale;
494 sLocaleConfiguration.mcc = mcc;
495 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700496
Joe Onorato0589f0f2010-02-08 13:44:00 -0800497 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700498
499 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
500 new Thread("WriteLocaleConfiguration") {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700501 @Override
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700502 public void run() {
503 writeConfiguration(Launcher.this, localeConfiguration);
504 }
505 }.start();
Romain Guy98d01652009-06-30 16:21:04 -0700506 }
507 }
508
509 private static class LocaleConfiguration {
510 public String locale;
511 public int mcc = -1;
512 public int mnc = -1;
513 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700514
Romain Guy98d01652009-06-30 16:21:04 -0700515 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
516 DataInputStream in = null;
517 try {
518 in = new DataInputStream(context.openFileInput(PREFERENCES));
519 configuration.locale = in.readUTF();
520 configuration.mcc = in.readInt();
521 configuration.mnc = in.readInt();
522 } catch (FileNotFoundException e) {
523 // Ignore
524 } catch (IOException e) {
525 // Ignore
526 } finally {
527 if (in != null) {
528 try {
529 in.close();
530 } catch (IOException e) {
531 // Ignore
532 }
533 }
534 }
535 }
536
537 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
538 DataOutputStream out = null;
539 try {
540 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
541 out.writeUTF(configuration.locale);
542 out.writeInt(configuration.mcc);
543 out.writeInt(configuration.mnc);
544 out.flush();
545 } catch (FileNotFoundException e) {
546 // Ignore
547 } catch (IOException e) {
548 //noinspection ResultOfMethodCallIgnored
549 context.getFileStreamPath(PREFERENCES).delete();
550 } finally {
551 if (out != null) {
552 try {
553 out.close();
554 } catch (IOException e) {
555 // Ignore
556 }
557 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800558 }
559 }
560
Adam Cohen716b51e2011-06-30 12:09:54 -0700561 public DragLayer getDragLayer() {
562 return mDragLayer;
563 }
564
Winson Chung36a62fe2012-05-06 18:04:42 -0700565 boolean isDraggingEnabled() {
566 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
567 // that is subsequently removed from the workspace in startBinding().
568 return !mModel.isLoadingWorkspace();
569 }
570
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800571 static int getScreen() {
572 synchronized (sLock) {
573 return sScreen;
574 }
575 }
576
577 static void setScreen(int screen) {
578 synchronized (sLock) {
579 sScreen = screen;
580 }
581 }
582
Winson Chung557d6ed2011-07-08 15:34:52 -0700583 /**
584 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
585 * a configuration step, this allows the proper animations to run after other transitions.
586 */
587 private boolean completeAdd(PendingAddArguments args) {
Winson Chungb8472bb2011-08-05 13:49:21 -0700588 boolean result = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800589 switch (args.requestCode) {
590 case REQUEST_PICK_APPLICATION:
Winson Chung3d503fb2011-07-13 17:25:49 -0700591 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
592 args.cellY);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800593 break;
594 case REQUEST_PICK_SHORTCUT:
595 processShortcut(args.intent);
596 break;
597 case REQUEST_CREATE_SHORTCUT:
Winson Chung3d503fb2011-07-13 17:25:49 -0700598 completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
599 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700600 result = true;
601 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800602 case REQUEST_CREATE_APPWIDGET:
603 int appWidgetId = args.intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Adam Cohened66b2b2012-01-23 17:28:51 -0800604 completeAddAppWidget(appWidgetId, args.container, args.screen, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700605 result = true;
606 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800607 case REQUEST_PICK_WALLPAPER:
608 // We just wanted the activity result here so we can clear mWaitingForResult
609 break;
610 }
Michael Jurka27614d22012-04-02 06:40:22 -0700611 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
612 // if you turned the screen off and then back while in All Apps, Launcher would not
613 // return to the workspace. Clearing mAddInfo.container here fixes this issue
614 resetAddInfo();
Winson Chungb8472bb2011-08-05 13:49:21 -0700615 return result;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800616 }
617
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800618 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700619 protected void onActivityResult(
620 final int requestCode, final int resultCode, final Intent data) {
621 if (requestCode == REQUEST_BIND_APPWIDGET) {
622 int appWidgetId = data != null ?
623 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
624 if (resultCode == RESULT_CANCELED) {
625 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
626 } else if (resultCode == RESULT_OK) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700627 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null, mPendingAddWidgetInfo);
Michael Jurka8b805b12012-04-18 14:23:14 -0700628 }
629 return;
630 }
Winson Chung557d6ed2011-07-08 15:34:52 -0700631 boolean delayExitSpringLoadedMode = false;
Adam Cohened66b2b2012-01-23 17:28:51 -0800632 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
633 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700634 mWaitingForResult = false;
635
Adam Cohened66b2b2012-01-23 17:28:51 -0800636 // We have special handling for widgets
637 if (isWidgetDrop) {
638 int appWidgetId = data != null ?
639 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
Winson Chung5aaab772012-04-27 15:24:02 -0700640 if (appWidgetId < 0) {
641 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not returned from the \\" +
642 "widget configuration activity.");
643 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
644 } else {
645 completeTwoStageWidgetDrop(resultCode, appWidgetId);
646 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800647 return;
648 }
649
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800650 // The pattern used here is that a user PICKs a specific application,
651 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700652
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800653 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
654 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700655 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800656 final PendingAddArguments args = new PendingAddArguments();
657 args.requestCode = requestCode;
658 args.intent = data;
Winson Chung3d503fb2011-07-13 17:25:49 -0700659 args.container = mPendingAddInfo.container;
660 args.screen = mPendingAddInfo.screen;
661 args.cellX = mPendingAddInfo.cellX;
662 args.cellY = mPendingAddInfo.cellY;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800663 if (isWorkspaceLocked()) {
664 sPendingAddList.add(args);
665 } else {
Winson Chung557d6ed2011-07-08 15:34:52 -0700666 delayExitSpringLoadedMode = completeAdd(args);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800667 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800668 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800669 mDragLayer.clearAnimatedView();
Winson Chung557d6ed2011-07-08 15:34:52 -0700670 // Exit spring loaded mode if necessary after cancelling the configuration of a widget
Adam Cohened66b2b2012-01-23 17:28:51 -0800671 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), delayExitSpringLoadedMode,
672 null);
673 }
674
675 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700676 CellLayout cellLayout =
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700677 (CellLayout) mWorkspace.getChildAt(mPendingAddInfo.screen);
Adam Cohened66b2b2012-01-23 17:28:51 -0800678 Runnable onCompleteRunnable = null;
679 int animationType = 0;
680
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700681 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800682 if (resultCode == RESULT_OK) {
683 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
684 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700685 mPendingAddWidgetInfo);
686 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800687 onCompleteRunnable = new Runnable() {
688 @Override
689 public void run() {
690 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
691 mPendingAddInfo.screen, layout, null);
692 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
693 null);
694 }
695 };
696 } else if (resultCode == RESULT_CANCELED) {
697 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
698 onCompleteRunnable = new Runnable() {
699 @Override
700 public void run() {
701 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
702 null);
703 }
704 };
705 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700706 if (mDragLayer.getAnimatedView() != null) {
707 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
708 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
709 animationType, boundWidget, true);
710 } else {
711 // The animated view may be null in the case of a rotation during widget configuration
712 onCompleteRunnable.run();
713 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800714 }
715
716 @Override
717 protected void onResume() {
718 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700719
Winson Chung4a2afa32012-07-19 14:53:05 -0700720 // Restore the previous launcher state
721 if (mOnResumeState == State.WORKSPACE) {
722 showWorkspace(false);
723 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
724 showAllApps(false);
725 }
726 mOnResumeState = State.NONE;
727
Winson Chungde0fb8f2012-05-08 14:37:08 -0700728 // Process any items that were added while Launcher was away
729 InstallShortcutReceiver.flushInstallQueue(this);
730
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800731 mPaused = false;
Winson Chung4a2afa32012-07-19 14:53:05 -0700732 sPausedFromUserAction = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700733 if (mRestoring || mOnResumeNeedsLoad) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400734 mWorkspaceLoading = true;
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700735 mModel.startLoader(true, -1);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400736 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700737 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800738 }
Winson Chunge4e50662012-01-23 14:45:13 -0800739
740 // Reset the pressed state of icons that were locked in the press state while activities
741 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800742 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800743 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -0800744 mWaitingForResume.setStayPressed(false);
745 }
Winson Chunge4e50662012-01-23 14:45:13 -0800746 if (mAppsCustomizeContent != null) {
747 // Resets the previous all apps icon press state
748 mAppsCustomizeContent.resetDrawableState();
749 }
Adam Cohen06dff352012-06-01 17:17:08 -0700750 // It is possible that widgets can receive updates while launcher is not in the foreground.
751 // Consequently, the widgets will be inflated in the orientation of the foreground activity
752 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
753 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -0700754 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -0700755
756 // Again, as with the above scenario, it's possible that one or more of the global icons
757 // were updated in the wrong orientation.
758 updateGlobalIcons();
Adam Cohen06dff352012-06-01 17:17:08 -0700759 }
760
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800761 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700762 protected void onPause() {
Winson Chungca889b32012-05-07 15:34:34 -0700763 // NOTE: We want all transitions from launcher to act as if the wallpaper were enabled
764 // to be consistent. So re-enable the flag here, and we will re-disable it as necessary
765 // when Launcher resumes and we are still in AllApps.
766 updateWallpaperVisibility(true);
767
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700768 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700769 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800770 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -0700771 mDragController.resetLastGestureUpTime();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700772 }
Romain Guycbb89e42009-06-08 15:52:54 -0700773
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700774 @Override
775 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400776 // Flag the loader to stop early before switching
777 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -0700778 if (mAppsCustomizeContent != null) {
779 mAppsCustomizeContent.surrender();
780 }
Romain Guy13c2e7b2010-03-10 19:45:00 -0800781 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700782 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700783
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800784 // We can't hide the IME if it was forced open. So don't bother
785 /*
786 @Override
787 public void onWindowFocusChanged(boolean hasFocus) {
788 super.onWindowFocusChanged(hasFocus);
789
790 if (hasFocus) {
791 final InputMethodManager inputManager = (InputMethodManager)
792 getSystemService(Context.INPUT_METHOD_SERVICE);
793 WindowManager.LayoutParams lp = getWindow().getAttributes();
794 inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
795 android.os.Handler()) {
796 protected void onReceiveResult(int resultCode, Bundle resultData) {
797 Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
798 }
799 });
800 Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
801 }
802 }
803 */
804
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800805 private boolean acceptFilter() {
806 final InputMethodManager inputManager = (InputMethodManager)
807 getSystemService(Context.INPUT_METHOD_SERVICE);
808 return !inputManager.isFullscreenMode();
809 }
810
811 @Override
812 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -0700813 final int uniChar = event.getUnicodeChar();
814 final boolean handled = super.onKeyDown(keyCode, event);
815 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
816 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800817 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
818 keyCode, event);
819 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700820 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700821 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700822 // showSearchDialog()
823 // If there are multiple keystrokes before the search dialog takes focus,
824 // onSearchRequested() will be called for every keystroke,
825 // but it is idempotent, so it's fine.
826 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800827 }
828 }
829
Joe Onorato8a9625e2010-01-28 15:55:35 -0800830 // Eat the long press event so the keyboard doesn't come up.
831 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
832 return true;
833 }
834
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800835 return handled;
836 }
837
Karl Rosaen138a0412009-04-23 19:00:21 -0700838 private String getTypedText() {
839 return mDefaultKeySsb.toString();
840 }
841
842 private void clearTypedText() {
843 mDefaultKeySsb.clear();
844 mDefaultKeySsb.clearSpans();
845 Selection.setSelection(mDefaultKeySsb, 0);
846 }
847
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800848 /**
Michael Jurka883f55b2010-10-21 15:47:14 -0700849 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
850 * State
851 */
852 private static State intToState(int stateOrdinal) {
853 State state = State.WORKSPACE;
854 final State[] stateValues = State.values();
855 for (int i = 0; i < stateValues.length; i++) {
856 if (stateValues[i].ordinal() == stateOrdinal) {
857 state = stateValues[i];
858 break;
859 }
860 }
861 return state;
862 }
863
864 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800865 * Restores the previous state, if it exists.
866 *
867 * @param savedState The previous state.
868 */
869 private void restoreState(Bundle savedState) {
870 if (savedState == null) {
871 return;
872 }
873
Michael Jurka883f55b2010-10-21 15:47:14 -0700874 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -0700875 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700876 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -0800877 }
878
Winson Chungf0c6ae02012-03-21 16:10:31 -0700879 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800880 if (currentScreen > -1) {
Michael Jurka0142d492010-08-25 17:46:15 -0700881 mWorkspace.setCurrentPage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800882 }
883
Winson Chung3d503fb2011-07-13 17:25:49 -0700884 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
885 final int pendingAddScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700886
Winson Chung3d503fb2011-07-13 17:25:49 -0700887 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
888 mPendingAddInfo.container = pendingAddContainer;
889 mPendingAddInfo.screen = pendingAddScreen;
890 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
891 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700892 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
893 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
894 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen87a9f5b2012-05-29 16:16:51 -0700895 mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800896 mRestoring = true;
897 }
898
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700899
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800900 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
901 if (renameFolder) {
902 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700903 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800904 mRestoring = true;
905 }
Winson Chunga12a2502010-12-20 14:41:35 -0800906
Winson Chung785d2eb2011-04-14 16:08:02 -0700907
908 // Restore the AppsCustomize tab
909 if (mAppsCustomizeTabHost != null) {
910 String curTab = savedState.getString("apps_customize_currentTab");
911 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -0700912 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -0700913 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -0700914 mAppsCustomizeContent.loadAssociatedPages(
915 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -0700916 }
917
Winson Chung5afbf7b2011-07-25 11:53:08 -0700918 int currentIndex = savedState.getInt("apps_customize_currentIndex");
919 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -0700920 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800921 }
922
923 /**
924 * Finds all the views we need and configure them properly.
925 */
926 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -0700927 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -0400928
Winson Chung4c98d922011-05-31 16:50:48 -0700929 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
930 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Michael Jurkab737ee62011-11-15 15:57:22 -0800931 mQsbDivider = (ImageView) findViewById(R.id.qsb_divider);
932 mDockDivider = (ImageView) findViewById(R.id.dock_divider);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800933
Winson Chung4c98d922011-05-31 16:50:48 -0700934 // Setup the drag layer
935 mDragLayer.setup(this, dragController);
936
Winson Chung3d503fb2011-07-13 17:25:49 -0700937 // Setup the hotseat
938 mHotseat = (Hotseat) findViewById(R.id.hotseat);
939 if (mHotseat != null) {
940 mHotseat.setup(this);
941 }
942
Winson Chung4c98d922011-05-31 16:50:48 -0700943 // Setup the workspace
944 mWorkspace.setHapticFeedbackEnabled(false);
945 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -0700946 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -0700947 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -0700948
Winson Chungf0ea4d32011-06-06 14:27:16 -0700949 // Get the search/delete bar
Winson Chungc51db6a2011-10-05 11:44:49 -0700950 mSearchDropTargetBar = (SearchDropTargetBar) mDragLayer.findViewById(R.id.qsb_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -0700951
Winson Chungf0ea4d32011-06-06 14:27:16 -0700952 // Setup AppsCustomize
953 mAppsCustomizeTabHost = (AppsCustomizeTabHost)
954 findViewById(R.id.apps_customize_pane);
955 mAppsCustomizeContent = (AppsCustomizePagedView)
956 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
957 mAppsCustomizeContent.setup(this, dragController);
Winson Chung0e721a42012-08-02 17:40:30 -0700958
Winson Chung3d503fb2011-07-13 17:25:49 -0700959 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -0700960 dragController.setDragScoller(mWorkspace);
961 dragController.setScrollView(mDragLayer);
962 dragController.setMoveTarget(mWorkspace);
963 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -0700964 if (mSearchDropTargetBar != null) {
965 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -0800966 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800967 }
968
969 /**
970 * Creates a view representing a shortcut.
971 *
972 * @param info The data structure describing the shortcut.
973 *
974 * @return A View inflated from R.layout.application.
975 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800976 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800977 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -0700978 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800979 }
980
981 /**
982 * Creates a view representing a shortcut inflated from the specified resource.
983 *
984 * @param layoutResId The id of the XML layout used to create the shortcut.
985 * @param parent The group the shortcut belongs to.
986 * @param info The data structure describing the shortcut.
987 *
988 * @return A View inflated from layoutResId.
989 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800990 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800991 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
992 favorite.applyFromShortcutInfo(info, mIconCache);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800993 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800994 return favorite;
995 }
996
997 /**
998 * Add an application shortcut to the workspace.
999 *
1000 * @param data The intent describing the application.
1001 * @param cellInfo The position on screen where to create the shortcut.
1002 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001003 void completeAddApplication(Intent data, long container, int screen, int cellX, int cellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001004 final int[] cellXY = mTmpAddItemCellCoordinates;
Winson Chung3d503fb2011-07-13 17:25:49 -07001005 final CellLayout layout = getCellLayout(container, screen);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001006
Adam Cohenfbba09b2011-07-18 21:43:05 -07001007 // First we check if we already know the exact location where we want to add this item.
1008 if (cellX >= 0 && cellY >= 0) {
1009 cellXY[0] = cellX;
1010 cellXY[1] = cellY;
1011 } else if (!layout.findCellForSpan(cellXY, 1, 1)) {
Winson Chung93eef082012-03-23 15:59:27 -07001012 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001013 return;
1014 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001015
Patrick Dubroy002cbf42011-03-03 16:36:21 -08001016 final ShortcutInfo info = mModel.getShortcutInfo(getPackageManager(), data, this);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001017
Romain Guy73b979d2009-06-09 12:57:21 -07001018 if (info != null) {
Joe Onorato0589f0f2010-02-08 13:44:00 -08001019 info.setActivity(data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001020 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001021 info.container = ItemInfo.NO_ID;
Winson Chung3d503fb2011-07-13 17:25:49 -07001022 mWorkspace.addApplicationShortcut(info, layout, container, screen, cellXY[0], cellXY[1],
Adam Cohenfbba09b2011-07-18 21:43:05 -07001023 isWorkspaceLocked(), cellX, cellY);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001024 } else {
1025 Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001026 }
1027 }
Romain Guycbb89e42009-06-08 15:52:54 -07001028
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001029 /**
1030 * Add a shortcut to the workspace.
1031 *
1032 * @param data The intent describing the shortcut.
1033 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001034 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001035 private void completeAddShortcut(Intent data, long container, int screen, int cellX,
1036 int cellY) {
1037 int[] cellXY = mTmpAddItemCellCoordinates;
1038 int[] touchXY = mPendingAddInfo.dropPos;
1039 CellLayout layout = getCellLayout(container, screen);
Romain Guycbb89e42009-06-08 15:52:54 -07001040
Michael Jurkad3ef3062010-11-23 16:23:58 -08001041 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001042
Adam Cohen558baaf2011-08-15 15:22:57 -07001043 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -08001044 if (info == null) {
1045 return;
1046 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001047 final View view = createShortcut(info);
1048
Adam Cohenfbba09b2011-07-18 21:43:05 -07001049 // First we check if we already know the exact location where we want to add this item.
1050 if (cellX >= 0 && cellY >= 0) {
1051 cellXY[0] = cellX;
1052 cellXY[1] = cellY;
1053 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001054
1055 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001056 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001057 true, null,null)) {
1058 return;
1059 }
1060 DragObject dragObject = new DragObject();
1061 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001062 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1063 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001064 return;
1065 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001066 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001067 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001068 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001069 foundCellSpan = (result != null);
1070 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001071 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001072 }
1073
1074 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001075 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001076 return;
1077 }
1078
Adam Cohen558baaf2011-08-15 15:22:57 -07001079 LauncherModel.addItemToDatabase(this, info, container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001080
1081 if (!mRestoring) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001082 mWorkspace.addInScreen(view, container, screen, cellXY[0], cellXY[1], 1, 1,
1083 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001084 }
1085 }
1086
Adam Cohen2f093b62012-04-30 18:59:53 -07001087 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1088 int minHeight) {
1089 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001090 // We want to account for the extra amount of padding that we are adding to the widget
1091 // to ensure that it gets the full amount of space that it has requested
1092 int requiredWidth = minWidth + padding.left + padding.right;
1093 int requiredHeight = minHeight + padding.top + padding.bottom;
Adam Cohen2f093b62012-04-30 18:59:53 -07001094 return CellLayout.rectToCell(context.getResources(), requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001095 }
1096
Adam Cohen2f093b62012-04-30 18:59:53 -07001097 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1098 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001099 }
1100
Adam Cohen2f093b62012-04-30 18:59:53 -07001101 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1102 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001103 }
1104
Adam Cohen2f093b62012-04-30 18:59:53 -07001105 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1106 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001107 }
1108
Adam Cohen2f093b62012-04-30 18:59:53 -07001109 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1110 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001111 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001112 }
1113
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001114 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001115 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001116 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001117 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001118 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001119 */
Adam Cohened66b2b2012-01-23 17:28:51 -08001120 private void completeAddAppWidget(final int appWidgetId, long container, int screen,
1121 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1122 if (appWidgetInfo == null) {
1123 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1124 }
Romain Guycbb89e42009-06-08 15:52:54 -07001125
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001126 // Calculate the grid spans needed to fit this widget
Winson Chung3d503fb2011-07-13 17:25:49 -07001127 CellLayout layout = getCellLayout(container, screen);
Adam Cohen09353862011-07-14 16:10:03 -07001128
Adam Cohen2f093b62012-04-30 18:59:53 -07001129 int[] minSpanXY = getMinSpanForWidget(this, appWidgetInfo);
1130 int[] spanXY = getSpanForWidget(this, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001131
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001132 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001133 // We have saved the position to which the widget was dragged-- this really only matters
1134 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001135 int[] cellXY = mTmpAddItemCellCoordinates;
1136 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001137 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001138 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001139 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1140 cellXY[0] = mPendingAddInfo.cellX;
1141 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001142 spanXY[0] = mPendingAddInfo.spanX;
1143 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001144 foundCellSpan = true;
1145 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001146 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001147 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001148 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1149 spanXY[1], cellXY, finalSpan);
1150 spanXY[0] = finalSpan[0];
1151 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001152 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001153 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001154 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001155 }
1156
Michael Jurka0280c3b2010-09-17 15:00:07 -07001157 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001158 if (appWidgetId != -1) {
1159 // Deleting an app widget ID is a void call but writes to disk before returning
1160 // to the caller...
Winson Chungf7640c82011-02-28 13:47:29 -08001161 new Thread("deleteAppWidgetId") {
1162 public void run() {
1163 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
1164 }
1165 }.start();
1166 }
Winson Chung93eef082012-03-23 15:59:27 -07001167 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001168 return;
1169 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001170
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001171 // Build Launcher-specific widget info and save to database
Winson Chung11a49372012-04-27 15:12:38 -07001172 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId,
1173 appWidgetInfo.provider);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001174 launcherInfo.spanX = spanXY[0];
1175 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001176 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1177 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001178
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001179 LauncherModel.addItemToDatabase(this, launcherInfo,
Winson Chung3d503fb2011-07-13 17:25:49 -07001180 container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001181
1182 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001183 if (hostView == null) {
1184 // Perform actual inflation because we're live
1185 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1186 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1187 } else {
1188 // The AppWidgetHostView has already been inflated and instantiated
1189 launcherInfo.hostView = hostView;
1190 }
Romain Guycbb89e42009-06-08 15:52:54 -07001191
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001192 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001193 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohen9e05a5e2012-09-10 15:53:09 -07001194 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) {
1195 launcherInfo.notifyWidgetSizeChanged(this);
1196 }
Winson Chung3d503fb2011-07-13 17:25:49 -07001197 mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001198 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001199
1200 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001201 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001202 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001203 }
Romain Guycbb89e42009-06-08 15:52:54 -07001204
Adam Cohended9f8d2010-11-03 13:25:16 -07001205 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1206 @Override
1207 public void onReceive(Context context, Intent intent) {
1208 final String action = intent.getAction();
1209 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1210 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001211 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001212 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001213
Winson Chungc100e8e2011-08-09 16:02:43 -07001214 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001215 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001216 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
1217 mAppsCustomizeTabHost.reset();
1218 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001219 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001220 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1221 mUserPresent = true;
1222 updateRunning();
1223 }
1224 }
1225 };
1226
1227 @Override
1228 public void onAttachedToWindow() {
1229 super.onAttachedToWindow();
1230
1231 // Listen for broadcasts related to user-presence
1232 final IntentFilter filter = new IntentFilter();
1233 filter.addAction(Intent.ACTION_SCREEN_OFF);
1234 filter.addAction(Intent.ACTION_USER_PRESENT);
1235 registerReceiver(mReceiver, filter);
1236
Adam Cohend113e0c2010-11-11 10:48:05 -08001237 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001238 mVisible = true;
1239 }
1240
1241 @Override
1242 public void onDetachedFromWindow() {
1243 super.onDetachedFromWindow();
1244 mVisible = false;
1245
Adam Cohend113e0c2010-11-11 10:48:05 -08001246 if (mAttached) {
1247 unregisterReceiver(mReceiver);
1248 mAttached = false;
1249 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001250 updateRunning();
1251 }
1252
1253 public void onWindowVisibilityChanged(int visibility) {
1254 mVisible = visibility == View.VISIBLE;
1255 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001256 // The following code used to be in onResume, but it turns out onResume is called when
1257 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1258 // is a more appropriate event to handle
1259 if (mVisible) {
1260 mAppsCustomizeTabHost.onWindowVisible();
1261 if (!mWorkspaceLoading) {
1262 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001263 // We want to let Launcher draw itself at least once before we force it to build
1264 // layers on all the workspace pages, so that transitioning to Launcher from other
1265 // apps is nice and speedy. Usually the first call to preDraw doesn't correspond to
1266 // a true draw so we wait until the second preDraw call to be safe
1267 observer.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001268 public boolean onPreDraw() {
Michael Jurka6ee21d22012-02-21 18:20:27 -08001269 // We delay the layer building a bit in order to give
1270 // other message processing a time to run. In particular
1271 // this avoids a delay in hiding the IME if it was
1272 // currently shown, because doing that may involve
1273 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001274 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Winson Chung31ce0732012-05-06 13:36:43 -07001275
Michael Jurka6ee21d22012-02-21 18:20:27 -08001276 observer.removeOnPreDrawListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001277 return true;
1278 }
1279 });
1280 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001281 // When Launcher comes back to foreground, a different Activity might be responsible for
1282 // the app market intent, so refresh the icon
1283 updateAppMarketIcon();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001284 clearTypedText();
1285 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001286 }
1287
1288 private void sendAdvanceMessage(long delay) {
1289 mHandler.removeMessages(ADVANCE_MSG);
1290 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1291 mHandler.sendMessageDelayed(msg, delay);
1292 mAutoAdvanceSentTime = System.currentTimeMillis();
1293 }
1294
1295 private void updateRunning() {
1296 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1297 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1298 mAutoAdvanceRunning = autoAdvanceRunning;
1299 if (autoAdvanceRunning) {
1300 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1301 sendAdvanceMessage(delay);
1302 } else {
1303 if (!mWidgetsToAdvance.isEmpty()) {
1304 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1305 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1306 }
1307 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001308 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001309 }
1310 }
1311 }
1312
1313 private final Handler mHandler = new Handler() {
1314 @Override
1315 public void handleMessage(Message msg) {
1316 if (msg.what == ADVANCE_MSG) {
1317 int i = 0;
1318 for (View key: mWidgetsToAdvance.keySet()) {
1319 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1320 final int delay = mAdvanceStagger * i;
1321 if (v instanceof Advanceable) {
1322 postDelayed(new Runnable() {
1323 public void run() {
1324 ((Advanceable) v).advance();
1325 }
1326 }, delay);
1327 }
1328 i++;
1329 }
1330 sendAdvanceMessage(mAdvanceInterval);
1331 }
1332 }
1333 };
1334
1335 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001336 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001337 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1338 if (v instanceof Advanceable) {
1339 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001340 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001341 updateRunning();
1342 }
1343 }
1344
1345 void removeWidgetToAutoAdvance(View hostView) {
1346 if (mWidgetsToAdvance.containsKey(hostView)) {
1347 mWidgetsToAdvance.remove(hostView);
1348 updateRunning();
1349 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001350 }
1351
Joe Onorato9c1289c2009-08-17 11:03:03 -04001352 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001353 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001354 launcherInfo.hostView = null;
1355 }
1356
Winson Chung93eef082012-03-23 15:59:27 -07001357 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1358 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1359 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001360 }
1361
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001362 public LauncherAppWidgetHost getAppWidgetHost() {
1363 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001364 }
Romain Guycbb89e42009-06-08 15:52:54 -07001365
Winson Chunga9abd0e2010-10-27 17:18:37 -07001366 public LauncherModel getModel() {
1367 return mModel;
1368 }
1369
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001370 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001371 getWindow().closeAllPanels();
1372
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001373 // Whatever we were doing is hereby canceled.
1374 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001375 }
1376
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001377 @Override
1378 protected void onNewIntent(Intent intent) {
1379 super.onNewIntent(intent);
1380
1381 // Close the menu
1382 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001383 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001384 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001385
Joe Onorato14f122b2009-11-19 14:06:36 -08001386 boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1387 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001388
Adam Cohenac56cff2011-09-28 20:45:37 -07001389 Folder openFolder = mWorkspace.getOpenFolder();
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001390 // In all these cases, only animate if we're already on home
Patrick Dubroy758a9232011-03-03 19:54:56 -08001391 mWorkspace.exitWidgetResizeMode();
Adam Cohenac56cff2011-09-28 20:45:37 -07001392 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1393 openFolder == null) {
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001394 mWorkspace.moveToDefaultScreen(true);
Joe Onorato3a8820b2009-11-10 15:06:42 -08001395 }
Adam Cohenac56cff2011-09-28 20:45:37 -07001396
1397 closeFolder();
Winson Chungde1af762011-07-21 16:44:07 -07001398 exitSpringLoadedDragMode();
Winson Chung4a2afa32012-07-19 14:53:05 -07001399
1400 // If we are already on home, then just animate back to the workspace, otherwise, just
1401 // wait until onResume to set the state back to Workspace
1402 if (alreadyOnHome) {
1403 showWorkspace(true);
1404 } else {
1405 mOnResumeState = State.WORKSPACE;
1406 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001407
Joe Onorato3a8820b2009-11-10 15:06:42 -08001408 final View v = getWindow().peekDecorView();
1409 if (v != null && v.getWindowToken() != null) {
1410 InputMethodManager imm = (InputMethodManager)getSystemService(
1411 INPUT_METHOD_SERVICE);
1412 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001413 }
Winson Chung337cd9d2011-03-30 10:39:30 -07001414
Michael Jurka35aa14d2011-07-07 17:01:08 -07001415 // Reset AllApps to its initial state
Adam Cohenb64d36e2011-10-17 21:48:02 -07001416 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Winson Chungc100e8e2011-08-09 16:02:43 -07001417 mAppsCustomizeTabHost.reset();
Winson Chung785d2eb2011-04-14 16:08:02 -07001418 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001419 }
1420 }
1421
1422 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001423 public void onRestoreInstanceState(Bundle state) {
1424 super.onRestoreInstanceState(state);
1425 for (int page: mSynchronouslyBoundPages) {
1426 mWorkspace.restoreInstanceStateForChild(page);
1427 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001428 }
1429
1430 @Override
1431 protected void onSaveInstanceState(Bundle outState) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001432 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getNextPage());
Adam Cohen95bb8002011-07-03 23:40:28 -07001433 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001434
Michael Jurka883f55b2010-10-21 15:47:14 -07001435 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001436 // We close any open folder since it will not be re-opened, and we need to make sure
1437 // this state is reflected.
1438 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001439
Winson Chung3d503fb2011-07-13 17:25:49 -07001440 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screen > -1 &&
1441 mWaitingForResult) {
1442 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
1443 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screen);
1444 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1445 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001446 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1447 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1448 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001449 }
1450
1451 if (mFolderInfo != null && mWaitingForResult) {
1452 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1453 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1454 }
Michael Jurka946ad472010-07-09 18:05:18 -07001455
Winson Chung785d2eb2011-04-14 16:08:02 -07001456 // Save the current AppsCustomize tab
1457 if (mAppsCustomizeTabHost != null) {
1458 String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1459 if (currentTabTag != null) {
1460 outState.putString("apps_customize_currentTab", currentTabTag);
1461 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001462 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1463 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001464 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001465 }
1466
1467 @Override
1468 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001469 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001470
Winson Chunge7a03942011-08-05 15:05:12 -07001471 // Remove all pending runnables
1472 mHandler.removeMessages(ADVANCE_MSG);
1473 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001474 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001475
Winson Chungcd2b0142011-06-08 16:02:26 -07001476 // Stop callbacks from LauncherModel
1477 LauncherApplication app = ((LauncherApplication) getApplication());
1478 mModel.stopLoader();
1479 app.setLauncher(null);
1480
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001481 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001482 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001483 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001484 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001485 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001486 mAppWidgetHost = null;
1487
1488 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001489
1490 TextKeyListener.getInstance().release();
1491
Winson Chung81b52252012-08-27 15:34:29 -07001492 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
1493 // to prevent leaking Launcher activities on orientation change.
1494 if (mModel != null) {
1495 mModel.unbindItemInfosAndClearQueuedBindRunnables();
1496 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001497
1498 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001499 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001500
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001501 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001502 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1503 mWorkspace.removeAllViews();
1504 mWorkspace = null;
1505 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001506
Michael Jurka2ecf9952012-06-18 12:52:28 -07001507 LauncherAnimUtils.onDestroyActivity();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001508 }
1509
Adam Cohena9cf38f2011-05-02 15:36:58 -07001510 public DragController getDragController() {
1511 return mDragController;
1512 }
1513
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001514 @Override
1515 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001516 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001517 super.startActivityForResult(intent, requestCode);
1518 }
1519
Winson Chung70d72102011-08-12 11:24:35 -07001520 /**
1521 * Indicates that we want global search for this activity by setting the globalSearch
1522 * argument for {@link #startSearch} to true.
1523 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001524 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001525 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001526 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001527
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001528 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001529
Karl Rosaen138a0412009-04-23 19:00:21 -07001530 if (initialQuery == null) {
1531 // Use any text typed in the launcher as the initial query
1532 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001533 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001534 if (appSearchData == null) {
1535 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001536 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001537 }
Winson Chungadf0c182012-08-23 14:59:07 -07001538 Rect sourceBounds = new Rect();
1539 if (mSearchDropTargetBar != null) {
1540 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
1541 }
Romain Guycbb89e42009-06-08 15:52:54 -07001542
Michael Jurkaa33411c2012-06-14 16:18:21 -07001543 startGlobalSearch(initialQuery, selectInitialQuery,
1544 appSearchData, sourceBounds);
1545 }
1546
1547 /**
1548 * Starts the global search activity. This code is a copied from SearchManager
1549 */
1550 public void startGlobalSearch(String initialQuery,
1551 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001552 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07001553 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1554 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
1555 if (globalSearchActivity == null) {
1556 Log.w(TAG, "No global search activity found.");
1557 return;
1558 }
1559 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
1560 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1561 intent.setComponent(globalSearchActivity);
1562 // Make sure that we have a Bundle to put source in
1563 if (appSearchData == null) {
1564 appSearchData = new Bundle();
1565 } else {
1566 appSearchData = new Bundle(appSearchData);
1567 }
1568 // Set source to package name of app that starts global search, if not set already.
1569 if (!appSearchData.containsKey("source")) {
1570 appSearchData.putString("source", getPackageName());
1571 }
1572 intent.putExtra(SearchManager.APP_DATA, appSearchData);
1573 if (!TextUtils.isEmpty(initialQuery)) {
1574 intent.putExtra(SearchManager.QUERY, initialQuery);
1575 }
1576 if (selectInitialQuery) {
1577 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
1578 }
1579 intent.setSourceBounds(sourceBounds);
1580 try {
1581 startActivity(intent);
1582 } catch (ActivityNotFoundException ex) {
1583 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
1584 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001585 }
1586
Winson Chung70d72102011-08-12 11:24:35 -07001587 @Override
1588 public boolean onCreateOptionsMenu(Menu menu) {
1589 if (isWorkspaceLocked()) {
1590 return false;
1591 }
1592
1593 super.onCreateOptionsMenu(menu);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001594
1595 Intent manageApps = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
1596 manageApps.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1597 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung236d4312011-08-22 15:12:27 -07001598 Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
1599 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1600 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Michael Jurkab964f9c2011-09-27 22:10:05 -07001601 String helpUrl = getString(R.string.help_url);
1602 Intent help = new Intent(Intent.ACTION_VIEW, Uri.parse(helpUrl));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001603 help.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1604 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1605
Winson Chung70d72102011-08-12 11:24:35 -07001606 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1607 .setIcon(android.R.drawable.ic_menu_gallery)
1608 .setAlphabeticShortcut('W');
1609 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1610 .setIcon(android.R.drawable.ic_menu_manage)
Winson Chungdff8ebb2011-09-08 17:25:31 -07001611 .setIntent(manageApps)
Winson Chung70d72102011-08-12 11:24:35 -07001612 .setAlphabeticShortcut('M');
Winson Chung236d4312011-08-22 15:12:27 -07001613 menu.add(0, MENU_SYSTEM_SETTINGS, 0, R.string.menu_settings)
1614 .setIcon(android.R.drawable.ic_menu_preferences)
1615 .setIntent(settings)
1616 .setAlphabeticShortcut('P');
Michael Jurkab964f9c2011-09-27 22:10:05 -07001617 if (!helpUrl.isEmpty()) {
1618 menu.add(0, MENU_HELP, 0, R.string.menu_help)
1619 .setIcon(android.R.drawable.ic_menu_help)
1620 .setIntent(help)
1621 .setAlphabeticShortcut('H');
1622 }
Winson Chung70d72102011-08-12 11:24:35 -07001623 return true;
1624 }
1625
1626 @Override
1627 public boolean onPrepareOptionsMenu(Menu menu) {
1628 super.onPrepareOptionsMenu(menu);
1629
1630 if (mAppsCustomizeTabHost.isTransitioning()) {
1631 return false;
1632 }
1633 boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1634 menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1635
1636 return true;
1637 }
1638
1639 @Override
1640 public boolean onOptionsItemSelected(MenuItem item) {
1641 switch (item.getItemId()) {
1642 case MENU_WALLPAPER_SETTINGS:
1643 startWallpaper();
1644 return true;
Winson Chung70d72102011-08-12 11:24:35 -07001645 }
1646
1647 return super.onOptionsItemSelected(item);
1648 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001649
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001650 @Override
1651 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001652 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001653 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07001654 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001655 }
1656
Joe Onorato9c1289c2009-08-17 11:03:03 -04001657 public boolean isWorkspaceLocked() {
1658 return mWorkspaceLoading || mWaitingForResult;
1659 }
1660
Michael Jurka0280c3b2010-09-17 15:00:07 -07001661 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07001662 mPendingAddInfo.container = ItemInfo.NO_ID;
1663 mPendingAddInfo.screen = -1;
1664 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1665 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08001666 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07001667 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001668 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001669
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001670 void addAppWidgetImpl(final int appWidgetId, ItemInfo info, AppWidgetHostView boundWidget,
1671 AppWidgetProviderInfo appWidgetInfo) {
1672 if (appWidgetInfo.configure != null) {
1673 mPendingAddWidgetInfo = appWidgetInfo;
Michael Jurkaaf442092010-06-10 17:01:57 -07001674
Bjorn Bringert7984c942009-12-09 15:38:25 +00001675 // Launch over to configure widget, if needed
1676 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001677 intent.setComponent(appWidgetInfo.configure);
Bjorn Bringert7984c942009-12-09 15:38:25 +00001678 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Romain Guy8e633c52010-03-04 12:51:36 -08001679 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001680 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001681 // Otherwise just add it
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001682 completeAddAppWidget(appWidgetId, info.container, info.screen, boundWidget,
1683 appWidgetInfo);
Winson Chung557d6ed2011-07-08 15:34:52 -07001684 // Exit spring loaded mode if necessary after adding the widget
Adam Cohened66b2b2012-01-23 17:28:51 -08001685 exitSpringLoadedDragModeDelayed(true, false, null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001686 }
1687 }
Romain Guycbb89e42009-06-08 15:52:54 -07001688
Adam Cohenfbba09b2011-07-18 21:43:05 -07001689 /**
1690 * Process a shortcut drop.
1691 *
1692 * @param componentName The name of the component
1693 * @param screen The screen where it should be added
1694 * @param cell The cell it should be added to, optional
1695 * @param position The location on the screen where it was dropped, optional
1696 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001697 void processShortcutFromDrop(ComponentName componentName, long container, int screen,
1698 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001699 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001700 mPendingAddInfo.container = container;
1701 mPendingAddInfo.screen = screen;
1702 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001703
1704 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001705 mPendingAddInfo.cellX = cell[0];
1706 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001707 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001708
1709 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1710 createShortcutIntent.setComponent(componentName);
1711 processShortcut(createShortcutIntent);
1712 }
1713
Adam Cohenfbba09b2011-07-18 21:43:05 -07001714 /**
1715 * Process a widget drop.
1716 *
1717 * @param info The PendingAppWidgetInfo of the widget being added.
1718 * @param screen The screen where it should be added
1719 * @param cell The cell it should be added to, optional
1720 * @param position The location on the screen where it was dropped, optional
1721 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001722 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen,
Adam Cohend41fbf52012-02-16 23:53:59 -08001723 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001724 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001725 mPendingAddInfo.container = info.container = container;
1726 mPendingAddInfo.screen = info.screen = screen;
1727 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08001728 mPendingAddInfo.minSpanX = info.minSpanX;
1729 mPendingAddInfo.minSpanY = info.minSpanY;
1730
Adam Cohenfbba09b2011-07-18 21:43:05 -07001731 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001732 mPendingAddInfo.cellX = cell[0];
1733 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001734 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001735 if (span != null) {
1736 mPendingAddInfo.spanX = span[0];
1737 mPendingAddInfo.spanY = span[1];
1738 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001739
Adam Cohened66b2b2012-01-23 17:28:51 -08001740 AppWidgetHostView hostView = info.boundWidget;
1741 int appWidgetId;
1742 if (hostView != null) {
1743 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001744 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08001745 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001746 // In this case, we either need to start an activity to get permission to bind
1747 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08001748 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Michael Jurka8b805b12012-04-18 14:23:14 -07001749 if (mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId, info.componentName)) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001750 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07001751 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001752 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07001753 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
1754 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1755 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
1756 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
1757 }
Adam Cohened66b2b2012-01-23 17:28:51 -08001758 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001759 }
1760
Joe Onoratodeb98af2010-02-19 14:59:39 -08001761 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001762 // Handle case where user selected "Applications"
1763 String applicationName = getResources().getString(R.string.group_applications);
1764 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001765
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001766 if (applicationName != null && applicationName.equals(shortcutName)) {
1767 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1768 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001769
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001770 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1771 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001772 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001773 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001774 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001775 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001776 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001777 }
1778
Winson Chung24ab2f12010-09-16 14:10:47 -07001779 void processWallpaper(Intent intent) {
1780 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1781 }
1782
Winson Chung3d503fb2011-07-13 17:25:49 -07001783 FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX,
1784 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001785 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001786 folderInfo.title = getText(R.string.folder_name);
1787
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001788 // Update the model
Winson Chung3d503fb2011-07-13 17:25:49 -07001789 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screen, cellX, cellY,
1790 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001791 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001792
1793 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07001794 FolderIcon newFolder =
1795 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
1796 mWorkspace.addInScreen(newFolder, container, screen, cellX, cellY, 1, 1,
1797 isWorkspaceLocked());
Adam Cohendf035382011-04-11 17:22:04 -07001798 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001799 }
Romain Guycbb89e42009-06-08 15:52:54 -07001800
Joe Onorato9c1289c2009-08-17 11:03:03 -04001801 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001802 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001803 }
1804
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001805 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001806 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001807 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001808 Intent chooser = Intent.createChooser(pickWallpaper,
1809 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001810 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1811 // Removed in Eclair MR1
1812// WallpaperManager wm = (WallpaperManager)
1813// getSystemService(Context.WALLPAPER_SERVICE);
1814// WallpaperInfo wi = wm.getWallpaperInfo();
1815// if (wi != null && wi.getSettingsActivity() != null) {
1816// LabeledIntent li = new LabeledIntent(getPackageName(),
1817// R.string.configure_wallpaper, 0);
1818// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1819// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1820// }
Mike Clerona0618e42009-10-22 13:55:21 -07001821 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001822 }
1823
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001824 /**
1825 * Registers various content observers. The current implementation registers
1826 * only a favorites observer to keep track of the favorites applications.
1827 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001828 private void registerContentObservers() {
1829 ContentResolver resolver = getContentResolver();
1830 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1831 true, mWidgetObserver);
1832 }
1833
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001834 @Override
1835 public boolean dispatchKeyEvent(KeyEvent event) {
1836 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1837 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001838 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001839 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001840 case KeyEvent.KEYCODE_VOLUME_DOWN:
Michael Jurka9bc8eba2012-05-21 20:36:44 -07001841 if (doesFileExist(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08001842 dumpState();
1843 return true;
1844 }
1845 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001846 }
1847 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1848 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001849 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001850 return true;
1851 }
1852 }
1853
1854 return super.dispatchKeyEvent(event);
1855 }
1856
Joe Onorato88ec0992009-11-19 13:16:06 -08001857 @Override
1858 public void onBackPressed() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001859 if (isAllAppsVisible()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001860 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001861 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07001862 Folder openFolder = mWorkspace.getOpenFolder();
1863 if (openFolder.isEditingName()) {
1864 openFolder.dismissEditingName();
1865 } else {
1866 closeFolder();
1867 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001868 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08001869 mWorkspace.exitWidgetResizeMode();
1870
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001871 // Back button is a no-op here, but give at least some feedback for the button press
1872 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07001873 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001874 }
1875
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001876 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001877 * Re-listen when widgets are reset.
1878 */
1879 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08001880 if (mAppWidgetHost != null) {
1881 mAppWidgetHost.startListening();
1882 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001883 }
1884
1885 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001886 * Launches the intent referred by the clicked shortcut.
1887 *
1888 * @param v The view representing the clicked shortcut.
1889 */
1890 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001891 // Make sure that rogue clicks don't get through while allapps is launching, or after the
1892 // view has detached (it's possible for this to happen if the view is removed mid touch).
1893 if (v.getWindowToken() == null) {
1894 return;
1895 }
1896
Winson Chung9b0b2fe2012-02-24 13:03:34 -08001897 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001898 return;
1899 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07001900
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001901 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001902 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001903 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08001904 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08001905 int[] pos = new int[2];
1906 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08001907 intent.setSourceBounds(new Rect(pos[0], pos[1],
1908 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Winson Chungc7450e32012-04-17 17:34:08 -07001909
1910 boolean success = startActivitySafely(v, intent, tag);
Michael Jurkaddd62e92011-02-16 17:49:14 -08001911
1912 if (success && v instanceof BubbleTextView) {
1913 mWaitingForResume = (BubbleTextView) v;
1914 mWaitingForResume.setStayPressed(true);
1915 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001916 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07001917 if (v instanceof FolderIcon) {
1918 FolderIcon fi = (FolderIcon) v;
1919 handleFolderClick(fi);
1920 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07001921 } else if (v == mAllAppsButton) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001922 if (isAllAppsVisible()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001923 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001924 } else {
Michael Jurka2a552322011-10-11 15:22:05 -07001925 onClickAllAppsButton(v);
Joe Onorato7404ee42009-07-31 11:54:44 -07001926 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001927 }
1928 }
1929
Michael Jurka0e260592010-06-30 17:07:39 -07001930 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07001931 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001932 // clicking anywhere on the workspace causes the customization drawer to slide down
1933 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07001934 return false;
1935 }
1936
Michael Jurkaaf442092010-06-10 17:01:57 -07001937 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001938 * Event handler for the search button
1939 *
1940 * @param v The view that was clicked.
1941 */
1942 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001943 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
1944
Amith Yamasania135ba82011-08-09 17:42:01 -07001945 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001946 }
1947
1948 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001949 * Event handler for the voice button
1950 *
1951 * @param v The view that was clicked.
1952 */
1953 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001954 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001955
Michael Jurkaae65ee32012-04-30 11:45:54 -07001956 try {
1957 final SearchManager searchManager =
1958 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1959 ComponentName activityName = searchManager.getGlobalSearchActivity();
1960 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07001961 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07001962 if (activityName != null) {
1963 intent.setPackage(activityName.getPackageName());
1964 }
Michael Jurka86a720e2012-05-09 11:23:23 -07001965 startActivity(null, intent, "onClickVoiceButton");
Michael Jurkaae65ee32012-04-30 11:45:54 -07001966 } catch (ActivityNotFoundException e) {
1967 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07001968 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07001969 startActivitySafely(null, intent, "onClickVoiceButton");
1970 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001971 }
1972
1973 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001974 * Event handler for the "grid" button that appears on the home screen, which
1975 * enters all apps mode.
1976 *
1977 * @param v The view that was clicked.
1978 */
1979 public void onClickAllAppsButton(View v) {
Michael Jurka5130e402011-10-13 04:55:35 -07001980 showAllApps(true);
1981 }
1982
1983 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07001984 // Provide the same haptic feedback that the system offers for virtual keys.
1985 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001986 }
1987
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001988 public void onClickAppMarketButton(View v) {
1989 if (mAppMarketIntent != null) {
Winson Chungc7450e32012-04-17 17:34:08 -07001990 startActivitySafely(v, mAppMarketIntent, "app market");
Winson Chung4f916f42012-03-26 15:30:59 -07001991 } else {
1992 Log.e(TAG, "Invalid app market intent.");
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001993 }
1994 }
1995
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001996 void startApplicationDetailsActivity(ComponentName componentName) {
1997 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001998 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
1999 Uri.fromParts("package", packageName, null));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002000 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung3b1b36b2012-04-24 18:51:14 -07002001 startActivitySafely(null, intent, "startApplicationDetailsActivity");
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002002 }
2003
Patrick Dubroy5539af72010-09-07 15:22:01 -07002004 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
2005 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
2006 // System applications cannot be installed. For now, show a toast explaining that.
2007 // We may give them the option of disabling apps this way.
2008 int messageId = R.string.uninstall_system_app_text;
2009 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
2010 } else {
2011 String packageName = appInfo.componentName.getPackageName();
2012 String className = appInfo.componentName.getClassName();
2013 Intent intent = new Intent(
2014 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002015 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2016 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy5539af72010-09-07 15:22:01 -07002017 startActivity(intent);
2018 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002019 }
2020
Michael Jurka86a720e2012-05-09 11:23:23 -07002021 boolean startActivity(View v, Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002022 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Winson Chungc7450e32012-04-17 17:34:08 -07002023
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002024 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002025 // Only launch using the new animation if the shortcut has not opted out (this is a
2026 // private contract between launcher and may be ignored in the future).
2027 boolean useLaunchAnimation = (v != null) &&
2028 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
2029 if (useLaunchAnimation) {
Winson Chungc7450e32012-04-17 17:34:08 -07002030 ActivityOptions opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
2031 v.getMeasuredWidth(), v.getMeasuredHeight());
2032
2033 startActivity(intent, opts.toBundle());
2034 } else {
2035 startActivity(intent);
2036 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002037 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002038 } catch (SecurityException e) {
2039 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002040 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002041 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002042 "or use the exported attribute for this activity. "
2043 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002044 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002045 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002046 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002047
Michael Jurka86a720e2012-05-09 11:23:23 -07002048 boolean startActivitySafely(View v, Intent intent, Object tag) {
2049 boolean success = false;
2050 try {
2051 success = startActivity(v, intent, tag);
2052 } catch (ActivityNotFoundException e) {
2053 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2054 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2055 }
2056 return success;
2057 }
2058
Romain Guy8e633c52010-03-04 12:51:36 -08002059 void startActivityForResultSafely(Intent intent, int requestCode) {
2060 try {
2061 startActivityForResult(intent, requestCode);
2062 } catch (ActivityNotFoundException e) {
2063 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2064 } catch (SecurityException e) {
2065 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2066 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
2067 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
2068 "or use the exported attribute for this activity.", e);
2069 }
2070 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002071
Adam Cohena9cf38f2011-05-02 15:36:58 -07002072 private void handleFolderClick(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002073 final FolderInfo info = folderIcon.getFolderInfo();
Adam Cohen3c81a382011-08-31 22:25:51 -07002074 Folder openFolder = mWorkspace.getFolderForTag(info);
2075
2076 // If the folder info reports that the associated folder is open, then verify that
2077 // it is actually opened. There have been a few instances where this gets out of sync.
2078 if (info.opened && openFolder == null) {
2079 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2080 + info.screen + " (" + info.cellX + ", " + info.cellY + ")");
2081 info.opened = false;
2082 }
2083
Adam Cohenfb91f302012-06-11 15:45:18 -07002084 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002085 // Close any open folder
2086 closeFolder();
2087 // Open the requested folder
Adam Cohena9cf38f2011-05-02 15:36:58 -07002088 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002089 } else {
2090 // Find the open folder...
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002091 int folderScreen;
2092 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002093 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002094 // .. and close it
2095 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07002096 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002097 // Close any folder open on the current screen
2098 closeFolder();
2099 // Pull the folder onto this screen
Adam Cohena9cf38f2011-05-02 15:36:58 -07002100 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002101 }
2102 }
2103 }
2104 }
2105
Adam Cohen268c4752012-06-06 17:47:33 -07002106 /**
2107 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2108 * in the DragLayer in the exact absolute location of the original FolderIcon.
2109 */
2110 private void copyFolderIconToImage(FolderIcon fi) {
2111 final int width = fi.getMeasuredWidth();
2112 final int height = fi.getMeasuredHeight();
2113
2114 // Lazy load ImageView, Bitmap and Canvas
2115 if (mFolderIconImageView == null) {
2116 mFolderIconImageView = new ImageView(this);
2117 }
2118 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2119 mFolderIconBitmap.getHeight() != height) {
2120 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2121 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2122 }
2123
2124 DragLayer.LayoutParams lp;
2125 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2126 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2127 } else {
2128 lp = new DragLayer.LayoutParams(width, height);
2129 }
2130
Adam Cohen307fe232012-08-16 17:55:58 -07002131 // The layout from which the folder is being opened may be scaled, adjust the starting
2132 // view size by this scale factor.
2133 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002134 lp.customPosition = true;
2135 lp.x = mRectForFolderAnimation.left;
2136 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002137 lp.width = (int) (scale * width);
2138 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002139
2140 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2141 fi.draw(mFolderIconCanvas);
2142 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002143 if (fi.getFolder() != null) {
2144 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2145 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002146 }
Adam Cohen268c4752012-06-06 17:47:33 -07002147 // Just in case this image view is still in the drag layer from a previous animation,
2148 // we remove it and re-add it.
2149 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2150 mDragLayer.removeView(mFolderIconImageView);
2151 }
2152 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002153 if (fi.getFolder() != null) {
2154 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002155 }
Adam Cohen268c4752012-06-06 17:47:33 -07002156 }
2157
Adam Cohen2801caf2011-05-13 20:57:39 -07002158 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002159 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002160 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2161 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2162 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2163
Adam Cohenc51934b2011-07-26 21:07:43 -07002164 FolderInfo info = (FolderInfo) fi.getTag();
2165 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2166 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002167 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2168 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002169 }
2170
Adam Cohen268c4752012-06-06 17:47:33 -07002171 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2172 copyFolderIconToImage(fi);
2173 fi.setVisibility(View.INVISIBLE);
2174
Michael Jurka2ecf9952012-06-18 12:52:28 -07002175 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002176 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002177 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
2178 oa.start();
2179 }
2180
Adam Cohen268c4752012-06-06 17:47:33 -07002181 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002182 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002183 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2184 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2185 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2186
Adam Cohen268c4752012-06-06 17:47:33 -07002187 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002188
Adam Cohen268c4752012-06-06 17:47:33 -07002189 // We remove and re-draw the FolderIcon in-case it has changed
2190 mDragLayer.removeView(mFolderIconImageView);
2191 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07002192 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002193 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002194 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002195 oa.addListener(new AnimatorListenerAdapter() {
2196 @Override
2197 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002198 if (cl != null) {
2199 cl.clearFolderLeaveBehind();
2200 // Remove the ImageView copy of the FolderIcon and make the original visible.
2201 mDragLayer.removeView(mFolderIconImageView);
2202 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002203 }
2204 }
2205 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002206 oa.start();
2207 }
2208
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002209 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002210 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002211 * is animated relative to the specified View. If the View is null, no animation
2212 * is played.
2213 *
2214 * @param folderInfo The FolderInfo describing the folder to open.
2215 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002216 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002217 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07002218 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002219
Adam Cohena9cf38f2011-05-02 15:36:58 -07002220 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002221
Adam Cohen4554ee12011-08-03 16:13:21 -07002222 // Just verify that the folder hasn't already been added to the DragLayer.
2223 // There was a one-off crash where the folder had a parent already.
2224 if (folder.getParent() == null) {
2225 mDragLayer.addView(folder);
2226 mDragController.addDropTarget((DropTarget) folder);
2227 } else {
2228 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2229 folder.getParent() + ").");
2230 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002231 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002232 growAndFadeOutFolderIcon(folderIcon);
Adam Cohen4554ee12011-08-03 16:13:21 -07002233 }
2234
2235 public void closeFolder() {
2236 Folder folder = mWorkspace.getOpenFolder();
2237 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002238 if (folder.isEditingName()) {
2239 folder.dismissEditingName();
2240 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002241 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002242
2243 // Dismiss the folder cling
2244 dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002245 }
2246 }
2247
2248 void closeFolder(Folder folder) {
2249 folder.getInfo().opened = false;
2250
2251 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2252 if (parent != null) {
2253 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2254 shrinkAndFadeInFolderIcon(fi);
2255 }
2256 folder.animateClosed();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002257 }
2258
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002259 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07002260 if (!isDraggingEnabled()) return false;
2261 if (isWorkspaceLocked()) return false;
2262 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002263
2264 if (!(v instanceof CellLayout)) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08002265 v = (View) v.getParent().getParent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002266 }
2267
Michael Jurka0280c3b2010-09-17 15:00:07 -07002268 resetAddInfo();
2269 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002270 // This happens when long clicking an item with the dpad/trackball
Adam Cohenfaea1f82011-07-21 16:23:57 -07002271 if (longClickCellInfo == null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002272 return true;
2273 }
2274
Winson Chung3d503fb2011-07-13 17:25:49 -07002275 // The hotseat touch handling does not go through Workspace, and we always allow long press
2276 // on hotseat items.
Michael Jurka0280c3b2010-09-17 15:00:07 -07002277 final View itemUnderLongClick = longClickCellInfo.cell;
Winson Chung3d503fb2011-07-13 17:25:49 -07002278 boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
2279 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002280 if (itemUnderLongClick == null) {
2281 // User long pressed on empty space
Michael Jurka0280c3b2010-09-17 15:00:07 -07002282 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2283 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002284 startWallpaper();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002285 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002286 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002287 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07002288 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002289 }
2290 }
2291 }
2292 return true;
2293 }
2294
Winson Chung3d503fb2011-07-13 17:25:49 -07002295 boolean isHotseatLayout(View layout) {
2296 return mHotseat != null && layout != null &&
2297 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
2298 }
2299 Hotseat getHotseat() {
2300 return mHotseat;
Romain Guy1fbc1c82009-11-09 20:43:08 -08002301 }
Adam Cohenebea84d2011-11-09 17:20:41 -08002302 SearchDropTargetBar getSearchBar() {
2303 return mSearchDropTargetBar;
2304 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002305
Winson Chung3d503fb2011-07-13 17:25:49 -07002306 /**
2307 * Returns the CellLayout of the specified container at the specified screen.
2308 */
2309 CellLayout getCellLayout(long container, int screen) {
2310 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2311 if (mHotseat != null) {
2312 return mHotseat.getLayout();
2313 } else {
2314 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002315 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002316 } else {
2317 return (CellLayout) mWorkspace.getChildAt(screen);
Romain Guya6abce82009-11-10 02:54:41 -08002318 }
2319 }
2320
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002321 Workspace getWorkspace() {
2322 return mWorkspace;
2323 }
2324
Daniel Sandler843e8602010-06-07 14:59:01 -04002325 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2326 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002327 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04002328 }
2329
Andrew Flynn0dca1ec2012-02-29 13:33:22 -08002330 public boolean isAllAppsButtonRank(int rank) {
2331 return mHotseat.isAllAppsButtonRank(rank);
2332 }
2333
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002334 /**
2335 * Helper method for the cameraZoomIn/cameraZoomOut animations
2336 * @param view The view being animated
Winson Chungf0ea4d32011-06-06 14:27:16 -07002337 * @param state The state that we are moving in or out of (eg. APPS_CUSTOMIZE)
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002338 * @param scaleFactor The scale factor used for the zoom
2339 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07002340 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002341 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07002342 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002343 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002344
Winson Chung18f41f82012-05-09 13:28:10 -07002345 void disableWallpaperIfInAllApps() {
2346 // Only disable it if we are in all apps
Winson Chungc93e5ae2012-07-23 20:48:26 -07002347 if (isAllAppsVisible()) {
Winson Chung18f41f82012-05-09 13:28:10 -07002348 if (mAppsCustomizeTabHost != null &&
2349 !mAppsCustomizeTabHost.isTransitioning()) {
2350 updateWallpaperVisibility(false);
2351 }
2352 }
2353 }
2354
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002355 void updateWallpaperVisibility(boolean visible) {
2356 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
2357 int curflags = getWindow().getAttributes().flags
2358 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2359 if (wpflags != curflags) {
2360 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
2361 }
2362 }
2363
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002364 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
2365 if (v instanceof LauncherTransitionable) {
2366 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
2367 }
2368 }
2369
Michael Jurkabed61d22012-02-14 22:51:29 -08002370 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2371 if (v instanceof LauncherTransitionable) {
2372 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2373 }
Winson Chung70442722012-02-10 15:43:22 -08002374
2375 // Update the workspace transition step as well
2376 dispatchOnLauncherTransitionStep(v, 0f);
2377 }
2378
2379 private void dispatchOnLauncherTransitionStep(View v, float t) {
2380 if (v instanceof LauncherTransitionable) {
2381 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
2382 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002383 }
2384
2385 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2386 if (v instanceof LauncherTransitionable) {
2387 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2388 }
Winson Chung70442722012-02-10 15:43:22 -08002389
2390 // Update the workspace transition step as well
2391 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08002392 }
2393
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002394 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07002395 * Things to test when changing the following seven functions.
2396 * - Home from workspace
2397 * - from center screen
2398 * - from other screens
2399 * - Home from all apps
2400 * - from center screen
2401 * - from other screens
2402 * - Back from all apps
2403 * - from center screen
2404 * - from other screens
2405 * - Launch app from workspace and quit
2406 * - with back
2407 * - with home
2408 * - Launch app from all apps and quit
2409 * - with back
2410 * - with home
2411 * - Go to a screen that's not the default, then all
2412 * apps, and launch and app, and go back
2413 * - with back
2414 * -with home
2415 * - On workspace, long press power and go back
2416 * - with back
2417 * - with home
2418 * - On all apps, long press power and go back
2419 * - with back
2420 * - with home
2421 * - On workspace, power off
2422 * - On all apps, power off
2423 * - Launch an app and turn off the screen while in that app
2424 * - Go back with home key
2425 * - Go back with back key TODO: make this not go to workspace
2426 * - From all apps
2427 * - From workspace
2428 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2429 * - From all apps
2430 * - From the center workspace
2431 * - From another workspace
2432 */
2433
2434 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002435 * Zoom the camera out from the workspace to reveal 'toView'.
2436 * Assumes that the view to show is anchored at either the very top or very bottom
2437 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002438 */
Michael Jurkabed61d22012-02-14 22:51:29 -08002439 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002440 if (mStateAnimation != null) {
2441 mStateAnimation.cancel();
2442 mStateAnimation = null;
2443 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002444 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002445
Winson Chungf0ea4d32011-06-06 14:27:16 -07002446 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2447 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2448 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08002449 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002450 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07002451 final int startDelay =
2452 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002453
Michael Jurkab3e22d92011-10-31 15:58:33 -07002454 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002455
Michael Jurkad74c9842011-07-10 12:44:21 -07002456 // Shrink workspaces away if going to AppsCustomize from workspace
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002457 Animator workspaceAnim =
2458 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002459
2460 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002461 toView.setScaleX(scale);
2462 toView.setScaleY(scale);
2463 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2464 scaleAnim.
2465 scaleX(1f).scaleY(1f).
2466 setDuration(duration).
2467 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08002468
Winson Chungf0ea4d32011-06-06 14:27:16 -07002469 toView.setVisibility(View.VISIBLE);
Adam Cohenc00f0b92011-12-06 19:45:06 -08002470 toView.setAlpha(0f);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002471 final ObjectAnimator alphaAnim = ObjectAnimator
2472 .ofFloat(toView, "alpha", 0f, 1f)
2473 .setDuration(fadeDuration);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002474 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung70442722012-02-10 15:43:22 -08002475 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2476 @Override
2477 public void onAnimationUpdate(ValueAnimator animation) {
Michael Jurka059798a2012-09-04 09:20:16 -07002478 if (animation == null) {
2479 throw new RuntimeException("animation is null");
2480 }
Winson Chung70442722012-02-10 15:43:22 -08002481 float t = (Float) animation.getAnimatedValue();
2482 dispatchOnLauncherTransitionStep(fromView, t);
2483 dispatchOnLauncherTransitionStep(toView, t);
2484 }
2485 });
Adam Cohenf16e5712011-01-13 13:31:45 -08002486
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002487 // toView should appear right at the end of the workspace shrink
2488 // animation
Michael Jurka2ecf9952012-06-18 12:52:28 -07002489 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002490 mStateAnimation.play(scaleAnim).after(startDelay);
Michael Jurka7407d2a2011-12-12 21:48:38 -08002491 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002492
2493 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Adam Cohenf4ddea32011-09-12 13:46:42 -07002494 boolean animationCancelled = false;
2495
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002496 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002497 public void onAnimationStart(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002498 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002499 // Prepare the position
2500 toView.setTranslationX(0.0f);
2501 toView.setTranslationY(0.0f);
2502 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002503 toView.bringToFront();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002504 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002505 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002506 public void onAnimationEnd(Animator animation) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002507 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2508 dispatchOnLauncherTransitionEnd(toView, animated, false);
Winson Chung32174c82011-07-19 15:47:55 -07002509
Michael Jurkafa7969f2012-09-21 16:39:14 -07002510 if (mWorkspace != null && !springLoaded && !LauncherApplication.isScreenLarge()) {
Winson Chung32174c82011-07-19 15:47:55 -07002511 // Hide the workspace scrollbar
2512 mWorkspace.hideScrollingIndicator(true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002513 hideDockDivider();
Winson Chung32174c82011-07-19 15:47:55 -07002514 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002515 if (!animationCancelled) {
2516 updateWallpaperVisibility(false);
2517 }
Winson Chungc7d2b602012-05-16 17:02:20 -07002518
2519 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07002520 if (mSearchDropTargetBar != null) {
2521 mSearchDropTargetBar.hideSearchBar(false);
2522 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002523 }
2524
Adam Cohencff6af82011-09-13 14:51:53 -07002525 @Override
Adam Cohenf4ddea32011-09-12 13:46:42 -07002526 public void onAnimationCancel(Animator animation) {
2527 animationCancelled = true;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002528 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002529 });
2530
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002531 if (workspaceAnim != null) {
2532 mStateAnimation.play(workspaceAnim);
2533 }
Michael Jurka1899a362011-11-03 13:50:45 -07002534
2535 boolean delayAnim = false;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002536 final ViewTreeObserver observer;
2537
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002538 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
2539 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002540
2541 // If any of the objects being animated haven't been measured/laid out
2542 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08002543 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002544 (mWorkspace.getMeasuredWidth() == 0) ||
2545 (toView.getMeasuredWidth() == 0)) {
2546 observer = mWorkspace.getViewTreeObserver();
2547 delayAnim = true;
2548 } else {
2549 observer = null;
Michael Jurka1899a362011-11-03 13:50:45 -07002550 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002551
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002552 final AnimatorSet stateAnimation = mStateAnimation;
2553 final Runnable startAnimRunnable = new Runnable() {
2554 public void run() {
2555 // Check that mStateAnimation hasn't changed while
2556 // we waited for a layout/draw pass
2557 if (mStateAnimation != stateAnimation)
2558 return;
2559 setPivotsForZoom(toView, scale);
2560 dispatchOnLauncherTransitionStart(fromView, animated, false);
2561 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurka382aa182012-06-11 15:42:07 -07002562 toView.post(new Runnable() {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002563 public void run() {
2564 // Check that mStateAnimation hasn't changed while
2565 // we waited for a layout/draw pass
2566 if (mStateAnimation != stateAnimation)
2567 return;
2568 mStateAnimation.start();
2569 }
2570 });
2571 }
2572 };
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002573 if (delayAnim) {
2574 final OnGlobalLayoutListener delayedStart = new OnGlobalLayoutListener() {
2575 public void onGlobalLayout() {
Michael Jurka382aa182012-06-11 15:42:07 -07002576 toView.post(startAnimRunnable);
Michael Jurka3a9fced2012-04-13 14:44:29 -07002577 observer.removeOnGlobalLayoutListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002578 }
2579 };
2580 observer.addOnGlobalLayoutListener(delayedStart);
2581 } else {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002582 startAnimRunnable.run();
Michael Jurka1899a362011-11-03 13:50:45 -07002583 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002584 } else {
2585 toView.setTranslationX(0.0f);
2586 toView.setTranslationY(0.0f);
2587 toView.setScaleX(1.0f);
2588 toView.setScaleY(1.0f);
2589 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002590 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07002591
Michael Jurkabed61d22012-02-14 22:51:29 -08002592 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2593 // Hide the workspace scrollbar
2594 mWorkspace.hideScrollingIndicator(true);
2595 hideDockDivider();
Winson Chungc7d2b602012-05-16 17:02:20 -07002596
2597 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07002598 if (mSearchDropTargetBar != null) {
2599 mSearchDropTargetBar.hideSearchBar(false);
2600 }
Michael Jurkaabded662011-03-04 12:06:57 -08002601 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002602 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002603 dispatchOnLauncherTransitionStart(fromView, animated, false);
2604 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002605 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002606 dispatchOnLauncherTransitionStart(toView, animated, false);
2607 dispatchOnLauncherTransitionEnd(toView, animated, false);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002608 updateWallpaperVisibility(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002609 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002610 }
2611
2612 /**
2613 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07002614 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002615 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002616 */
Adam Cohened66b2b2012-01-23 17:28:51 -08002617 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2618 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002619
Michael Jurkab3e22d92011-10-31 15:58:33 -07002620 if (mStateAnimation != null) {
2621 mStateAnimation.cancel();
2622 mStateAnimation = null;
2623 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002624 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002625
Winson Chungf0ea4d32011-06-06 14:27:16 -07002626 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002627 final int fadeOutDuration =
2628 res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002629 final float scaleFactor = (float)
2630 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2631 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08002632 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002633 Animator workspaceAnim = null;
2634
2635 if (toState == State.WORKSPACE) {
2636 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
2637 workspaceAnim = mWorkspace.getChangeStateAnimation(
2638 Workspace.State.NORMAL, animated, stagger);
2639 } else if (toState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2640 workspaceAnim = mWorkspace.getChangeStateAnimation(
2641 Workspace.State.SPRING_LOADED, animated);
2642 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002643
Michael Jurkab3e22d92011-10-31 15:58:33 -07002644 setPivotsForZoom(fromView, scaleFactor);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002645 updateWallpaperVisibility(true);
Winson Chung4afe9b32011-07-27 17:46:20 -07002646 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002647 if (animated) {
Michael Jurka159b4cc2012-01-17 03:00:35 -08002648 final LauncherViewPropertyAnimator scaleAnim =
2649 new LauncherViewPropertyAnimator(fromView);
2650 scaleAnim.
2651 scaleX(scaleFactor).scaleY(scaleFactor).
2652 setDuration(duration).
2653 setInterpolator(new Workspace.ZoomInInterpolator());
2654
2655 final ObjectAnimator alphaAnim = ObjectAnimator
2656 .ofFloat(fromView, "alpha", 1f, 0f)
2657 .setDuration(fadeOutDuration);
Adam Cohencff6af82011-09-13 14:51:53 -07002658 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
Winson Chung70442722012-02-10 15:43:22 -08002659 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2660 @Override
2661 public void onAnimationUpdate(ValueAnimator animation) {
2662 float t = 1f - (Float) animation.getAnimatedValue();
2663 dispatchOnLauncherTransitionStep(fromView, t);
2664 dispatchOnLauncherTransitionStep(toView, t);
2665 }
2666 });
Michael Jurka159b4cc2012-01-17 03:00:35 -08002667
Michael Jurka2ecf9952012-06-18 12:52:28 -07002668 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurkabed61d22012-02-14 22:51:29 -08002669
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002670 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
2671 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002672
2673 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002674 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002675 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002676 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002677 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002678 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2679 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkabafdaaf2012-04-26 13:43:25 -07002680 if (mWorkspace != null) {
2681 mWorkspace.hideScrollingIndicator(false);
2682 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002683 if (onCompleteRunnable != null) {
2684 onCompleteRunnable.run();
2685 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002686 }
2687 });
2688
Winson Chungf0ea4d32011-06-06 14:27:16 -07002689 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002690 if (workspaceAnim != null) {
2691 mStateAnimation.play(workspaceAnim);
2692 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002693 dispatchOnLauncherTransitionStart(fromView, animated, true);
2694 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002695 final Animator stateAnimation = mStateAnimation;
2696 mWorkspace.post(new Runnable() {
2697 public void run() {
2698 if (stateAnimation != mStateAnimation)
2699 return;
2700 mStateAnimation.start();
2701 }
2702 });
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002703 } else {
2704 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002705 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002706 dispatchOnLauncherTransitionStart(fromView, animated, true);
2707 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002708 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002709 dispatchOnLauncherTransitionStart(toView, animated, true);
2710 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002711 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002712 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002713 }
2714
Michael Jurkae326f182011-11-21 14:05:46 -08002715 @Override
2716 public void onTrimMemory(int level) {
2717 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07002718 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08002719 mAppsCustomizeTabHost.onTrimMemory();
2720 }
2721 }
2722
Winson Chung18f41f82012-05-09 13:28:10 -07002723 @Override
2724 public void onWindowFocusChanged(boolean hasFocus) {
2725 if (!hasFocus) {
2726 // When another window occludes launcher (like the notification shade, or recents),
2727 // ensure that we enable the wallpaper flag so that transitions are done correctly.
2728 updateWallpaperVisibility(true);
2729 } else {
2730 // When launcher has focus again, disable the wallpaper if we are in AllApps
Winson Chung6cf79092012-06-07 14:50:10 -07002731 mWorkspace.postDelayed(new Runnable() {
2732 @Override
2733 public void run() {
2734 disableWallpaperIfInAllApps();
2735 }
2736 }, 500);
Winson Chung18f41f82012-05-09 13:28:10 -07002737 }
2738 }
2739
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002740 void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002741 showWorkspace(animated, null);
2742 }
2743
2744 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002745 if (mState != State.WORKSPACE) {
Winson Chungc7d2b602012-05-16 17:02:20 -07002746 boolean wasInSpringLoadedMode = (mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002747 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002748 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002749
Winson Chungc7d2b602012-05-16 17:02:20 -07002750 // Show the search bar (only animate if we were showing the drop target bar in spring
2751 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07002752 if (mSearchDropTargetBar != null) {
2753 mSearchDropTargetBar.showSearchBar(wasInSpringLoadedMode);
2754 }
Winson Chungc7d2b602012-05-16 17:02:20 -07002755
Michael Jurkab737ee62011-11-15 15:57:22 -08002756 // We only need to animate in the dock divider if we're going from spring loaded mode
Winson Chungc7d2b602012-05-16 17:02:20 -07002757 showDockDivider(animated && wasInSpringLoadedMode);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002758
2759 // Set focus to the AppsCustomize button
2760 if (mAllAppsButton != null) {
2761 mAllAppsButton.requestFocus();
2762 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002763 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002764
Michael Jurkab737ee62011-11-15 15:57:22 -08002765 mWorkspace.flashScrollingIndicator(animated);
Adam Cohen7777d962011-08-18 18:58:38 -07002766
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002767 // Change the state *after* we've called all the transition code
2768 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002769
Winson Chung5fb63472011-02-02 17:03:37 -08002770 // Resume the auto-advance of widgets
2771 mUserPresent = true;
2772 updateRunning();
2773
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002774 // send an accessibility event to announce the context change
2775 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
Joe Onorato00acb122009-08-04 16:04:30 -04002776 }
2777
Michael Jurkab3e22d92011-10-31 15:58:33 -07002778 void showAllApps(boolean animated) {
2779 if (mState != State.WORKSPACE) return;
2780
2781 showAppsCustomizeHelper(animated, false);
2782 mAppsCustomizeTabHost.requestFocus();
2783
Michael Jurkab3e22d92011-10-31 15:58:33 -07002784 // Change the state *after* we've called all the transition code
2785 mState = State.APPS_CUSTOMIZE;
2786
2787 // Pause the auto-advance of widgets until we are out of AllApps
2788 mUserPresent = false;
2789 updateRunning();
2790 closeFolder();
2791
2792 // Send an accessibility event to announce the context change
2793 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
2794 }
2795
Adam Cohen7777d962011-08-18 18:58:38 -07002796 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002797 if (isAllAppsVisible()) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002798 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true, null);
Michael Jurkab737ee62011-11-15 15:57:22 -08002799 hideDockDivider();
Winson Chungc07918d2011-07-01 15:35:26 -07002800 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07002801 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002802 }
Adam Cohen7777d962011-08-18 18:58:38 -07002803
Adam Cohened66b2b2012-01-23 17:28:51 -08002804 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay,
2805 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07002806 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
2807
Winson Chunge7a03942011-08-05 15:05:12 -07002808 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002809 @Override
2810 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002811 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07002812 // Before we show workspace, hide all apps again because
2813 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2814 // clean up our state transition functions
2815 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002816 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07002817 } else {
2818 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002819 }
Winson Chung557d6ed2011-07-08 15:34:52 -07002820 }
2821 }, (extendedDelay ?
2822 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2823 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2824 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002825
Michael Jurkad3ef3062010-11-23 16:23:58 -08002826 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002827 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002828 final boolean animated = true;
2829 final boolean springLoaded = true;
2830 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07002831 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002832 }
2833 // Otherwise, we are not in spring loaded mode, so don't do anything.
2834 }
2835
Michael Jurkab737ee62011-11-15 15:57:22 -08002836 void hideDockDivider() {
2837 if (mQsbDivider != null && mDockDivider != null) {
2838 mQsbDivider.setVisibility(View.INVISIBLE);
2839 mDockDivider.setVisibility(View.INVISIBLE);
2840 }
2841 }
2842
2843 void showDockDivider(boolean animated) {
2844 if (mQsbDivider != null && mDockDivider != null) {
2845 mQsbDivider.setVisibility(View.VISIBLE);
2846 mDockDivider.setVisibility(View.VISIBLE);
2847 if (mDividerAnimator != null) {
2848 mDividerAnimator.cancel();
2849 mQsbDivider.setAlpha(1f);
2850 mDockDivider.setAlpha(1f);
2851 mDividerAnimator = null;
2852 }
2853 if (animated) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07002854 mDividerAnimator = LauncherAnimUtils.createAnimatorSet();
2855 mDividerAnimator.playTogether(LauncherAnimUtils.ofFloat(mQsbDivider, "alpha", 1f),
2856 LauncherAnimUtils.ofFloat(mDockDivider, "alpha", 1f));
Winson Chungadf0c182012-08-23 14:59:07 -07002857 int duration = 0;
2858 if (mSearchDropTargetBar != null) {
2859 duration = mSearchDropTargetBar.getTransitionInDuration();
2860 }
2861 mDividerAnimator.setDuration(duration);
Michael Jurkab737ee62011-11-15 15:57:22 -08002862 mDividerAnimator.start();
2863 }
2864 }
2865 }
2866
Michael Jurkab3e22d92011-10-31 15:58:33 -07002867 void lockAllApps() {
2868 // TODO
2869 }
2870
2871 void unlockAllApps() {
2872 // TODO
2873 }
2874
Winson Chungf0ea4d32011-06-06 14:27:16 -07002875 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002876 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002877 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002878 void showHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002879 if (!LauncherApplication.isScreenLarge()) {
2880 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002881 if (mHotseat.getAlpha() != 1f) {
Winson Chungadf0c182012-08-23 14:59:07 -07002882 int duration = 0;
2883 if (mSearchDropTargetBar != null) {
2884 duration = mSearchDropTargetBar.getTransitionInDuration();
2885 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08002886 mHotseat.animate().alpha(1f).setDuration(duration);
2887 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002888 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002889 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002890 }
2891 }
2892 }
2893
2894 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002895 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002896 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002897 void hideHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002898 if (!LauncherApplication.isScreenLarge()) {
2899 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002900 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07002901 int duration = 0;
2902 if (mSearchDropTargetBar != null) {
2903 duration = mSearchDropTargetBar.getTransitionOutDuration();
2904 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08002905 mHotseat.animate().alpha(0f).setDuration(duration);
2906 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002907 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002908 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002909 }
Winson Chungb26f3d62011-06-02 10:49:29 -07002910 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002911 }
2912
Patrick Dubroy5f445422011-02-18 14:35:21 -08002913 /**
2914 * Add an item from all apps or customize onto the given workspace screen.
2915 * If layout is null, add to the current screen.
2916 */
2917 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002918 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07002919 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07002920 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002921 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002922
Winson Chungdff8ebb2011-09-08 17:25:31 -07002923 /** Maps the current orientation to an index for referencing orientation correct global icons */
2924 private int getCurrentOrientationIndexForGlobalIcons() {
2925 // default - 0, landscape - 1
2926 switch (getResources().getConfiguration().orientation) {
2927 case Configuration.ORIENTATION_LANDSCAPE:
2928 return 1;
2929 default:
2930 return 0;
2931 }
2932 }
2933
Michael Jurkaae65ee32012-04-30 11:45:54 -07002934 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002935 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002936 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002937 // Look for the toolbar icon specified in the activity meta-data
2938 Bundle metaData = packageManager.getActivityInfo(
2939 activityName, PackageManager.GET_META_DATA).metaData;
2940 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002941 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002942 if (iconResId != 0) {
2943 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002944 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002945 }
2946 }
2947 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07002948 // This can happen if the activity defines an invalid drawable
2949 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
2950 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01002951 } catch (Resources.NotFoundException nfe) {
2952 // This can happen if the activity defines an invalid drawable
2953 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
2954 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002955 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002956 return null;
2957 }
2958
2959 // if successful in getting icon, return it; otherwise, set button to use default drawable
2960 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002961 int buttonId, ComponentName activityName, int fallbackDrawableId,
2962 String toolbarResourceName) {
2963 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07002964 Resources r = getResources();
2965 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
2966 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002967
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002968 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002969 // If we were unable to find the icon via the meta-data, use a generic one
2970 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07002971 toolbarIcon = r.getDrawable(fallbackDrawableId);
2972 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002973 if (button != null) {
2974 button.setCompoundDrawables(toolbarIcon, null, null, null);
2975 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002976 return null;
2977 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07002978 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002979 if (button != null) {
2980 button.setCompoundDrawables(toolbarIcon, null, null, null);
2981 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002982 return toolbarIcon.getConstantState();
2983 }
2984 }
2985
2986 // if successful in getting icon, return it; otherwise, set button to use default drawable
2987 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002988 int buttonId, ComponentName activityName, int fallbackDrawableId,
2989 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002990 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002991 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002992
Michael Jurka19e0fc52011-07-22 18:00:21 -07002993 if (button != null) {
2994 // If we were unable to find the icon via the meta-data, use a
2995 // generic one
2996 if (toolbarIcon == null) {
2997 button.setImageResource(fallbackDrawableId);
2998 } else {
2999 button.setImageDrawable(toolbarIcon);
3000 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003001 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003002
3003 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3004
Michael Jurka0423dcf2010-10-05 14:56:18 -07003005 }
3006
Winson Chung1b884092012-06-08 17:13:02 -07003007 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003008 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003009 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003010 }
3011
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003012 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003013 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003014 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003015 }
3016
Winson Chungbb185bd2011-11-21 12:31:42 -08003017 private void invalidatePressedFocusedStates(View container, View button) {
3018 if (container instanceof HolographicLinearLayout) {
3019 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3020 layout.invalidatePressedFocusedStates();
3021 } else if (button instanceof HolographicImageView) {
3022 HolographicImageView view = (HolographicImageView) button;
3023 view.invalidatePressedFocusedStates();
3024 }
3025 }
3026
Winson Chungc51db6a2011-10-05 11:44:49 -07003027 private boolean updateGlobalSearchIcon() {
3028 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003029 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003030 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003031 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07003032 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07003033
Winson Chung1cad91e2011-05-25 17:41:01 -07003034 final SearchManager searchManager =
3035 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3036 ComponentName activityName = searchManager.getGlobalSearchActivity();
3037 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003038 int coi = getCurrentOrientationIndexForGlobalIcons();
3039 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003040 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3041 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3042 if (sGlobalSearchIcon[coi] == null) {
3043 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3044 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3045 TOOLBAR_ICON_METADATA_NAME);
3046 }
3047
Winson Chungc51db6a2011-10-05 11:44:49 -07003048 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3049 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003050 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003051 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003052 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003053 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003054 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3055 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
3056 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003057 voiceButton.setVisibility(View.GONE);
Michael Jurkac60498a2012-05-07 15:29:42 -07003058 if (voiceButtonProxy != null) {
3059 voiceButtonProxy.setVisibility(View.GONE);
3060 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003061 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003062 }
3063 }
3064
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003065 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003066 final View searchButtonContainer = findViewById(R.id.search_button_container);
3067 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003068 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003069 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003070 }
3071
Winson Chungc51db6a2011-10-05 11:44:49 -07003072 private boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07003073 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003074 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07003075 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07003076
Winson Chungc51db6a2011-10-05 11:44:49 -07003077 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003078 final SearchManager searchManager =
3079 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3080 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3081
3082 ComponentName activityName = null;
3083 if (globalSearchActivity != null) {
3084 // Check if the global search activity handles voice search
3085 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3086 intent.setPackage(globalSearchActivity.getPackageName());
3087 activityName = intent.resolveActivity(getPackageManager());
3088 }
3089
3090 if (activityName == null) {
3091 // Fallback: check if an activity other than the global search activity
3092 // resolves this
3093 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3094 activityName = intent.resolveActivity(getPackageManager());
3095 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003096 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003097 int coi = getCurrentOrientationIndexForGlobalIcons();
3098 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003099 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3100 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3101 if (sVoiceSearchIcon[coi] == null) {
3102 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3103 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3104 TOOLBAR_ICON_METADATA_NAME);
3105 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003106 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003107 voiceButton.setVisibility(View.VISIBLE);
Jim Miller14091b12012-04-24 19:27:54 -07003108 if (voiceButtonProxy != null) {
3109 voiceButtonProxy.setVisibility(View.VISIBLE);
3110 }
Winson Chungbb185bd2011-11-21 12:31:42 -08003111 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003112 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003113 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07003114 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003115 voiceButton.setVisibility(View.GONE);
Jim Miller14091b12012-04-24 19:27:54 -07003116 if (voiceButtonProxy != null) {
3117 voiceButtonProxy.setVisibility(View.GONE);
3118 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003119 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003120 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003121 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003122
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003123 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003124 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3125 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003126 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003127 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003128 }
3129
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003130 /**
Winson Chungeb66b142011-06-16 13:14:22 -07003131 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003132 */
3133 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003134 final View marketButton = findViewById(R.id.market_button);
3135 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3136 // Find the app market activity by resolving an intent.
3137 // (If multiple app markets are installed, it will return the ResolverActivity.)
3138 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07003139 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003140 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07003141 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07003142 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003143 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
3144 TOOLBAR_ICON_METADATA_NAME);
Winson Chung785d2eb2011-04-14 16:08:02 -07003145 marketButton.setVisibility(View.VISIBLE);
3146 } else {
3147 // We should hide and disable the view so that we don't try and restore the visibility
3148 // of it when we swap between drag & normal states from IconDropTarget subclasses.
3149 marketButton.setVisibility(View.GONE);
3150 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003151 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003152 }
3153
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003154 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chung1b884092012-06-08 17:13:02 -07003155 // Ensure that the new drawable we are creating has the approprate toolbar icon bounds
3156 Resources r = getResources();
3157 Drawable marketIconDrawable = d.newDrawable(r);
3158 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3159 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
3160 marketIconDrawable.setBounds(0, 0, w, h);
3161
3162 updateTextButtonWithDrawable(R.id.market_button, marketIconDrawable);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003163 }
3164
Michael Jurkad7c28052012-04-27 15:43:36 -07003165 @Override
3166 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
3167 boolean result = super.dispatchPopulateAccessibilityEvent(event);
3168 final List<CharSequence> text = event.getText();
3169 text.clear();
3170 text.add(getString(R.string.home));
3171 return result;
3172 }
3173
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003174 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003175 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003176 */
3177 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
3178 @Override
3179 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003180 closeSystemDialogs();
3181 }
3182 }
3183
3184 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003185 * Receives notifications whenever the appwidgets are reset.
3186 */
3187 private class AppWidgetResetObserver extends ContentObserver {
3188 public AppWidgetResetObserver() {
3189 super(new Handler());
3190 }
3191
3192 @Override
3193 public void onChange(boolean selfChange) {
3194 onAppWidgetReset();
3195 }
3196 }
3197
3198 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003199 * If the activity is currently paused, signal that we need to re-run the loader
3200 * in onResume.
3201 *
3202 * This needs to be called from incoming places where resources might have been loaded
3203 * while we are paused. That is becaues the Configuration might be wrong
3204 * when we're not running, and if it comes back to what it was when we
3205 * were paused, we are not restarted.
3206 *
3207 * Implementation of the method from LauncherModel.Callbacks.
3208 *
3209 * @return true if we are currently paused. The caller might be able to
3210 * skip some work in that case since we will come back again.
3211 */
3212 public boolean setLoadOnResume() {
3213 if (mPaused) {
3214 Log.i(TAG, "setLoadOnResume");
3215 mOnResumeNeedsLoad = true;
3216 return true;
3217 } else {
3218 return false;
3219 }
3220 }
3221
3222 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003223 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003224 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003225 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003226 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003227 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003228 } else {
3229 return SCREEN_COUNT / 2;
3230 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003231 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003232
Joe Onorato9c1289c2009-08-17 11:03:03 -04003233 /**
3234 * Refreshes the shortcuts shown on the workspace.
3235 *
3236 * Implementation of the method from LauncherModel.Callbacks.
3237 */
3238 public void startBinding() {
3239 final Workspace workspace = mWorkspace;
Adam Cohendf035382011-04-11 17:22:04 -07003240
Winson Chungf0c6ae02012-03-21 16:10:31 -07003241 mNewShortcutAnimatePage = -1;
3242 mNewShortcutAnimateViews.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003243 mWorkspace.clearDropTargets();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003244 int count = workspace.getChildCount();
3245 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04003246 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Winson Chung7a25a9e2011-01-30 13:33:56 -08003247 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
3248 layoutParent.removeAllViewsInLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003249 }
Michael Jurka05bf644e2011-11-30 20:28:53 -08003250 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003251 if (mHotseat != null) {
3252 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003253 }
3254 }
3255
3256 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003257 * Bind the items start-end from the list.
3258 *
3259 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003260 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003261 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003262 setLoadOnResume();
3263
Winson Chungf0c6ae02012-03-21 16:10:31 -07003264 // Get the list of added shortcuts and intersect them with the set of shortcuts here
3265 Set<String> newApps = new HashSet<String>();
3266 newApps = mSharedPrefs.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, newApps);
3267
3268 Workspace workspace = mWorkspace;
3269 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003270 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003271
3272 // Short circuit if we are loading dock items for a configuration which has no dock
3273 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3274 mHotseat == null) {
3275 continue;
3276 }
3277
Joe Onorato9c1289c2009-08-17 11:03:03 -04003278 switch (item.itemType) {
3279 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3280 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003281 ShortcutInfo info = (ShortcutInfo) item;
3282 String uri = info.intent.toUri(0).toString();
3283 View shortcut = createShortcut(info);
Winson Chung3d503fb2011-07-13 17:25:49 -07003284 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
3285 item.cellY, 1, 1, false);
Winson Chungbfeac062012-06-06 15:56:08 -07003286 boolean animateIconUp = false;
3287 synchronized (newApps) {
3288 if (newApps.contains(uri)) {
3289 animateIconUp = newApps.remove(uri);
3290 }
3291 }
3292 if (animateIconUp) {
Winson Chungf0c6ae02012-03-21 16:10:31 -07003293 // Prepare the view to be animated up
3294 shortcut.setAlpha(0f);
3295 shortcut.setScaleX(0f);
3296 shortcut.setScaleY(0f);
3297 mNewShortcutAnimatePage = item.screen;
3298 if (!mNewShortcutAnimateViews.contains(shortcut)) {
3299 mNewShortcutAnimateViews.add(shortcut);
3300 }
3301 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003302 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003303 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003304 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003305 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003306 (FolderInfo) item, mIconCache);
Winson Chung3d503fb2011-07-13 17:25:49 -07003307 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
3308 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003309 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003310 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003311 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003312
Joe Onorato9c1289c2009-08-17 11:03:03 -04003313 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003314 }
3315
Joe Onorato9c1289c2009-08-17 11:03:03 -04003316 /**
3317 * Implementation of the method from LauncherModel.Callbacks.
3318 */
Joe Onoratoad72e172009-11-06 16:25:04 -05003319 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003320 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003321 sFolders.clear();
3322 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003323 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003324
3325 /**
3326 * Add the views for a widget to the workspace.
3327 *
3328 * Implementation of the method from LauncherModel.Callbacks.
3329 */
3330 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003331 setLoadOnResume();
3332
Daniel Sandler843e8602010-06-07 14:59:01 -04003333 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3334 if (DEBUG_WIDGETS) {
3335 Log.d(TAG, "bindAppWidget: " + item);
3336 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003337 final Workspace workspace = mWorkspace;
3338
3339 final int appWidgetId = item.appWidgetId;
3340 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003341 if (DEBUG_WIDGETS) {
3342 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3343 }
3344
Joe Onorato9c1289c2009-08-17 11:03:03 -04003345 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3346
Joe Onorato9c1289c2009-08-17 11:03:03 -04003347 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003348 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003349
Winson Chung3d503fb2011-07-13 17:25:49 -07003350 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003351 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07003352 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3353
Joe Onorato9c1289c2009-08-17 11:03:03 -04003354 workspace.requestLayout();
3355
Daniel Sandler843e8602010-06-07 14:59:01 -04003356 if (DEBUG_WIDGETS) {
3357 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3358 + (SystemClock.uptimeMillis()-start) + "ms");
3359 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003360 }
3361
Adam Cohen1462de32012-07-24 22:34:36 -07003362 public void onPageBoundSynchronously(int page) {
3363 mSynchronouslyBoundPages.add(page);
3364 }
3365
Joe Onorato9c1289c2009-08-17 11:03:03 -04003366 /**
3367 * Callback saying that there aren't any more items to bind.
3368 *
3369 * Implementation of the method from LauncherModel.Callbacks.
3370 */
3371 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003372 setLoadOnResume();
3373
Joe Onorato9c1289c2009-08-17 11:03:03 -04003374 if (mSavedState != null) {
3375 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003376 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003377 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003378 mSavedState = null;
3379 }
3380
Adam Cohen1462de32012-07-24 22:34:36 -07003381 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003382
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003383 // If we received the result of any pending adds while the loader was running (e.g. the
3384 // widget configuration forced an orientation change), process them now.
3385 for (int i = 0; i < sPendingAddList.size(); i++) {
3386 completeAdd(sPendingAddList.get(i));
3387 }
3388 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003389
Winson Chungc51db6a2011-10-05 11:44:49 -07003390 // Update the market app icon as necessary (the other icons will be managed in response to
3391 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003392 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003393
Winson Chungf0c6ae02012-03-21 16:10:31 -07003394 // Animate up any icons as necessary
3395 if (mVisible || mWorkspaceLoading) {
3396 Runnable newAppsRunnable = new Runnable() {
3397 @Override
3398 public void run() {
Winson Chunga2413752012-04-03 14:22:34 -07003399 runNewAppsAnimation(false);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003400 }
3401 };
Winson Chunga2413752012-04-03 14:22:34 -07003402
3403 boolean willSnapPage = mNewShortcutAnimatePage > -1 &&
3404 mNewShortcutAnimatePage != mWorkspace.getCurrentPage();
3405 if (canRunNewAppsAnimation()) {
3406 // If the user has not interacted recently, then either snap to the new page to show
3407 // the new-apps animation or just run them if they are to appear on the current page
3408 if (willSnapPage) {
3409 mWorkspace.snapToPage(mNewShortcutAnimatePage, newAppsRunnable);
3410 } else {
3411 runNewAppsAnimation(false);
3412 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003413 } else {
Winson Chung318eee02012-04-12 10:59:27 -07003414 // If the user has interacted recently, then just add the items in place if they
Winson Chunga2413752012-04-03 14:22:34 -07003415 // are on another page (or just normally if they are added to the current page)
3416 runNewAppsAnimation(willSnapPage);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003417 }
3418 }
3419
3420 mWorkspaceLoading = false;
3421 }
3422
Winson Chunga2413752012-04-03 14:22:34 -07003423 private boolean canRunNewAppsAnimation() {
3424 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
3425 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
3426 }
3427
Winson Chungf0c6ae02012-03-21 16:10:31 -07003428 /**
3429 * Runs a new animation that scales up icons that were added while Launcher was in the
3430 * background.
Winson Chunga2413752012-04-03 14:22:34 -07003431 *
3432 * @param immediate whether to run the animation or show the results immediately
Winson Chungf0c6ae02012-03-21 16:10:31 -07003433 */
Winson Chunga2413752012-04-03 14:22:34 -07003434 private void runNewAppsAnimation(boolean immediate) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07003435 AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003436 Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chunga2413752012-04-03 14:22:34 -07003437
3438 // Order these new views spatially so that they animate in order
Winson Chungf0c6ae02012-03-21 16:10:31 -07003439 Collections.sort(mNewShortcutAnimateViews, new Comparator<View>() {
3440 @Override
3441 public int compare(View a, View b) {
3442 CellLayout.LayoutParams alp = (CellLayout.LayoutParams) a.getLayoutParams();
3443 CellLayout.LayoutParams blp = (CellLayout.LayoutParams) b.getLayoutParams();
3444 int cellCountX = LauncherModel.getCellCountX();
3445 return (alp.cellY * cellCountX + alp.cellX) - (blp.cellY * cellCountX + blp.cellX);
3446 }
3447 });
Winson Chunga2413752012-04-03 14:22:34 -07003448
3449 // Animate each of the views in place (or show them immediately if requested)
3450 if (immediate) {
3451 for (View v : mNewShortcutAnimateViews) {
3452 v.setAlpha(1f);
3453 v.setScaleX(1f);
3454 v.setScaleY(1f);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003455 }
Winson Chunga2413752012-04-03 14:22:34 -07003456 } else {
3457 for (int i = 0; i < mNewShortcutAnimateViews.size(); ++i) {
3458 View v = mNewShortcutAnimateViews.get(i);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003459 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
Winson Chunga2413752012-04-03 14:22:34 -07003460 PropertyValuesHolder.ofFloat("alpha", 1f),
3461 PropertyValuesHolder.ofFloat("scaleX", 1f),
3462 PropertyValuesHolder.ofFloat("scaleY", 1f));
3463 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
3464 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
3465 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
3466 bounceAnims.add(bounceAnim);
3467 }
3468 anim.playTogether(bounceAnims);
3469 anim.addListener(new AnimatorListenerAdapter() {
3470 @Override
3471 public void onAnimationEnd(Animator animation) {
3472 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
3473 }
3474 });
3475 anim.start();
3476 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003477
3478 // Clean up
3479 mNewShortcutAnimatePage = -1;
3480 mNewShortcutAnimateViews.clear();
3481 new Thread("clearNewAppsThread") {
3482 public void run() {
3483 mSharedPrefs.edit()
3484 .putInt(InstallShortcutReceiver.NEW_APPS_PAGE_KEY, -1)
3485 .putStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, null)
3486 .commit();
3487 }
3488 }.start();
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003489 }
3490
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003491 @Override
3492 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003493 boolean searchVisible = updateGlobalSearchIcon();
3494 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07003495 if (mSearchDropTargetBar != null) {
3496 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
3497 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003498 }
3499
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003500 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003501 * Add the icons for all apps.
3502 *
3503 * Implementation of the method from LauncherModel.Callbacks.
3504 */
Michael Jurkac57b7a82011-08-09 22:02:20 -07003505 public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003506 Runnable setAllAppsRunnable = new Runnable() {
3507 public void run() {
3508 if (mAppsCustomizeContent != null) {
3509 mAppsCustomizeContent.setApps(apps);
3510 }
3511 }
3512 };
3513
Michael Jurkac57b7a82011-08-09 22:02:20 -07003514 // Remove the progress bar entirely; we could also make it GONE
3515 // but better to remove it since we know it's not going to be used
3516 View progressBar = mAppsCustomizeTabHost.
3517 findViewById(R.id.apps_customize_progress_bar);
3518 if (progressBar != null) {
3519 ((ViewGroup)progressBar.getParent()).removeView(progressBar);
Winson Chungc93e5ae2012-07-23 20:48:26 -07003520
3521 // We just post the call to setApps so the user sees the progress bar
3522 // disappear-- otherwise, it just looks like the progress bar froze
3523 // which doesn't look great
3524 mAppsCustomizeTabHost.post(setAllAppsRunnable);
3525 } else {
3526 // If we did not initialize the spinner in onCreate, then we can directly set the
3527 // list of applications without waiting for any progress bars views to be hidden.
3528 setAllAppsRunnable.run();
Winson Chung785d2eb2011-04-14 16:08:02 -07003529 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003530 }
3531
3532 /**
3533 * A package was installed.
3534 *
3535 * Implementation of the method from LauncherModel.Callbacks.
3536 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003537 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003538 setLoadOnResume();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003539
Winson Chung785d2eb2011-04-14 16:08:02 -07003540 if (mAppsCustomizeContent != null) {
3541 mAppsCustomizeContent.addApps(apps);
3542 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003543 }
3544
3545 /**
3546 * A package was updated.
3547 *
3548 * Implementation of the method from LauncherModel.Callbacks.
3549 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003550 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003551 setLoadOnResume();
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003552 if (mWorkspace != null) {
3553 mWorkspace.updateShortcuts(apps);
3554 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003555
Winson Chung785d2eb2011-04-14 16:08:02 -07003556 if (mAppsCustomizeContent != null) {
3557 mAppsCustomizeContent.updateApps(apps);
3558 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003559 }
3560
3561 /**
3562 * A package was uninstalled.
3563 *
3564 * Implementation of the method from LauncherModel.Callbacks.
3565 */
Winson Chungcd810732012-06-18 16:45:43 -07003566 public void bindAppsRemoved(ArrayList<String> packageNames, boolean permanent) {
Joe Onorato36115782010-06-17 13:28:48 -04003567 if (permanent) {
Winson Chungcd810732012-06-18 16:45:43 -07003568 mWorkspace.removeItems(packageNames);
Joe Onorato36115782010-06-17 13:28:48 -04003569 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003570
Winson Chung785d2eb2011-04-14 16:08:02 -07003571 if (mAppsCustomizeContent != null) {
Winson Chungcd810732012-06-18 16:45:43 -07003572 mAppsCustomizeContent.removeApps(packageNames);
Winson Chung785d2eb2011-04-14 16:08:02 -07003573 }
Winson Chunga1820962011-10-03 16:31:06 -07003574
3575 // Notify the drag controller
Winson Chungcd810732012-06-18 16:45:43 -07003576 mDragController.onAppsRemoved(packageNames, this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003577 }
Joe Onoratobe386092009-11-17 17:32:16 -08003578
3579 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003580 * A number of packages were updated.
3581 */
3582 public void bindPackagesUpdated() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003583 if (mAppsCustomizeContent != null) {
3584 mAppsCustomizeContent.onPackagesUpdated();
3585 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003586 }
3587
Winson Chung400438b2011-01-16 17:53:48 -08003588 private int mapConfigurationOriActivityInfoOri(int configOri) {
3589 final Display d = getWindowManager().getDefaultDisplay();
3590 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3591 switch (d.getRotation()) {
3592 case Surface.ROTATION_0:
3593 case Surface.ROTATION_180:
3594 // We are currently in the same basic orientation as the natural orientation
3595 naturalOri = configOri;
3596 break;
3597 case Surface.ROTATION_90:
3598 case Surface.ROTATION_270:
3599 // We are currently in the other basic orientation to the natural orientation
3600 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3601 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3602 break;
3603 }
3604
3605 int[] oriMap = {
3606 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3607 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3608 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3609 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3610 };
3611 // Since the map starts at portrait, we need to offset if this device's natural orientation
3612 // is landscape.
3613 int indexOffset = 0;
3614 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3615 indexOffset = 1;
3616 }
3617 return oriMap[(d.getRotation() + indexOffset) % 4];
3618 }
Adam Cohen446e9402011-09-15 18:21:21 -07003619
Winson Chung4b919f82012-05-01 10:44:08 -07003620 public boolean isRotationEnabled() {
Michael Jurka9bc8eba2012-05-21 20:36:44 -07003621 boolean forceEnableRotation = doesFileExist(FORCE_ENABLE_ROTATION_PROPERTY);
Winson Chung4b919f82012-05-01 10:44:08 -07003622 boolean enableRotation = forceEnableRotation ||
3623 getResources().getBoolean(R.bool.allow_rotation);
3624 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08003625 }
Winson Chung4b919f82012-05-01 10:44:08 -07003626 public void lockScreenOrientation() {
3627 if (isRotationEnabled()) {
3628 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3629 .getConfiguration().orientation));
3630 }
3631 }
3632 public void unlockScreenOrientation(boolean immediate) {
3633 if (isRotationEnabled()) {
3634 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07003635 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07003636 } else {
3637 mHandler.postDelayed(new Runnable() {
3638 public void run() {
3639 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3640 }
3641 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07003642 }
Winson Chung4b919f82012-05-01 10:44:08 -07003643 }
Winson Chung400438b2011-01-16 17:53:48 -08003644 }
3645
Winson Chung82f55532011-08-09 14:14:23 -07003646 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07003647 private boolean isClingsEnabled() {
Brett Chabot2a9e2282011-08-23 15:03:13 -07003648 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07003649 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07003650
Winson Chung7d7541e2011-09-16 20:14:36 -07003651 return true;
Winson Chung82f55532011-08-09 14:14:23 -07003652 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003653 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
3654 Cling cling = (Cling) findViewById(clingId);
3655 if (cling != null) {
3656 cling.init(this, positionData);
3657 cling.setVisibility(View.VISIBLE);
3658 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3659 if (animate) {
3660 cling.buildLayer();
3661 cling.setAlpha(0f);
3662 cling.animate()
3663 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07003664 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07003665 .setDuration(SHOW_CLING_DURATION)
3666 .setStartDelay(delay)
3667 .start();
3668 } else {
3669 cling.setAlpha(1f);
3670 }
3671 }
3672 return cling;
3673 }
3674 private void dismissCling(final Cling cling, final String flag, int duration) {
Winson Chung82f55532011-08-09 14:14:23 -07003675 if (cling != null) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07003676 ObjectAnimator anim = LauncherAnimUtils.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07003677 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07003678 anim.addListener(new AnimatorListenerAdapter() {
3679 public void onAnimationEnd(Animator animation) {
3680 cling.setVisibility(View.GONE);
3681 cling.cleanup();
Winson Chung46353de2012-02-16 14:05:10 -08003682 // We should update the shared preferences on a background thread
3683 new Thread("dismissClingThread") {
3684 public void run() {
3685 SharedPreferences.Editor editor = mSharedPrefs.edit();
3686 editor.putBoolean(flag, true);
3687 editor.commit();
3688 }
3689 }.start();
Winson Chung82f55532011-08-09 14:14:23 -07003690 };
3691 });
3692 anim.start();
3693 }
3694 }
Winson Chung9d9d74f2011-09-19 11:49:12 -07003695 private void removeCling(int id) {
3696 final View cling = findViewById(id);
3697 if (cling != null) {
3698 final ViewGroup parent = (ViewGroup) cling.getParent();
3699 parent.post(new Runnable() {
3700 @Override
3701 public void run() {
3702 parent.removeView(cling);
3703 }
3704 });
3705 }
3706 }
Michael Jurka974c3862012-05-22 22:00:31 -07003707
3708 private boolean skipCustomClingIfNoAccounts() {
3709 Cling cling = (Cling) findViewById(R.id.workspace_cling);
3710 boolean customCling = cling.getDrawIdentifier().equals("workspace_custom");
3711 if (customCling) {
3712 AccountManager am = AccountManager.get(this);
3713 Account[] accounts = am.getAccountsByType("com.google");
3714 return accounts.length == 0;
3715 }
3716 return false;
3717 }
3718
Winson Chung7d7541e2011-09-16 20:14:36 -07003719 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003720 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003721 if (isClingsEnabled() &&
Michael Jurka974c3862012-05-22 22:00:31 -07003722 !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false) &&
3723 !skipCustomClingIfNoAccounts() ) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003724 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003725 } else {
3726 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003727 }
3728 }
3729 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003730 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003731 if (isClingsEnabled() &&
3732 !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003733 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003734 } else {
3735 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003736 }
3737 }
3738 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003739 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003740 if (isClingsEnabled() &&
3741 !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
3742 return initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003743 } else {
3744 removeCling(R.id.folder_cling);
Winson Chung46353de2012-02-16 14:05:10 -08003745 return null;
Winson Chung7d7541e2011-09-16 20:14:36 -07003746 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003747 }
3748 public boolean isFolderClingVisible() {
3749 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003750 if (cling != null) {
3751 return cling.getVisibility() == View.VISIBLE;
3752 }
3753 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07003754 }
Winson Chung82f55532011-08-09 14:14:23 -07003755 public void dismissWorkspaceCling(View v) {
3756 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003757 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003758 }
3759 public void dismissAllAppsCling(View v) {
3760 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003761 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
3762 }
3763 public void dismissFolderCling(View v) {
3764 Cling cling = (Cling) findViewById(R.id.folder_cling);
3765 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003766 }
3767
Winson Chung80baf5a2010-08-09 16:03:15 -07003768 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003769 * Prints out out state for debugging.
3770 */
3771 public void dumpState() {
3772 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003773 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003774 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3775 Log.d(TAG, "mRestoring=" + mRestoring);
3776 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3777 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003778 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003779 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003780
Winson Chung785d2eb2011-04-14 16:08:02 -07003781 if (mAppsCustomizeContent != null) {
3782 mAppsCustomizeContent.dumpState();
3783 }
Joe Onoratobe386092009-11-17 17:32:16 -08003784 Log.d(TAG, "END launcher2 dump state");
3785 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003786
3787 @Override
3788 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
3789 super.dump(prefix, fd, writer, args);
3790 writer.println(" ");
3791 writer.println("Debug logs: ");
3792 for (int i = 0; i < sDumpLogs.size(); i++) {
3793 writer.println(" " + sDumpLogs.get(i));
3794 }
3795 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07003796
3797 public static void dumpDebugLogsToConsole() {
3798 Log.d(TAG, "");
3799 Log.d(TAG, "*********************");
3800 Log.d(TAG, "Launcher debug logs: ");
3801 for (int i = 0; i < sDumpLogs.size(); i++) {
3802 Log.d(TAG, " " + sDumpLogs.get(i));
3803 }
3804 Log.d(TAG, "*********************");
3805 Log.d(TAG, "");
3806 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003807}
Michael Jurka2763be32011-02-24 11:19:57 -08003808
Michael Jurkaabded662011-03-04 12:06:57 -08003809interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003810 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003811 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08003812 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08003813 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08003814 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08003815}