blob: 7d974a513a8666f13e9c431014270a223b889379 [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
Gilles Debunnedd6c9922010-10-25 11:23:41 -070020import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080021import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070022import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070023import android.animation.ObjectAnimator;
24import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070025import android.animation.ValueAnimator;
Michael Jurka946ad472010-07-09 18:05:18 -070026import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070027import android.app.ActivityManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029import android.app.Dialog;
30import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080031import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070032import android.appwidget.AppWidgetManager;
33import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080035import android.content.BroadcastReceiver;
Winson Chung68846fd2010-10-29 11:00:27 -070036import android.content.ClipData;
37import android.content.ClipDescription;
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;
42import android.content.DialogInterface;
43import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070044import android.content.IntentFilter;
Winson Chung82f55532011-08-09 14:14:23 -070045import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070046import android.content.pm.ActivityInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070048import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070050import android.content.res.Resources;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080051import android.database.ContentObserver;
Michael Jurkaaf442092010-06-10 17:01:57 -070052import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070053import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040054import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070055import android.os.AsyncTask;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080056import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020057import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080058import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070059import android.os.Message;
Daniel Sandler843e8602010-06-07 14:59:01 -040060import android.os.SystemClock;
Joe Onoratobe386092009-11-17 17:32:16 -080061import android.os.SystemProperties;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070062import android.provider.Settings;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080063import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080064import android.text.Selection;
65import android.text.SpannableStringBuilder;
66import android.text.TextUtils;
67import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070068import android.util.Log;
Winson Chung400438b2011-01-16 17:53:48 -080069import android.view.Display;
Joe Onorato0d44e942009-11-16 18:20:51 -080070import android.view.HapticFeedbackConstants;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.view.KeyEvent;
72import android.view.LayoutInflater;
73import android.view.Menu;
74import android.view.MenuItem;
Michael Jurka0e260592010-06-30 17:07:39 -070075import android.view.MotionEvent;
Winson Chung400438b2011-01-16 17:53:48 -080076import android.view.Surface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080077import android.view.View;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080078import android.view.View.OnLongClickListener;
Winson Chung82f55532011-08-09 14:14:23 -070079import android.view.ViewGroup;
Michael Jurkab737ee62011-11-15 15:57:22 -080080import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080081import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Dianne Hackbornbb003a52011-08-30 14:40:07 -070082import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080083import android.view.accessibility.AccessibilityEvent;
Adam Cohencff6af82011-09-13 14:51:53 -070084import android.view.animation.AccelerateDecelerateInterpolator;
Winson Chung7a74ac92011-09-20 17:43:51 -070085import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080086import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080087import android.view.inputmethod.InputMethodManager;
Adam Cohended9f8d2010-11-03 13:25:16 -070088import android.widget.Advanceable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080089import android.widget.EditText;
Michael Jurkaaf442092010-06-10 17:01:57 -070090import android.widget.ImageView;
Winson Chung68846fd2010-10-29 11:00:27 -070091import android.widget.TextView;
92import android.widget.Toast;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070093
Adam Cohendf2cc412011-04-27 16:56:57 -070094import com.android.common.Search;
95import com.android.launcher.R;
Adam Cohen558baaf2011-08-15 15:22:57 -070096import com.android.launcher2.DropTarget.DragObject;
Romain Guyedcce092010-03-04 13:03:17 -080097
Adam Cohenc0dcf592011-06-01 15:30:43 -070098import java.io.DataInputStream;
99import java.io.DataOutputStream;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700100import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700101import java.io.FileNotFoundException;
102import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700103import java.io.PrintWriter;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700104import java.util.ArrayList;
105import java.util.HashMap;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700106
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800107/**
108 * Default launcher application.
109 */
Michael Jurka946ad472010-07-09 18:05:18 -0700110public final class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700111 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
112 AllAppsView.Watcher, View.OnTouchListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800113 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700114 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800115
Joe Onorato9c1289c2009-08-17 11:03:03 -0400116 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400117 static final boolean DEBUG_WIDGETS = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700118
Winson Chung70d72102011-08-12 11:24:35 -0700119 private static final int MENU_GROUP_WALLPAPER = 1;
120 private static final int MENU_WALLPAPER_SETTINGS = Menu.FIRST + 1;
121 private static final int MENU_MANAGE_APPS = MENU_WALLPAPER_SETTINGS + 1;
Winson Chung236d4312011-08-22 15:12:27 -0700122 private static final int MENU_SYSTEM_SETTINGS = MENU_MANAGE_APPS + 1;
123 private static final int MENU_HELP = MENU_SYSTEM_SETTINGS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800124
125 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700126 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800127 private static final int REQUEST_PICK_APPLICATION = 6;
128 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700129 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700130 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800131
132 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
133
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800134 static final int SCREEN_COUNT = 5;
135 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136
Joe Onorato7c312c12009-08-13 21:36:53 -0700137 static final int DIALOG_CREATE_SHORTCUT = 1;
138 static final int DIALOG_RENAME_FOLDER = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800139
Romain Guy98d01652009-06-30 16:21:04 -0700140 private static final String PREFERENCES = "launcher.preferences";
Adam Cohen23a4d302011-12-01 17:26:44 -0800141 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher.force_enable_rotation";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142
143 // Type: int
144 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700145 // Type: int
146 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800147 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700148 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
149 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800150 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
151 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700152 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800153 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700154 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800155 // Type: boolean
156 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
157 // Type: long
158 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
159
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700160 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
161
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700162 /** The different states that Launcher can be in. */
Winson Chungf0ea4d32011-06-06 14:27:16 -0700163 private enum State { WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700164 private State mState = State.WORKSPACE;
165 private AnimatorSet mStateAnimation;
Michael Jurkab737ee62011-11-15 15:57:22 -0800166 private AnimatorSet mDividerAnimator;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700167
Joe Onorato9c1289c2009-08-17 11:03:03 -0400168 static final int APPWIDGET_HOST_ID = 1024;
Winson Chung557d6ed2011-07-08 15:34:52 -0700169 private static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
170 private static final int EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT = 600;
Winson Chung7a74ac92011-09-20 17:43:51 -0700171 private static final int SHOW_CLING_DURATION = 550;
Winson Chung7d7541e2011-09-16 20:14:36 -0700172 private static final int DISMISS_CLING_DURATION = 250;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800173
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800174 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800175 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800177 private final BroadcastReceiver mCloseSystemDialogsReceiver
178 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800179 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
180
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 private LayoutInflater mInflater;
182
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800183 private Workspace mWorkspace;
Michael Jurkab737ee62011-11-15 15:57:22 -0800184 private View mQsbDivider;
185 private View mDockDivider;
186 private DragLayer mDragLayer;
187 private DragController mDragController;
Romain Guycbb89e42009-06-08 15:52:54 -0700188
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700189 private AppWidgetManager mAppWidgetManager;
190 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700191
Michael Jurkac9d95c52011-08-29 14:03:34 -0700192 private ItemInfo mPendingAddInfo = new ItemInfo();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700193 private int[] mTmpAddItemCellCoordinates = new int[2];
194
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800195 private FolderInfo mFolderInfo;
196
Winson Chung3d503fb2011-07-13 17:25:49 -0700197 private Hotseat mHotseat;
Michael Jurka838a4ca2011-02-07 13:33:06 -0800198 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700199
Winson Chungc51db6a2011-10-05 11:44:49 -0700200 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700201 private AppsCustomizeTabHost mAppsCustomizeTabHost;
202 private AppsCustomizePagedView mAppsCustomizeContent;
203 private boolean mAutoAdvanceRunning = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800204
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800205 private Bundle mSavedState;
206
207 private SpannableStringBuilder mDefaultKeySsb = null;
208
Joe Onorato9c1289c2009-08-17 11:03:03 -0400209 private boolean mWorkspaceLoading = true;
210
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800211 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800212 private boolean mRestoring;
213 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700214 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800215
216 private Bundle mSavedInstanceState;
217
Joe Onorato9c1289c2009-08-17 11:03:03 -0400218 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800219 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800220 private boolean mUserPresent = true;
221 private boolean mVisible = false;
222 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400223
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700224 private static LocaleConfiguration sLocaleConfiguration = null;
225
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700226 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700227
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700228 private Intent mAppMarketIntent = null;
229
Adam Cohended9f8d2010-11-03 13:25:16 -0700230 // Related to the auto-advancing of widgets
231 private final int ADVANCE_MSG = 1;
232 private final int mAdvanceInterval = 20000;
233 private final int mAdvanceStagger = 250;
234 private long mAutoAdvanceSentTime;
235 private long mAutoAdvanceTimeLeft = -1;
236 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
237 new HashMap<View, AppWidgetProviderInfo>();
238
Winson Chung400438b2011-01-16 17:53:48 -0800239 // Determines how long to wait after a rotation before restoring the screen orientation to
240 // match the sensor state.
241 private final int mRestoreScreenOrientationDelay = 500;
242
Michael Jurka4ef207b2010-11-29 17:05:45 -0800243 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700244 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
245 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
246 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800247
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700248 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
249
Adam Cohen2801caf2011-05-13 20:57:39 -0700250
Michael Jurkaddd62e92011-02-16 17:49:14 -0800251 private BubbleTextView mWaitingForResume;
252
Michael Jurkac1f5d262011-09-30 19:32:27 -0700253 private Runnable mBuildLayersRunnable = new Runnable() {
254 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700255 if (mWorkspace != null) {
256 mWorkspace.buildPageHardwareLayers();
257 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700258 }
259 };
260
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800261 private static ArrayList<PendingAddArguments> sPendingAddList
262 = new ArrayList<PendingAddArguments>();
263
264 private static class PendingAddArguments {
265 int requestCode;
266 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700267 long container;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800268 int screen;
269 int cellX;
270 int cellY;
271 }
272
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800273 @Override
274 protected void onCreate(Bundle savedInstanceState) {
275 super.onCreate(savedInstanceState);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800276 LauncherApplication app = ((LauncherApplication)getApplication());
277 mModel = app.setLauncher(this);
278 mIconCache = app.getIconCache();
Joe Onorato41a12d22009-10-31 18:30:00 -0400279 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800280 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700281
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700282 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700283 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
284 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700285
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800286 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200287 android.os.Debug.startMethodTracing(
288 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800289 }
290
291 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800292 setContentView(R.layout.launcher);
293 setupViews();
Winson Chung7d7541e2011-09-16 20:14:36 -0700294 showFirstRunWorkspaceCling();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800295
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800296 registerContentObservers();
297
Joe Onorato7c312c12009-08-13 21:36:53 -0700298 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700299
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800300 mSavedState = savedInstanceState;
301 restoreState(mSavedState);
302
Winson Chunga12a2502010-12-20 14:41:35 -0800303 // Update customization drawer _after_ restoring the states
Winson Chung785d2eb2011-04-14 16:08:02 -0700304 if (mAppsCustomizeContent != null) {
305 mAppsCustomizeContent.onPackagesUpdated();
306 }
Winson Chunga12a2502010-12-20 14:41:35 -0800307
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800308 if (PROFILE_STARTUP) {
309 android.os.Debug.stopMethodTracing();
310 }
311
312 if (!mRestoring) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400313 mModel.startLoader(this, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800314 }
315
Michael Jurkac57b7a82011-08-09 22:02:20 -0700316 if (!mModel.isAllAppsLoaded()) {
317 ViewGroup appsCustomizeContentParent = (ViewGroup) mAppsCustomizeContent.getParent();
318 mInflater.inflate(R.layout.apps_customize_progressbar, appsCustomizeContentParent);
319 }
320
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800321 // For handling default keys
322 mDefaultKeySsb = new SpannableStringBuilder();
323 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800324
325 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
326 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800327
Winson Chungc51db6a2011-10-05 11:44:49 -0700328 boolean searchVisible = false;
329 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800330 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700331 int coi = getCurrentOrientationIndexForGlobalIcons();
332 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
333 sAppMarketIcon[coi] == null) {
Winson Chungc51db6a2011-10-05 11:44:49 -0700334 updateAppMarketIcon();
335 searchVisible = updateGlobalSearchIcon();
336 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700337 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700338 if (sGlobalSearchIcon[coi] != null) {
339 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700340 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700341 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700342 if (sVoiceSearchIcon[coi] != null) {
343 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700344 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700345 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700346 if (sAppMarketIcon[coi] != null) {
347 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800348 }
Winson Chungc51db6a2011-10-05 11:44:49 -0700349 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
Adam Cohen446e9402011-09-15 18:21:21 -0700350
Adam Cohen23a4d302011-12-01 17:26:44 -0800351 final String forceEnableRotation =
352 SystemProperties.get(FORCE_ENABLE_ROTATION_PROPERTY, "false");
353
Adam Cohen446e9402011-09-15 18:21:21 -0700354 // On large interfaces, we want the screen to auto-rotate based on the current orientation
Adam Cohen23a4d302011-12-01 17:26:44 -0800355 if (LauncherApplication.isScreenLarge() || "true".equalsIgnoreCase(forceEnableRotation)) {
Adam Cohen446e9402011-09-15 18:21:21 -0700356 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
357 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800358 }
Romain Guycbb89e42009-06-08 15:52:54 -0700359
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800360 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700361 if (sLocaleConfiguration == null) {
362 new AsyncTask<Void, Void, LocaleConfiguration>() {
363 @Override
364 protected LocaleConfiguration doInBackground(Void... unused) {
365 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
366 readConfiguration(Launcher.this, localeConfiguration);
367 return localeConfiguration;
368 }
369
370 @Override
371 protected void onPostExecute(LocaleConfiguration result) {
372 sLocaleConfiguration = result;
373 checkForLocaleChange(); // recursive, but now with a locale configuration
374 }
375 }.execute();
376 return;
377 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700378
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800379 final Configuration configuration = getResources().getConfiguration();
380
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700381 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800382 final String locale = configuration.locale.toString();
383
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700384 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800385 final int mcc = configuration.mcc;
386
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700387 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800388 final int mnc = configuration.mnc;
389
Romain Guy84f296c2009-11-04 15:00:44 -0800390 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800391
Romain Guy84f296c2009-11-04 15:00:44 -0800392 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700393 sLocaleConfiguration.locale = locale;
394 sLocaleConfiguration.mcc = mcc;
395 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700396
Joe Onorato0589f0f2010-02-08 13:44:00 -0800397 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700398
399 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
400 new Thread("WriteLocaleConfiguration") {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700401 @Override
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700402 public void run() {
403 writeConfiguration(Launcher.this, localeConfiguration);
404 }
405 }.start();
Romain Guy98d01652009-06-30 16:21:04 -0700406 }
407 }
408
409 private static class LocaleConfiguration {
410 public String locale;
411 public int mcc = -1;
412 public int mnc = -1;
413 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700414
Romain Guy98d01652009-06-30 16:21:04 -0700415 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
416 DataInputStream in = null;
417 try {
418 in = new DataInputStream(context.openFileInput(PREFERENCES));
419 configuration.locale = in.readUTF();
420 configuration.mcc = in.readInt();
421 configuration.mnc = in.readInt();
422 } catch (FileNotFoundException e) {
423 // Ignore
424 } catch (IOException e) {
425 // Ignore
426 } finally {
427 if (in != null) {
428 try {
429 in.close();
430 } catch (IOException e) {
431 // Ignore
432 }
433 }
434 }
435 }
436
437 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
438 DataOutputStream out = null;
439 try {
440 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
441 out.writeUTF(configuration.locale);
442 out.writeInt(configuration.mcc);
443 out.writeInt(configuration.mnc);
444 out.flush();
445 } catch (FileNotFoundException e) {
446 // Ignore
447 } catch (IOException e) {
448 //noinspection ResultOfMethodCallIgnored
449 context.getFileStreamPath(PREFERENCES).delete();
450 } finally {
451 if (out != null) {
452 try {
453 out.close();
454 } catch (IOException e) {
455 // Ignore
456 }
457 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800458 }
459 }
460
Adam Cohen716b51e2011-06-30 12:09:54 -0700461 public DragLayer getDragLayer() {
462 return mDragLayer;
463 }
464
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465 static int getScreen() {
466 synchronized (sLock) {
467 return sScreen;
468 }
469 }
470
471 static void setScreen(int screen) {
472 synchronized (sLock) {
473 sScreen = screen;
474 }
475 }
476
Winson Chung557d6ed2011-07-08 15:34:52 -0700477 /**
478 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
479 * a configuration step, this allows the proper animations to run after other transitions.
480 */
481 private boolean completeAdd(PendingAddArguments args) {
Winson Chungb8472bb2011-08-05 13:49:21 -0700482 boolean result = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800483 switch (args.requestCode) {
484 case REQUEST_PICK_APPLICATION:
Winson Chung3d503fb2011-07-13 17:25:49 -0700485 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
486 args.cellY);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800487 break;
488 case REQUEST_PICK_SHORTCUT:
489 processShortcut(args.intent);
490 break;
491 case REQUEST_CREATE_SHORTCUT:
Winson Chung3d503fb2011-07-13 17:25:49 -0700492 completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
493 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700494 result = true;
495 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800496 case REQUEST_PICK_APPWIDGET:
497 addAppWidgetFromPick(args.intent);
498 break;
499 case REQUEST_CREATE_APPWIDGET:
500 int appWidgetId = args.intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Winson Chung3d503fb2011-07-13 17:25:49 -0700501 completeAddAppWidget(appWidgetId, args.container, args.screen);
Winson Chungb8472bb2011-08-05 13:49:21 -0700502 result = true;
503 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800504 case REQUEST_PICK_WALLPAPER:
505 // We just wanted the activity result here so we can clear mWaitingForResult
506 break;
507 }
Winson Chungb8472bb2011-08-05 13:49:21 -0700508 return result;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800509 }
510
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800511 @Override
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800512 protected void onActivityResult(final int requestCode, int resultCode, final Intent data) {
Winson Chung557d6ed2011-07-08 15:34:52 -0700513 boolean delayExitSpringLoadedMode = false;
Romain Guyaad5ef42009-06-10 02:48:37 -0700514 mWaitingForResult = false;
515
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800516 // The pattern used here is that a user PICKs a specific application,
517 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700518
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800519 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
520 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700521 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800522 final PendingAddArguments args = new PendingAddArguments();
523 args.requestCode = requestCode;
524 args.intent = data;
Winson Chung3d503fb2011-07-13 17:25:49 -0700525 args.container = mPendingAddInfo.container;
526 args.screen = mPendingAddInfo.screen;
527 args.cellX = mPendingAddInfo.cellX;
528 args.cellY = mPendingAddInfo.cellY;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800529
530 // If the loader is still running, defer the add until it is done.
531 if (isWorkspaceLocked()) {
532 sPendingAddList.add(args);
533 } else {
Winson Chung557d6ed2011-07-08 15:34:52 -0700534 delayExitSpringLoadedMode = completeAdd(args);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800535 }
Romain Guy18042c82009-11-06 11:44:55 -0800536 } else if ((requestCode == REQUEST_PICK_APPWIDGET ||
Winson Chung557d6ed2011-07-08 15:34:52 -0700537 requestCode == REQUEST_CREATE_APPWIDGET) && resultCode == RESULT_CANCELED) {
538 if (data != null) {
539 // Clean up the appWidgetId if we canceled
540 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
541 if (appWidgetId != -1) {
542 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
543 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800544 }
545 }
Winson Chung557d6ed2011-07-08 15:34:52 -0700546
547 // Exit spring loaded mode if necessary after cancelling the configuration of a widget
Winson Chung6a3fd3f2011-08-02 14:03:26 -0700548 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), delayExitSpringLoadedMode);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800549 }
550
551 @Override
552 protected void onResume() {
553 super.onResume();
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800554 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700555 if (mRestoring || mOnResumeNeedsLoad) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400556 mWorkspaceLoading = true;
557 mModel.startLoader(this, true);
558 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700559 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800560 }
Winson Chunge4e50662012-01-23 14:45:13 -0800561
562 // Reset the pressed state of icons that were locked in the press state while activities
563 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800564 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800565 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -0800566 mWaitingForResume.setStayPressed(false);
567 }
Winson Chunge4e50662012-01-23 14:45:13 -0800568 if (mAppsCustomizeContent != null) {
569 // Resets the previous all apps icon press state
570 mAppsCustomizeContent.resetDrawableState();
571 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700572 // When we resume Launcher, a different Activity might be responsible for the app
573 // market intent, so refresh the icon
574 updateAppMarketIcon();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800575 }
576
577 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700578 protected void onPause() {
579 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700580 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800581 mDragController.cancelDrag();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700582 }
Romain Guycbb89e42009-06-08 15:52:54 -0700583
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700584 @Override
585 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400586 // Flag the loader to stop early before switching
587 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -0700588 if (mAppsCustomizeContent != null) {
589 mAppsCustomizeContent.surrender();
590 }
Romain Guy13c2e7b2010-03-10 19:45:00 -0800591 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700592 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700593
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800594 // We can't hide the IME if it was forced open. So don't bother
595 /*
596 @Override
597 public void onWindowFocusChanged(boolean hasFocus) {
598 super.onWindowFocusChanged(hasFocus);
599
600 if (hasFocus) {
601 final InputMethodManager inputManager = (InputMethodManager)
602 getSystemService(Context.INPUT_METHOD_SERVICE);
603 WindowManager.LayoutParams lp = getWindow().getAttributes();
604 inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
605 android.os.Handler()) {
606 protected void onReceiveResult(int resultCode, Bundle resultData) {
607 Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
608 }
609 });
610 Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
611 }
612 }
613 */
614
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800615 private boolean acceptFilter() {
616 final InputMethodManager inputManager = (InputMethodManager)
617 getSystemService(Context.INPUT_METHOD_SERVICE);
618 return !inputManager.isFullscreenMode();
619 }
620
621 @Override
622 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -0700623 final int uniChar = event.getUnicodeChar();
624 final boolean handled = super.onKeyDown(keyCode, event);
625 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
626 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800627 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
628 keyCode, event);
629 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700630 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700631 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700632 // showSearchDialog()
633 // If there are multiple keystrokes before the search dialog takes focus,
634 // onSearchRequested() will be called for every keystroke,
635 // but it is idempotent, so it's fine.
636 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800637 }
638 }
639
Joe Onorato8a9625e2010-01-28 15:55:35 -0800640 // Eat the long press event so the keyboard doesn't come up.
641 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
642 return true;
643 }
644
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800645 return handled;
646 }
647
Karl Rosaen138a0412009-04-23 19:00:21 -0700648 private String getTypedText() {
649 return mDefaultKeySsb.toString();
650 }
651
652 private void clearTypedText() {
653 mDefaultKeySsb.clear();
654 mDefaultKeySsb.clearSpans();
655 Selection.setSelection(mDefaultKeySsb, 0);
656 }
657
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800658 /**
Michael Jurka883f55b2010-10-21 15:47:14 -0700659 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
660 * State
661 */
662 private static State intToState(int stateOrdinal) {
663 State state = State.WORKSPACE;
664 final State[] stateValues = State.values();
665 for (int i = 0; i < stateValues.length; i++) {
666 if (stateValues[i].ordinal() == stateOrdinal) {
667 state = stateValues[i];
668 break;
669 }
670 }
671 return state;
672 }
673
674 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800675 * Restores the previous state, if it exists.
676 *
677 * @param savedState The previous state.
678 */
679 private void restoreState(Bundle savedState) {
680 if (savedState == null) {
681 return;
682 }
683
Michael Jurka883f55b2010-10-21 15:47:14 -0700684 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -0700685 if (state == State.APPS_CUSTOMIZE) {
Joe Onorato3a8820b2009-11-10 15:06:42 -0800686 showAllApps(false);
687 }
688
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800689 final int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
690 if (currentScreen > -1) {
Michael Jurka0142d492010-08-25 17:46:15 -0700691 mWorkspace.setCurrentPage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800692 }
693
Winson Chung3d503fb2011-07-13 17:25:49 -0700694 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
695 final int pendingAddScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700696
Winson Chung3d503fb2011-07-13 17:25:49 -0700697 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
698 mPendingAddInfo.container = pendingAddContainer;
699 mPendingAddInfo.screen = pendingAddScreen;
700 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
701 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800702 mRestoring = true;
703 }
704
705 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
706 if (renameFolder) {
707 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700708 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800709 mRestoring = true;
710 }
Winson Chunga12a2502010-12-20 14:41:35 -0800711
Winson Chung785d2eb2011-04-14 16:08:02 -0700712
713 // Restore the AppsCustomize tab
714 if (mAppsCustomizeTabHost != null) {
715 String curTab = savedState.getString("apps_customize_currentTab");
716 if (curTab != null) {
Winson Chungf0ea4d32011-06-06 14:27:16 -0700717 // We set this directly so that there is no delay before the tab is set
Winson Chung785d2eb2011-04-14 16:08:02 -0700718 mAppsCustomizeContent.setContentType(
719 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
720 mAppsCustomizeTabHost.setCurrentTabByTag(curTab);
Winson Chungf314b0e2011-08-16 11:54:27 -0700721 mAppsCustomizeContent.loadAssociatedPages(
722 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -0700723 }
724
Winson Chung5afbf7b2011-07-25 11:53:08 -0700725 int currentIndex = savedState.getInt("apps_customize_currentIndex");
726 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -0700727 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800728 }
729
730 /**
731 * Finds all the views we need and configure them properly.
732 */
733 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -0700734 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -0400735
Winson Chung4c98d922011-05-31 16:50:48 -0700736 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
737 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Michael Jurkab737ee62011-11-15 15:57:22 -0800738 mQsbDivider = (ImageView) findViewById(R.id.qsb_divider);
739 mDockDivider = (ImageView) findViewById(R.id.dock_divider);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800740
Winson Chung4c98d922011-05-31 16:50:48 -0700741 // Setup the drag layer
742 mDragLayer.setup(this, dragController);
743
Winson Chung3d503fb2011-07-13 17:25:49 -0700744 // Setup the hotseat
745 mHotseat = (Hotseat) findViewById(R.id.hotseat);
746 if (mHotseat != null) {
747 mHotseat.setup(this);
748 }
749
Winson Chung4c98d922011-05-31 16:50:48 -0700750 // Setup the workspace
751 mWorkspace.setHapticFeedbackEnabled(false);
752 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -0700753 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -0700754 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -0700755
Winson Chungf0ea4d32011-06-06 14:27:16 -0700756 // Get the search/delete bar
Winson Chungc51db6a2011-10-05 11:44:49 -0700757 mSearchDropTargetBar = (SearchDropTargetBar) mDragLayer.findViewById(R.id.qsb_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -0700758
Winson Chungf0ea4d32011-06-06 14:27:16 -0700759 // Setup AppsCustomize
760 mAppsCustomizeTabHost = (AppsCustomizeTabHost)
761 findViewById(R.id.apps_customize_pane);
762 mAppsCustomizeContent = (AppsCustomizePagedView)
763 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
764 mAppsCustomizeContent.setup(this, dragController);
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400765
Michael Jurka5130e402011-10-13 04:55:35 -0700766 // Get the all apps button
767 mAllAppsButton = findViewById(R.id.all_apps_button);
768 if (mAllAppsButton != null) {
769 mAllAppsButton.setOnTouchListener(new View.OnTouchListener() {
770 @Override
771 public boolean onTouch(View v, MotionEvent event) {
772 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
773 onTouchDownAllAppsButton(v);
774 }
775 return false;
776 }
777 });
778 }
Winson Chung3d503fb2011-07-13 17:25:49 -0700779 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -0700780 dragController.setDragScoller(mWorkspace);
781 dragController.setScrollView(mDragLayer);
782 dragController.setMoveTarget(mWorkspace);
783 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -0700784 if (mSearchDropTargetBar != null) {
785 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -0800786 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800787 }
788
789 /**
790 * Creates a view representing a shortcut.
791 *
792 * @param info The data structure describing the shortcut.
793 *
794 * @return A View inflated from R.layout.application.
795 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800796 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800797 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -0700798 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800799 }
800
801 /**
802 * Creates a view representing a shortcut inflated from the specified resource.
803 *
804 * @param layoutResId The id of the XML layout used to create the shortcut.
805 * @param parent The group the shortcut belongs to.
806 * @param info The data structure describing the shortcut.
807 *
808 * @return A View inflated from layoutResId.
809 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800810 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800811 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
812 favorite.applyFromShortcutInfo(info, mIconCache);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800813 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800814 return favorite;
815 }
816
817 /**
818 * Add an application shortcut to the workspace.
819 *
820 * @param data The intent describing the application.
821 * @param cellInfo The position on screen where to create the shortcut.
822 */
Winson Chung3d503fb2011-07-13 17:25:49 -0700823 void completeAddApplication(Intent data, long container, int screen, int cellX, int cellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700824 final int[] cellXY = mTmpAddItemCellCoordinates;
Winson Chung3d503fb2011-07-13 17:25:49 -0700825 final CellLayout layout = getCellLayout(container, screen);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700826
Adam Cohenfbba09b2011-07-18 21:43:05 -0700827 // First we check if we already know the exact location where we want to add this item.
828 if (cellX >= 0 && cellY >= 0) {
829 cellXY[0] = cellX;
830 cellXY[1] = cellY;
831 } else if (!layout.findCellForSpan(cellXY, 1, 1)) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700832 showOutOfSpaceMessage();
833 return;
834 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800835
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800836 final ShortcutInfo info = mModel.getShortcutInfo(getPackageManager(), data, this);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800837
Romain Guy73b979d2009-06-09 12:57:21 -0700838 if (info != null) {
Joe Onorato0589f0f2010-02-08 13:44:00 -0800839 info.setActivity(data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800840 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800841 info.container = ItemInfo.NO_ID;
Winson Chung3d503fb2011-07-13 17:25:49 -0700842 mWorkspace.addApplicationShortcut(info, layout, container, screen, cellXY[0], cellXY[1],
Adam Cohenfbba09b2011-07-18 21:43:05 -0700843 isWorkspaceLocked(), cellX, cellY);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800844 } else {
845 Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800846 }
847 }
Romain Guycbb89e42009-06-08 15:52:54 -0700848
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800849 /**
850 * Add a shortcut to the workspace.
851 *
852 * @param data The intent describing the shortcut.
853 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800854 */
Winson Chung3d503fb2011-07-13 17:25:49 -0700855 private void completeAddShortcut(Intent data, long container, int screen, int cellX,
856 int cellY) {
857 int[] cellXY = mTmpAddItemCellCoordinates;
858 int[] touchXY = mPendingAddInfo.dropPos;
859 CellLayout layout = getCellLayout(container, screen);
Romain Guycbb89e42009-06-08 15:52:54 -0700860
Michael Jurkad3ef3062010-11-23 16:23:58 -0800861 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -0700862
Adam Cohen558baaf2011-08-15 15:22:57 -0700863 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -0800864 if (info == null) {
865 return;
866 }
Adam Cohen558baaf2011-08-15 15:22:57 -0700867 final View view = createShortcut(info);
868
Adam Cohenfbba09b2011-07-18 21:43:05 -0700869 // First we check if we already know the exact location where we want to add this item.
870 if (cellX >= 0 && cellY >= 0) {
871 cellXY[0] = cellX;
872 cellXY[1] = cellY;
873 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -0700874
875 // If appropriate, either create a folder or add to an existing folder
876 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY,
877 true, null,null)) {
878 return;
879 }
880 DragObject dragObject = new DragObject();
881 dragObject.dragInfo = info;
882 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, dragObject, true)) {
883 return;
884 }
Adam Cohenfbba09b2011-07-18 21:43:05 -0700885 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -0800886 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -0700887 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800888 foundCellSpan = (result != null);
889 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -0700890 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800891 }
892
893 if (!foundCellSpan) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700894 showOutOfSpaceMessage();
895 return;
896 }
897
Adam Cohen558baaf2011-08-15 15:22:57 -0700898 LauncherModel.addItemToDatabase(this, info, container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800899
900 if (!mRestoring) {
Winson Chung3d503fb2011-07-13 17:25:49 -0700901 mWorkspace.addInScreen(view, container, screen, cellXY[0], cellXY[1], 1, 1,
902 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800903 }
904 }
905
Adam Cohenf814aa02011-09-01 13:48:05 -0700906 int[] getSpanForWidget(ComponentName component, int minWidth, int minHeight, int[] spanXY) {
907 if (spanXY == null) {
908 spanXY = new int[2];
909 }
910
Adam Cohen0cf2a7c2011-11-08 15:07:01 -0800911 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(this, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -0700912 // We want to account for the extra amount of padding that we are adding to the widget
913 // to ensure that it gets the full amount of space that it has requested
914 int requiredWidth = minWidth + padding.left + padding.right;
915 int requiredHeight = minHeight + padding.top + padding.bottom;
916 return CellLayout.rectToCell(getResources(), requiredWidth, requiredHeight, null);
917 }
918
919 int[] getSpanForWidget(AppWidgetProviderInfo info, int[] spanXY) {
920 return getSpanForWidget(info.provider, info.minWidth, info.minHeight, spanXY);
921 }
922
Adam Cohencbf47e32011-09-16 17:32:37 -0700923 int[] getMinResizeSpanForWidget(AppWidgetProviderInfo info, int[] spanXY) {
924 return getSpanForWidget(info.provider, info.minResizeWidth, info.minResizeHeight, spanXY);
925 }
926
Adam Cohenf814aa02011-09-01 13:48:05 -0700927 int[] getSpanForWidget(PendingAddWidgetInfo info, int[] spanXY) {
928 return getSpanForWidget(info.componentName, info.minWidth, info.minHeight, spanXY);
929 }
930
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800931 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700932 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800933 *
Romain Guy5bbc91b2010-08-18 11:38:46 -0700934 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700935 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800936 */
Winson Chung3d503fb2011-07-13 17:25:49 -0700937 private void completeAddAppWidget(final int appWidgetId, long container, int screen) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700938 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Romain Guycbb89e42009-06-08 15:52:54 -0700939
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700940 // Calculate the grid spans needed to fit this widget
Winson Chung3d503fb2011-07-13 17:25:49 -0700941 CellLayout layout = getCellLayout(container, screen);
Adam Cohen09353862011-07-14 16:10:03 -0700942
Adam Cohenf814aa02011-09-01 13:48:05 -0700943 int[] spanXY = getSpanForWidget(appWidgetInfo, null);
Romain Guycbb89e42009-06-08 15:52:54 -0700944
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800945 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -0700946 // We have saved the position to which the widget was dragged-- this really only matters
947 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -0700948 int[] cellXY = mTmpAddItemCellCoordinates;
949 int[] touchXY = mPendingAddInfo.dropPos;
Michael Jurka0280c3b2010-09-17 15:00:07 -0700950 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -0700951 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
952 cellXY[0] = mPendingAddInfo.cellX;
953 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohenfbba09b2011-07-18 21:43:05 -0700954 foundCellSpan = true;
955 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700956 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -0700957 int[] result = layout.findNearestVacantArea(
Michael Jurka0280c3b2010-09-17 15:00:07 -0700958 touchXY[0], touchXY[1], spanXY[0], spanXY[1], cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800959 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700960 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -0700961 foundCellSpan = layout.findCellForSpan(cellXY, spanXY[0], spanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700962 }
963
Michael Jurka0280c3b2010-09-17 15:00:07 -0700964 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -0800965 if (appWidgetId != -1) {
966 // Deleting an app widget ID is a void call but writes to disk before returning
967 // to the caller...
Winson Chungf7640c82011-02-28 13:47:29 -0800968 new Thread("deleteAppWidgetId") {
969 public void run() {
970 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
971 }
972 }.start();
973 }
Michael Jurka0280c3b2010-09-17 15:00:07 -0700974 showOutOfSpaceMessage();
Romain Guy18042c82009-11-06 11:44:55 -0800975 return;
976 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800977
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700978 // Build Launcher-specific widget info and save to database
Michael Jurkac9d95c52011-08-29 14:03:34 -0700979 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700980 launcherInfo.spanX = spanXY[0];
981 launcherInfo.spanY = spanXY[1];
Romain Guycbb89e42009-06-08 15:52:54 -0700982
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800983 LauncherModel.addItemToDatabase(this, launcherInfo,
Winson Chung3d503fb2011-07-13 17:25:49 -0700984 container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800985
986 if (!mRestoring) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800987 // Perform actual inflation because we're live
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700988 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -0700989
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700990 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800991 launcherInfo.hostView.setTag(launcherInfo);
Romain Guycbb89e42009-06-08 15:52:54 -0700992
Winson Chung3d503fb2011-07-13 17:25:49 -0700993 mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -0400994 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -0700995
996 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800997 }
Adam Cohen6af9af02012-02-02 15:41:45 -0800998 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800999 }
Romain Guycbb89e42009-06-08 15:52:54 -07001000
Adam Cohended9f8d2010-11-03 13:25:16 -07001001 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1002 @Override
1003 public void onReceive(Context context, Intent intent) {
1004 final String action = intent.getAction();
1005 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1006 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001007 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001008 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001009
Winson Chungc100e8e2011-08-09 16:02:43 -07001010 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001011 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001012 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
1013 mAppsCustomizeTabHost.reset();
1014 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001015 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001016 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1017 mUserPresent = true;
1018 updateRunning();
1019 }
1020 }
1021 };
1022
1023 @Override
1024 public void onAttachedToWindow() {
1025 super.onAttachedToWindow();
1026
1027 // Listen for broadcasts related to user-presence
1028 final IntentFilter filter = new IntentFilter();
1029 filter.addAction(Intent.ACTION_SCREEN_OFF);
1030 filter.addAction(Intent.ACTION_USER_PRESENT);
1031 registerReceiver(mReceiver, filter);
1032
Adam Cohend113e0c2010-11-11 10:48:05 -08001033 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001034 mVisible = true;
1035 }
1036
1037 @Override
1038 public void onDetachedFromWindow() {
1039 super.onDetachedFromWindow();
1040 mVisible = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001041 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001042
Adam Cohend113e0c2010-11-11 10:48:05 -08001043 if (mAttached) {
1044 unregisterReceiver(mReceiver);
1045 mAttached = false;
1046 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001047 updateRunning();
1048 }
1049
1050 public void onWindowVisibilityChanged(int visibility) {
1051 mVisible = visibility == View.VISIBLE;
1052 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001053 // The following code used to be in onResume, but it turns out onResume is called when
1054 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1055 // is a more appropriate event to handle
1056 if (mVisible) {
1057 mAppsCustomizeTabHost.onWindowVisible();
1058 if (!mWorkspaceLoading) {
1059 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001060 // We want to let Launcher draw itself at least once before we force it to build
1061 // layers on all the workspace pages, so that transitioning to Launcher from other
1062 // apps is nice and speedy. Usually the first call to preDraw doesn't correspond to
1063 // a true draw so we wait until the second preDraw call to be safe
1064 observer.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
1065 boolean mFirstTime = true;
1066 public boolean onPreDraw() {
1067 if (mFirstTime) {
1068 mFirstTime = false;
1069 } else {
1070 //workspace.post(mBuildLayersRunnable);
1071 observer.removeOnPreDrawListener(this);
1072 }
1073 return true;
1074 }
1075 });
1076 }
1077 clearTypedText();
1078 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001079 }
1080
1081 private void sendAdvanceMessage(long delay) {
1082 mHandler.removeMessages(ADVANCE_MSG);
1083 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1084 mHandler.sendMessageDelayed(msg, delay);
1085 mAutoAdvanceSentTime = System.currentTimeMillis();
1086 }
1087
1088 private void updateRunning() {
1089 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1090 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1091 mAutoAdvanceRunning = autoAdvanceRunning;
1092 if (autoAdvanceRunning) {
1093 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1094 sendAdvanceMessage(delay);
1095 } else {
1096 if (!mWidgetsToAdvance.isEmpty()) {
1097 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1098 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1099 }
1100 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001101 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001102 }
1103 }
1104 }
1105
1106 private final Handler mHandler = new Handler() {
1107 @Override
1108 public void handleMessage(Message msg) {
1109 if (msg.what == ADVANCE_MSG) {
1110 int i = 0;
1111 for (View key: mWidgetsToAdvance.keySet()) {
1112 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1113 final int delay = mAdvanceStagger * i;
1114 if (v instanceof Advanceable) {
1115 postDelayed(new Runnable() {
1116 public void run() {
1117 ((Advanceable) v).advance();
1118 }
1119 }, delay);
1120 }
1121 i++;
1122 }
1123 sendAdvanceMessage(mAdvanceInterval);
1124 }
1125 }
1126 };
1127
1128 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001129 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001130 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1131 if (v instanceof Advanceable) {
1132 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001133 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001134 updateRunning();
1135 }
1136 }
1137
1138 void removeWidgetToAutoAdvance(View hostView) {
1139 if (mWidgetsToAdvance.containsKey(hostView)) {
1140 mWidgetsToAdvance.remove(hostView);
1141 updateRunning();
1142 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001143 }
1144
Joe Onorato9c1289c2009-08-17 11:03:03 -04001145 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001146 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001147 launcherInfo.hostView = null;
1148 }
1149
Adam Cohended9f8d2010-11-03 13:25:16 -07001150 void showOutOfSpaceMessage() {
1151 Toast.makeText(this, getString(R.string.out_of_space), Toast.LENGTH_SHORT).show();
1152 }
1153
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001154 public LauncherAppWidgetHost getAppWidgetHost() {
1155 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001156 }
Romain Guycbb89e42009-06-08 15:52:54 -07001157
Winson Chunga9abd0e2010-10-27 17:18:37 -07001158 public LauncherModel getModel() {
1159 return mModel;
1160 }
1161
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001162 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001163 getWindow().closeAllPanels();
1164
Winson Chung87acb482011-08-23 17:28:05 -07001165 /**
1166 * We should remove this code when we remove all the dialog code.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001167 try {
1168 dismissDialog(DIALOG_CREATE_SHORTCUT);
1169 // Unlock the workspace if the dialog was showing
1170 } catch (Exception e) {
1171 // An exception is thrown if the dialog is not visible, which is fine
1172 }
1173
1174 try {
1175 dismissDialog(DIALOG_RENAME_FOLDER);
1176 // Unlock the workspace if the dialog was showing
1177 } catch (Exception e) {
1178 // An exception is thrown if the dialog is not visible, which is fine
1179 }
Winson Chung87acb482011-08-23 17:28:05 -07001180 */
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001181
1182 // Whatever we were doing is hereby canceled.
1183 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001184 }
1185
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001186 @Override
1187 protected void onNewIntent(Intent intent) {
1188 super.onNewIntent(intent);
1189
1190 // Close the menu
1191 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001192 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001193 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001194
Joe Onorato14f122b2009-11-19 14:06:36 -08001195 boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1196 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001197
Adam Cohenac56cff2011-09-28 20:45:37 -07001198 Folder openFolder = mWorkspace.getOpenFolder();
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001199 // In all these cases, only animate if we're already on home
Patrick Dubroy758a9232011-03-03 19:54:56 -08001200 mWorkspace.exitWidgetResizeMode();
Adam Cohenac56cff2011-09-28 20:45:37 -07001201 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1202 openFolder == null) {
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001203 mWorkspace.moveToDefaultScreen(true);
Joe Onorato3a8820b2009-11-10 15:06:42 -08001204 }
Adam Cohenac56cff2011-09-28 20:45:37 -07001205
1206 closeFolder();
Winson Chungde1af762011-07-21 16:44:07 -07001207 exitSpringLoadedDragMode();
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001208 showWorkspace(alreadyOnHome);
Romain Guy1dd3a072009-07-16 13:21:01 -07001209
Joe Onorato3a8820b2009-11-10 15:06:42 -08001210 final View v = getWindow().peekDecorView();
1211 if (v != null && v.getWindowToken() != null) {
1212 InputMethodManager imm = (InputMethodManager)getSystemService(
1213 INPUT_METHOD_SERVICE);
1214 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001215 }
Winson Chung337cd9d2011-03-30 10:39:30 -07001216
Michael Jurka35aa14d2011-07-07 17:01:08 -07001217 // Reset AllApps to its initial state
Adam Cohenb64d36e2011-10-17 21:48:02 -07001218 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Winson Chungc100e8e2011-08-09 16:02:43 -07001219 mAppsCustomizeTabHost.reset();
Winson Chung785d2eb2011-04-14 16:08:02 -07001220 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001221 }
1222 }
1223
1224 @Override
1225 protected void onRestoreInstanceState(Bundle savedInstanceState) {
1226 // Do not call super here
1227 mSavedInstanceState = savedInstanceState;
1228 }
1229
1230 @Override
1231 protected void onSaveInstanceState(Bundle outState) {
Michael Jurka0142d492010-08-25 17:46:15 -07001232 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getCurrentPage());
Adam Cohen95bb8002011-07-03 23:40:28 -07001233 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001234
Michael Jurka883f55b2010-10-21 15:47:14 -07001235 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001236 // We close any open folder since it will not be re-opened, and we need to make sure
1237 // this state is reflected.
1238 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001239
Winson Chung3d503fb2011-07-13 17:25:49 -07001240 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screen > -1 &&
1241 mWaitingForResult) {
1242 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
1243 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screen);
1244 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1245 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001246 }
1247
1248 if (mFolderInfo != null && mWaitingForResult) {
1249 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1250 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1251 }
Michael Jurka946ad472010-07-09 18:05:18 -07001252
Winson Chung785d2eb2011-04-14 16:08:02 -07001253 // Save the current AppsCustomize tab
1254 if (mAppsCustomizeTabHost != null) {
1255 String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1256 if (currentTabTag != null) {
1257 outState.putString("apps_customize_currentTab", currentTabTag);
1258 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001259 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1260 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001261 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001262 }
1263
1264 @Override
1265 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001266 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001267
Winson Chunge7a03942011-08-05 15:05:12 -07001268 // Remove all pending runnables
1269 mHandler.removeMessages(ADVANCE_MSG);
1270 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001271 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001272
Winson Chungcd2b0142011-06-08 16:02:26 -07001273 // Stop callbacks from LauncherModel
1274 LauncherApplication app = ((LauncherApplication) getApplication());
1275 mModel.stopLoader();
1276 app.setLauncher(null);
1277
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001278 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001279 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001280 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001281 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001282 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001283 mAppWidgetHost = null;
1284
1285 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001286
1287 TextKeyListener.getInstance().release();
1288
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001289
Winson Chung3d503fb2011-07-13 17:25:49 -07001290 unbindWorkspaceAndHotseatItems();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001291
1292 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001293 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001294
1295 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1296 mWorkspace.removeAllViews();
1297 mWorkspace = null;
1298 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001299
1300 ValueAnimator.clearAllAnimations();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001301 }
1302
Adam Cohena9cf38f2011-05-02 15:36:58 -07001303 public DragController getDragController() {
1304 return mDragController;
1305 }
1306
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001307 @Override
1308 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001309 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001310 super.startActivityForResult(intent, requestCode);
1311 }
1312
Winson Chung70d72102011-08-12 11:24:35 -07001313 /**
1314 * Indicates that we want global search for this activity by setting the globalSearch
1315 * argument for {@link #startSearch} to true.
1316 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001317 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001318 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001319 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001320
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001321 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001322
Karl Rosaen138a0412009-04-23 19:00:21 -07001323 if (initialQuery == null) {
1324 // Use any text typed in the launcher as the initial query
1325 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001326 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001327 if (appSearchData == null) {
1328 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001329 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001330 }
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001331 Rect sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
Romain Guycbb89e42009-06-08 15:52:54 -07001332
Karl Rosaen138a0412009-04-23 19:00:21 -07001333 final SearchManager searchManager =
1334 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
Karl Rosaen138a0412009-04-23 19:00:21 -07001335 searchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001336 appSearchData, globalSearch, sourceBounds);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001337 }
1338
Winson Chung70d72102011-08-12 11:24:35 -07001339 @Override
1340 public boolean onCreateOptionsMenu(Menu menu) {
1341 if (isWorkspaceLocked()) {
1342 return false;
1343 }
1344
1345 super.onCreateOptionsMenu(menu);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001346
1347 Intent manageApps = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
1348 manageApps.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1349 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung236d4312011-08-22 15:12:27 -07001350 Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
1351 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1352 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Michael Jurkab964f9c2011-09-27 22:10:05 -07001353 String helpUrl = getString(R.string.help_url);
1354 Intent help = new Intent(Intent.ACTION_VIEW, Uri.parse(helpUrl));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001355 help.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1356 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1357
Winson Chung70d72102011-08-12 11:24:35 -07001358 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1359 .setIcon(android.R.drawable.ic_menu_gallery)
1360 .setAlphabeticShortcut('W');
1361 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1362 .setIcon(android.R.drawable.ic_menu_manage)
Winson Chungdff8ebb2011-09-08 17:25:31 -07001363 .setIntent(manageApps)
Winson Chung70d72102011-08-12 11:24:35 -07001364 .setAlphabeticShortcut('M');
Winson Chung236d4312011-08-22 15:12:27 -07001365 menu.add(0, MENU_SYSTEM_SETTINGS, 0, R.string.menu_settings)
1366 .setIcon(android.R.drawable.ic_menu_preferences)
1367 .setIntent(settings)
1368 .setAlphabeticShortcut('P');
Michael Jurkab964f9c2011-09-27 22:10:05 -07001369 if (!helpUrl.isEmpty()) {
1370 menu.add(0, MENU_HELP, 0, R.string.menu_help)
1371 .setIcon(android.R.drawable.ic_menu_help)
1372 .setIntent(help)
1373 .setAlphabeticShortcut('H');
1374 }
Winson Chung70d72102011-08-12 11:24:35 -07001375 return true;
1376 }
1377
1378 @Override
1379 public boolean onPrepareOptionsMenu(Menu menu) {
1380 super.onPrepareOptionsMenu(menu);
1381
1382 if (mAppsCustomizeTabHost.isTransitioning()) {
1383 return false;
1384 }
1385 boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1386 menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1387
1388 return true;
1389 }
1390
1391 @Override
1392 public boolean onOptionsItemSelected(MenuItem item) {
1393 switch (item.getItemId()) {
1394 case MENU_WALLPAPER_SETTINGS:
1395 startWallpaper();
1396 return true;
Winson Chung70d72102011-08-12 11:24:35 -07001397 }
1398
1399 return super.onOptionsItemSelected(item);
1400 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001401
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001402 @Override
1403 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001404 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001405 // Use a custom animation for launching search
1406 overridePendingTransition(R.anim.fade_in_fast, R.anim.fade_out_fast);
Karl Rosaen138a0412009-04-23 19:00:21 -07001407 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001408 }
1409
Joe Onorato9c1289c2009-08-17 11:03:03 -04001410 public boolean isWorkspaceLocked() {
1411 return mWorkspaceLoading || mWaitingForResult;
1412 }
1413
Michael Jurka0280c3b2010-09-17 15:00:07 -07001414 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07001415 mPendingAddInfo.container = ItemInfo.NO_ID;
1416 mPendingAddInfo.screen = -1;
1417 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1418 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
1419 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001420 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001421
Michael Jurkaaf442092010-06-10 17:01:57 -07001422 void addAppWidgetFromPick(Intent data) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001423 // TODO: catch bad widget exception when sent
1424 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Michael Jurkaaf442092010-06-10 17:01:57 -07001425 // TODO: Is this log message meaningful?
1426 if (LOGD) Log.d(TAG, "dumping extras content=" + data.getExtras());
Winson Chung55cef262010-10-28 14:14:18 -07001427 addAppWidgetImpl(appWidgetId, null);
Michael Jurkaaf442092010-06-10 17:01:57 -07001428 }
1429
Winson Chung55cef262010-10-28 14:14:18 -07001430 void addAppWidgetImpl(int appWidgetId, PendingAddWidgetInfo info) {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001431 AppWidgetProviderInfo appWidget = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001432
Bjorn Bringert7984c942009-12-09 15:38:25 +00001433 if (appWidget.configure != null) {
1434 // Launch over to configure widget, if needed
1435 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
1436 intent.setComponent(appWidget.configure);
1437 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Winson Chung55cef262010-10-28 14:14:18 -07001438 if (info != null) {
Winson Chung68846fd2010-10-29 11:00:27 -07001439 if (info.mimeType != null && !info.mimeType.isEmpty()) {
1440 intent.putExtra(
1441 InstallWidgetReceiver.EXTRA_APPWIDGET_CONFIGURATION_DATA_MIME_TYPE,
1442 info.mimeType);
1443
1444 final String mimeType = info.mimeType;
1445 final ClipData clipData = (ClipData) info.configurationData;
1446 final ClipDescription clipDesc = clipData.getDescription();
1447 for (int i = 0; i < clipDesc.getMimeTypeCount(); ++i) {
1448 if (clipDesc.getMimeType(i).equals(mimeType)) {
Dianne Hackborn0d5aad72011-01-17 15:28:58 -08001449 final ClipData.Item item = clipData.getItemAt(i);
Winson Chung68846fd2010-10-29 11:00:27 -07001450 final CharSequence stringData = item.getText();
1451 final Uri uriData = item.getUri();
1452 final Intent intentData = item.getIntent();
1453 final String key =
1454 InstallWidgetReceiver.EXTRA_APPWIDGET_CONFIGURATION_DATA;
1455 if (uriData != null) {
1456 intent.putExtra(key, uriData);
1457 } else if (intentData != null) {
1458 intent.putExtra(key, intentData);
1459 } else if (stringData != null) {
1460 intent.putExtra(key, stringData);
1461 }
1462 break;
1463 }
1464 }
1465 }
Winson Chung55cef262010-10-28 14:14:18 -07001466 }
Bjorn Bringert7984c942009-12-09 15:38:25 +00001467
Romain Guy8e633c52010-03-04 12:51:36 -08001468 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001469 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001470 // Otherwise just add it
Winson Chung3d503fb2011-07-13 17:25:49 -07001471 completeAddAppWidget(appWidgetId, info.container, info.screen);
Winson Chung557d6ed2011-07-08 15:34:52 -07001472
1473 // Exit spring loaded mode if necessary after adding the widget
Winson Chung6a3fd3f2011-08-02 14:03:26 -07001474 exitSpringLoadedDragModeDelayed(true, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001475 }
1476 }
Romain Guycbb89e42009-06-08 15:52:54 -07001477
Adam Cohenfbba09b2011-07-18 21:43:05 -07001478 /**
1479 * Process a shortcut drop.
1480 *
1481 * @param componentName The name of the component
1482 * @param screen The screen where it should be added
1483 * @param cell The cell it should be added to, optional
1484 * @param position The location on the screen where it was dropped, optional
1485 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001486 void processShortcutFromDrop(ComponentName componentName, long container, int screen,
1487 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001488 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001489 mPendingAddInfo.container = container;
1490 mPendingAddInfo.screen = screen;
1491 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001492
1493 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001494 mPendingAddInfo.cellX = cell[0];
1495 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001496 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001497
1498 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1499 createShortcutIntent.setComponent(componentName);
1500 processShortcut(createShortcutIntent);
1501 }
1502
Adam Cohenfbba09b2011-07-18 21:43:05 -07001503 /**
1504 * Process a widget drop.
1505 *
1506 * @param info The PendingAppWidgetInfo of the widget being added.
1507 * @param screen The screen where it should be added
1508 * @param cell The cell it should be added to, optional
1509 * @param position The location on the screen where it was dropped, optional
1510 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001511 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen,
1512 int[] cell, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001513 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001514 mPendingAddInfo.container = info.container = container;
1515 mPendingAddInfo.screen = info.screen = screen;
1516 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001517 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001518 mPendingAddInfo.cellX = cell[0];
1519 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001520 }
1521
1522 int appWidgetId = getAppWidgetHost().allocateAppWidgetId();
1523 AppWidgetManager.getInstance(this).bindAppWidgetId(appWidgetId, info.componentName);
1524 addAppWidgetImpl(appWidgetId, info);
1525 }
1526
Joe Onoratodeb98af2010-02-19 14:59:39 -08001527 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001528 // Handle case where user selected "Applications"
1529 String applicationName = getResources().getString(R.string.group_applications);
1530 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001531
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001532 if (applicationName != null && applicationName.equals(shortcutName)) {
1533 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1534 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001535
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001536 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1537 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001538 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001539 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001540 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001541 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001542 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001543 }
1544
Winson Chung24ab2f12010-09-16 14:10:47 -07001545 void processWallpaper(Intent intent) {
1546 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1547 }
1548
Winson Chung3d503fb2011-07-13 17:25:49 -07001549 FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX,
1550 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001551 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001552 folderInfo.title = getText(R.string.folder_name);
1553
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001554 // Update the model
Winson Chung3d503fb2011-07-13 17:25:49 -07001555 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screen, cellX, cellY,
1556 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001557 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001558
1559 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07001560 FolderIcon newFolder =
1561 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
1562 mWorkspace.addInScreen(newFolder, container, screen, cellX, cellY, 1, 1,
1563 isWorkspaceLocked());
Adam Cohendf035382011-04-11 17:22:04 -07001564 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001565 }
Romain Guycbb89e42009-06-08 15:52:54 -07001566
Joe Onorato9c1289c2009-08-17 11:03:03 -04001567 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001568 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001569 }
1570
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001571 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001572 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001573 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001574 Intent chooser = Intent.createChooser(pickWallpaper,
1575 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001576 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1577 // Removed in Eclair MR1
1578// WallpaperManager wm = (WallpaperManager)
1579// getSystemService(Context.WALLPAPER_SERVICE);
1580// WallpaperInfo wi = wm.getWallpaperInfo();
1581// if (wi != null && wi.getSettingsActivity() != null) {
1582// LabeledIntent li = new LabeledIntent(getPackageName(),
1583// R.string.configure_wallpaper, 0);
1584// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1585// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1586// }
Mike Clerona0618e42009-10-22 13:55:21 -07001587 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001588 }
1589
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001590 /**
1591 * Registers various content observers. The current implementation registers
1592 * only a favorites observer to keep track of the favorites applications.
1593 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001594 private void registerContentObservers() {
1595 ContentResolver resolver = getContentResolver();
1596 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1597 true, mWidgetObserver);
1598 }
1599
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001600 @Override
1601 public boolean dispatchKeyEvent(KeyEvent event) {
1602 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1603 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001604 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001605 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001606 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jason Samseb5615d2009-11-30 11:50:10 -08001607 if (SystemProperties.getInt("debug.launcher2.dumpstate", 0) != 0) {
Joe Onoratobe386092009-11-17 17:32:16 -08001608 dumpState();
1609 return true;
1610 }
1611 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001612 }
1613 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1614 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001615 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001616 return true;
1617 }
1618 }
1619
1620 return super.dispatchKeyEvent(event);
1621 }
1622
Joe Onorato88ec0992009-11-19 13:16:06 -08001623 @Override
1624 public void onBackPressed() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07001625 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001626 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001627 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07001628 Folder openFolder = mWorkspace.getOpenFolder();
1629 if (openFolder.isEditingName()) {
1630 openFolder.dismissEditingName();
1631 } else {
1632 closeFolder();
1633 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001634 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08001635 mWorkspace.exitWidgetResizeMode();
1636
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001637 // Back button is a no-op here, but give at least some feedback for the button press
1638 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07001639 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001640 }
1641
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001642 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001643 * Re-listen when widgets are reset.
1644 */
1645 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08001646 if (mAppWidgetHost != null) {
1647 mAppWidgetHost.startListening();
1648 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001649 }
1650
1651 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001652 * Go through the and disconnect any of the callbacks in the drawables and the views or we
1653 * leak the previous Home screen on orientation change.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001654 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001655 private void unbindWorkspaceAndHotseatItems() {
Winson Chung603bcb92011-09-02 11:45:39 -07001656 if (mModel != null) {
1657 mModel.unbindWorkspaceItems();
1658 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001659 }
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001660
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001661 /**
1662 * Launches the intent referred by the clicked shortcut.
1663 *
1664 * @param v The view representing the clicked shortcut.
1665 */
1666 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001667 // Make sure that rogue clicks don't get through while allapps is launching, or after the
1668 // view has detached (it's possible for this to happen if the view is removed mid touch).
1669 if (v.getWindowToken() == null) {
1670 return;
1671 }
1672
1673 if (mWorkspace.isSwitchingState()) {
1674 return;
1675 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07001676
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001677 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001678 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001679 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08001680 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08001681 int[] pos = new int[2];
1682 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08001683 intent.setSourceBounds(new Rect(pos[0], pos[1],
1684 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Michael Jurkaddd62e92011-02-16 17:49:14 -08001685 boolean success = startActivitySafely(intent, tag);
1686
1687 if (success && v instanceof BubbleTextView) {
1688 mWaitingForResume = (BubbleTextView) v;
1689 mWaitingForResume.setStayPressed(true);
1690 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001691 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07001692 if (v instanceof FolderIcon) {
1693 FolderIcon fi = (FolderIcon) v;
1694 handleFolderClick(fi);
1695 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07001696 } else if (v == mAllAppsButton) {
1697 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001698 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001699 } else {
Michael Jurka2a552322011-10-11 15:22:05 -07001700 onClickAllAppsButton(v);
Joe Onorato7404ee42009-07-31 11:54:44 -07001701 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001702 }
1703 }
1704
Michael Jurka0e260592010-06-30 17:07:39 -07001705 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07001706 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001707 // clicking anywhere on the workspace causes the customization drawer to slide down
1708 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07001709 return false;
1710 }
1711
Michael Jurkaaf442092010-06-10 17:01:57 -07001712 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001713 * Event handler for the search button
1714 *
1715 * @param v The view that was clicked.
1716 */
1717 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001718 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
1719
Amith Yamasania135ba82011-08-09 17:42:01 -07001720 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001721 }
1722
1723 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001724 * Event handler for the voice button
1725 *
1726 * @param v The view that was clicked.
1727 */
1728 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001729 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001730
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001731 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001732 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001733 startActivity(intent);
1734 }
1735
1736 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001737 * Event handler for the "grid" button that appears on the home screen, which
1738 * enters all apps mode.
1739 *
1740 * @param v The view that was clicked.
1741 */
1742 public void onClickAllAppsButton(View v) {
Michael Jurka5130e402011-10-13 04:55:35 -07001743 showAllApps(true);
1744 }
1745
1746 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07001747 // Provide the same haptic feedback that the system offers for virtual keys.
1748 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001749 }
1750
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001751 public void onClickAppMarketButton(View v) {
1752 if (mAppMarketIntent != null) {
1753 startActivitySafely(mAppMarketIntent, "app market");
1754 }
1755 }
1756
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001757 void startApplicationDetailsActivity(ComponentName componentName) {
1758 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001759 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
1760 Uri.fromParts("package", packageName, null));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001761 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001762 startActivity(intent);
1763 }
1764
Patrick Dubroy5539af72010-09-07 15:22:01 -07001765 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
1766 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
1767 // System applications cannot be installed. For now, show a toast explaining that.
1768 // We may give them the option of disabling apps this way.
1769 int messageId = R.string.uninstall_system_app_text;
1770 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
1771 } else {
1772 String packageName = appInfo.componentName.getPackageName();
1773 String className = appInfo.componentName.getClassName();
1774 Intent intent = new Intent(
1775 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001776 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1777 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy5539af72010-09-07 15:22:01 -07001778 startActivity(intent);
1779 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001780 }
1781
Michael Jurkaddd62e92011-02-16 17:49:14 -08001782 boolean startActivitySafely(Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001783 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1784 try {
1785 startActivity(intent);
Michael Jurkaddd62e92011-02-16 17:49:14 -08001786 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001787 } catch (ActivityNotFoundException e) {
1788 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Daniel Sandlerc9b18772010-04-22 14:37:59 -04001789 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001790 } catch (SecurityException e) {
1791 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001792 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001793 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07001794 "or use the exported attribute for this activity. "
1795 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001796 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08001797 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001798 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001799
Romain Guy8e633c52010-03-04 12:51:36 -08001800 void startActivityForResultSafely(Intent intent, int requestCode) {
1801 try {
1802 startActivityForResult(intent, requestCode);
1803 } catch (ActivityNotFoundException e) {
1804 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1805 } catch (SecurityException e) {
1806 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1807 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
1808 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
1809 "or use the exported attribute for this activity.", e);
1810 }
1811 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001812
Adam Cohena9cf38f2011-05-02 15:36:58 -07001813 private void handleFolderClick(FolderIcon folderIcon) {
1814 final FolderInfo info = folderIcon.mInfo;
Adam Cohen3c81a382011-08-31 22:25:51 -07001815 Folder openFolder = mWorkspace.getFolderForTag(info);
1816
1817 // If the folder info reports that the associated folder is open, then verify that
1818 // it is actually opened. There have been a few instances where this gets out of sync.
1819 if (info.opened && openFolder == null) {
1820 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
1821 + info.screen + " (" + info.cellX + ", " + info.cellY + ")");
1822 info.opened = false;
1823 }
1824
Adam Cohena9cf38f2011-05-02 15:36:58 -07001825 if (!info.opened) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001826 // Close any open folder
1827 closeFolder();
1828 // Open the requested folder
Adam Cohena9cf38f2011-05-02 15:36:58 -07001829 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001830 } else {
1831 // Find the open folder...
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001832 int folderScreen;
1833 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07001834 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001835 // .. and close it
1836 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07001837 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001838 // Close any folder open on the current screen
1839 closeFolder();
1840 // Pull the folder onto this screen
Adam Cohena9cf38f2011-05-02 15:36:58 -07001841 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001842 }
1843 }
1844 }
1845 }
1846
Adam Cohen2801caf2011-05-13 20:57:39 -07001847 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001848 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07001849 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
1850 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
1851 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
1852
Adam Cohenc51934b2011-07-26 21:07:43 -07001853 FolderInfo info = (FolderInfo) fi.getTag();
1854 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1855 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07001856 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
1857 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07001858 }
1859
Adam Cohen2801caf2011-05-13 20:57:39 -07001860 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
1861 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
1862 oa.start();
1863 }
1864
1865 private void shrinkAndFadeInFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001866 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07001867 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
1868 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
1869 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
1870
Adam Cohenc51934b2011-07-26 21:07:43 -07001871 FolderInfo info = (FolderInfo) fi.getTag();
1872 CellLayout cl = null;
1873 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1874 cl = (CellLayout) fi.getParent().getParent();
1875 }
1876
1877 final CellLayout layout = cl;
Adam Cohen2801caf2011-05-13 20:57:39 -07001878 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
1879 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07001880 oa.addListener(new AnimatorListenerAdapter() {
1881 @Override
1882 public void onAnimationEnd(Animator animation) {
1883 if (layout != null) {
1884 layout.clearFolderLeaveBehind();
1885 }
1886 }
1887 });
Adam Cohen2801caf2011-05-13 20:57:39 -07001888 oa.start();
1889 }
1890
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001891 /**
Michael Jurka774bd372010-10-22 13:40:50 -07001892 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001893 * is animated relative to the specified View. If the View is null, no animation
1894 * is played.
1895 *
1896 * @param folderInfo The FolderInfo describing the folder to open.
1897 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07001898 public void openFolder(FolderIcon folderIcon) {
1899 Folder folder = folderIcon.mFolder;
1900 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001901
Adam Cohen2801caf2011-05-13 20:57:39 -07001902 growAndFadeOutFolderIcon(folderIcon);
Adam Cohena9cf38f2011-05-02 15:36:58 -07001903 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001904
Adam Cohen4554ee12011-08-03 16:13:21 -07001905 // Just verify that the folder hasn't already been added to the DragLayer.
1906 // There was a one-off crash where the folder had a parent already.
1907 if (folder.getParent() == null) {
1908 mDragLayer.addView(folder);
1909 mDragController.addDropTarget((DropTarget) folder);
1910 } else {
1911 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
1912 folder.getParent() + ").");
1913 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07001914 folder.animateOpen();
Adam Cohen4554ee12011-08-03 16:13:21 -07001915 }
1916
1917 public void closeFolder() {
1918 Folder folder = mWorkspace.getOpenFolder();
1919 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07001920 if (folder.isEditingName()) {
1921 folder.dismissEditingName();
1922 }
Adam Cohen4554ee12011-08-03 16:13:21 -07001923 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07001924
1925 // Dismiss the folder cling
1926 dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07001927 }
1928 }
1929
1930 void closeFolder(Folder folder) {
1931 folder.getInfo().opened = false;
1932
1933 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
1934 if (parent != null) {
1935 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
1936 shrinkAndFadeInFolderIcon(fi);
1937 }
1938 folder.animateClosed();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001939 }
1940
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001941 public boolean onLongClick(View v) {
Patrick Dubroye708c522011-03-01 16:03:43 -08001942 if (mState != State.WORKSPACE) {
1943 return false;
1944 }
1945
Joe Onorato9c1289c2009-08-17 11:03:03 -04001946 if (isWorkspaceLocked()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001947 return false;
1948 }
1949
1950 if (!(v instanceof CellLayout)) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08001951 v = (View) v.getParent().getParent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001952 }
1953
Michael Jurka0280c3b2010-09-17 15:00:07 -07001954 resetAddInfo();
1955 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001956 // This happens when long clicking an item with the dpad/trackball
Adam Cohenfaea1f82011-07-21 16:23:57 -07001957 if (longClickCellInfo == null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001958 return true;
1959 }
1960
Winson Chung3d503fb2011-07-13 17:25:49 -07001961 // The hotseat touch handling does not go through Workspace, and we always allow long press
1962 // on hotseat items.
Michael Jurka0280c3b2010-09-17 15:00:07 -07001963 final View itemUnderLongClick = longClickCellInfo.cell;
Winson Chung3d503fb2011-07-13 17:25:49 -07001964 boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
1965 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001966 if (itemUnderLongClick == null) {
1967 // User long pressed on empty space
Michael Jurka0280c3b2010-09-17 15:00:07 -07001968 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1969 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Winson Chung6a3fd3f2011-08-02 14:03:26 -07001970 startWallpaper();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001971 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001972 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001973 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07001974 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001975 }
1976 }
1977 }
1978 return true;
1979 }
1980
Winson Chung3d503fb2011-07-13 17:25:49 -07001981 boolean isHotseatLayout(View layout) {
1982 return mHotseat != null && layout != null &&
1983 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
1984 }
1985 Hotseat getHotseat() {
1986 return mHotseat;
Romain Guy1fbc1c82009-11-09 20:43:08 -08001987 }
Adam Cohenebea84d2011-11-09 17:20:41 -08001988 SearchDropTargetBar getSearchBar() {
1989 return mSearchDropTargetBar;
1990 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08001991
Winson Chung3d503fb2011-07-13 17:25:49 -07001992 /**
1993 * Returns the CellLayout of the specified container at the specified screen.
1994 */
1995 CellLayout getCellLayout(long container, int screen) {
1996 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1997 if (mHotseat != null) {
1998 return mHotseat.getLayout();
1999 } else {
2000 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002001 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002002 } else {
2003 return (CellLayout) mWorkspace.getChildAt(screen);
Romain Guya6abce82009-11-10 02:54:41 -08002004 }
2005 }
2006
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002007 Workspace getWorkspace() {
2008 return mWorkspace;
2009 }
2010
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002011 @Override
2012 protected Dialog onCreateDialog(int id) {
2013 switch (id) {
2014 case DIALOG_CREATE_SHORTCUT:
2015 return new CreateShortcut().createDialog();
2016 case DIALOG_RENAME_FOLDER:
2017 return new RenameFolder().createDialog();
2018 }
2019
2020 return super.onCreateDialog(id);
2021 }
2022
2023 @Override
2024 protected void onPrepareDialog(int id, Dialog dialog) {
2025 switch (id) {
2026 case DIALOG_CREATE_SHORTCUT:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002027 break;
2028 case DIALOG_RENAME_FOLDER:
Romain Guy7b4ef332009-07-14 13:58:08 -07002029 if (mFolderInfo != null) {
2030 EditText input = (EditText) dialog.findViewById(R.id.folder_name);
2031 final CharSequence text = mFolderInfo.title;
2032 input.setText(text);
2033 input.setSelection(0, text.length());
2034 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002035 break;
2036 }
2037 }
2038
2039 void showRenameDialog(FolderInfo info) {
2040 mFolderInfo = info;
2041 mWaitingForResult = true;
2042 showDialog(DIALOG_RENAME_FOLDER);
2043 }
2044
Adam Cohenfbba09b2011-07-18 21:43:05 -07002045 private void showAddDialog() {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002046 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002047 mPendingAddInfo.container = LauncherSettings.Favorites.CONTAINER_DESKTOP;
2048 mPendingAddInfo.screen = mWorkspace.getCurrentPage();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002049 mWaitingForResult = true;
2050 showDialog(DIALOG_CREATE_SHORTCUT);
2051 }
2052
2053 private class RenameFolder {
2054 private EditText mInput;
2055
2056 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002057 final View layout = View.inflate(Launcher.this, R.layout.rename_folder, null);
2058 mInput = (EditText) layout.findViewById(R.id.folder_name);
2059
2060 AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
2061 builder.setIcon(0);
2062 builder.setTitle(getString(R.string.rename_folder_title));
2063 builder.setCancelable(true);
2064 builder.setOnCancelListener(new Dialog.OnCancelListener() {
2065 public void onCancel(DialogInterface dialog) {
2066 cleanup();
2067 }
2068 });
2069 builder.setNegativeButton(getString(R.string.cancel_action),
2070 new Dialog.OnClickListener() {
2071 public void onClick(DialogInterface dialog, int which) {
2072 cleanup();
2073 }
2074 }
2075 );
2076 builder.setPositiveButton(getString(R.string.rename_action),
2077 new Dialog.OnClickListener() {
2078 public void onClick(DialogInterface dialog, int which) {
2079 changeFolderName();
2080 }
2081 }
2082 );
2083 builder.setView(layout);
Romain Guy7b4ef332009-07-14 13:58:08 -07002084
2085 final AlertDialog dialog = builder.create();
2086 dialog.setOnShowListener(new DialogInterface.OnShowListener() {
2087 public void onShow(DialogInterface dialog) {
Joe Onorato7018d8e2010-04-13 20:25:47 -07002088 mWaitingForResult = true;
Joe Onoratod753b422009-11-08 13:31:11 -05002089 mInput.requestFocus();
2090 InputMethodManager inputManager = (InputMethodManager)
2091 getSystemService(Context.INPUT_METHOD_SERVICE);
2092 inputManager.showSoftInput(mInput, 0);
Romain Guy7b4ef332009-07-14 13:58:08 -07002093 }
2094 });
2095
2096 return dialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002097 }
2098
2099 private void changeFolderName() {
2100 final String name = mInput.getText().toString();
2101 if (!TextUtils.isEmpty(name)) {
2102 // Make sure we have the right folder info
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002103 mFolderInfo = sFolders.get(mFolderInfo.id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002104 mFolderInfo.title = name;
2105 LauncherModel.updateItemInDatabase(Launcher.this, mFolderInfo);
2106
Joe Onorato9c1289c2009-08-17 11:03:03 -04002107 if (mWorkspaceLoading) {
Joe Onorato7c312c12009-08-13 21:36:53 -07002108 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002109 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002110 } else {
2111 final FolderIcon folderIcon = (FolderIcon)
2112 mWorkspace.getViewForTag(mFolderInfo);
2113 if (folderIcon != null) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002114 // TODO: At some point we'll probably want some version of setting
2115 // the text for a folder icon.
2116 //folderIcon.setText(name);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002117 getWorkspace().requestLayout();
2118 } else {
Joe Onorato7c312c12009-08-13 21:36:53 -07002119 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002120 mWorkspaceLoading = true;
2121 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002122 }
2123 }
2124 }
2125 cleanup();
2126 }
2127
2128 private void cleanup() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002129 dismissDialog(DIALOG_RENAME_FOLDER);
2130 mWaitingForResult = false;
2131 mFolderInfo = null;
2132 }
2133 }
2134
Daniel Sandler843e8602010-06-07 14:59:01 -04002135 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2136 public boolean isAllAppsVisible() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002137 return (mState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04002138 }
2139
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002140 // AllAppsView.Watcher
2141 public void zoomed(float zoom) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002142 if (zoom == 1.0f) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002143 mWorkspace.setVisibility(View.GONE);
2144 }
2145 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002146
2147 /**
2148 * Helper method for the cameraZoomIn/cameraZoomOut animations
2149 * @param view The view being animated
Winson Chungf0ea4d32011-06-06 14:27:16 -07002150 * @param state The state that we are moving in or out of (eg. APPS_CUSTOMIZE)
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002151 * @param scaleFactor The scale factor used for the zoom
2152 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07002153 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002154 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07002155 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002156 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002157
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002158 void updateWallpaperVisibility(boolean visible) {
2159 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
2160 int curflags = getWindow().getAttributes().flags
2161 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2162 if (wpflags != curflags) {
2163 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
2164 }
2165 }
2166
Michael Jurka9433fa72012-01-19 08:50:41 -08002167 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2168 if (v instanceof LauncherTransitionable) {
2169 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2170 }
2171 }
2172
2173 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2174 if (v instanceof LauncherTransitionable) {
2175 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2176 }
2177 }
2178
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002179 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07002180 * Things to test when changing the following seven functions.
2181 * - Home from workspace
2182 * - from center screen
2183 * - from other screens
2184 * - Home from all apps
2185 * - from center screen
2186 * - from other screens
2187 * - Back from all apps
2188 * - from center screen
2189 * - from other screens
2190 * - Launch app from workspace and quit
2191 * - with back
2192 * - with home
2193 * - Launch app from all apps and quit
2194 * - with back
2195 * - with home
2196 * - Go to a screen that's not the default, then all
2197 * apps, and launch and app, and go back
2198 * - with back
2199 * -with home
2200 * - On workspace, long press power and go back
2201 * - with back
2202 * - with home
2203 * - On all apps, long press power and go back
2204 * - with back
2205 * - with home
2206 * - On workspace, power off
2207 * - On all apps, power off
2208 * - Launch an app and turn off the screen while in that app
2209 * - Go back with home key
2210 * - Go back with back key TODO: make this not go to workspace
2211 * - From all apps
2212 * - From workspace
2213 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2214 * - From all apps
2215 * - From the center workspace
2216 * - From another workspace
2217 */
2218
2219 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002220 * Zoom the camera out from the workspace to reveal 'toView'.
2221 * Assumes that the view to show is anchored at either the very top or very bottom
2222 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002223 */
Michael Jurka9433fa72012-01-19 08:50:41 -08002224 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002225 if (mStateAnimation != null) {
2226 mStateAnimation.cancel();
2227 mStateAnimation = null;
2228 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002229 final Resources res = getResources();
Winson Chung7d7541e2011-09-16 20:14:36 -07002230 final Launcher instance = this;
Adam Cohenf16e5712011-01-13 13:31:45 -08002231
Winson Chungf0ea4d32011-06-06 14:27:16 -07002232 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2233 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2234 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurka9433fa72012-01-19 08:50:41 -08002235 final View fromView = mWorkspace;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002236 final View toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07002237 final int startDelay =
2238 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002239
Michael Jurkab3e22d92011-10-31 15:58:33 -07002240 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002241
Michael Jurkad74c9842011-07-10 12:44:21 -07002242 // Shrink workspaces away if going to AppsCustomize from workspace
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002243 Animator workspaceAnim =
2244 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002245
2246 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002247 toView.setScaleX(scale);
2248 toView.setScaleY(scale);
2249 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2250 scaleAnim.
2251 scaleX(1f).scaleY(1f).
2252 setDuration(duration).
2253 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08002254
Winson Chungf0ea4d32011-06-06 14:27:16 -07002255 toView.setVisibility(View.VISIBLE);
Adam Cohenc00f0b92011-12-06 19:45:06 -08002256 toView.setAlpha(0f);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002257 final ObjectAnimator alphaAnim = ObjectAnimator
2258 .ofFloat(toView, "alpha", 0f, 1f)
2259 .setDuration(fadeDuration);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002260 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Adam Cohenf16e5712011-01-13 13:31:45 -08002261
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002262 // toView should appear right at the end of the workspace shrink
2263 // animation
2264 mStateAnimation = new AnimatorSet();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002265 mStateAnimation.play(scaleAnim).after(startDelay);
Michael Jurka7407d2a2011-12-12 21:48:38 -08002266 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002267
2268 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Adam Cohenf4ddea32011-09-12 13:46:42 -07002269 boolean animationCancelled = false;
2270
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002271 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002272 public void onAnimationStart(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002273 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002274 // Prepare the position
2275 toView.setTranslationX(0.0f);
2276 toView.setTranslationY(0.0f);
2277 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002278 toView.bringToFront();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002279 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002280 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002281 public void onAnimationEnd(Animator animation) {
Michael Jurka9433fa72012-01-19 08:50:41 -08002282 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2283 dispatchOnLauncherTransitionEnd(toView, animated, false);
Winson Chung32174c82011-07-19 15:47:55 -07002284
2285 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2286 // Hide the workspace scrollbar
2287 mWorkspace.hideScrollingIndicator(true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002288 hideDockDivider();
Winson Chung32174c82011-07-19 15:47:55 -07002289 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002290 if (!animationCancelled) {
2291 updateWallpaperVisibility(false);
2292 }
2293 }
2294
Adam Cohencff6af82011-09-13 14:51:53 -07002295 @Override
Adam Cohenf4ddea32011-09-12 13:46:42 -07002296 public void onAnimationCancel(Animator animation) {
2297 animationCancelled = true;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002298 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002299 });
2300
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002301 if (workspaceAnim != null) {
2302 mStateAnimation.play(workspaceAnim);
2303 }
Michael Jurka1899a362011-11-03 13:50:45 -07002304
2305 boolean delayAnim = false;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002306 final ViewTreeObserver observer;
2307
Michael Jurka9433fa72012-01-19 08:50:41 -08002308 dispatchOnLauncherTransitionStart(fromView, animated, false);
2309 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002310
2311 // If any of the objects being animated haven't been measured/laid out
2312 // yet, delay the animation until we get a layout pass
Michael Jurka9433fa72012-01-19 08:50:41 -08002313 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002314 (mWorkspace.getMeasuredWidth() == 0) ||
2315 (toView.getMeasuredWidth() == 0)) {
2316 observer = mWorkspace.getViewTreeObserver();
2317 delayAnim = true;
2318 } else {
2319 observer = null;
Michael Jurka1899a362011-11-03 13:50:45 -07002320 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002321
2322 if (delayAnim) {
Michael Jurka49779a12012-01-16 04:10:08 -08002323 final AnimatorSet stateAnimation = mStateAnimation;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002324 final OnGlobalLayoutListener delayedStart = new OnGlobalLayoutListener() {
2325 public void onGlobalLayout() {
2326 mWorkspace.post(new Runnable() {
2327 public void run() {
Michael Jurka49779a12012-01-16 04:10:08 -08002328 // Check that mStateAnimation hasn't changed while
2329 // we waited for a layout pass
2330 if (mStateAnimation == stateAnimation) {
2331 // Need to update pivots for zoom if layout changed
2332 setPivotsForZoom(toView, scale);
2333 mStateAnimation.start();
2334 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002335 }
2336 });
2337 observer.removeGlobalOnLayoutListener(this);
2338 }
2339 };
2340 observer.addOnGlobalLayoutListener(delayedStart);
2341 } else {
2342 setPivotsForZoom(toView, scale);
Michael Jurka1899a362011-11-03 13:50:45 -07002343 mStateAnimation.start();
2344 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002345 } else {
2346 toView.setTranslationX(0.0f);
2347 toView.setTranslationY(0.0f);
2348 toView.setScaleX(1.0f);
2349 toView.setScaleY(1.0f);
2350 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002351 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07002352
Michael Jurka9433fa72012-01-19 08:50:41 -08002353 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2354 // Hide the workspace scrollbar
2355 mWorkspace.hideScrollingIndicator(true);
2356 hideDockDivider();
Michael Jurkaabded662011-03-04 12:06:57 -08002357 }
Michael Jurka9433fa72012-01-19 08:50:41 -08002358 dispatchOnLauncherTransitionStart(fromView, animated, false);
2359 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2360 dispatchOnLauncherTransitionStart(toView, animated, false);
2361 dispatchOnLauncherTransitionEnd(toView, animated, false);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002362 updateWallpaperVisibility(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002363 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002364 }
2365
2366 /**
2367 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07002368 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002369 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002370 */
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002371 private void hideAppsCustomizeHelper(
Michael Jurka9433fa72012-01-19 08:50:41 -08002372 State toState, final boolean animated, final boolean springLoaded) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002373 if (mStateAnimation != null) {
2374 mStateAnimation.cancel();
2375 mStateAnimation = null;
2376 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002377 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002378
Winson Chungf0ea4d32011-06-06 14:27:16 -07002379 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002380 final int fadeOutDuration =
2381 res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002382 final float scaleFactor = (float)
2383 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2384 final View fromView = mAppsCustomizeTabHost;
Michael Jurka9433fa72012-01-19 08:50:41 -08002385 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002386 Animator workspaceAnim = null;
2387
2388 if (toState == State.WORKSPACE) {
2389 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
2390 workspaceAnim = mWorkspace.getChangeStateAnimation(
2391 Workspace.State.NORMAL, animated, stagger);
2392 } else if (toState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2393 workspaceAnim = mWorkspace.getChangeStateAnimation(
2394 Workspace.State.SPRING_LOADED, animated);
2395 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002396
Michael Jurkab3e22d92011-10-31 15:58:33 -07002397 setPivotsForZoom(fromView, scaleFactor);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002398 updateWallpaperVisibility(true);
Winson Chung4afe9b32011-07-27 17:46:20 -07002399 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002400 if (animated) {
Michael Jurka742574b2011-02-02 23:51:01 -08002401 final float oldScaleX = fromView.getScaleX();
2402 final float oldScaleY = fromView.getScaleY();
2403
Michael Jurka159b4cc2012-01-17 03:00:35 -08002404 final LauncherViewPropertyAnimator scaleAnim =
2405 new LauncherViewPropertyAnimator(fromView);
2406 scaleAnim.
2407 scaleX(scaleFactor).scaleY(scaleFactor).
2408 setDuration(duration).
2409 setInterpolator(new Workspace.ZoomInInterpolator());
2410
2411 final ObjectAnimator alphaAnim = ObjectAnimator
2412 .ofFloat(fromView, "alpha", 1f, 0f)
2413 .setDuration(fadeOutDuration);
Adam Cohencff6af82011-09-13 14:51:53 -07002414 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
Michael Jurka159b4cc2012-01-17 03:00:35 -08002415
Michael Jurka9433fa72012-01-19 08:50:41 -08002416 mStateAnimation = new AnimatorSet();
2417
2418 dispatchOnLauncherTransitionStart(fromView, animated, true);
2419 dispatchOnLauncherTransitionStart(toView, animated, true);
2420
2421 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002422 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002423 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002424 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002425 fromView.setVisibility(View.GONE);
Michael Jurka9433fa72012-01-19 08:50:41 -08002426 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2427 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurka430e8a52011-08-08 15:52:14 -07002428 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002429 }
2430 });
2431
Winson Chungf0ea4d32011-06-06 14:27:16 -07002432 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002433 if (workspaceAnim != null) {
2434 mStateAnimation.play(workspaceAnim);
2435 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002436 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002437 } else {
2438 fromView.setVisibility(View.GONE);
Michael Jurka9433fa72012-01-19 08:50:41 -08002439 dispatchOnLauncherTransitionStart(fromView, animated, false);
2440 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2441 dispatchOnLauncherTransitionStart(toView, animated, false);
2442 dispatchOnLauncherTransitionEnd(toView, animated, false);
Michael Jurkab737ee62011-11-15 15:57:22 -08002443 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002444 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002445 }
2446
Michael Jurkae326f182011-11-21 14:05:46 -08002447 @Override
2448 public void onTrimMemory(int level) {
2449 super.onTrimMemory(level);
2450 if (level == ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
2451 mAppsCustomizeTabHost.onTrimMemory();
2452 }
2453 }
2454
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002455 void showWorkspace(boolean animated) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002456 if (mState != State.WORKSPACE) {
2457 mWorkspace.setVisibility(View.VISIBLE);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002458 hideAppsCustomizeHelper(State.WORKSPACE, animated, false);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002459
2460 // Show the search bar and hotseat
2461 mSearchDropTargetBar.showSearchBar(animated);
Michael Jurkab737ee62011-11-15 15:57:22 -08002462 // We only need to animate in the dock divider if we're going from spring loaded mode
2463 showDockDivider(animated && mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002464
2465 // Set focus to the AppsCustomize button
2466 if (mAllAppsButton != null) {
2467 mAllAppsButton.requestFocus();
2468 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002469 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002470
Michael Jurkab737ee62011-11-15 15:57:22 -08002471 mWorkspace.flashScrollingIndicator(animated);
Adam Cohen7777d962011-08-18 18:58:38 -07002472
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002473 // Change the state *after* we've called all the transition code
2474 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002475
Winson Chung5fb63472011-02-02 17:03:37 -08002476 // Resume the auto-advance of widgets
2477 mUserPresent = true;
2478 updateRunning();
2479
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002480 // send an accessibility event to announce the context change
2481 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
Joe Onorato00acb122009-08-04 16:04:30 -04002482 }
2483
Michael Jurkab3e22d92011-10-31 15:58:33 -07002484 void showAllApps(boolean animated) {
2485 if (mState != State.WORKSPACE) return;
2486
2487 showAppsCustomizeHelper(animated, false);
2488 mAppsCustomizeTabHost.requestFocus();
2489
2490 // Hide the search bar and hotseat
2491 mSearchDropTargetBar.hideSearchBar(animated);
2492
2493 // Change the state *after* we've called all the transition code
2494 mState = State.APPS_CUSTOMIZE;
2495
2496 // Pause the auto-advance of widgets until we are out of AllApps
2497 mUserPresent = false;
2498 updateRunning();
2499 closeFolder();
2500
2501 // Send an accessibility event to announce the context change
2502 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
2503 }
2504
Adam Cohen7777d962011-08-18 18:58:38 -07002505 void enterSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002506 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002507 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002508 hideDockDivider();
Winson Chungc07918d2011-07-01 15:35:26 -07002509 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07002510 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002511 }
Adam Cohen7777d962011-08-18 18:58:38 -07002512
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002513 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay) {
Winson Chung09bfc452011-09-09 11:30:20 -07002514 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
2515
Winson Chunge7a03942011-08-05 15:05:12 -07002516 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002517 @Override
2518 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002519 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07002520 // Before we show workspace, hide all apps again because
2521 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2522 // clean up our state transition functions
2523 mAppsCustomizeTabHost.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002524 mSearchDropTargetBar.showSearchBar(true);
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002525 showWorkspace(true);
Adam Cohen7777d962011-08-18 18:58:38 -07002526 } else {
2527 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002528 }
Winson Chung557d6ed2011-07-08 15:34:52 -07002529 }
2530 }, (extendedDelay ?
2531 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2532 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2533 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002534
Michael Jurkad3ef3062010-11-23 16:23:58 -08002535 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002536 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002537 final boolean animated = true;
2538 final boolean springLoaded = true;
2539 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07002540 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002541 }
2542 // Otherwise, we are not in spring loaded mode, so don't do anything.
2543 }
2544
Michael Jurkab737ee62011-11-15 15:57:22 -08002545 void hideDockDivider() {
2546 if (mQsbDivider != null && mDockDivider != null) {
2547 mQsbDivider.setVisibility(View.INVISIBLE);
2548 mDockDivider.setVisibility(View.INVISIBLE);
2549 }
2550 }
2551
2552 void showDockDivider(boolean animated) {
2553 if (mQsbDivider != null && mDockDivider != null) {
2554 mQsbDivider.setVisibility(View.VISIBLE);
2555 mDockDivider.setVisibility(View.VISIBLE);
2556 if (mDividerAnimator != null) {
2557 mDividerAnimator.cancel();
2558 mQsbDivider.setAlpha(1f);
2559 mDockDivider.setAlpha(1f);
2560 mDividerAnimator = null;
2561 }
2562 if (animated) {
2563 mDividerAnimator = new AnimatorSet();
2564 mDividerAnimator.playTogether(ObjectAnimator.ofFloat(mQsbDivider, "alpha", 1f),
2565 ObjectAnimator.ofFloat(mDockDivider, "alpha", 1f));
2566 mDividerAnimator.setDuration(mSearchDropTargetBar.getTransitionInDuration());
2567 mDividerAnimator.start();
2568 }
2569 }
2570 }
2571
Michael Jurkab3e22d92011-10-31 15:58:33 -07002572 void lockAllApps() {
2573 // TODO
2574 }
2575
2576 void unlockAllApps() {
2577 // TODO
2578 }
2579
Adam Cohenfc53cd22011-07-20 15:45:11 -07002580 public boolean isAllAppsCustomizeOpen() {
2581 return mState == State.APPS_CUSTOMIZE;
2582 }
2583
Winson Chungf0ea4d32011-06-06 14:27:16 -07002584 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002585 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002586 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002587 void showHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002588 if (!LauncherApplication.isScreenLarge()) {
2589 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002590 if (mHotseat.getAlpha() != 1f) {
2591 int duration = mSearchDropTargetBar.getTransitionInDuration();
2592 mHotseat.animate().alpha(1f).setDuration(duration);
2593 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002594 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002595 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002596 }
2597 }
2598 }
2599
2600 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002601 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002602 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002603 void hideHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002604 if (!LauncherApplication.isScreenLarge()) {
2605 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002606 if (mHotseat.getAlpha() != 0f) {
2607 int duration = mSearchDropTargetBar.getTransitionOutDuration();
2608 mHotseat.animate().alpha(0f).setDuration(duration);
2609 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002610 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002611 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002612 }
Winson Chungb26f3d62011-06-02 10:49:29 -07002613 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002614 }
2615
Patrick Dubroy5f445422011-02-18 14:35:21 -08002616 /**
2617 * Add an item from all apps or customize onto the given workspace screen.
2618 * If layout is null, add to the current screen.
2619 */
2620 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002621 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
2622 showOutOfSpaceMessage();
Michael Jurka213d9632010-07-28 11:29:25 -07002623 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002624 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002625
Winson Chungdff8ebb2011-09-08 17:25:31 -07002626 /** Maps the current orientation to an index for referencing orientation correct global icons */
2627 private int getCurrentOrientationIndexForGlobalIcons() {
2628 // default - 0, landscape - 1
2629 switch (getResources().getConfiguration().orientation) {
2630 case Configuration.ORIENTATION_LANDSCAPE:
2631 return 1;
2632 default:
2633 return 0;
2634 }
2635 }
2636
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002637 private Drawable getExternalPackageToolbarIcon(ComponentName activityName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002638 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002639 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002640 // Look for the toolbar icon specified in the activity meta-data
2641 Bundle metaData = packageManager.getActivityInfo(
2642 activityName, PackageManager.GET_META_DATA).metaData;
2643 if (metaData != null) {
2644 int iconResId = metaData.getInt(TOOLBAR_ICON_METADATA_NAME);
2645 if (iconResId != 0) {
2646 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002647 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002648 }
2649 }
2650 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07002651 // This can happen if the activity defines an invalid drawable
2652 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
2653 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01002654 } catch (Resources.NotFoundException nfe) {
2655 // This can happen if the activity defines an invalid drawable
2656 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
2657 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002658 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002659 return null;
2660 }
2661
2662 // if successful in getting icon, return it; otherwise, set button to use default drawable
2663 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
2664 int buttonId, ComponentName activityName, int fallbackDrawableId) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002665 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName);
Winson Chung128bbcd2011-08-31 16:58:52 -07002666 Resources r = getResources();
2667 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
2668 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002669
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002670 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002671 // If we were unable to find the icon via the meta-data, use a generic one
2672 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07002673 toolbarIcon = r.getDrawable(fallbackDrawableId);
2674 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002675 if (button != null) {
2676 button.setCompoundDrawables(toolbarIcon, null, null, null);
2677 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002678 return null;
2679 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07002680 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002681 if (button != null) {
2682 button.setCompoundDrawables(toolbarIcon, null, null, null);
2683 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002684 return toolbarIcon.getConstantState();
2685 }
2686 }
2687
2688 // if successful in getting icon, return it; otherwise, set button to use default drawable
2689 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
2690 int buttonId, ComponentName activityName, int fallbackDrawableId) {
2691 ImageView button = (ImageView) findViewById(buttonId);
2692 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName);
2693
Michael Jurka19e0fc52011-07-22 18:00:21 -07002694 if (button != null) {
2695 // If we were unable to find the icon via the meta-data, use a
2696 // generic one
2697 if (toolbarIcon == null) {
2698 button.setImageResource(fallbackDrawableId);
2699 } else {
2700 button.setImageDrawable(toolbarIcon);
2701 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002702 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07002703
2704 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
2705
Michael Jurka0423dcf2010-10-05 14:56:18 -07002706 }
2707
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002708 private void updateTextButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
2709 TextView button = (TextView) findViewById(buttonId);
2710 button.setCompoundDrawables(d.newDrawable(getResources()), null, null, null);
2711 }
2712
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002713 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08002714 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002715 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08002716 }
2717
Winson Chungbb185bd2011-11-21 12:31:42 -08002718 private void invalidatePressedFocusedStates(View container, View button) {
2719 if (container instanceof HolographicLinearLayout) {
2720 HolographicLinearLayout layout = (HolographicLinearLayout) container;
2721 layout.invalidatePressedFocusedStates();
2722 } else if (button instanceof HolographicImageView) {
2723 HolographicImageView view = (HolographicImageView) button;
2724 view.invalidatePressedFocusedStates();
2725 }
2726 }
2727
Winson Chungc51db6a2011-10-05 11:44:49 -07002728 private boolean updateGlobalSearchIcon() {
2729 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07002730 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
2731 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07002732 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002733 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07002734
Winson Chung1cad91e2011-05-25 17:41:01 -07002735 final SearchManager searchManager =
2736 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2737 ComponentName activityName = searchManager.getGlobalSearchActivity();
2738 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002739 int coi = getCurrentOrientationIndexForGlobalIcons();
2740 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Winson Chungc7aef8c2011-09-15 18:53:04 -07002741 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo);
Winson Chung649723c2011-07-06 20:41:23 -07002742 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002743 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
2744 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08002745 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07002746 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07002747 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002748 // We disable both search and voice search when there is no global search provider
Winson Chung649723c2011-07-06 20:41:23 -07002749 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002750 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
2751 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
2752 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002753 voiceButton.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002754 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002755 }
2756 }
2757
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002758 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002759 final View searchButtonContainer = findViewById(R.id.search_button_container);
2760 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002761 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08002762 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002763 }
2764
Winson Chungc51db6a2011-10-05 11:44:49 -07002765 private boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chung1cad91e2011-05-25 17:41:01 -07002766 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07002767 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07002768 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07002769
Winson Chungc51db6a2011-10-05 11:44:49 -07002770 // We only show/update the voice search icon if the search icon is enabled as well
Winson Chung1cad91e2011-05-25 17:41:01 -07002771 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2772 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chungc51db6a2011-10-05 11:44:49 -07002773 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002774 int coi = getCurrentOrientationIndexForGlobalIcons();
2775 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Winson Chungc7aef8c2011-09-15 18:53:04 -07002776 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo);
Winson Chung649723c2011-07-06 20:41:23 -07002777 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002778 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07002779 voiceButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08002780 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07002781 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07002782 } else {
Winson Chung649723c2011-07-06 20:41:23 -07002783 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002784 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07002785 voiceButton.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002786 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002787 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002788 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002789
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002790 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002791 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
2792 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002793 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08002794 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002795 }
2796
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002797 /**
Winson Chungeb66b142011-06-16 13:14:22 -07002798 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002799 */
2800 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07002801 final View marketButton = findViewById(R.id.market_button);
2802 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
2803 // Find the app market activity by resolving an intent.
2804 // (If multiple app markets are installed, it will return the ResolverActivity.)
2805 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07002806 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002807 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07002808 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07002809 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Winson Chung967289b2011-06-30 18:09:30 -07002810 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo);
Winson Chung785d2eb2011-04-14 16:08:02 -07002811 marketButton.setVisibility(View.VISIBLE);
2812 } else {
2813 // We should hide and disable the view so that we don't try and restore the visibility
2814 // of it when we swap between drag & normal states from IconDropTarget subclasses.
2815 marketButton.setVisibility(View.GONE);
2816 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002817 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002818 }
2819
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002820 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002821 updateTextButtonWithDrawable(R.id.market_button, d);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002822 }
2823
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002824 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002825 * Displays the shortcut creation dialog and launches, if necessary, the
2826 * appropriate activity.
2827 */
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002828 private class CreateShortcut implements DialogInterface.OnClickListener,
Romain Guy7b4ef332009-07-14 13:58:08 -07002829 DialogInterface.OnCancelListener, DialogInterface.OnDismissListener,
2830 DialogInterface.OnShowListener {
2831
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002832 private AddAdapter mAdapter;
Romain Guy9ffb5432009-03-24 21:04:15 -07002833
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002834 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002835 mAdapter = new AddAdapter(Launcher.this);
Romain Guycbb89e42009-06-08 15:52:54 -07002836
Winson Chung55b65502011-05-26 12:03:43 -07002837 final AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this,
2838 AlertDialog.THEME_HOLO_DARK);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002839 builder.setAdapter(mAdapter, this);
Romain Guycbb89e42009-06-08 15:52:54 -07002840
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002841 AlertDialog dialog = builder.create();
2842 dialog.setOnCancelListener(this);
Romain Guycbb89e42009-06-08 15:52:54 -07002843 dialog.setOnDismissListener(this);
Romain Guy7b4ef332009-07-14 13:58:08 -07002844 dialog.setOnShowListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002845
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002846 return dialog;
2847 }
2848
2849 public void onCancel(DialogInterface dialog) {
2850 mWaitingForResult = false;
2851 cleanup();
2852 }
2853
Romain Guycbb89e42009-06-08 15:52:54 -07002854 public void onDismiss(DialogInterface dialog) {
Winson Chung55b65502011-05-26 12:03:43 -07002855 mWaitingForResult = false;
2856 cleanup();
Romain Guycbb89e42009-06-08 15:52:54 -07002857 }
2858
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002859 private void cleanup() {
Joe Onoratocc19a532009-11-19 14:19:17 -08002860 try {
2861 dismissDialog(DIALOG_CREATE_SHORTCUT);
2862 } catch (Exception e) {
2863 // An exception is thrown if the dialog is not visible, which is fine
2864 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002865 }
2866
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002867 /**
2868 * Handle the action clicked in the "Add to home" dialog.
2869 */
2870 public void onClick(DialogInterface dialog, int which) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002871 cleanup();
Romain Guycbb89e42009-06-08 15:52:54 -07002872
Winson Chung55b65502011-05-26 12:03:43 -07002873 AddAdapter.ListItem item = (AddAdapter.ListItem) mAdapter.getItem(which);
2874 switch (item.actionTag) {
Winson Chung55b65502011-05-26 12:03:43 -07002875 case AddAdapter.ITEM_APPLICATION: {
2876 if (mAppsCustomizeTabHost != null) {
2877 mAppsCustomizeTabHost.selectAppsTab();
2878 }
2879 showAllApps(true);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002880 break;
2881 }
Winson Chung55b65502011-05-26 12:03:43 -07002882 case AddAdapter.ITEM_APPWIDGET: {
2883 if (mAppsCustomizeTabHost != null) {
2884 mAppsCustomizeTabHost.selectWidgetsTab();
2885 }
2886 showAllApps(true);
2887 break;
2888 }
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002889 case AddAdapter.ITEM_WALLPAPER: {
2890 startWallpaper();
2891 break;
2892 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002893 }
2894 }
Romain Guy7b4ef332009-07-14 13:58:08 -07002895
2896 public void onShow(DialogInterface dialog) {
Winson Chungaafa03c2010-06-11 17:34:16 -07002897 mWaitingForResult = true;
Romain Guy7b4ef332009-07-14 13:58:08 -07002898 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002899 }
2900
2901 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07002902 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002903 */
2904 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
2905 @Override
2906 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002907 closeSystemDialogs();
2908 }
2909 }
2910
2911 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002912 * Receives notifications whenever the appwidgets are reset.
2913 */
2914 private class AppWidgetResetObserver extends ContentObserver {
2915 public AppWidgetResetObserver() {
2916 super(new Handler());
2917 }
2918
2919 @Override
2920 public void onChange(boolean selfChange) {
2921 onAppWidgetReset();
2922 }
2923 }
2924
2925 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002926 * If the activity is currently paused, signal that we need to re-run the loader
2927 * in onResume.
2928 *
2929 * This needs to be called from incoming places where resources might have been loaded
2930 * while we are paused. That is becaues the Configuration might be wrong
2931 * when we're not running, and if it comes back to what it was when we
2932 * were paused, we are not restarted.
2933 *
2934 * Implementation of the method from LauncherModel.Callbacks.
2935 *
2936 * @return true if we are currently paused. The caller might be able to
2937 * skip some work in that case since we will come back again.
2938 */
2939 public boolean setLoadOnResume() {
2940 if (mPaused) {
2941 Log.i(TAG, "setLoadOnResume");
2942 mOnResumeNeedsLoad = true;
2943 return true;
2944 } else {
2945 return false;
2946 }
2947 }
2948
2949 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002950 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002951 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04002952 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07002953 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002954 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07002955 } else {
2956 return SCREEN_COUNT / 2;
2957 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002958 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07002959
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002960
Joe Onorato9c1289c2009-08-17 11:03:03 -04002961 /**
2962 * Refreshes the shortcuts shown on the workspace.
2963 *
2964 * Implementation of the method from LauncherModel.Callbacks.
2965 */
2966 public void startBinding() {
2967 final Workspace workspace = mWorkspace;
Adam Cohendf035382011-04-11 17:22:04 -07002968
2969 mWorkspace.clearDropTargets();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002970 int count = workspace.getChildCount();
2971 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04002972 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Winson Chung7a25a9e2011-01-30 13:33:56 -08002973 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
2974 layoutParent.removeAllViewsInLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002975 }
Michael Jurka05bf6442011-11-30 20:28:53 -08002976 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07002977 if (mHotseat != null) {
2978 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002979 }
2980 }
2981
2982 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002983 * Bind the items start-end from the list.
2984 *
2985 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002986 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04002987 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002988 setLoadOnResume();
2989
Joe Onorato9c1289c2009-08-17 11:03:03 -04002990 final Workspace workspace = mWorkspace;
Joe Onorato9c1289c2009-08-17 11:03:03 -04002991 for (int i=start; i<end; i++) {
2992 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07002993
2994 // Short circuit if we are loading dock items for a configuration which has no dock
2995 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
2996 mHotseat == null) {
2997 continue;
2998 }
2999
Joe Onorato9c1289c2009-08-17 11:03:03 -04003000 switch (item.itemType) {
3001 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3002 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chung3d503fb2011-07-13 17:25:49 -07003003 View shortcut = createShortcut((ShortcutInfo)item);
3004 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
3005 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003006 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003007 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003008 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003009 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003010 (FolderInfo) item, mIconCache);
Winson Chung3d503fb2011-07-13 17:25:49 -07003011 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
3012 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003013 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003014 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003015 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003016 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003017 }
3018
Joe Onorato9c1289c2009-08-17 11:03:03 -04003019 /**
3020 * Implementation of the method from LauncherModel.Callbacks.
3021 */
Joe Onoratoad72e172009-11-06 16:25:04 -05003022 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003023 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003024 sFolders.clear();
3025 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003026 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003027
3028 /**
3029 * Add the views for a widget to the workspace.
3030 *
3031 * Implementation of the method from LauncherModel.Callbacks.
3032 */
3033 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003034 setLoadOnResume();
3035
Daniel Sandler843e8602010-06-07 14:59:01 -04003036 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3037 if (DEBUG_WIDGETS) {
3038 Log.d(TAG, "bindAppWidget: " + item);
3039 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003040 final Workspace workspace = mWorkspace;
3041
3042 final int appWidgetId = item.appWidgetId;
3043 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003044 if (DEBUG_WIDGETS) {
3045 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3046 }
3047
Joe Onorato9c1289c2009-08-17 11:03:03 -04003048 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3049
Joe Onorato9c1289c2009-08-17 11:03:03 -04003050 item.hostView.setAppWidget(appWidgetId, appWidgetInfo);
3051 item.hostView.setTag(item);
3052
Winson Chung3d503fb2011-07-13 17:25:49 -07003053 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003054 item.cellY, item.spanX, item.spanY, false);
3055
Adam Cohended9f8d2010-11-03 13:25:16 -07003056 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3057
Joe Onorato9c1289c2009-08-17 11:03:03 -04003058 workspace.requestLayout();
3059
Daniel Sandler843e8602010-06-07 14:59:01 -04003060 if (DEBUG_WIDGETS) {
3061 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3062 + (SystemClock.uptimeMillis()-start) + "ms");
3063 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003064 }
3065
3066 /**
3067 * Callback saying that there aren't any more items to bind.
3068 *
3069 * Implementation of the method from LauncherModel.Callbacks.
3070 */
3071 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003072 setLoadOnResume();
3073
Joe Onorato9c1289c2009-08-17 11:03:03 -04003074 if (mSavedState != null) {
3075 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003076 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003077 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003078 mSavedState = null;
3079 }
3080
3081 if (mSavedInstanceState != null) {
3082 super.onRestoreInstanceState(mSavedInstanceState);
3083 mSavedInstanceState = null;
3084 }
3085
Joe Onorato9c1289c2009-08-17 11:03:03 -04003086 mWorkspaceLoading = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003087
3088 // If we received the result of any pending adds while the loader was running (e.g. the
3089 // widget configuration forced an orientation change), process them now.
3090 for (int i = 0; i < sPendingAddList.size(); i++) {
3091 completeAdd(sPendingAddList.get(i));
3092 }
3093 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003094
Winson Chungc51db6a2011-10-05 11:44:49 -07003095 // Update the market app icon as necessary (the other icons will be managed in response to
3096 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003097 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003098
3099 mWorkspace.post(mBuildLayersRunnable);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003100 }
3101
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003102 @Override
3103 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003104 boolean searchVisible = updateGlobalSearchIcon();
3105 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
3106 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003107 }
3108
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003109 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003110 * Add the icons for all apps.
3111 *
3112 * Implementation of the method from LauncherModel.Callbacks.
3113 */
Michael Jurkac57b7a82011-08-09 22:02:20 -07003114 public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
3115 // Remove the progress bar entirely; we could also make it GONE
3116 // but better to remove it since we know it's not going to be used
3117 View progressBar = mAppsCustomizeTabHost.
3118 findViewById(R.id.apps_customize_progress_bar);
3119 if (progressBar != null) {
3120 ((ViewGroup)progressBar.getParent()).removeView(progressBar);
Winson Chung785d2eb2011-04-14 16:08:02 -07003121 }
Michael Jurkac57b7a82011-08-09 22:02:20 -07003122 // We just post the call to setApps so the user sees the progress bar
3123 // disappear-- otherwise, it just looks like the progress bar froze
3124 // which doesn't look great
3125 mAppsCustomizeTabHost.post(new Runnable() {
3126 public void run() {
3127 if (mAppsCustomizeContent != null) {
3128 mAppsCustomizeContent.setApps(apps);
3129 }
3130 }
3131 });
Joe Onorato9c1289c2009-08-17 11:03:03 -04003132 }
3133
3134 /**
3135 * A package was installed.
3136 *
3137 * Implementation of the method from LauncherModel.Callbacks.
3138 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003139 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003140 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003141 removeDialog(DIALOG_CREATE_SHORTCUT);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003142
Winson Chung785d2eb2011-04-14 16:08:02 -07003143 if (mAppsCustomizeContent != null) {
3144 mAppsCustomizeContent.addApps(apps);
3145 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003146 }
3147
3148 /**
3149 * A package was updated.
3150 *
3151 * Implementation of the method from LauncherModel.Callbacks.
3152 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003153 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003154 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003155 removeDialog(DIALOG_CREATE_SHORTCUT);
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003156 if (mWorkspace != null) {
3157 mWorkspace.updateShortcuts(apps);
3158 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003159
Winson Chung785d2eb2011-04-14 16:08:02 -07003160 if (mAppsCustomizeContent != null) {
3161 mAppsCustomizeContent.updateApps(apps);
3162 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003163 }
3164
3165 /**
3166 * A package was uninstalled.
3167 *
3168 * Implementation of the method from LauncherModel.Callbacks.
3169 */
Joe Onorato36115782010-06-17 13:28:48 -04003170 public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003171 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onorato36115782010-06-17 13:28:48 -04003172 if (permanent) {
3173 mWorkspace.removeItems(apps);
3174 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003175
Winson Chung785d2eb2011-04-14 16:08:02 -07003176 if (mAppsCustomizeContent != null) {
3177 mAppsCustomizeContent.removeApps(apps);
3178 }
Winson Chunga1820962011-10-03 16:31:06 -07003179
3180 // Notify the drag controller
3181 mDragController.onAppsRemoved(apps, this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003182 }
Joe Onoratobe386092009-11-17 17:32:16 -08003183
3184 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003185 * A number of packages were updated.
3186 */
3187 public void bindPackagesUpdated() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003188 if (mAppsCustomizeContent != null) {
3189 mAppsCustomizeContent.onPackagesUpdated();
3190 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003191 }
3192
Winson Chung400438b2011-01-16 17:53:48 -08003193 private int mapConfigurationOriActivityInfoOri(int configOri) {
3194 final Display d = getWindowManager().getDefaultDisplay();
3195 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3196 switch (d.getRotation()) {
3197 case Surface.ROTATION_0:
3198 case Surface.ROTATION_180:
3199 // We are currently in the same basic orientation as the natural orientation
3200 naturalOri = configOri;
3201 break;
3202 case Surface.ROTATION_90:
3203 case Surface.ROTATION_270:
3204 // We are currently in the other basic orientation to the natural orientation
3205 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3206 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3207 break;
3208 }
3209
3210 int[] oriMap = {
3211 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3212 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3213 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3214 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3215 };
3216 // Since the map starts at portrait, we need to offset if this device's natural orientation
3217 // is landscape.
3218 int indexOffset = 0;
3219 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3220 indexOffset = 1;
3221 }
3222 return oriMap[(d.getRotation() + indexOffset) % 4];
3223 }
Adam Cohen446e9402011-09-15 18:21:21 -07003224
3225 public void lockScreenOrientationOnLargeUI() {
3226 if (LauncherApplication.isScreenLarge()) {
3227 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3228 .getConfiguration().orientation));
3229 }
Winson Chung400438b2011-01-16 17:53:48 -08003230 }
Adam Cohen446e9402011-09-15 18:21:21 -07003231 public void unlockScreenOrientationOnLargeUI() {
3232 if (LauncherApplication.isScreenLarge()) {
3233 mHandler.postDelayed(new Runnable() {
3234 public void run() {
3235 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3236 }
3237 }, mRestoreScreenOrientationDelay);
3238 }
Winson Chung400438b2011-01-16 17:53:48 -08003239 }
3240
Winson Chung82f55532011-08-09 14:14:23 -07003241 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07003242 private static final String PREFS_KEY = "com.android.launcher2.prefs";
3243 private boolean isClingsEnabled() {
Brett Chabot2a9e2282011-08-23 15:03:13 -07003244 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07003245 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07003246
Winson Chung7d7541e2011-09-16 20:14:36 -07003247 return true;
Winson Chung82f55532011-08-09 14:14:23 -07003248 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003249 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
3250 Cling cling = (Cling) findViewById(clingId);
3251 if (cling != null) {
3252 cling.init(this, positionData);
3253 cling.setVisibility(View.VISIBLE);
3254 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3255 if (animate) {
3256 cling.buildLayer();
3257 cling.setAlpha(0f);
3258 cling.animate()
3259 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07003260 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07003261 .setDuration(SHOW_CLING_DURATION)
3262 .setStartDelay(delay)
3263 .start();
3264 } else {
3265 cling.setAlpha(1f);
3266 }
3267 }
3268 return cling;
3269 }
3270 private void dismissCling(final Cling cling, final String flag, int duration) {
Winson Chung82f55532011-08-09 14:14:23 -07003271 if (cling != null) {
3272 ObjectAnimator anim = ObjectAnimator.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07003273 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07003274 anim.addListener(new AnimatorListenerAdapter() {
3275 public void onAnimationEnd(Animator animation) {
3276 cling.setVisibility(View.GONE);
3277 cling.cleanup();
3278 SharedPreferences prefs =
3279 getSharedPreferences("com.android.launcher2.prefs", Context.MODE_PRIVATE);
3280 SharedPreferences.Editor editor = prefs.edit();
3281 editor.putBoolean(flag, true);
3282 editor.commit();
3283 };
3284 });
3285 anim.start();
3286 }
3287 }
Winson Chung9d9d74f2011-09-19 11:49:12 -07003288 private void removeCling(int id) {
3289 final View cling = findViewById(id);
3290 if (cling != null) {
3291 final ViewGroup parent = (ViewGroup) cling.getParent();
3292 parent.post(new Runnable() {
3293 @Override
3294 public void run() {
3295 parent.removeView(cling);
3296 }
3297 });
3298 }
3299 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003300 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003301 // Enable the clings only if they have not been dismissed before
3302 SharedPreferences prefs =
3303 getSharedPreferences(PREFS_KEY, Context.MODE_PRIVATE);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003304 if (isClingsEnabled() && !prefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003305 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003306 } else {
3307 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003308 }
3309 }
3310 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003311 // Enable the clings only if they have not been dismissed before
3312 SharedPreferences prefs =
3313 getSharedPreferences(PREFS_KEY, Context.MODE_PRIVATE);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003314 if (isClingsEnabled() && !prefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003315 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003316 } else {
3317 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003318 }
3319 }
3320 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003321 // Enable the clings only if they have not been dismissed before
3322 SharedPreferences prefs =
3323 getSharedPreferences(PREFS_KEY, Context.MODE_PRIVATE);
3324 Cling cling = null;
Winson Chung9d9d74f2011-09-19 11:49:12 -07003325 if (isClingsEnabled() && !prefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003326 cling = initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003327 } else {
3328 removeCling(R.id.folder_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003329 }
3330 return cling;
3331 }
3332 public boolean isFolderClingVisible() {
3333 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003334 if (cling != null) {
3335 return cling.getVisibility() == View.VISIBLE;
3336 }
3337 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07003338 }
Winson Chung82f55532011-08-09 14:14:23 -07003339 public void dismissWorkspaceCling(View v) {
3340 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003341 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003342 }
3343 public void dismissAllAppsCling(View v) {
3344 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003345 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
3346 }
3347 public void dismissFolderCling(View v) {
3348 Cling cling = (Cling) findViewById(R.id.folder_cling);
3349 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003350 }
3351
Winson Chung80baf5a2010-08-09 16:03:15 -07003352 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003353 * Prints out out state for debugging.
3354 */
3355 public void dumpState() {
3356 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003357 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003358 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3359 Log.d(TAG, "mRestoring=" + mRestoring);
3360 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3361 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003362 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003363 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003364
Winson Chung785d2eb2011-04-14 16:08:02 -07003365 if (mAppsCustomizeContent != null) {
3366 mAppsCustomizeContent.dumpState();
3367 }
Joe Onoratobe386092009-11-17 17:32:16 -08003368 Log.d(TAG, "END launcher2 dump state");
3369 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003370
3371 @Override
3372 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
3373 super.dump(prefix, fd, writer, args);
3374 writer.println(" ");
3375 writer.println("Debug logs: ");
3376 for (int i = 0; i < sDumpLogs.size(); i++) {
3377 writer.println(" " + sDumpLogs.get(i));
3378 }
3379 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003380}
Michael Jurka2763be32011-02-24 11:19:57 -08003381
Michael Jurkaabded662011-03-04 12:06:57 -08003382interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003383 View getContent();
Michael Jurka9433fa72012-01-19 08:50:41 -08003384 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
3385 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08003386}