blob: 5ff8a93616f258fb1becf80a88007d778e23193d [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 Cohenaaa5c212012-10-05 18:14:31 -07001194 launcherInfo.notifyWidgetSizeChanged(this);
1195
Winson Chung3d503fb2011-07-13 17:25:49 -07001196 mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001197 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001198
1199 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001200 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001201 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001202 }
Romain Guycbb89e42009-06-08 15:52:54 -07001203
Adam Cohended9f8d2010-11-03 13:25:16 -07001204 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1205 @Override
1206 public void onReceive(Context context, Intent intent) {
1207 final String action = intent.getAction();
1208 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1209 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001210 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001211 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001212
Winson Chungc100e8e2011-08-09 16:02:43 -07001213 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001214 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001215 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
1216 mAppsCustomizeTabHost.reset();
1217 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001218 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001219 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1220 mUserPresent = true;
1221 updateRunning();
1222 }
1223 }
1224 };
1225
1226 @Override
1227 public void onAttachedToWindow() {
1228 super.onAttachedToWindow();
1229
1230 // Listen for broadcasts related to user-presence
1231 final IntentFilter filter = new IntentFilter();
1232 filter.addAction(Intent.ACTION_SCREEN_OFF);
1233 filter.addAction(Intent.ACTION_USER_PRESENT);
1234 registerReceiver(mReceiver, filter);
1235
Adam Cohend113e0c2010-11-11 10:48:05 -08001236 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001237 mVisible = true;
1238 }
1239
1240 @Override
1241 public void onDetachedFromWindow() {
1242 super.onDetachedFromWindow();
1243 mVisible = false;
1244
Adam Cohend113e0c2010-11-11 10:48:05 -08001245 if (mAttached) {
1246 unregisterReceiver(mReceiver);
1247 mAttached = false;
1248 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001249 updateRunning();
1250 }
1251
1252 public void onWindowVisibilityChanged(int visibility) {
1253 mVisible = visibility == View.VISIBLE;
1254 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001255 // The following code used to be in onResume, but it turns out onResume is called when
1256 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1257 // is a more appropriate event to handle
1258 if (mVisible) {
1259 mAppsCustomizeTabHost.onWindowVisible();
1260 if (!mWorkspaceLoading) {
1261 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001262 // We want to let Launcher draw itself at least once before we force it to build
1263 // layers on all the workspace pages, so that transitioning to Launcher from other
1264 // apps is nice and speedy. Usually the first call to preDraw doesn't correspond to
1265 // a true draw so we wait until the second preDraw call to be safe
1266 observer.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001267 public boolean onPreDraw() {
Michael Jurka6ee21d22012-02-21 18:20:27 -08001268 // We delay the layer building a bit in order to give
1269 // other message processing a time to run. In particular
1270 // this avoids a delay in hiding the IME if it was
1271 // currently shown, because doing that may involve
1272 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001273 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Winson Chung31ce0732012-05-06 13:36:43 -07001274
Michael Jurka6ee21d22012-02-21 18:20:27 -08001275 observer.removeOnPreDrawListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001276 return true;
1277 }
1278 });
1279 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001280 // When Launcher comes back to foreground, a different Activity might be responsible for
1281 // the app market intent, so refresh the icon
1282 updateAppMarketIcon();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001283 clearTypedText();
1284 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001285 }
1286
1287 private void sendAdvanceMessage(long delay) {
1288 mHandler.removeMessages(ADVANCE_MSG);
1289 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1290 mHandler.sendMessageDelayed(msg, delay);
1291 mAutoAdvanceSentTime = System.currentTimeMillis();
1292 }
1293
1294 private void updateRunning() {
1295 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1296 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1297 mAutoAdvanceRunning = autoAdvanceRunning;
1298 if (autoAdvanceRunning) {
1299 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1300 sendAdvanceMessage(delay);
1301 } else {
1302 if (!mWidgetsToAdvance.isEmpty()) {
1303 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1304 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1305 }
1306 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001307 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001308 }
1309 }
1310 }
1311
1312 private final Handler mHandler = new Handler() {
1313 @Override
1314 public void handleMessage(Message msg) {
1315 if (msg.what == ADVANCE_MSG) {
1316 int i = 0;
1317 for (View key: mWidgetsToAdvance.keySet()) {
1318 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1319 final int delay = mAdvanceStagger * i;
1320 if (v instanceof Advanceable) {
1321 postDelayed(new Runnable() {
1322 public void run() {
1323 ((Advanceable) v).advance();
1324 }
1325 }, delay);
1326 }
1327 i++;
1328 }
1329 sendAdvanceMessage(mAdvanceInterval);
1330 }
1331 }
1332 };
1333
1334 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001335 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001336 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1337 if (v instanceof Advanceable) {
1338 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001339 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001340 updateRunning();
1341 }
1342 }
1343
1344 void removeWidgetToAutoAdvance(View hostView) {
1345 if (mWidgetsToAdvance.containsKey(hostView)) {
1346 mWidgetsToAdvance.remove(hostView);
1347 updateRunning();
1348 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001349 }
1350
Joe Onorato9c1289c2009-08-17 11:03:03 -04001351 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001352 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001353 launcherInfo.hostView = null;
1354 }
1355
Winson Chung93eef082012-03-23 15:59:27 -07001356 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1357 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1358 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001359 }
1360
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001361 public LauncherAppWidgetHost getAppWidgetHost() {
1362 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001363 }
Romain Guycbb89e42009-06-08 15:52:54 -07001364
Winson Chunga9abd0e2010-10-27 17:18:37 -07001365 public LauncherModel getModel() {
1366 return mModel;
1367 }
1368
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001369 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001370 getWindow().closeAllPanels();
1371
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001372 // Whatever we were doing is hereby canceled.
1373 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001374 }
1375
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001376 @Override
1377 protected void onNewIntent(Intent intent) {
1378 super.onNewIntent(intent);
1379
1380 // Close the menu
1381 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001382 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001383 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001384
Joe Onorato14f122b2009-11-19 14:06:36 -08001385 boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1386 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001387
Adam Cohenac56cff2011-09-28 20:45:37 -07001388 Folder openFolder = mWorkspace.getOpenFolder();
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001389 // In all these cases, only animate if we're already on home
Patrick Dubroy758a9232011-03-03 19:54:56 -08001390 mWorkspace.exitWidgetResizeMode();
Adam Cohenac56cff2011-09-28 20:45:37 -07001391 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1392 openFolder == null) {
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001393 mWorkspace.moveToDefaultScreen(true);
Joe Onorato3a8820b2009-11-10 15:06:42 -08001394 }
Adam Cohenac56cff2011-09-28 20:45:37 -07001395
1396 closeFolder();
Winson Chungde1af762011-07-21 16:44:07 -07001397 exitSpringLoadedDragMode();
Winson Chung4a2afa32012-07-19 14:53:05 -07001398
1399 // If we are already on home, then just animate back to the workspace, otherwise, just
1400 // wait until onResume to set the state back to Workspace
1401 if (alreadyOnHome) {
1402 showWorkspace(true);
1403 } else {
1404 mOnResumeState = State.WORKSPACE;
1405 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001406
Joe Onorato3a8820b2009-11-10 15:06:42 -08001407 final View v = getWindow().peekDecorView();
1408 if (v != null && v.getWindowToken() != null) {
1409 InputMethodManager imm = (InputMethodManager)getSystemService(
1410 INPUT_METHOD_SERVICE);
1411 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001412 }
Winson Chung337cd9d2011-03-30 10:39:30 -07001413
Michael Jurka35aa14d2011-07-07 17:01:08 -07001414 // Reset AllApps to its initial state
Adam Cohenb64d36e2011-10-17 21:48:02 -07001415 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Winson Chungc100e8e2011-08-09 16:02:43 -07001416 mAppsCustomizeTabHost.reset();
Winson Chung785d2eb2011-04-14 16:08:02 -07001417 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001418 }
1419 }
1420
1421 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001422 public void onRestoreInstanceState(Bundle state) {
1423 super.onRestoreInstanceState(state);
1424 for (int page: mSynchronouslyBoundPages) {
1425 mWorkspace.restoreInstanceStateForChild(page);
1426 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001427 }
1428
1429 @Override
1430 protected void onSaveInstanceState(Bundle outState) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001431 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getNextPage());
Adam Cohen95bb8002011-07-03 23:40:28 -07001432 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001433
Michael Jurka883f55b2010-10-21 15:47:14 -07001434 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001435 // We close any open folder since it will not be re-opened, and we need to make sure
1436 // this state is reflected.
1437 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001438
Winson Chung3d503fb2011-07-13 17:25:49 -07001439 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screen > -1 &&
1440 mWaitingForResult) {
1441 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
1442 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screen);
1443 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1444 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001445 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1446 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1447 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001448 }
1449
1450 if (mFolderInfo != null && mWaitingForResult) {
1451 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1452 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1453 }
Michael Jurka946ad472010-07-09 18:05:18 -07001454
Winson Chung785d2eb2011-04-14 16:08:02 -07001455 // Save the current AppsCustomize tab
1456 if (mAppsCustomizeTabHost != null) {
1457 String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1458 if (currentTabTag != null) {
1459 outState.putString("apps_customize_currentTab", currentTabTag);
1460 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001461 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1462 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001463 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001464 }
1465
1466 @Override
1467 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001468 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001469
Winson Chunge7a03942011-08-05 15:05:12 -07001470 // Remove all pending runnables
1471 mHandler.removeMessages(ADVANCE_MSG);
1472 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001473 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001474
Winson Chungcd2b0142011-06-08 16:02:26 -07001475 // Stop callbacks from LauncherModel
1476 LauncherApplication app = ((LauncherApplication) getApplication());
1477 mModel.stopLoader();
1478 app.setLauncher(null);
1479
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001480 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001481 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001482 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001483 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001484 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001485 mAppWidgetHost = null;
1486
1487 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488
1489 TextKeyListener.getInstance().release();
1490
Winson Chung81b52252012-08-27 15:34:29 -07001491 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
1492 // to prevent leaking Launcher activities on orientation change.
1493 if (mModel != null) {
1494 mModel.unbindItemInfosAndClearQueuedBindRunnables();
1495 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001496
1497 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001498 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001499
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001500 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001501 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1502 mWorkspace.removeAllViews();
1503 mWorkspace = null;
1504 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001505
Michael Jurka2ecf9952012-06-18 12:52:28 -07001506 LauncherAnimUtils.onDestroyActivity();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001507 }
1508
Adam Cohena9cf38f2011-05-02 15:36:58 -07001509 public DragController getDragController() {
1510 return mDragController;
1511 }
1512
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001513 @Override
1514 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001515 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001516 super.startActivityForResult(intent, requestCode);
1517 }
1518
Winson Chung70d72102011-08-12 11:24:35 -07001519 /**
1520 * Indicates that we want global search for this activity by setting the globalSearch
1521 * argument for {@link #startSearch} to true.
1522 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001523 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001524 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001525 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001526
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001527 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001528
Karl Rosaen138a0412009-04-23 19:00:21 -07001529 if (initialQuery == null) {
1530 // Use any text typed in the launcher as the initial query
1531 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001532 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001533 if (appSearchData == null) {
1534 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001535 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001536 }
Winson Chungadf0c182012-08-23 14:59:07 -07001537 Rect sourceBounds = new Rect();
1538 if (mSearchDropTargetBar != null) {
1539 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
1540 }
Romain Guycbb89e42009-06-08 15:52:54 -07001541
Michael Jurkaa33411c2012-06-14 16:18:21 -07001542 startGlobalSearch(initialQuery, selectInitialQuery,
1543 appSearchData, sourceBounds);
1544 }
1545
1546 /**
1547 * Starts the global search activity. This code is a copied from SearchManager
1548 */
1549 public void startGlobalSearch(String initialQuery,
1550 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001551 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07001552 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1553 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
1554 if (globalSearchActivity == null) {
1555 Log.w(TAG, "No global search activity found.");
1556 return;
1557 }
1558 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
1559 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1560 intent.setComponent(globalSearchActivity);
1561 // Make sure that we have a Bundle to put source in
1562 if (appSearchData == null) {
1563 appSearchData = new Bundle();
1564 } else {
1565 appSearchData = new Bundle(appSearchData);
1566 }
1567 // Set source to package name of app that starts global search, if not set already.
1568 if (!appSearchData.containsKey("source")) {
1569 appSearchData.putString("source", getPackageName());
1570 }
1571 intent.putExtra(SearchManager.APP_DATA, appSearchData);
1572 if (!TextUtils.isEmpty(initialQuery)) {
1573 intent.putExtra(SearchManager.QUERY, initialQuery);
1574 }
1575 if (selectInitialQuery) {
1576 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
1577 }
1578 intent.setSourceBounds(sourceBounds);
1579 try {
1580 startActivity(intent);
1581 } catch (ActivityNotFoundException ex) {
1582 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
1583 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001584 }
1585
Winson Chung70d72102011-08-12 11:24:35 -07001586 @Override
1587 public boolean onCreateOptionsMenu(Menu menu) {
1588 if (isWorkspaceLocked()) {
1589 return false;
1590 }
1591
1592 super.onCreateOptionsMenu(menu);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001593
1594 Intent manageApps = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
1595 manageApps.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1596 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung236d4312011-08-22 15:12:27 -07001597 Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
1598 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1599 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Michael Jurkab964f9c2011-09-27 22:10:05 -07001600 String helpUrl = getString(R.string.help_url);
1601 Intent help = new Intent(Intent.ACTION_VIEW, Uri.parse(helpUrl));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001602 help.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1603 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1604
Winson Chung70d72102011-08-12 11:24:35 -07001605 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1606 .setIcon(android.R.drawable.ic_menu_gallery)
1607 .setAlphabeticShortcut('W');
1608 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1609 .setIcon(android.R.drawable.ic_menu_manage)
Winson Chungdff8ebb2011-09-08 17:25:31 -07001610 .setIntent(manageApps)
Winson Chung70d72102011-08-12 11:24:35 -07001611 .setAlphabeticShortcut('M');
Winson Chung236d4312011-08-22 15:12:27 -07001612 menu.add(0, MENU_SYSTEM_SETTINGS, 0, R.string.menu_settings)
1613 .setIcon(android.R.drawable.ic_menu_preferences)
1614 .setIntent(settings)
1615 .setAlphabeticShortcut('P');
Michael Jurkab964f9c2011-09-27 22:10:05 -07001616 if (!helpUrl.isEmpty()) {
1617 menu.add(0, MENU_HELP, 0, R.string.menu_help)
1618 .setIcon(android.R.drawable.ic_menu_help)
1619 .setIntent(help)
1620 .setAlphabeticShortcut('H');
1621 }
Winson Chung70d72102011-08-12 11:24:35 -07001622 return true;
1623 }
1624
1625 @Override
1626 public boolean onPrepareOptionsMenu(Menu menu) {
1627 super.onPrepareOptionsMenu(menu);
1628
1629 if (mAppsCustomizeTabHost.isTransitioning()) {
1630 return false;
1631 }
1632 boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1633 menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1634
1635 return true;
1636 }
1637
1638 @Override
1639 public boolean onOptionsItemSelected(MenuItem item) {
1640 switch (item.getItemId()) {
1641 case MENU_WALLPAPER_SETTINGS:
1642 startWallpaper();
1643 return true;
Winson Chung70d72102011-08-12 11:24:35 -07001644 }
1645
1646 return super.onOptionsItemSelected(item);
1647 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001648
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001649 @Override
1650 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001651 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001652 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07001653 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001654 }
1655
Joe Onorato9c1289c2009-08-17 11:03:03 -04001656 public boolean isWorkspaceLocked() {
1657 return mWorkspaceLoading || mWaitingForResult;
1658 }
1659
Michael Jurka0280c3b2010-09-17 15:00:07 -07001660 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07001661 mPendingAddInfo.container = ItemInfo.NO_ID;
1662 mPendingAddInfo.screen = -1;
1663 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1664 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08001665 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07001666 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001667 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001668
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001669 void addAppWidgetImpl(final int appWidgetId, ItemInfo info, AppWidgetHostView boundWidget,
1670 AppWidgetProviderInfo appWidgetInfo) {
1671 if (appWidgetInfo.configure != null) {
1672 mPendingAddWidgetInfo = appWidgetInfo;
Michael Jurkaaf442092010-06-10 17:01:57 -07001673
Bjorn Bringert7984c942009-12-09 15:38:25 +00001674 // Launch over to configure widget, if needed
1675 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001676 intent.setComponent(appWidgetInfo.configure);
Bjorn Bringert7984c942009-12-09 15:38:25 +00001677 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Romain Guy8e633c52010-03-04 12:51:36 -08001678 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001679 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001680 // Otherwise just add it
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001681 completeAddAppWidget(appWidgetId, info.container, info.screen, boundWidget,
1682 appWidgetInfo);
Winson Chung557d6ed2011-07-08 15:34:52 -07001683 // Exit spring loaded mode if necessary after adding the widget
Adam Cohened66b2b2012-01-23 17:28:51 -08001684 exitSpringLoadedDragModeDelayed(true, false, null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001685 }
1686 }
Romain Guycbb89e42009-06-08 15:52:54 -07001687
Adam Cohenfbba09b2011-07-18 21:43:05 -07001688 /**
1689 * Process a shortcut drop.
1690 *
1691 * @param componentName The name of the component
1692 * @param screen The screen where it should be added
1693 * @param cell The cell it should be added to, optional
1694 * @param position The location on the screen where it was dropped, optional
1695 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001696 void processShortcutFromDrop(ComponentName componentName, long container, int screen,
1697 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001698 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001699 mPendingAddInfo.container = container;
1700 mPendingAddInfo.screen = screen;
1701 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001702
1703 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001704 mPendingAddInfo.cellX = cell[0];
1705 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001706 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001707
1708 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1709 createShortcutIntent.setComponent(componentName);
1710 processShortcut(createShortcutIntent);
1711 }
1712
Adam Cohenfbba09b2011-07-18 21:43:05 -07001713 /**
1714 * Process a widget drop.
1715 *
1716 * @param info The PendingAppWidgetInfo of the widget being added.
1717 * @param screen The screen where it should be added
1718 * @param cell The cell it should be added to, optional
1719 * @param position The location on the screen where it was dropped, optional
1720 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001721 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen,
Adam Cohend41fbf52012-02-16 23:53:59 -08001722 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001723 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001724 mPendingAddInfo.container = info.container = container;
1725 mPendingAddInfo.screen = info.screen = screen;
1726 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08001727 mPendingAddInfo.minSpanX = info.minSpanX;
1728 mPendingAddInfo.minSpanY = info.minSpanY;
1729
Adam Cohenfbba09b2011-07-18 21:43:05 -07001730 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001731 mPendingAddInfo.cellX = cell[0];
1732 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001733 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001734 if (span != null) {
1735 mPendingAddInfo.spanX = span[0];
1736 mPendingAddInfo.spanY = span[1];
1737 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001738
Adam Cohened66b2b2012-01-23 17:28:51 -08001739 AppWidgetHostView hostView = info.boundWidget;
1740 int appWidgetId;
1741 if (hostView != null) {
1742 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001743 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08001744 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001745 // In this case, we either need to start an activity to get permission to bind
1746 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08001747 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07001748 Bundle options = info.bindOptions;
1749
1750 boolean success = false;
1751 if (options != null) {
1752 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
1753 info.componentName, options);
1754 } else {
1755 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
1756 info.componentName);
1757 }
1758 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001759 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07001760 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001761 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07001762 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
1763 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1764 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Adam Cohendd70d662012-10-04 16:53:44 -07001765 // TODO: we need to make sure that this accounts for the options bundle.
1766 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07001767 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
1768 }
Adam Cohened66b2b2012-01-23 17:28:51 -08001769 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001770 }
1771
Joe Onoratodeb98af2010-02-19 14:59:39 -08001772 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001773 // Handle case where user selected "Applications"
1774 String applicationName = getResources().getString(R.string.group_applications);
1775 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001776
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001777 if (applicationName != null && applicationName.equals(shortcutName)) {
1778 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1779 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001780
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001781 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1782 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001783 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001784 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001785 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001786 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001787 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001788 }
1789
Winson Chung24ab2f12010-09-16 14:10:47 -07001790 void processWallpaper(Intent intent) {
1791 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1792 }
1793
Winson Chung3d503fb2011-07-13 17:25:49 -07001794 FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX,
1795 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001796 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001797 folderInfo.title = getText(R.string.folder_name);
1798
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001799 // Update the model
Winson Chung3d503fb2011-07-13 17:25:49 -07001800 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screen, cellX, cellY,
1801 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001802 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001803
1804 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07001805 FolderIcon newFolder =
1806 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
1807 mWorkspace.addInScreen(newFolder, container, screen, cellX, cellY, 1, 1,
1808 isWorkspaceLocked());
Adam Cohendf035382011-04-11 17:22:04 -07001809 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001810 }
Romain Guycbb89e42009-06-08 15:52:54 -07001811
Joe Onorato9c1289c2009-08-17 11:03:03 -04001812 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001813 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001814 }
1815
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001816 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001817 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001818 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001819 Intent chooser = Intent.createChooser(pickWallpaper,
1820 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001821 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1822 // Removed in Eclair MR1
1823// WallpaperManager wm = (WallpaperManager)
1824// getSystemService(Context.WALLPAPER_SERVICE);
1825// WallpaperInfo wi = wm.getWallpaperInfo();
1826// if (wi != null && wi.getSettingsActivity() != null) {
1827// LabeledIntent li = new LabeledIntent(getPackageName(),
1828// R.string.configure_wallpaper, 0);
1829// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1830// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1831// }
Mike Clerona0618e42009-10-22 13:55:21 -07001832 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001833 }
1834
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001835 /**
1836 * Registers various content observers. The current implementation registers
1837 * only a favorites observer to keep track of the favorites applications.
1838 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001839 private void registerContentObservers() {
1840 ContentResolver resolver = getContentResolver();
1841 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1842 true, mWidgetObserver);
1843 }
1844
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001845 @Override
1846 public boolean dispatchKeyEvent(KeyEvent event) {
1847 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1848 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001849 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001850 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001851 case KeyEvent.KEYCODE_VOLUME_DOWN:
Michael Jurka9bc8eba2012-05-21 20:36:44 -07001852 if (doesFileExist(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08001853 dumpState();
1854 return true;
1855 }
1856 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001857 }
1858 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1859 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001860 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001861 return true;
1862 }
1863 }
1864
1865 return super.dispatchKeyEvent(event);
1866 }
1867
Joe Onorato88ec0992009-11-19 13:16:06 -08001868 @Override
1869 public void onBackPressed() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001870 if (isAllAppsVisible()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001871 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001872 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07001873 Folder openFolder = mWorkspace.getOpenFolder();
1874 if (openFolder.isEditingName()) {
1875 openFolder.dismissEditingName();
1876 } else {
1877 closeFolder();
1878 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001879 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08001880 mWorkspace.exitWidgetResizeMode();
1881
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001882 // Back button is a no-op here, but give at least some feedback for the button press
1883 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07001884 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001885 }
1886
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001887 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001888 * Re-listen when widgets are reset.
1889 */
1890 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08001891 if (mAppWidgetHost != null) {
1892 mAppWidgetHost.startListening();
1893 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001894 }
1895
1896 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001897 * Launches the intent referred by the clicked shortcut.
1898 *
1899 * @param v The view representing the clicked shortcut.
1900 */
1901 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001902 // Make sure that rogue clicks don't get through while allapps is launching, or after the
1903 // view has detached (it's possible for this to happen if the view is removed mid touch).
1904 if (v.getWindowToken() == null) {
1905 return;
1906 }
1907
Winson Chung9b0b2fe2012-02-24 13:03:34 -08001908 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001909 return;
1910 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07001911
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001912 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001913 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001914 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08001915 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08001916 int[] pos = new int[2];
1917 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08001918 intent.setSourceBounds(new Rect(pos[0], pos[1],
1919 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Winson Chungc7450e32012-04-17 17:34:08 -07001920
1921 boolean success = startActivitySafely(v, intent, tag);
Michael Jurkaddd62e92011-02-16 17:49:14 -08001922
1923 if (success && v instanceof BubbleTextView) {
1924 mWaitingForResume = (BubbleTextView) v;
1925 mWaitingForResume.setStayPressed(true);
1926 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001927 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07001928 if (v instanceof FolderIcon) {
1929 FolderIcon fi = (FolderIcon) v;
1930 handleFolderClick(fi);
1931 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07001932 } else if (v == mAllAppsButton) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001933 if (isAllAppsVisible()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001934 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001935 } else {
Michael Jurka2a552322011-10-11 15:22:05 -07001936 onClickAllAppsButton(v);
Joe Onorato7404ee42009-07-31 11:54:44 -07001937 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001938 }
1939 }
1940
Michael Jurka0e260592010-06-30 17:07:39 -07001941 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07001942 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001943 // clicking anywhere on the workspace causes the customization drawer to slide down
1944 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07001945 return false;
1946 }
1947
Michael Jurkaaf442092010-06-10 17:01:57 -07001948 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001949 * Event handler for the search button
1950 *
1951 * @param v The view that was clicked.
1952 */
1953 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001954 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
1955
Amith Yamasania135ba82011-08-09 17:42:01 -07001956 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001957 }
1958
1959 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001960 * Event handler for the voice button
1961 *
1962 * @param v The view that was clicked.
1963 */
1964 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001965 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001966
Michael Jurkaae65ee32012-04-30 11:45:54 -07001967 try {
1968 final SearchManager searchManager =
1969 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1970 ComponentName activityName = searchManager.getGlobalSearchActivity();
1971 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07001972 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07001973 if (activityName != null) {
1974 intent.setPackage(activityName.getPackageName());
1975 }
Michael Jurka86a720e2012-05-09 11:23:23 -07001976 startActivity(null, intent, "onClickVoiceButton");
Michael Jurkaae65ee32012-04-30 11:45:54 -07001977 } catch (ActivityNotFoundException e) {
1978 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07001979 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07001980 startActivitySafely(null, intent, "onClickVoiceButton");
1981 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001982 }
1983
1984 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001985 * Event handler for the "grid" button that appears on the home screen, which
1986 * enters all apps mode.
1987 *
1988 * @param v The view that was clicked.
1989 */
1990 public void onClickAllAppsButton(View v) {
Michael Jurka5130e402011-10-13 04:55:35 -07001991 showAllApps(true);
1992 }
1993
1994 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07001995 // Provide the same haptic feedback that the system offers for virtual keys.
1996 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001997 }
1998
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001999 public void onClickAppMarketButton(View v) {
2000 if (mAppMarketIntent != null) {
Winson Chungc7450e32012-04-17 17:34:08 -07002001 startActivitySafely(v, mAppMarketIntent, "app market");
Winson Chung4f916f42012-03-26 15:30:59 -07002002 } else {
2003 Log.e(TAG, "Invalid app market intent.");
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002004 }
2005 }
2006
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002007 void startApplicationDetailsActivity(ComponentName componentName) {
2008 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002009 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
2010 Uri.fromParts("package", packageName, null));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002011 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung3b1b36b2012-04-24 18:51:14 -07002012 startActivitySafely(null, intent, "startApplicationDetailsActivity");
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002013 }
2014
Patrick Dubroy5539af72010-09-07 15:22:01 -07002015 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
2016 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
2017 // System applications cannot be installed. For now, show a toast explaining that.
2018 // We may give them the option of disabling apps this way.
2019 int messageId = R.string.uninstall_system_app_text;
2020 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
2021 } else {
2022 String packageName = appInfo.componentName.getPackageName();
2023 String className = appInfo.componentName.getClassName();
2024 Intent intent = new Intent(
2025 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002026 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2027 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy5539af72010-09-07 15:22:01 -07002028 startActivity(intent);
2029 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002030 }
2031
Michael Jurka86a720e2012-05-09 11:23:23 -07002032 boolean startActivity(View v, Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002033 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Winson Chungc7450e32012-04-17 17:34:08 -07002034
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002035 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002036 // Only launch using the new animation if the shortcut has not opted out (this is a
2037 // private contract between launcher and may be ignored in the future).
2038 boolean useLaunchAnimation = (v != null) &&
2039 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
2040 if (useLaunchAnimation) {
Winson Chungc7450e32012-04-17 17:34:08 -07002041 ActivityOptions opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
2042 v.getMeasuredWidth(), v.getMeasuredHeight());
2043
2044 startActivity(intent, opts.toBundle());
2045 } else {
2046 startActivity(intent);
2047 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002048 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002049 } catch (SecurityException e) {
2050 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002051 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002052 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002053 "or use the exported attribute for this activity. "
2054 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002055 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002056 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002057 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002058
Michael Jurka86a720e2012-05-09 11:23:23 -07002059 boolean startActivitySafely(View v, Intent intent, Object tag) {
2060 boolean success = false;
2061 try {
2062 success = startActivity(v, intent, tag);
2063 } catch (ActivityNotFoundException e) {
2064 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2065 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2066 }
2067 return success;
2068 }
2069
Romain Guy8e633c52010-03-04 12:51:36 -08002070 void startActivityForResultSafely(Intent intent, int requestCode) {
2071 try {
2072 startActivityForResult(intent, requestCode);
2073 } catch (ActivityNotFoundException e) {
2074 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2075 } catch (SecurityException e) {
2076 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2077 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
2078 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
2079 "or use the exported attribute for this activity.", e);
2080 }
2081 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002082
Adam Cohena9cf38f2011-05-02 15:36:58 -07002083 private void handleFolderClick(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002084 final FolderInfo info = folderIcon.getFolderInfo();
Adam Cohen3c81a382011-08-31 22:25:51 -07002085 Folder openFolder = mWorkspace.getFolderForTag(info);
2086
2087 // If the folder info reports that the associated folder is open, then verify that
2088 // it is actually opened. There have been a few instances where this gets out of sync.
2089 if (info.opened && openFolder == null) {
2090 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2091 + info.screen + " (" + info.cellX + ", " + info.cellY + ")");
2092 info.opened = false;
2093 }
2094
Adam Cohenfb91f302012-06-11 15:45:18 -07002095 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002096 // Close any open folder
2097 closeFolder();
2098 // Open the requested folder
Adam Cohena9cf38f2011-05-02 15:36:58 -07002099 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002100 } else {
2101 // Find the open folder...
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002102 int folderScreen;
2103 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002104 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002105 // .. and close it
2106 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07002107 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002108 // Close any folder open on the current screen
2109 closeFolder();
2110 // Pull the folder onto this screen
Adam Cohena9cf38f2011-05-02 15:36:58 -07002111 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002112 }
2113 }
2114 }
2115 }
2116
Adam Cohen268c4752012-06-06 17:47:33 -07002117 /**
2118 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2119 * in the DragLayer in the exact absolute location of the original FolderIcon.
2120 */
2121 private void copyFolderIconToImage(FolderIcon fi) {
2122 final int width = fi.getMeasuredWidth();
2123 final int height = fi.getMeasuredHeight();
2124
2125 // Lazy load ImageView, Bitmap and Canvas
2126 if (mFolderIconImageView == null) {
2127 mFolderIconImageView = new ImageView(this);
2128 }
2129 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2130 mFolderIconBitmap.getHeight() != height) {
2131 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2132 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2133 }
2134
2135 DragLayer.LayoutParams lp;
2136 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2137 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2138 } else {
2139 lp = new DragLayer.LayoutParams(width, height);
2140 }
2141
Adam Cohen307fe232012-08-16 17:55:58 -07002142 // The layout from which the folder is being opened may be scaled, adjust the starting
2143 // view size by this scale factor.
2144 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002145 lp.customPosition = true;
2146 lp.x = mRectForFolderAnimation.left;
2147 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002148 lp.width = (int) (scale * width);
2149 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002150
2151 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2152 fi.draw(mFolderIconCanvas);
2153 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002154 if (fi.getFolder() != null) {
2155 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2156 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002157 }
Adam Cohen268c4752012-06-06 17:47:33 -07002158 // Just in case this image view is still in the drag layer from a previous animation,
2159 // we remove it and re-add it.
2160 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2161 mDragLayer.removeView(mFolderIconImageView);
2162 }
2163 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002164 if (fi.getFolder() != null) {
2165 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002166 }
Adam Cohen268c4752012-06-06 17:47:33 -07002167 }
2168
Adam Cohen2801caf2011-05-13 20:57:39 -07002169 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002170 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002171 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2172 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2173 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2174
Adam Cohenc51934b2011-07-26 21:07:43 -07002175 FolderInfo info = (FolderInfo) fi.getTag();
2176 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2177 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002178 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2179 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002180 }
2181
Adam Cohen268c4752012-06-06 17:47:33 -07002182 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2183 copyFolderIconToImage(fi);
2184 fi.setVisibility(View.INVISIBLE);
2185
Michael Jurka2ecf9952012-06-18 12:52:28 -07002186 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002187 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002188 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
2189 oa.start();
2190 }
2191
Adam Cohen268c4752012-06-06 17:47:33 -07002192 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002193 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002194 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2195 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2196 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2197
Adam Cohen268c4752012-06-06 17:47:33 -07002198 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002199
Adam Cohen268c4752012-06-06 17:47:33 -07002200 // We remove and re-draw the FolderIcon in-case it has changed
2201 mDragLayer.removeView(mFolderIconImageView);
2202 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07002203 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002204 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002205 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002206 oa.addListener(new AnimatorListenerAdapter() {
2207 @Override
2208 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002209 if (cl != null) {
2210 cl.clearFolderLeaveBehind();
2211 // Remove the ImageView copy of the FolderIcon and make the original visible.
2212 mDragLayer.removeView(mFolderIconImageView);
2213 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002214 }
2215 }
2216 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002217 oa.start();
2218 }
2219
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002220 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002221 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002222 * is animated relative to the specified View. If the View is null, no animation
2223 * is played.
2224 *
2225 * @param folderInfo The FolderInfo describing the folder to open.
2226 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002227 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002228 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07002229 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002230
Adam Cohena9cf38f2011-05-02 15:36:58 -07002231 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002232
Adam Cohen4554ee12011-08-03 16:13:21 -07002233 // Just verify that the folder hasn't already been added to the DragLayer.
2234 // There was a one-off crash where the folder had a parent already.
2235 if (folder.getParent() == null) {
2236 mDragLayer.addView(folder);
2237 mDragController.addDropTarget((DropTarget) folder);
2238 } else {
2239 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2240 folder.getParent() + ").");
2241 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002242 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002243 growAndFadeOutFolderIcon(folderIcon);
Adam Cohen4554ee12011-08-03 16:13:21 -07002244 }
2245
2246 public void closeFolder() {
2247 Folder folder = mWorkspace.getOpenFolder();
2248 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002249 if (folder.isEditingName()) {
2250 folder.dismissEditingName();
2251 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002252 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002253
2254 // Dismiss the folder cling
2255 dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002256 }
2257 }
2258
2259 void closeFolder(Folder folder) {
2260 folder.getInfo().opened = false;
2261
2262 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2263 if (parent != null) {
2264 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2265 shrinkAndFadeInFolderIcon(fi);
2266 }
2267 folder.animateClosed();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002268 }
2269
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002270 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07002271 if (!isDraggingEnabled()) return false;
2272 if (isWorkspaceLocked()) return false;
2273 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002274
2275 if (!(v instanceof CellLayout)) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08002276 v = (View) v.getParent().getParent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002277 }
2278
Michael Jurka0280c3b2010-09-17 15:00:07 -07002279 resetAddInfo();
2280 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002281 // This happens when long clicking an item with the dpad/trackball
Adam Cohenfaea1f82011-07-21 16:23:57 -07002282 if (longClickCellInfo == null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002283 return true;
2284 }
2285
Winson Chung3d503fb2011-07-13 17:25:49 -07002286 // The hotseat touch handling does not go through Workspace, and we always allow long press
2287 // on hotseat items.
Michael Jurka0280c3b2010-09-17 15:00:07 -07002288 final View itemUnderLongClick = longClickCellInfo.cell;
Winson Chung3d503fb2011-07-13 17:25:49 -07002289 boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
2290 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002291 if (itemUnderLongClick == null) {
2292 // User long pressed on empty space
Michael Jurka0280c3b2010-09-17 15:00:07 -07002293 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2294 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002295 startWallpaper();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002296 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002297 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002298 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07002299 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002300 }
2301 }
2302 }
2303 return true;
2304 }
2305
Winson Chung3d503fb2011-07-13 17:25:49 -07002306 boolean isHotseatLayout(View layout) {
2307 return mHotseat != null && layout != null &&
2308 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
2309 }
2310 Hotseat getHotseat() {
2311 return mHotseat;
Romain Guy1fbc1c82009-11-09 20:43:08 -08002312 }
Adam Cohenebea84d2011-11-09 17:20:41 -08002313 SearchDropTargetBar getSearchBar() {
2314 return mSearchDropTargetBar;
2315 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002316
Winson Chung3d503fb2011-07-13 17:25:49 -07002317 /**
2318 * Returns the CellLayout of the specified container at the specified screen.
2319 */
2320 CellLayout getCellLayout(long container, int screen) {
2321 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2322 if (mHotseat != null) {
2323 return mHotseat.getLayout();
2324 } else {
2325 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002326 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002327 } else {
2328 return (CellLayout) mWorkspace.getChildAt(screen);
Romain Guya6abce82009-11-10 02:54:41 -08002329 }
2330 }
2331
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002332 Workspace getWorkspace() {
2333 return mWorkspace;
2334 }
2335
Daniel Sandler843e8602010-06-07 14:59:01 -04002336 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2337 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002338 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04002339 }
2340
Andrew Flynn0dca1ec2012-02-29 13:33:22 -08002341 public boolean isAllAppsButtonRank(int rank) {
2342 return mHotseat.isAllAppsButtonRank(rank);
2343 }
2344
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002345 /**
2346 * Helper method for the cameraZoomIn/cameraZoomOut animations
2347 * @param view The view being animated
Winson Chungf0ea4d32011-06-06 14:27:16 -07002348 * @param state The state that we are moving in or out of (eg. APPS_CUSTOMIZE)
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002349 * @param scaleFactor The scale factor used for the zoom
2350 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07002351 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002352 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07002353 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002354 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002355
Winson Chung18f41f82012-05-09 13:28:10 -07002356 void disableWallpaperIfInAllApps() {
2357 // Only disable it if we are in all apps
Winson Chungc93e5ae2012-07-23 20:48:26 -07002358 if (isAllAppsVisible()) {
Winson Chung18f41f82012-05-09 13:28:10 -07002359 if (mAppsCustomizeTabHost != null &&
2360 !mAppsCustomizeTabHost.isTransitioning()) {
2361 updateWallpaperVisibility(false);
2362 }
2363 }
2364 }
2365
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002366 void updateWallpaperVisibility(boolean visible) {
2367 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
2368 int curflags = getWindow().getAttributes().flags
2369 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2370 if (wpflags != curflags) {
2371 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
2372 }
2373 }
2374
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002375 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
2376 if (v instanceof LauncherTransitionable) {
2377 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
2378 }
2379 }
2380
Michael Jurkabed61d22012-02-14 22:51:29 -08002381 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2382 if (v instanceof LauncherTransitionable) {
2383 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2384 }
Winson Chung70442722012-02-10 15:43:22 -08002385
2386 // Update the workspace transition step as well
2387 dispatchOnLauncherTransitionStep(v, 0f);
2388 }
2389
2390 private void dispatchOnLauncherTransitionStep(View v, float t) {
2391 if (v instanceof LauncherTransitionable) {
2392 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
2393 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002394 }
2395
2396 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2397 if (v instanceof LauncherTransitionable) {
2398 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2399 }
Winson Chung70442722012-02-10 15:43:22 -08002400
2401 // Update the workspace transition step as well
2402 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08002403 }
2404
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002405 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07002406 * Things to test when changing the following seven functions.
2407 * - Home from workspace
2408 * - from center screen
2409 * - from other screens
2410 * - Home from all apps
2411 * - from center screen
2412 * - from other screens
2413 * - Back from all apps
2414 * - from center screen
2415 * - from other screens
2416 * - Launch app from workspace and quit
2417 * - with back
2418 * - with home
2419 * - Launch app from all apps and quit
2420 * - with back
2421 * - with home
2422 * - Go to a screen that's not the default, then all
2423 * apps, and launch and app, and go back
2424 * - with back
2425 * -with home
2426 * - On workspace, long press power and go back
2427 * - with back
2428 * - with home
2429 * - On all apps, long press power and go back
2430 * - with back
2431 * - with home
2432 * - On workspace, power off
2433 * - On all apps, power off
2434 * - Launch an app and turn off the screen while in that app
2435 * - Go back with home key
2436 * - Go back with back key TODO: make this not go to workspace
2437 * - From all apps
2438 * - From workspace
2439 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2440 * - From all apps
2441 * - From the center workspace
2442 * - From another workspace
2443 */
2444
2445 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002446 * Zoom the camera out from the workspace to reveal 'toView'.
2447 * Assumes that the view to show is anchored at either the very top or very bottom
2448 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002449 */
Michael Jurkabed61d22012-02-14 22:51:29 -08002450 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002451 if (mStateAnimation != null) {
2452 mStateAnimation.cancel();
2453 mStateAnimation = null;
2454 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002455 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002456
Winson Chungf0ea4d32011-06-06 14:27:16 -07002457 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2458 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2459 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08002460 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002461 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07002462 final int startDelay =
2463 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002464
Michael Jurkab3e22d92011-10-31 15:58:33 -07002465 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002466
Michael Jurkad74c9842011-07-10 12:44:21 -07002467 // Shrink workspaces away if going to AppsCustomize from workspace
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002468 Animator workspaceAnim =
2469 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002470
2471 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002472 toView.setScaleX(scale);
2473 toView.setScaleY(scale);
2474 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2475 scaleAnim.
2476 scaleX(1f).scaleY(1f).
2477 setDuration(duration).
2478 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08002479
Winson Chungf0ea4d32011-06-06 14:27:16 -07002480 toView.setVisibility(View.VISIBLE);
Adam Cohenc00f0b92011-12-06 19:45:06 -08002481 toView.setAlpha(0f);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002482 final ObjectAnimator alphaAnim = ObjectAnimator
2483 .ofFloat(toView, "alpha", 0f, 1f)
2484 .setDuration(fadeDuration);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002485 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung70442722012-02-10 15:43:22 -08002486 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2487 @Override
2488 public void onAnimationUpdate(ValueAnimator animation) {
Michael Jurka059798a2012-09-04 09:20:16 -07002489 if (animation == null) {
2490 throw new RuntimeException("animation is null");
2491 }
Winson Chung70442722012-02-10 15:43:22 -08002492 float t = (Float) animation.getAnimatedValue();
2493 dispatchOnLauncherTransitionStep(fromView, t);
2494 dispatchOnLauncherTransitionStep(toView, t);
2495 }
2496 });
Adam Cohenf16e5712011-01-13 13:31:45 -08002497
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002498 // toView should appear right at the end of the workspace shrink
2499 // animation
Michael Jurka2ecf9952012-06-18 12:52:28 -07002500 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002501 mStateAnimation.play(scaleAnim).after(startDelay);
Michael Jurka7407d2a2011-12-12 21:48:38 -08002502 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002503
2504 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Adam Cohenf4ddea32011-09-12 13:46:42 -07002505 boolean animationCancelled = false;
2506
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002507 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002508 public void onAnimationStart(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002509 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002510 // Prepare the position
2511 toView.setTranslationX(0.0f);
2512 toView.setTranslationY(0.0f);
2513 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002514 toView.bringToFront();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002515 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002516 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002517 public void onAnimationEnd(Animator animation) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002518 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2519 dispatchOnLauncherTransitionEnd(toView, animated, false);
Winson Chung32174c82011-07-19 15:47:55 -07002520
Michael Jurkafa7969f2012-09-21 16:39:14 -07002521 if (mWorkspace != null && !springLoaded && !LauncherApplication.isScreenLarge()) {
Winson Chung32174c82011-07-19 15:47:55 -07002522 // Hide the workspace scrollbar
2523 mWorkspace.hideScrollingIndicator(true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002524 hideDockDivider();
Winson Chung32174c82011-07-19 15:47:55 -07002525 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002526 if (!animationCancelled) {
2527 updateWallpaperVisibility(false);
2528 }
Winson Chungc7d2b602012-05-16 17:02:20 -07002529
2530 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07002531 if (mSearchDropTargetBar != null) {
2532 mSearchDropTargetBar.hideSearchBar(false);
2533 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002534 }
2535
Adam Cohencff6af82011-09-13 14:51:53 -07002536 @Override
Adam Cohenf4ddea32011-09-12 13:46:42 -07002537 public void onAnimationCancel(Animator animation) {
2538 animationCancelled = true;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002539 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002540 });
2541
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002542 if (workspaceAnim != null) {
2543 mStateAnimation.play(workspaceAnim);
2544 }
Michael Jurka1899a362011-11-03 13:50:45 -07002545
2546 boolean delayAnim = false;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002547 final ViewTreeObserver observer;
2548
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002549 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
2550 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002551
2552 // If any of the objects being animated haven't been measured/laid out
2553 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08002554 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002555 (mWorkspace.getMeasuredWidth() == 0) ||
2556 (toView.getMeasuredWidth() == 0)) {
2557 observer = mWorkspace.getViewTreeObserver();
2558 delayAnim = true;
2559 } else {
2560 observer = null;
Michael Jurka1899a362011-11-03 13:50:45 -07002561 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002562
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002563 final AnimatorSet stateAnimation = mStateAnimation;
2564 final Runnable startAnimRunnable = new Runnable() {
2565 public void run() {
2566 // Check that mStateAnimation hasn't changed while
2567 // we waited for a layout/draw pass
2568 if (mStateAnimation != stateAnimation)
2569 return;
2570 setPivotsForZoom(toView, scale);
2571 dispatchOnLauncherTransitionStart(fromView, animated, false);
2572 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurka382aa182012-06-11 15:42:07 -07002573 toView.post(new Runnable() {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002574 public void run() {
2575 // Check that mStateAnimation hasn't changed while
2576 // we waited for a layout/draw pass
2577 if (mStateAnimation != stateAnimation)
2578 return;
2579 mStateAnimation.start();
2580 }
2581 });
2582 }
2583 };
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002584 if (delayAnim) {
2585 final OnGlobalLayoutListener delayedStart = new OnGlobalLayoutListener() {
2586 public void onGlobalLayout() {
Michael Jurka382aa182012-06-11 15:42:07 -07002587 toView.post(startAnimRunnable);
Michael Jurka3a9fced2012-04-13 14:44:29 -07002588 observer.removeOnGlobalLayoutListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002589 }
2590 };
2591 observer.addOnGlobalLayoutListener(delayedStart);
2592 } else {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002593 startAnimRunnable.run();
Michael Jurka1899a362011-11-03 13:50:45 -07002594 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002595 } else {
2596 toView.setTranslationX(0.0f);
2597 toView.setTranslationY(0.0f);
2598 toView.setScaleX(1.0f);
2599 toView.setScaleY(1.0f);
2600 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002601 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07002602
Michael Jurkabed61d22012-02-14 22:51:29 -08002603 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2604 // Hide the workspace scrollbar
2605 mWorkspace.hideScrollingIndicator(true);
2606 hideDockDivider();
Winson Chungc7d2b602012-05-16 17:02:20 -07002607
2608 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07002609 if (mSearchDropTargetBar != null) {
2610 mSearchDropTargetBar.hideSearchBar(false);
2611 }
Michael Jurkaabded662011-03-04 12:06:57 -08002612 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002613 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002614 dispatchOnLauncherTransitionStart(fromView, animated, false);
2615 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002616 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002617 dispatchOnLauncherTransitionStart(toView, animated, false);
2618 dispatchOnLauncherTransitionEnd(toView, animated, false);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002619 updateWallpaperVisibility(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002620 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002621 }
2622
2623 /**
2624 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07002625 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002626 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002627 */
Adam Cohened66b2b2012-01-23 17:28:51 -08002628 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2629 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002630
Michael Jurkab3e22d92011-10-31 15:58:33 -07002631 if (mStateAnimation != null) {
2632 mStateAnimation.cancel();
2633 mStateAnimation = null;
2634 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002635 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002636
Winson Chungf0ea4d32011-06-06 14:27:16 -07002637 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002638 final int fadeOutDuration =
2639 res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002640 final float scaleFactor = (float)
2641 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2642 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08002643 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002644 Animator workspaceAnim = null;
2645
2646 if (toState == State.WORKSPACE) {
2647 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
2648 workspaceAnim = mWorkspace.getChangeStateAnimation(
2649 Workspace.State.NORMAL, animated, stagger);
2650 } else if (toState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2651 workspaceAnim = mWorkspace.getChangeStateAnimation(
2652 Workspace.State.SPRING_LOADED, animated);
2653 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002654
Michael Jurkab3e22d92011-10-31 15:58:33 -07002655 setPivotsForZoom(fromView, scaleFactor);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002656 updateWallpaperVisibility(true);
Winson Chung4afe9b32011-07-27 17:46:20 -07002657 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002658 if (animated) {
Michael Jurka159b4cc2012-01-17 03:00:35 -08002659 final LauncherViewPropertyAnimator scaleAnim =
2660 new LauncherViewPropertyAnimator(fromView);
2661 scaleAnim.
2662 scaleX(scaleFactor).scaleY(scaleFactor).
2663 setDuration(duration).
2664 setInterpolator(new Workspace.ZoomInInterpolator());
2665
2666 final ObjectAnimator alphaAnim = ObjectAnimator
2667 .ofFloat(fromView, "alpha", 1f, 0f)
2668 .setDuration(fadeOutDuration);
Adam Cohencff6af82011-09-13 14:51:53 -07002669 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
Winson Chung70442722012-02-10 15:43:22 -08002670 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2671 @Override
2672 public void onAnimationUpdate(ValueAnimator animation) {
2673 float t = 1f - (Float) animation.getAnimatedValue();
2674 dispatchOnLauncherTransitionStep(fromView, t);
2675 dispatchOnLauncherTransitionStep(toView, t);
2676 }
2677 });
Michael Jurka159b4cc2012-01-17 03:00:35 -08002678
Michael Jurka2ecf9952012-06-18 12:52:28 -07002679 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurkabed61d22012-02-14 22:51:29 -08002680
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002681 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
2682 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002683
2684 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002685 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002686 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002687 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002688 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002689 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2690 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkabafdaaf2012-04-26 13:43:25 -07002691 if (mWorkspace != null) {
2692 mWorkspace.hideScrollingIndicator(false);
2693 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002694 if (onCompleteRunnable != null) {
2695 onCompleteRunnable.run();
2696 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002697 }
2698 });
2699
Winson Chungf0ea4d32011-06-06 14:27:16 -07002700 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002701 if (workspaceAnim != null) {
2702 mStateAnimation.play(workspaceAnim);
2703 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002704 dispatchOnLauncherTransitionStart(fromView, animated, true);
2705 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002706 final Animator stateAnimation = mStateAnimation;
2707 mWorkspace.post(new Runnable() {
2708 public void run() {
2709 if (stateAnimation != mStateAnimation)
2710 return;
2711 mStateAnimation.start();
2712 }
2713 });
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002714 } else {
2715 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002716 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002717 dispatchOnLauncherTransitionStart(fromView, animated, true);
2718 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002719 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002720 dispatchOnLauncherTransitionStart(toView, animated, true);
2721 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002722 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002723 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002724 }
2725
Michael Jurkae326f182011-11-21 14:05:46 -08002726 @Override
2727 public void onTrimMemory(int level) {
2728 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07002729 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08002730 mAppsCustomizeTabHost.onTrimMemory();
2731 }
2732 }
2733
Winson Chung18f41f82012-05-09 13:28:10 -07002734 @Override
2735 public void onWindowFocusChanged(boolean hasFocus) {
2736 if (!hasFocus) {
2737 // When another window occludes launcher (like the notification shade, or recents),
2738 // ensure that we enable the wallpaper flag so that transitions are done correctly.
2739 updateWallpaperVisibility(true);
2740 } else {
2741 // When launcher has focus again, disable the wallpaper if we are in AllApps
Winson Chung6cf79092012-06-07 14:50:10 -07002742 mWorkspace.postDelayed(new Runnable() {
2743 @Override
2744 public void run() {
2745 disableWallpaperIfInAllApps();
2746 }
2747 }, 500);
Winson Chung18f41f82012-05-09 13:28:10 -07002748 }
2749 }
2750
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002751 void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002752 showWorkspace(animated, null);
2753 }
2754
2755 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002756 if (mState != State.WORKSPACE) {
Winson Chungc7d2b602012-05-16 17:02:20 -07002757 boolean wasInSpringLoadedMode = (mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002758 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002759 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002760
Winson Chungc7d2b602012-05-16 17:02:20 -07002761 // Show the search bar (only animate if we were showing the drop target bar in spring
2762 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07002763 if (mSearchDropTargetBar != null) {
2764 mSearchDropTargetBar.showSearchBar(wasInSpringLoadedMode);
2765 }
Winson Chungc7d2b602012-05-16 17:02:20 -07002766
Michael Jurkab737ee62011-11-15 15:57:22 -08002767 // We only need to animate in the dock divider if we're going from spring loaded mode
Winson Chungc7d2b602012-05-16 17:02:20 -07002768 showDockDivider(animated && wasInSpringLoadedMode);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002769
2770 // Set focus to the AppsCustomize button
2771 if (mAllAppsButton != null) {
2772 mAllAppsButton.requestFocus();
2773 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002774 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002775
Michael Jurkab737ee62011-11-15 15:57:22 -08002776 mWorkspace.flashScrollingIndicator(animated);
Adam Cohen7777d962011-08-18 18:58:38 -07002777
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002778 // Change the state *after* we've called all the transition code
2779 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002780
Winson Chung5fb63472011-02-02 17:03:37 -08002781 // Resume the auto-advance of widgets
2782 mUserPresent = true;
2783 updateRunning();
2784
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002785 // send an accessibility event to announce the context change
2786 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
Joe Onorato00acb122009-08-04 16:04:30 -04002787 }
2788
Michael Jurkab3e22d92011-10-31 15:58:33 -07002789 void showAllApps(boolean animated) {
2790 if (mState != State.WORKSPACE) return;
2791
2792 showAppsCustomizeHelper(animated, false);
2793 mAppsCustomizeTabHost.requestFocus();
2794
Michael Jurkab3e22d92011-10-31 15:58:33 -07002795 // Change the state *after* we've called all the transition code
2796 mState = State.APPS_CUSTOMIZE;
2797
2798 // Pause the auto-advance of widgets until we are out of AllApps
2799 mUserPresent = false;
2800 updateRunning();
2801 closeFolder();
2802
2803 // Send an accessibility event to announce the context change
2804 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
2805 }
2806
Adam Cohen7777d962011-08-18 18:58:38 -07002807 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002808 if (isAllAppsVisible()) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002809 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true, null);
Michael Jurkab737ee62011-11-15 15:57:22 -08002810 hideDockDivider();
Winson Chungc07918d2011-07-01 15:35:26 -07002811 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07002812 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002813 }
Adam Cohen7777d962011-08-18 18:58:38 -07002814
Adam Cohened66b2b2012-01-23 17:28:51 -08002815 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay,
2816 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07002817 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
2818
Winson Chunge7a03942011-08-05 15:05:12 -07002819 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002820 @Override
2821 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002822 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07002823 // Before we show workspace, hide all apps again because
2824 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2825 // clean up our state transition functions
2826 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002827 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07002828 } else {
2829 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002830 }
Winson Chung557d6ed2011-07-08 15:34:52 -07002831 }
2832 }, (extendedDelay ?
2833 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2834 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2835 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002836
Michael Jurkad3ef3062010-11-23 16:23:58 -08002837 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002838 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002839 final boolean animated = true;
2840 final boolean springLoaded = true;
2841 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07002842 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002843 }
2844 // Otherwise, we are not in spring loaded mode, so don't do anything.
2845 }
2846
Michael Jurkab737ee62011-11-15 15:57:22 -08002847 void hideDockDivider() {
2848 if (mQsbDivider != null && mDockDivider != null) {
2849 mQsbDivider.setVisibility(View.INVISIBLE);
2850 mDockDivider.setVisibility(View.INVISIBLE);
2851 }
2852 }
2853
2854 void showDockDivider(boolean animated) {
2855 if (mQsbDivider != null && mDockDivider != null) {
2856 mQsbDivider.setVisibility(View.VISIBLE);
2857 mDockDivider.setVisibility(View.VISIBLE);
2858 if (mDividerAnimator != null) {
2859 mDividerAnimator.cancel();
2860 mQsbDivider.setAlpha(1f);
2861 mDockDivider.setAlpha(1f);
2862 mDividerAnimator = null;
2863 }
2864 if (animated) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07002865 mDividerAnimator = LauncherAnimUtils.createAnimatorSet();
2866 mDividerAnimator.playTogether(LauncherAnimUtils.ofFloat(mQsbDivider, "alpha", 1f),
2867 LauncherAnimUtils.ofFloat(mDockDivider, "alpha", 1f));
Winson Chungadf0c182012-08-23 14:59:07 -07002868 int duration = 0;
2869 if (mSearchDropTargetBar != null) {
2870 duration = mSearchDropTargetBar.getTransitionInDuration();
2871 }
2872 mDividerAnimator.setDuration(duration);
Michael Jurkab737ee62011-11-15 15:57:22 -08002873 mDividerAnimator.start();
2874 }
2875 }
2876 }
2877
Michael Jurkab3e22d92011-10-31 15:58:33 -07002878 void lockAllApps() {
2879 // TODO
2880 }
2881
2882 void unlockAllApps() {
2883 // TODO
2884 }
2885
Winson Chungf0ea4d32011-06-06 14:27:16 -07002886 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002887 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002888 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002889 void showHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002890 if (!LauncherApplication.isScreenLarge()) {
2891 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002892 if (mHotseat.getAlpha() != 1f) {
Winson Chungadf0c182012-08-23 14:59:07 -07002893 int duration = 0;
2894 if (mSearchDropTargetBar != null) {
2895 duration = mSearchDropTargetBar.getTransitionInDuration();
2896 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08002897 mHotseat.animate().alpha(1f).setDuration(duration);
2898 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002899 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002900 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002901 }
2902 }
2903 }
2904
2905 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002906 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002907 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002908 void hideHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002909 if (!LauncherApplication.isScreenLarge()) {
2910 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002911 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07002912 int duration = 0;
2913 if (mSearchDropTargetBar != null) {
2914 duration = mSearchDropTargetBar.getTransitionOutDuration();
2915 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08002916 mHotseat.animate().alpha(0f).setDuration(duration);
2917 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002918 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002919 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002920 }
Winson Chungb26f3d62011-06-02 10:49:29 -07002921 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002922 }
2923
Patrick Dubroy5f445422011-02-18 14:35:21 -08002924 /**
2925 * Add an item from all apps or customize onto the given workspace screen.
2926 * If layout is null, add to the current screen.
2927 */
2928 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002929 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07002930 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07002931 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002932 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002933
Winson Chungdff8ebb2011-09-08 17:25:31 -07002934 /** Maps the current orientation to an index for referencing orientation correct global icons */
2935 private int getCurrentOrientationIndexForGlobalIcons() {
2936 // default - 0, landscape - 1
2937 switch (getResources().getConfiguration().orientation) {
2938 case Configuration.ORIENTATION_LANDSCAPE:
2939 return 1;
2940 default:
2941 return 0;
2942 }
2943 }
2944
Michael Jurkaae65ee32012-04-30 11:45:54 -07002945 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002946 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002947 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002948 // Look for the toolbar icon specified in the activity meta-data
2949 Bundle metaData = packageManager.getActivityInfo(
2950 activityName, PackageManager.GET_META_DATA).metaData;
2951 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002952 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002953 if (iconResId != 0) {
2954 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002955 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002956 }
2957 }
2958 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07002959 // This can happen if the activity defines an invalid drawable
2960 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
2961 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01002962 } catch (Resources.NotFoundException nfe) {
2963 // This can happen if the activity defines an invalid drawable
2964 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
2965 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002966 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002967 return null;
2968 }
2969
2970 // if successful in getting icon, return it; otherwise, set button to use default drawable
2971 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002972 int buttonId, ComponentName activityName, int fallbackDrawableId,
2973 String toolbarResourceName) {
2974 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07002975 Resources r = getResources();
2976 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
2977 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002978
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002979 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002980 // If we were unable to find the icon via the meta-data, use a generic one
2981 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07002982 toolbarIcon = r.getDrawable(fallbackDrawableId);
2983 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002984 if (button != null) {
2985 button.setCompoundDrawables(toolbarIcon, null, null, null);
2986 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002987 return null;
2988 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07002989 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002990 if (button != null) {
2991 button.setCompoundDrawables(toolbarIcon, null, null, null);
2992 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002993 return toolbarIcon.getConstantState();
2994 }
2995 }
2996
2997 // if successful in getting icon, return it; otherwise, set button to use default drawable
2998 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002999 int buttonId, ComponentName activityName, int fallbackDrawableId,
3000 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003001 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07003002 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003003
Michael Jurka19e0fc52011-07-22 18:00:21 -07003004 if (button != null) {
3005 // If we were unable to find the icon via the meta-data, use a
3006 // generic one
3007 if (toolbarIcon == null) {
3008 button.setImageResource(fallbackDrawableId);
3009 } else {
3010 button.setImageDrawable(toolbarIcon);
3011 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003012 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003013
3014 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3015
Michael Jurka0423dcf2010-10-05 14:56:18 -07003016 }
3017
Winson Chung1b884092012-06-08 17:13:02 -07003018 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003019 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003020 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003021 }
3022
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003023 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003024 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003025 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003026 }
3027
Winson Chungbb185bd2011-11-21 12:31:42 -08003028 private void invalidatePressedFocusedStates(View container, View button) {
3029 if (container instanceof HolographicLinearLayout) {
3030 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3031 layout.invalidatePressedFocusedStates();
3032 } else if (button instanceof HolographicImageView) {
3033 HolographicImageView view = (HolographicImageView) button;
3034 view.invalidatePressedFocusedStates();
3035 }
3036 }
3037
Winson Chungc51db6a2011-10-05 11:44:49 -07003038 private boolean updateGlobalSearchIcon() {
3039 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003040 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003041 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003042 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07003043 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07003044
Winson Chung1cad91e2011-05-25 17:41:01 -07003045 final SearchManager searchManager =
3046 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3047 ComponentName activityName = searchManager.getGlobalSearchActivity();
3048 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003049 int coi = getCurrentOrientationIndexForGlobalIcons();
3050 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003051 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3052 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3053 if (sGlobalSearchIcon[coi] == null) {
3054 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3055 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3056 TOOLBAR_ICON_METADATA_NAME);
3057 }
3058
Winson Chungc51db6a2011-10-05 11:44:49 -07003059 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3060 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003061 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003062 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003063 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003064 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003065 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3066 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
3067 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003068 voiceButton.setVisibility(View.GONE);
Michael Jurkac60498a2012-05-07 15:29:42 -07003069 if (voiceButtonProxy != null) {
3070 voiceButtonProxy.setVisibility(View.GONE);
3071 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003072 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003073 }
3074 }
3075
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003076 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003077 final View searchButtonContainer = findViewById(R.id.search_button_container);
3078 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003079 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003080 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003081 }
3082
Winson Chungc51db6a2011-10-05 11:44:49 -07003083 private boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07003084 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003085 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07003086 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07003087
Winson Chungc51db6a2011-10-05 11:44:49 -07003088 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003089 final SearchManager searchManager =
3090 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3091 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3092
3093 ComponentName activityName = null;
3094 if (globalSearchActivity != null) {
3095 // Check if the global search activity handles voice search
3096 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3097 intent.setPackage(globalSearchActivity.getPackageName());
3098 activityName = intent.resolveActivity(getPackageManager());
3099 }
3100
3101 if (activityName == null) {
3102 // Fallback: check if an activity other than the global search activity
3103 // resolves this
3104 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3105 activityName = intent.resolveActivity(getPackageManager());
3106 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003107 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003108 int coi = getCurrentOrientationIndexForGlobalIcons();
3109 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003110 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3111 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3112 if (sVoiceSearchIcon[coi] == null) {
3113 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3114 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3115 TOOLBAR_ICON_METADATA_NAME);
3116 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003117 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003118 voiceButton.setVisibility(View.VISIBLE);
Jim Miller14091b12012-04-24 19:27:54 -07003119 if (voiceButtonProxy != null) {
3120 voiceButtonProxy.setVisibility(View.VISIBLE);
3121 }
Winson Chungbb185bd2011-11-21 12:31:42 -08003122 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003123 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003124 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07003125 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003126 voiceButton.setVisibility(View.GONE);
Jim Miller14091b12012-04-24 19:27:54 -07003127 if (voiceButtonProxy != null) {
3128 voiceButtonProxy.setVisibility(View.GONE);
3129 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003130 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003131 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003132 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003133
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003134 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003135 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3136 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003137 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003138 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003139 }
3140
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003141 /**
Winson Chungeb66b142011-06-16 13:14:22 -07003142 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003143 */
3144 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003145 final View marketButton = findViewById(R.id.market_button);
3146 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3147 // Find the app market activity by resolving an intent.
3148 // (If multiple app markets are installed, it will return the ResolverActivity.)
3149 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07003150 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003151 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07003152 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07003153 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003154 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
3155 TOOLBAR_ICON_METADATA_NAME);
Winson Chung785d2eb2011-04-14 16:08:02 -07003156 marketButton.setVisibility(View.VISIBLE);
3157 } else {
3158 // We should hide and disable the view so that we don't try and restore the visibility
3159 // of it when we swap between drag & normal states from IconDropTarget subclasses.
3160 marketButton.setVisibility(View.GONE);
3161 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003162 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003163 }
3164
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003165 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chung1b884092012-06-08 17:13:02 -07003166 // Ensure that the new drawable we are creating has the approprate toolbar icon bounds
3167 Resources r = getResources();
3168 Drawable marketIconDrawable = d.newDrawable(r);
3169 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3170 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
3171 marketIconDrawable.setBounds(0, 0, w, h);
3172
3173 updateTextButtonWithDrawable(R.id.market_button, marketIconDrawable);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003174 }
3175
Michael Jurkad7c28052012-04-27 15:43:36 -07003176 @Override
3177 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
3178 boolean result = super.dispatchPopulateAccessibilityEvent(event);
3179 final List<CharSequence> text = event.getText();
3180 text.clear();
3181 text.add(getString(R.string.home));
3182 return result;
3183 }
3184
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003185 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003186 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003187 */
3188 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
3189 @Override
3190 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003191 closeSystemDialogs();
3192 }
3193 }
3194
3195 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003196 * Receives notifications whenever the appwidgets are reset.
3197 */
3198 private class AppWidgetResetObserver extends ContentObserver {
3199 public AppWidgetResetObserver() {
3200 super(new Handler());
3201 }
3202
3203 @Override
3204 public void onChange(boolean selfChange) {
3205 onAppWidgetReset();
3206 }
3207 }
3208
3209 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003210 * If the activity is currently paused, signal that we need to re-run the loader
3211 * in onResume.
3212 *
3213 * This needs to be called from incoming places where resources might have been loaded
3214 * while we are paused. That is becaues the Configuration might be wrong
3215 * when we're not running, and if it comes back to what it was when we
3216 * were paused, we are not restarted.
3217 *
3218 * Implementation of the method from LauncherModel.Callbacks.
3219 *
3220 * @return true if we are currently paused. The caller might be able to
3221 * skip some work in that case since we will come back again.
3222 */
3223 public boolean setLoadOnResume() {
3224 if (mPaused) {
3225 Log.i(TAG, "setLoadOnResume");
3226 mOnResumeNeedsLoad = true;
3227 return true;
3228 } else {
3229 return false;
3230 }
3231 }
3232
3233 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003234 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003235 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003236 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003237 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003238 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003239 } else {
3240 return SCREEN_COUNT / 2;
3241 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003242 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003243
Joe Onorato9c1289c2009-08-17 11:03:03 -04003244 /**
3245 * Refreshes the shortcuts shown on the workspace.
3246 *
3247 * Implementation of the method from LauncherModel.Callbacks.
3248 */
3249 public void startBinding() {
3250 final Workspace workspace = mWorkspace;
Adam Cohendf035382011-04-11 17:22:04 -07003251
Winson Chungf0c6ae02012-03-21 16:10:31 -07003252 mNewShortcutAnimatePage = -1;
3253 mNewShortcutAnimateViews.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003254 mWorkspace.clearDropTargets();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003255 int count = workspace.getChildCount();
3256 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04003257 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Winson Chung7a25a9e2011-01-30 13:33:56 -08003258 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
3259 layoutParent.removeAllViewsInLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003260 }
Michael Jurka05bf644e2011-11-30 20:28:53 -08003261 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003262 if (mHotseat != null) {
3263 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003264 }
3265 }
3266
3267 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003268 * Bind the items start-end from the list.
3269 *
3270 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003271 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003272 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003273 setLoadOnResume();
3274
Winson Chungf0c6ae02012-03-21 16:10:31 -07003275 // Get the list of added shortcuts and intersect them with the set of shortcuts here
3276 Set<String> newApps = new HashSet<String>();
3277 newApps = mSharedPrefs.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, newApps);
3278
3279 Workspace workspace = mWorkspace;
3280 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003281 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003282
3283 // Short circuit if we are loading dock items for a configuration which has no dock
3284 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3285 mHotseat == null) {
3286 continue;
3287 }
3288
Joe Onorato9c1289c2009-08-17 11:03:03 -04003289 switch (item.itemType) {
3290 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3291 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003292 ShortcutInfo info = (ShortcutInfo) item;
3293 String uri = info.intent.toUri(0).toString();
3294 View shortcut = createShortcut(info);
Winson Chung3d503fb2011-07-13 17:25:49 -07003295 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
3296 item.cellY, 1, 1, false);
Winson Chungbfeac062012-06-06 15:56:08 -07003297 boolean animateIconUp = false;
3298 synchronized (newApps) {
3299 if (newApps.contains(uri)) {
3300 animateIconUp = newApps.remove(uri);
3301 }
3302 }
3303 if (animateIconUp) {
Winson Chungf0c6ae02012-03-21 16:10:31 -07003304 // Prepare the view to be animated up
3305 shortcut.setAlpha(0f);
3306 shortcut.setScaleX(0f);
3307 shortcut.setScaleY(0f);
3308 mNewShortcutAnimatePage = item.screen;
3309 if (!mNewShortcutAnimateViews.contains(shortcut)) {
3310 mNewShortcutAnimateViews.add(shortcut);
3311 }
3312 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003313 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003314 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003315 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003316 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003317 (FolderInfo) item, mIconCache);
Winson Chung3d503fb2011-07-13 17:25:49 -07003318 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
3319 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003320 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003321 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003322 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003323
Joe Onorato9c1289c2009-08-17 11:03:03 -04003324 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003325 }
3326
Joe Onorato9c1289c2009-08-17 11:03:03 -04003327 /**
3328 * Implementation of the method from LauncherModel.Callbacks.
3329 */
Joe Onoratoad72e172009-11-06 16:25:04 -05003330 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003331 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003332 sFolders.clear();
3333 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003334 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003335
3336 /**
3337 * Add the views for a widget to the workspace.
3338 *
3339 * Implementation of the method from LauncherModel.Callbacks.
3340 */
3341 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003342 setLoadOnResume();
3343
Daniel Sandler843e8602010-06-07 14:59:01 -04003344 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3345 if (DEBUG_WIDGETS) {
3346 Log.d(TAG, "bindAppWidget: " + item);
3347 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003348 final Workspace workspace = mWorkspace;
3349
3350 final int appWidgetId = item.appWidgetId;
3351 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003352 if (DEBUG_WIDGETS) {
3353 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3354 }
3355
Joe Onorato9c1289c2009-08-17 11:03:03 -04003356 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3357
Joe Onorato9c1289c2009-08-17 11:03:03 -04003358 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003359 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003360
Winson Chung3d503fb2011-07-13 17:25:49 -07003361 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003362 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07003363 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3364
Joe Onorato9c1289c2009-08-17 11:03:03 -04003365 workspace.requestLayout();
3366
Daniel Sandler843e8602010-06-07 14:59:01 -04003367 if (DEBUG_WIDGETS) {
3368 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3369 + (SystemClock.uptimeMillis()-start) + "ms");
3370 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003371 }
3372
Adam Cohen1462de32012-07-24 22:34:36 -07003373 public void onPageBoundSynchronously(int page) {
3374 mSynchronouslyBoundPages.add(page);
3375 }
3376
Joe Onorato9c1289c2009-08-17 11:03:03 -04003377 /**
3378 * Callback saying that there aren't any more items to bind.
3379 *
3380 * Implementation of the method from LauncherModel.Callbacks.
3381 */
3382 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003383 setLoadOnResume();
3384
Joe Onorato9c1289c2009-08-17 11:03:03 -04003385 if (mSavedState != null) {
3386 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003387 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003388 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003389 mSavedState = null;
3390 }
3391
Adam Cohen1462de32012-07-24 22:34:36 -07003392 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003393
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003394 // If we received the result of any pending adds while the loader was running (e.g. the
3395 // widget configuration forced an orientation change), process them now.
3396 for (int i = 0; i < sPendingAddList.size(); i++) {
3397 completeAdd(sPendingAddList.get(i));
3398 }
3399 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003400
Winson Chungc51db6a2011-10-05 11:44:49 -07003401 // Update the market app icon as necessary (the other icons will be managed in response to
3402 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003403 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003404
Winson Chungf0c6ae02012-03-21 16:10:31 -07003405 // Animate up any icons as necessary
3406 if (mVisible || mWorkspaceLoading) {
3407 Runnable newAppsRunnable = new Runnable() {
3408 @Override
3409 public void run() {
Winson Chunga2413752012-04-03 14:22:34 -07003410 runNewAppsAnimation(false);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003411 }
3412 };
Winson Chunga2413752012-04-03 14:22:34 -07003413
3414 boolean willSnapPage = mNewShortcutAnimatePage > -1 &&
3415 mNewShortcutAnimatePage != mWorkspace.getCurrentPage();
3416 if (canRunNewAppsAnimation()) {
3417 // If the user has not interacted recently, then either snap to the new page to show
3418 // the new-apps animation or just run them if they are to appear on the current page
3419 if (willSnapPage) {
3420 mWorkspace.snapToPage(mNewShortcutAnimatePage, newAppsRunnable);
3421 } else {
3422 runNewAppsAnimation(false);
3423 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003424 } else {
Winson Chung318eee02012-04-12 10:59:27 -07003425 // If the user has interacted recently, then just add the items in place if they
Winson Chunga2413752012-04-03 14:22:34 -07003426 // are on another page (or just normally if they are added to the current page)
3427 runNewAppsAnimation(willSnapPage);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003428 }
3429 }
3430
3431 mWorkspaceLoading = false;
3432 }
3433
Winson Chunga2413752012-04-03 14:22:34 -07003434 private boolean canRunNewAppsAnimation() {
3435 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
3436 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
3437 }
3438
Winson Chungf0c6ae02012-03-21 16:10:31 -07003439 /**
3440 * Runs a new animation that scales up icons that were added while Launcher was in the
3441 * background.
Winson Chunga2413752012-04-03 14:22:34 -07003442 *
3443 * @param immediate whether to run the animation or show the results immediately
Winson Chungf0c6ae02012-03-21 16:10:31 -07003444 */
Winson Chunga2413752012-04-03 14:22:34 -07003445 private void runNewAppsAnimation(boolean immediate) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07003446 AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003447 Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chunga2413752012-04-03 14:22:34 -07003448
3449 // Order these new views spatially so that they animate in order
Winson Chungf0c6ae02012-03-21 16:10:31 -07003450 Collections.sort(mNewShortcutAnimateViews, new Comparator<View>() {
3451 @Override
3452 public int compare(View a, View b) {
3453 CellLayout.LayoutParams alp = (CellLayout.LayoutParams) a.getLayoutParams();
3454 CellLayout.LayoutParams blp = (CellLayout.LayoutParams) b.getLayoutParams();
3455 int cellCountX = LauncherModel.getCellCountX();
3456 return (alp.cellY * cellCountX + alp.cellX) - (blp.cellY * cellCountX + blp.cellX);
3457 }
3458 });
Winson Chunga2413752012-04-03 14:22:34 -07003459
3460 // Animate each of the views in place (or show them immediately if requested)
3461 if (immediate) {
3462 for (View v : mNewShortcutAnimateViews) {
3463 v.setAlpha(1f);
3464 v.setScaleX(1f);
3465 v.setScaleY(1f);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003466 }
Winson Chunga2413752012-04-03 14:22:34 -07003467 } else {
3468 for (int i = 0; i < mNewShortcutAnimateViews.size(); ++i) {
3469 View v = mNewShortcutAnimateViews.get(i);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003470 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
Winson Chunga2413752012-04-03 14:22:34 -07003471 PropertyValuesHolder.ofFloat("alpha", 1f),
3472 PropertyValuesHolder.ofFloat("scaleX", 1f),
3473 PropertyValuesHolder.ofFloat("scaleY", 1f));
3474 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
3475 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
3476 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
3477 bounceAnims.add(bounceAnim);
3478 }
3479 anim.playTogether(bounceAnims);
3480 anim.addListener(new AnimatorListenerAdapter() {
3481 @Override
3482 public void onAnimationEnd(Animator animation) {
3483 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
3484 }
3485 });
3486 anim.start();
3487 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003488
3489 // Clean up
3490 mNewShortcutAnimatePage = -1;
3491 mNewShortcutAnimateViews.clear();
3492 new Thread("clearNewAppsThread") {
3493 public void run() {
3494 mSharedPrefs.edit()
3495 .putInt(InstallShortcutReceiver.NEW_APPS_PAGE_KEY, -1)
3496 .putStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, null)
3497 .commit();
3498 }
3499 }.start();
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003500 }
3501
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003502 @Override
3503 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003504 boolean searchVisible = updateGlobalSearchIcon();
3505 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07003506 if (mSearchDropTargetBar != null) {
3507 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
3508 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003509 }
3510
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003511 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003512 * Add the icons for all apps.
3513 *
3514 * Implementation of the method from LauncherModel.Callbacks.
3515 */
Michael Jurkac57b7a82011-08-09 22:02:20 -07003516 public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003517 Runnable setAllAppsRunnable = new Runnable() {
3518 public void run() {
3519 if (mAppsCustomizeContent != null) {
3520 mAppsCustomizeContent.setApps(apps);
3521 }
3522 }
3523 };
3524
Michael Jurkac57b7a82011-08-09 22:02:20 -07003525 // Remove the progress bar entirely; we could also make it GONE
3526 // but better to remove it since we know it's not going to be used
3527 View progressBar = mAppsCustomizeTabHost.
3528 findViewById(R.id.apps_customize_progress_bar);
3529 if (progressBar != null) {
3530 ((ViewGroup)progressBar.getParent()).removeView(progressBar);
Winson Chungc93e5ae2012-07-23 20:48:26 -07003531
3532 // We just post the call to setApps so the user sees the progress bar
3533 // disappear-- otherwise, it just looks like the progress bar froze
3534 // which doesn't look great
3535 mAppsCustomizeTabHost.post(setAllAppsRunnable);
3536 } else {
3537 // If we did not initialize the spinner in onCreate, then we can directly set the
3538 // list of applications without waiting for any progress bars views to be hidden.
3539 setAllAppsRunnable.run();
Winson Chung785d2eb2011-04-14 16:08:02 -07003540 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003541 }
3542
3543 /**
3544 * A package was installed.
3545 *
3546 * Implementation of the method from LauncherModel.Callbacks.
3547 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003548 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003549 setLoadOnResume();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003550
Winson Chung785d2eb2011-04-14 16:08:02 -07003551 if (mAppsCustomizeContent != null) {
3552 mAppsCustomizeContent.addApps(apps);
3553 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003554 }
3555
3556 /**
3557 * A package was updated.
3558 *
3559 * Implementation of the method from LauncherModel.Callbacks.
3560 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003561 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003562 setLoadOnResume();
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003563 if (mWorkspace != null) {
3564 mWorkspace.updateShortcuts(apps);
3565 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003566
Winson Chung785d2eb2011-04-14 16:08:02 -07003567 if (mAppsCustomizeContent != null) {
3568 mAppsCustomizeContent.updateApps(apps);
3569 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003570 }
3571
3572 /**
3573 * A package was uninstalled.
3574 *
3575 * Implementation of the method from LauncherModel.Callbacks.
3576 */
Winson Chungcd810732012-06-18 16:45:43 -07003577 public void bindAppsRemoved(ArrayList<String> packageNames, boolean permanent) {
Joe Onorato36115782010-06-17 13:28:48 -04003578 if (permanent) {
Winson Chungcd810732012-06-18 16:45:43 -07003579 mWorkspace.removeItems(packageNames);
Joe Onorato36115782010-06-17 13:28:48 -04003580 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003581
Winson Chung785d2eb2011-04-14 16:08:02 -07003582 if (mAppsCustomizeContent != null) {
Winson Chungcd810732012-06-18 16:45:43 -07003583 mAppsCustomizeContent.removeApps(packageNames);
Winson Chung785d2eb2011-04-14 16:08:02 -07003584 }
Winson Chunga1820962011-10-03 16:31:06 -07003585
3586 // Notify the drag controller
Winson Chungcd810732012-06-18 16:45:43 -07003587 mDragController.onAppsRemoved(packageNames, this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003588 }
Joe Onoratobe386092009-11-17 17:32:16 -08003589
3590 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003591 * A number of packages were updated.
3592 */
3593 public void bindPackagesUpdated() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003594 if (mAppsCustomizeContent != null) {
3595 mAppsCustomizeContent.onPackagesUpdated();
3596 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003597 }
3598
Winson Chung400438b2011-01-16 17:53:48 -08003599 private int mapConfigurationOriActivityInfoOri(int configOri) {
3600 final Display d = getWindowManager().getDefaultDisplay();
3601 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3602 switch (d.getRotation()) {
3603 case Surface.ROTATION_0:
3604 case Surface.ROTATION_180:
3605 // We are currently in the same basic orientation as the natural orientation
3606 naturalOri = configOri;
3607 break;
3608 case Surface.ROTATION_90:
3609 case Surface.ROTATION_270:
3610 // We are currently in the other basic orientation to the natural orientation
3611 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3612 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3613 break;
3614 }
3615
3616 int[] oriMap = {
3617 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3618 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3619 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3620 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3621 };
3622 // Since the map starts at portrait, we need to offset if this device's natural orientation
3623 // is landscape.
3624 int indexOffset = 0;
3625 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3626 indexOffset = 1;
3627 }
3628 return oriMap[(d.getRotation() + indexOffset) % 4];
3629 }
Adam Cohen446e9402011-09-15 18:21:21 -07003630
Winson Chung4b919f82012-05-01 10:44:08 -07003631 public boolean isRotationEnabled() {
Michael Jurka9bc8eba2012-05-21 20:36:44 -07003632 boolean forceEnableRotation = doesFileExist(FORCE_ENABLE_ROTATION_PROPERTY);
Winson Chung4b919f82012-05-01 10:44:08 -07003633 boolean enableRotation = forceEnableRotation ||
3634 getResources().getBoolean(R.bool.allow_rotation);
3635 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08003636 }
Winson Chung4b919f82012-05-01 10:44:08 -07003637 public void lockScreenOrientation() {
3638 if (isRotationEnabled()) {
3639 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3640 .getConfiguration().orientation));
3641 }
3642 }
3643 public void unlockScreenOrientation(boolean immediate) {
3644 if (isRotationEnabled()) {
3645 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07003646 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07003647 } else {
3648 mHandler.postDelayed(new Runnable() {
3649 public void run() {
3650 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3651 }
3652 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07003653 }
Winson Chung4b919f82012-05-01 10:44:08 -07003654 }
Winson Chung400438b2011-01-16 17:53:48 -08003655 }
3656
Winson Chung82f55532011-08-09 14:14:23 -07003657 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07003658 private boolean isClingsEnabled() {
Brett Chabot2a9e2282011-08-23 15:03:13 -07003659 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07003660 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07003661
Winson Chung7d7541e2011-09-16 20:14:36 -07003662 return true;
Winson Chung82f55532011-08-09 14:14:23 -07003663 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003664 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
3665 Cling cling = (Cling) findViewById(clingId);
3666 if (cling != null) {
3667 cling.init(this, positionData);
3668 cling.setVisibility(View.VISIBLE);
3669 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3670 if (animate) {
3671 cling.buildLayer();
3672 cling.setAlpha(0f);
3673 cling.animate()
3674 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07003675 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07003676 .setDuration(SHOW_CLING_DURATION)
3677 .setStartDelay(delay)
3678 .start();
3679 } else {
3680 cling.setAlpha(1f);
3681 }
3682 }
3683 return cling;
3684 }
3685 private void dismissCling(final Cling cling, final String flag, int duration) {
Winson Chung82f55532011-08-09 14:14:23 -07003686 if (cling != null) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07003687 ObjectAnimator anim = LauncherAnimUtils.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07003688 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07003689 anim.addListener(new AnimatorListenerAdapter() {
3690 public void onAnimationEnd(Animator animation) {
3691 cling.setVisibility(View.GONE);
3692 cling.cleanup();
Winson Chung46353de2012-02-16 14:05:10 -08003693 // We should update the shared preferences on a background thread
3694 new Thread("dismissClingThread") {
3695 public void run() {
3696 SharedPreferences.Editor editor = mSharedPrefs.edit();
3697 editor.putBoolean(flag, true);
3698 editor.commit();
3699 }
3700 }.start();
Winson Chung82f55532011-08-09 14:14:23 -07003701 };
3702 });
3703 anim.start();
3704 }
3705 }
Winson Chung9d9d74f2011-09-19 11:49:12 -07003706 private void removeCling(int id) {
3707 final View cling = findViewById(id);
3708 if (cling != null) {
3709 final ViewGroup parent = (ViewGroup) cling.getParent();
3710 parent.post(new Runnable() {
3711 @Override
3712 public void run() {
3713 parent.removeView(cling);
3714 }
3715 });
3716 }
3717 }
Michael Jurka974c3862012-05-22 22:00:31 -07003718
3719 private boolean skipCustomClingIfNoAccounts() {
3720 Cling cling = (Cling) findViewById(R.id.workspace_cling);
3721 boolean customCling = cling.getDrawIdentifier().equals("workspace_custom");
3722 if (customCling) {
3723 AccountManager am = AccountManager.get(this);
3724 Account[] accounts = am.getAccountsByType("com.google");
3725 return accounts.length == 0;
3726 }
3727 return false;
3728 }
3729
Winson Chung7d7541e2011-09-16 20:14:36 -07003730 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003731 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003732 if (isClingsEnabled() &&
Michael Jurka974c3862012-05-22 22:00:31 -07003733 !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false) &&
3734 !skipCustomClingIfNoAccounts() ) {
Michael Jurka45355c42012-10-08 13:21:35 +02003735 // If we're not using the default workspace layout, replace workspace cling
3736 // with a custom workspace cling (usually specified in an overlay)
3737 // For now, only do this on tablets
3738 if (mSharedPrefs.getInt(LauncherProvider.DEFAULT_WORKSPACE_RESOURCE_ID, 0) != 0 &&
3739 LauncherApplication.isScreenLarge()) {
3740 // Use a custom cling
3741 View cling = findViewById(R.id.workspace_cling);
3742 ViewGroup clingParent = (ViewGroup) cling.getParent();
3743 int clingIndex = clingParent.indexOfChild(cling);
3744 clingParent.removeViewAt(clingIndex);
3745 View customCling = mInflater.inflate(R.layout.custom_workspace_cling, clingParent, false);
3746 clingParent.addView(customCling, clingIndex);
3747 customCling.setId(R.id.workspace_cling);
3748 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003749 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003750 } else {
3751 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003752 }
3753 }
3754 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003755 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003756 if (isClingsEnabled() &&
3757 !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003758 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003759 } else {
3760 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003761 }
3762 }
3763 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003764 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003765 if (isClingsEnabled() &&
3766 !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
3767 return initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003768 } else {
3769 removeCling(R.id.folder_cling);
Winson Chung46353de2012-02-16 14:05:10 -08003770 return null;
Winson Chung7d7541e2011-09-16 20:14:36 -07003771 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003772 }
3773 public boolean isFolderClingVisible() {
3774 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003775 if (cling != null) {
3776 return cling.getVisibility() == View.VISIBLE;
3777 }
3778 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07003779 }
Winson Chung82f55532011-08-09 14:14:23 -07003780 public void dismissWorkspaceCling(View v) {
3781 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003782 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003783 }
3784 public void dismissAllAppsCling(View v) {
3785 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003786 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
3787 }
3788 public void dismissFolderCling(View v) {
3789 Cling cling = (Cling) findViewById(R.id.folder_cling);
3790 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003791 }
3792
Winson Chung80baf5a2010-08-09 16:03:15 -07003793 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003794 * Prints out out state for debugging.
3795 */
3796 public void dumpState() {
3797 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003798 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003799 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3800 Log.d(TAG, "mRestoring=" + mRestoring);
3801 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3802 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003803 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003804 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003805
Winson Chung785d2eb2011-04-14 16:08:02 -07003806 if (mAppsCustomizeContent != null) {
3807 mAppsCustomizeContent.dumpState();
3808 }
Joe Onoratobe386092009-11-17 17:32:16 -08003809 Log.d(TAG, "END launcher2 dump state");
3810 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003811
3812 @Override
3813 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
3814 super.dump(prefix, fd, writer, args);
3815 writer.println(" ");
3816 writer.println("Debug logs: ");
3817 for (int i = 0; i < sDumpLogs.size(); i++) {
3818 writer.println(" " + sDumpLogs.get(i));
3819 }
3820 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07003821
3822 public static void dumpDebugLogsToConsole() {
3823 Log.d(TAG, "");
3824 Log.d(TAG, "*********************");
3825 Log.d(TAG, "Launcher debug logs: ");
3826 for (int i = 0; i < sDumpLogs.size(); i++) {
3827 Log.d(TAG, " " + sDumpLogs.get(i));
3828 }
3829 Log.d(TAG, "*********************");
3830 Log.d(TAG, "");
3831 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003832}
Michael Jurka2763be32011-02-24 11:19:57 -08003833
Michael Jurkaabded662011-03-04 12:06:57 -08003834interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003835 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003836 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08003837 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08003838 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08003839 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08003840}