blob: f381b1fe253ee91678cb91f3a5e9c14b58e52a66 [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
Winson Chung400438b2011-01-16 17:53:48 -080020import java.io.DataInputStream;
21import java.io.DataOutputStream;
22import java.io.FileNotFoundException;
23import java.io.IOException;
24import java.util.ArrayList;
25import java.util.HashMap;
26import java.util.List;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070027
Gilles Debunnedd6c9922010-10-25 11:23:41 -070028import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080029import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070030import android.animation.AnimatorSet;
Chet Haaseb1254a62010-09-07 13:35:00 -070031import android.animation.ObjectAnimator;
Patrick Dubroy07a0de42010-08-26 11:48:35 -070032import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070033import android.animation.ValueAnimator;
Michael Jurka946ad472010-07-09 18:05:18 -070034import android.app.Activity;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036import android.app.Dialog;
37import android.app.SearchManager;
38import android.app.StatusBarManager;
Michael Jurkaaf442092010-06-10 17:01:57 -070039import android.appwidget.AppWidgetManager;
40import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080042import android.content.BroadcastReceiver;
Winson Chung68846fd2010-10-29 11:00:27 -070043import android.content.ClipData;
44import android.content.ClipDescription;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040045import android.content.ComponentName;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080046import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.Context;
48import android.content.DialogInterface;
49import android.content.Intent;
Adam Cohended9f8d2010-11-03 13:25:16 -070050import android.content.Intent.ShortcutIconResource;
Winson Chung400438b2011-01-16 17:53:48 -080051import android.content.IntentFilter;
Winson Chungaafa03c2010-06-11 17:34:16 -070052import android.content.pm.ActivityInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080053import android.content.pm.PackageManager;
Adam Cohended9f8d2010-11-03 13:25:16 -070054import android.content.pm.PackageManager.NameNotFoundException;
Winson Chung400438b2011-01-16 17:53:48 -080055import android.content.pm.ResolveInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080056import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070057import android.content.res.Resources;
Daniel Sandlerab1ebd72010-04-27 16:57:25 -040058import android.content.res.TypedArray;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080059import android.database.ContentObserver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060import android.graphics.Bitmap;
Romain Guya6abce82009-11-10 02:54:41 -080061import android.graphics.Canvas;
Michael Jurkaaf442092010-06-10 17:01:57 -070062import android.graphics.Rect;
Romain Guyff0c2e22009-11-10 12:09:59 -080063import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070064import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040065import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070066import android.os.AsyncTask;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020068import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080069import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070070import android.os.Message;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.os.Parcelable;
Daniel Sandler843e8602010-06-07 14:59:01 -040072import android.os.SystemClock;
Joe Onoratobe386092009-11-17 17:32:16 -080073import android.os.SystemProperties;
Karl Rosaen138a0412009-04-23 19:00:21 -070074import android.provider.LiveFolders;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070075import android.provider.Settings;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080076import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080077import android.text.Selection;
78import android.text.SpannableStringBuilder;
79import android.text.TextUtils;
80import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070081import android.util.Log;
Winson Chung400438b2011-01-16 17:53:48 -080082import android.view.Display;
Joe Onorato0d44e942009-11-16 18:20:51 -080083import android.view.HapticFeedbackConstants;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080084import android.view.KeyEvent;
85import android.view.LayoutInflater;
86import android.view.Menu;
87import android.view.MenuItem;
Michael Jurka0e260592010-06-30 17:07:39 -070088import android.view.MotionEvent;
Winson Chung400438b2011-01-16 17:53:48 -080089import android.view.Surface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090import android.view.View;
Winson Chung400438b2011-01-16 17:53:48 -080091import android.view.View.OnLongClickListener;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080092import android.view.ViewGroup;
Winson Chungaafa03c2010-06-11 17:34:16 -070093import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080094import android.view.accessibility.AccessibilityEvent;
Adam Cohenf16e5712011-01-13 13:31:45 -080095import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080096import android.view.inputmethod.InputMethodManager;
Adam Cohended9f8d2010-11-03 13:25:16 -070097import android.widget.Advanceable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080098import android.widget.EditText;
Michael Jurkaaf442092010-06-10 17:01:57 -070099import android.widget.ImageView;
100import android.widget.LinearLayout;
101import android.widget.PopupWindow;
Michael Jurka0e260592010-06-30 17:07:39 -0700102import android.widget.TabHost;
Winson Chung400438b2011-01-16 17:53:48 -0800103import android.widget.TabHost.OnTabChangeListener;
104import android.widget.TabHost.TabContentFactory;
Winson Chung49767ae2010-11-29 14:48:30 -0800105import android.widget.TabWidget;
Winson Chung68846fd2010-10-29 11:00:27 -0700106import android.widget.TextView;
107import android.widget.Toast;
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700108
Winson Chung400438b2011-01-16 17:53:48 -0800109import com.android.common.Search;
110import com.android.launcher.R;
111import com.android.launcher2.CustomizePagedView.CustomizationType;
112import com.android.launcher2.Workspace.ShrinkState;
Romain Guyedcce092010-03-04 13:03:17 -0800113
Adam Cohended9f8d2010-11-03 13:25:16 -0700114
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800115/**
116 * Default launcher application.
117 */
Michael Jurka946ad472010-07-09 18:05:18 -0700118public final class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700119 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
120 AllAppsView.Watcher, View.OnTouchListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800121 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700122 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800123
Joe Onorato9c1289c2009-08-17 11:03:03 -0400124 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400125 static final boolean DEBUG_WIDGETS = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400126 static final boolean DEBUG_USER_INTERFACE = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700127
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800128 private static final int MENU_GROUP_ADD = 1;
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800129 private static final int MENU_GROUP_WALLPAPER = MENU_GROUP_ADD + 1;
130
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800131 private static final int MENU_ADD = Menu.FIRST + 1;
Winson Chung7ad01412010-09-27 11:33:03 -0700132 private static final int MENU_MANAGE_APPS = MENU_ADD + 1;
133 private static final int MENU_WALLPAPER_SETTINGS = MENU_MANAGE_APPS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800134 private static final int MENU_SEARCH = MENU_WALLPAPER_SETTINGS + 1;
135 private static final int MENU_NOTIFICATIONS = MENU_SEARCH + 1;
Romain Guy94dabf12009-07-21 10:55:43 -0700136 private static final int MENU_SETTINGS = MENU_NOTIFICATIONS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800137
138 private static final int REQUEST_CREATE_SHORTCUT = 1;
139 private static final int REQUEST_CREATE_LIVE_FOLDER = 4;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700140 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800141 private static final int REQUEST_PICK_APPLICATION = 6;
142 private static final int REQUEST_PICK_SHORTCUT = 7;
143 private static final int REQUEST_PICK_LIVE_FOLDER = 8;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700144 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700145 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800146
147 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
148
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800149 static final int SCREEN_COUNT = 5;
150 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151
Joe Onorato7c312c12009-08-13 21:36:53 -0700152 static final int DIALOG_CREATE_SHORTCUT = 1;
153 static final int DIALOG_RENAME_FOLDER = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800154
Romain Guy98d01652009-06-30 16:21:04 -0700155 private static final String PREFERENCES = "launcher.preferences";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800156
157 // Type: int
158 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700159 // Type: int
160 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800161 // Type: long
162 private static final String RUNTIME_STATE_USER_FOLDERS = "launcher.user_folder";
163 // Type: int
164 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
165 // Type: int
166 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cellX";
167 // Type: int
168 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cellY";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169 // Type: boolean
170 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
171 // Type: long
172 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
173
Winson Chung80baf5a2010-08-09 16:03:15 -0700174 // tags for the customization tabs
175 private static final String WIDGETS_TAG = "widgets";
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700176 private static final String APPLICATIONS_TAG = "applications";
Winson Chung80baf5a2010-08-09 16:03:15 -0700177 private static final String SHORTCUTS_TAG = "shortcuts";
178 private static final String WALLPAPERS_TAG = "wallpapers";
179
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700180 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
181
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700182 /** The different states that Launcher can be in. */
Michael Jurkad3ef3062010-11-23 16:23:58 -0800183 private enum State { WORKSPACE, ALL_APPS, CUSTOMIZE, OVERVIEW,
184 CUSTOMIZE_SPRING_LOADED, ALL_APPS_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700185 private State mState = State.WORKSPACE;
186 private AnimatorSet mStateAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700187
Joe Onorato9c1289c2009-08-17 11:03:03 -0400188 static final int APPWIDGET_HOST_ID = 1024;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800189
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800190 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800191 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800192
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800193 private final BroadcastReceiver mCloseSystemDialogsReceiver
194 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800195 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
196
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800197 private LayoutInflater mInflater;
198
Joe Onorato00acb122009-08-04 16:04:30 -0400199 private DragController mDragController;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800200 private Workspace mWorkspace;
Romain Guycbb89e42009-06-08 15:52:54 -0700201
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700202 private AppWidgetManager mAppWidgetManager;
203 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700204
Michael Jurka0280c3b2010-09-17 15:00:07 -0700205 private int mAddScreen = -1;
206 private int mAddIntersectCellX = -1;
207 private int mAddIntersectCellY = -1;
208 private int[] mAddDropPosition;
209 private int[] mTmpAddItemCellCoordinates = new int[2];
210
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800211 private FolderInfo mFolderInfo;
212
Joe Onorato7c312c12009-08-13 21:36:53 -0700213 private DeleteZone mDeleteZone;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700214 private HandleView mHandleView;
Joe Onorato7c312c12009-08-13 21:36:53 -0700215 private AllAppsView mAllAppsGrid;
Michael Jurka0e260592010-06-30 17:07:39 -0700216 private TabHost mHomeCustomizationDrawer;
Adam Cohended9f8d2010-11-03 13:25:16 -0700217 private boolean mAutoAdvanceRunning = false;
Patrick Dubroy2b9ff372010-09-07 17:49:27 -0700218
Winson Chunga12a2502010-12-20 14:41:35 -0800219 private AllAppsPagedView mAllAppsPagedView = null;
Patrick Dubroy2b9ff372010-09-07 17:49:27 -0700220 private CustomizePagedView mCustomizePagedView = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800221
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800222 private Bundle mSavedState;
223
224 private SpannableStringBuilder mDefaultKeySsb = null;
225
Joe Onorato9c1289c2009-08-17 11:03:03 -0400226 private boolean mWorkspaceLoading = true;
227
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800228 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800229 private boolean mRestoring;
230 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700231 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800232
233 private Bundle mSavedInstanceState;
234
Joe Onorato9c1289c2009-08-17 11:03:03 -0400235 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800236 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800237 private boolean mUserPresent = true;
238 private boolean mVisible = false;
239 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400240
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700241 private static LocaleConfiguration sLocaleConfiguration = null;
242
Romain Guy84f296c2009-11-04 15:00:44 -0800243 private ArrayList<ItemInfo> mDesktopItems = new ArrayList<ItemInfo>();
Adam Cohended9f8d2010-11-03 13:25:16 -0700244
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700245 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700246
Romain Guy1fbc1c82009-11-09 20:43:08 -0800247 private ImageView mPreviousView;
248 private ImageView mNextView;
Joe Onorato080d9b62009-11-02 12:01:11 -0500249
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400250 // Hotseats (quick-launch icons next to AllApps)
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400251 private String[] mHotseatConfig = null;
252 private Intent[] mHotseats = null;
253 private Drawable[] mHotseatIcons = null;
254 private CharSequence[] mHotseatLabels = null;
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400255
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700256 private Intent mAppMarketIntent = null;
257
Adam Cohended9f8d2010-11-03 13:25:16 -0700258 // Related to the auto-advancing of widgets
259 private final int ADVANCE_MSG = 1;
260 private final int mAdvanceInterval = 20000;
261 private final int mAdvanceStagger = 250;
262 private long mAutoAdvanceSentTime;
263 private long mAutoAdvanceTimeLeft = -1;
264 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
265 new HashMap<View, AppWidgetProviderInfo>();
266
Winson Chung400438b2011-01-16 17:53:48 -0800267 // Determines how long to wait after a rotation before restoring the screen orientation to
268 // match the sensor state.
269 private final int mRestoreScreenOrientationDelay = 500;
270
Michael Jurka4ef207b2010-11-29 17:05:45 -0800271 // External icons saved in case of resource changes, orientation, etc.
Michael Jurkae7bf83b2010-12-14 18:02:21 -0800272 private static Drawable.ConstantState sGlobalSearchIcon;
273 private static Drawable.ConstantState sVoiceSearchIcon;
274 private static Drawable.ConstantState sAppMarketIcon;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800275
Winson Chunga12a2502010-12-20 14:41:35 -0800276 private CustomizationType getCustomizeFilterForTabTag(String tag) {
277 if (tag.equals(WIDGETS_TAG)) {
278 return CustomizationType.WidgetCustomization;
279 } else if (tag.equals(APPLICATIONS_TAG)) {
280 return CustomizationType.ApplicationCustomization;
281 } else if (tag.equals(WALLPAPERS_TAG)) {
282 return CustomizePagedView.CustomizationType.WallpaperCustomization;
283 } else if (tag.equals(SHORTCUTS_TAG)) {
284 return CustomizePagedView.CustomizationType.ShortcutCustomization;
285 }
286 return CustomizationType.WidgetCustomization;
287 }
288
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800289 @Override
290 protected void onCreate(Bundle savedInstanceState) {
291 super.onCreate(savedInstanceState);
Romain Guyb1b69f52009-08-10 15:10:15 -0700292
Winson Chungaafa03c2010-06-11 17:34:16 -0700293 if (LauncherApplication.isInPlaceRotationEnabled()) {
294 // hide the status bar (temporary until we get the status bar design figured out)
295 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
296 this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR);
297 }
298
Joe Onorato0589f0f2010-02-08 13:44:00 -0800299 LauncherApplication app = ((LauncherApplication)getApplication());
300 mModel = app.setLauncher(this);
301 mIconCache = app.getIconCache();
Joe Onorato41a12d22009-10-31 18:30:00 -0400302 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800303 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700304
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700305 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700306 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
307 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700308
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800309 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200310 android.os.Debug.startMethodTracing(
311 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800312 }
313
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400314 loadHotseats();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800315 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800316 setContentView(R.layout.launcher);
Winson Chung88127032010-12-13 12:11:33 -0800317 mHomeCustomizationDrawer = (TabHost) findViewById(R.id.customization_drawer);
Michael Jurka946ad472010-07-09 18:05:18 -0700318 if (mHomeCustomizationDrawer != null) {
319 mHomeCustomizationDrawer.setup();
Winson Chungaafa03c2010-06-11 17:34:16 -0700320
Winson Chung80baf5a2010-08-09 16:03:15 -0700321 // share the same customization workspace across all the tabs
Winson Chunge3193b92010-09-10 11:44:42 -0700322 mCustomizePagedView = (CustomizePagedView) mInflater.inflate(
323 R.layout.customization_drawer, mHomeCustomizationDrawer, false);
Winson Chung80baf5a2010-08-09 16:03:15 -0700324 TabContentFactory contentFactory = new TabContentFactory() {
325 public View createTabContent(String tag) {
326 return mCustomizePagedView;
327 }
328 };
329
Winson Chung49767ae2010-11-29 14:48:30 -0800330
331 TextView tabView;
332 TabWidget tabWidget = (TabWidget)
333 mHomeCustomizationDrawer.findViewById(com.android.internal.R.id.tabs);
334
335 tabView = (TextView) mInflater.inflate(R.layout.tab_widget_indicator, tabWidget, false);
336 tabView.setText(getString(R.string.widgets_tab_label));
Winson Chung80baf5a2010-08-09 16:03:15 -0700337 mHomeCustomizationDrawer.addTab(mHomeCustomizationDrawer.newTabSpec(WIDGETS_TAG)
Winson Chung49767ae2010-11-29 14:48:30 -0800338 .setIndicator(tabView).setContent(contentFactory));
339 tabView = (TextView) mInflater.inflate(R.layout.tab_widget_indicator, tabWidget, false);
340 tabView.setText(getString(R.string.applications_tab_label));
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700341 mHomeCustomizationDrawer.addTab(mHomeCustomizationDrawer.newTabSpec(APPLICATIONS_TAG)
Winson Chung49767ae2010-11-29 14:48:30 -0800342 .setIndicator(tabView).setContent(contentFactory));
343 tabView = (TextView) mInflater.inflate(R.layout.tab_widget_indicator, tabWidget, false);
344 tabView.setText(getString(R.string.wallpapers_tab_label));
Winson Chung80baf5a2010-08-09 16:03:15 -0700345 mHomeCustomizationDrawer.addTab(mHomeCustomizationDrawer.newTabSpec(WALLPAPERS_TAG)
Winson Chung49767ae2010-11-29 14:48:30 -0800346 .setIndicator(tabView).setContent(contentFactory));
347 tabView = (TextView) mInflater.inflate(R.layout.tab_widget_indicator, tabWidget, false);
348 tabView.setText(getString(R.string.shortcuts_tab_label));
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700349 mHomeCustomizationDrawer.addTab(mHomeCustomizationDrawer.newTabSpec(SHORTCUTS_TAG)
Winson Chung49767ae2010-11-29 14:48:30 -0800350 .setIndicator(tabView).setContent(contentFactory));
Winson Chung80baf5a2010-08-09 16:03:15 -0700351 mHomeCustomizationDrawer.setOnTabChangedListener(new OnTabChangeListener() {
352 public void onTabChanged(String tabId) {
Winson Chunga12a2502010-12-20 14:41:35 -0800353 final CustomizePagedView.CustomizationType newType =
354 getCustomizeFilterForTabTag(tabId);
355 if (newType != mCustomizePagedView.getCustomizationFilter()) {
356 // animate the changing of the tab content by fading pages in and out
357 final Resources res = getResources();
358 final int duration = res.getInteger(R.integer.config_tabTransitionTime);
359 final float alpha = mCustomizePagedView.getAlpha();
360 ValueAnimator alphaAnim = ObjectAnimator.ofFloat(mCustomizePagedView,
361 "alpha", alpha, 0.0f);
362 alphaAnim.setDuration(duration);
363 alphaAnim.addListener(new AnimatorListenerAdapter() {
364 @Override
365 public void onAnimationEnd(Animator animation) {
Winson Chunga12a2502010-12-20 14:41:35 -0800366 mCustomizePagedView.setCustomizationFilter(newType);
Winson Chung80baf5a2010-08-09 16:03:15 -0700367
Winson Chunga12a2502010-12-20 14:41:35 -0800368 final float alpha = mCustomizePagedView.getAlpha();
369 ValueAnimator alphaAnim = ObjectAnimator.ofFloat(
370 mCustomizePagedView, "alpha", alpha, 1.0f);
371 alphaAnim.setDuration(duration);
372 alphaAnim.start();
373 }
374 });
375 alphaAnim.start();
376 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700377 }
378 });
Michael Jurka946ad472010-07-09 18:05:18 -0700379 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800380 setupViews();
381
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800382 registerContentObservers();
383
Joe Onorato7c312c12009-08-13 21:36:53 -0700384 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700385
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800386 mSavedState = savedInstanceState;
387 restoreState(mSavedState);
388
Winson Chunga12a2502010-12-20 14:41:35 -0800389 // Update customization drawer _after_ restoring the states
tedbo2b0857a2010-12-22 18:36:24 -0800390 if (mCustomizePagedView != null) {
391 mCustomizePagedView.update();
392 }
Winson Chunga12a2502010-12-20 14:41:35 -0800393
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800394 if (PROFILE_STARTUP) {
395 android.os.Debug.stopMethodTracing();
396 }
397
398 if (!mRestoring) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400399 mModel.startLoader(this, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800400 }
401
402 // For handling default keys
403 mDefaultKeySsb = new SpannableStringBuilder();
404 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800405
406 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
407 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800408
409 // If we have a saved version of these external icons, we load them up immediately
410 if (LauncherApplication.isScreenXLarge()) {
411 if (sGlobalSearchIcon != null) {
412 updateGlobalSearchIcon(sGlobalSearchIcon);
413 }
414 if (sVoiceSearchIcon != null) {
415 updateVoiceSearchIcon(sVoiceSearchIcon);
416 }
417 if (sAppMarketIcon != null) {
418 updateAppMarketIcon(sAppMarketIcon);
419 }
420 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800421 }
Romain Guycbb89e42009-06-08 15:52:54 -0700422
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -0800423 @Override
424 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
425 super.dispatchPopulateAccessibilityEvent(event);
426
427 // we want to take over text population so it is context dependent
428 event.getText().clear();
429 if (mState == State.ALL_APPS) {
430 event.getText().add(getString(R.string.all_apps_button_label));
431 } else if (mState == State.WORKSPACE) {
432 event.getText().add(getString(R.string.all_apps_home_button_label));
433 }
434
435 return true;
436 }
437
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800438 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700439 if (sLocaleConfiguration == null) {
440 new AsyncTask<Void, Void, LocaleConfiguration>() {
441 @Override
442 protected LocaleConfiguration doInBackground(Void... unused) {
443 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
444 readConfiguration(Launcher.this, localeConfiguration);
445 return localeConfiguration;
446 }
447
448 @Override
449 protected void onPostExecute(LocaleConfiguration result) {
450 sLocaleConfiguration = result;
451 checkForLocaleChange(); // recursive, but now with a locale configuration
452 }
453 }.execute();
454 return;
455 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700456
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800457 final Configuration configuration = getResources().getConfiguration();
458
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700459 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800460 final String locale = configuration.locale.toString();
461
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700462 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800463 final int mcc = configuration.mcc;
464
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700465 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800466 final int mnc = configuration.mnc;
467
Romain Guy84f296c2009-11-04 15:00:44 -0800468 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800469
Romain Guy84f296c2009-11-04 15:00:44 -0800470 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700471 sLocaleConfiguration.locale = locale;
472 sLocaleConfiguration.mcc = mcc;
473 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700474
Joe Onorato0589f0f2010-02-08 13:44:00 -0800475 mIconCache.flush();
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400476 loadHotseats();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700477
478 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
479 new Thread("WriteLocaleConfiguration") {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700480 @Override
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700481 public void run() {
482 writeConfiguration(Launcher.this, localeConfiguration);
483 }
484 }.start();
Romain Guy98d01652009-06-30 16:21:04 -0700485 }
486 }
487
488 private static class LocaleConfiguration {
489 public String locale;
490 public int mcc = -1;
491 public int mnc = -1;
492 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700493
Romain Guy98d01652009-06-30 16:21:04 -0700494 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
495 DataInputStream in = null;
496 try {
497 in = new DataInputStream(context.openFileInput(PREFERENCES));
498 configuration.locale = in.readUTF();
499 configuration.mcc = in.readInt();
500 configuration.mnc = in.readInt();
501 } catch (FileNotFoundException e) {
502 // Ignore
503 } catch (IOException e) {
504 // Ignore
505 } finally {
506 if (in != null) {
507 try {
508 in.close();
509 } catch (IOException e) {
510 // Ignore
511 }
512 }
513 }
514 }
515
516 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
517 DataOutputStream out = null;
518 try {
519 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
520 out.writeUTF(configuration.locale);
521 out.writeInt(configuration.mcc);
522 out.writeInt(configuration.mnc);
523 out.flush();
524 } catch (FileNotFoundException e) {
525 // Ignore
526 } catch (IOException e) {
527 //noinspection ResultOfMethodCallIgnored
528 context.getFileStreamPath(PREFERENCES).delete();
529 } finally {
530 if (out != null) {
531 try {
532 out.close();
533 } catch (IOException e) {
534 // Ignore
535 }
536 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800537 }
538 }
539
540 static int getScreen() {
541 synchronized (sLock) {
542 return sScreen;
543 }
544 }
545
546 static void setScreen(int screen) {
547 synchronized (sLock) {
548 sScreen = screen;
549 }
550 }
551
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400552 // Note: This doesn't do all the client-id magic that BrowserProvider does
553 // in Browser. (http://b/2425179)
554 private Uri getDefaultBrowserUri() {
555 String url = getString(R.string.default_browser_url);
556 if (url.indexOf("{CID}") != -1) {
557 url = url.replace("{CID}", "android-google");
558 }
559 return Uri.parse(url);
560 }
561
562 // Load the Intent templates from arrays.xml to populate the hotseats. For
563 // each Intent, if it resolves to a single app, use that as the launch
564 // intent & use that app's label as the contentDescription. Otherwise,
565 // retain the ResolveActivity so the user can pick an app.
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400566 private void loadHotseats() {
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400567 if (mHotseatConfig == null) {
568 mHotseatConfig = getResources().getStringArray(R.array.hotseats);
569 if (mHotseatConfig.length > 0) {
570 mHotseats = new Intent[mHotseatConfig.length];
571 mHotseatLabels = new CharSequence[mHotseatConfig.length];
572 mHotseatIcons = new Drawable[mHotseatConfig.length];
573 } else {
574 mHotseats = null;
575 mHotseatIcons = null;
576 mHotseatLabels = null;
577 }
578
579 TypedArray hotseatIconDrawables = getResources().obtainTypedArray(R.array.hotseat_icons);
580 for (int i=0; i<mHotseatConfig.length; i++) {
581 // load icon for this slot; currently unrelated to the actual activity
582 try {
583 mHotseatIcons[i] = hotseatIconDrawables.getDrawable(i);
584 } catch (ArrayIndexOutOfBoundsException ex) {
585 Log.w(TAG, "Missing hotseat_icons array item #" + i);
586 mHotseatIcons[i] = null;
587 }
588 }
589 hotseatIconDrawables.recycle();
590 }
591
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400592 PackageManager pm = getPackageManager();
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400593 for (int i=0; i<mHotseatConfig.length; i++) {
594 Intent intent = null;
595 if (mHotseatConfig[i].equals("*BROWSER*")) {
596 // magic value meaning "launch user's default web browser"
597 // replace it with a generic web request so we can see if there is indeed a default
598 String defaultUri = getString(R.string.default_browser_url);
599 intent = new Intent(
600 Intent.ACTION_VIEW,
601 ((defaultUri != null)
602 ? Uri.parse(defaultUri)
603 : getDefaultBrowserUri())
604 ).addCategory(Intent.CATEGORY_BROWSABLE);
605 // note: if the user launches this without a default set, she
606 // will always be taken to the default URL above; this is
607 // unavoidable as we must specify a valid URL in order for the
Winson Chungaafa03c2010-06-11 17:34:16 -0700608 // chooser to appear, and once the user selects something, that
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400609 // URL is unavoidably sent to the chosen app.
610 } else {
611 try {
612 intent = Intent.parseUri(mHotseatConfig[i], 0);
613 } catch (java.net.URISyntaxException ex) {
614 Log.w(TAG, "Invalid hotseat intent: " + mHotseatConfig[i]);
615 // bogus; leave intent=null
616 }
617 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700618
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400619 if (intent == null) {
620 mHotseats[i] = null;
621 mHotseatLabels[i] = getText(R.string.activity_not_found);
622 continue;
623 }
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400624
625 if (LOGD) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700626 Log.d(TAG, "loadHotseats: hotseat " + i
627 + " initial intent=["
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400628 + intent.toUri(Intent.URI_INTENT_SCHEME)
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400629 + "]");
630 }
631
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400632 ResolveInfo bestMatch = pm.resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY);
633 List<ResolveInfo> allMatches = pm.queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
Winson Chungaafa03c2010-06-11 17:34:16 -0700634 if (LOGD) {
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400635 Log.d(TAG, "Best match for intent: " + bestMatch);
636 Log.d(TAG, "All matches: ");
637 for (ResolveInfo ri : allMatches) {
638 Log.d(TAG, " --> " + ri);
639 }
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400640 }
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400641 // did this resolve to a single app, or the resolver?
642 if (allMatches.size() == 0 || bestMatch == null) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700643 // can't find any activity to handle this. let's leave the
644 // intent as-is and let Launcher show a toast when it fails
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400645 // to launch.
646 mHotseats[i] = intent;
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400647
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400648 // set accessibility text to "Not installed"
649 mHotseatLabels[i] = getText(R.string.activity_not_found);
650 } else {
651 boolean found = false;
652 for (ResolveInfo ri : allMatches) {
653 if (bestMatch.activityInfo.name.equals(ri.activityInfo.name)
654 && bestMatch.activityInfo.applicationInfo.packageName
655 .equals(ri.activityInfo.applicationInfo.packageName)) {
656 found = true;
657 break;
658 }
659 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700660
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400661 if (!found) {
662 if (LOGD) Log.d(TAG, "Multiple options, no default yet");
663 // the bestMatch is probably the ResolveActivity, meaning the
664 // user has not yet selected a default
665 // so: we'll keep the original intent for now
666 mHotseats[i] = intent;
667
668 // set the accessibility text to "Select shortcut"
669 mHotseatLabels[i] = getText(R.string.title_select_shortcut);
670 } else {
671 // we have an app!
672 // now reconstruct the intent to launch it through the front
673 // door
674 ComponentName com = new ComponentName(
675 bestMatch.activityInfo.applicationInfo.packageName,
676 bestMatch.activityInfo.name);
677 mHotseats[i] = new Intent(Intent.ACTION_MAIN).setComponent(com);
678
679 // load the app label for accessibility
680 mHotseatLabels[i] = bestMatch.activityInfo.loadLabel(pm);
681 }
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400682 }
683
684 if (LOGD) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700685 Log.d(TAG, "loadHotseats: hotseat " + i
686 + " final intent=["
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400687 + ((mHotseats[i] == null)
688 ? "null"
689 : mHotseats[i].toUri(Intent.URI_INTENT_SCHEME))
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400690 + "] label=[" + mHotseatLabels[i]
691 + "]"
692 );
693 }
694 }
695 }
696
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800697 @Override
698 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
Romain Guyaad5ef42009-06-10 02:48:37 -0700699 mWaitingForResult = false;
700
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800701 // The pattern used here is that a user PICKs a specific application,
702 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700703
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800704 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
705 // launch over to the Music app to actually CREATE_SHORTCUT.
Romain Guycbb89e42009-06-08 15:52:54 -0700706
Michael Jurka0280c3b2010-09-17 15:00:07 -0700707 if (resultCode == RESULT_OK && mAddScreen != -1) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800708 switch (requestCode) {
709 case REQUEST_PICK_APPLICATION:
Michael Jurka28750fb2010-09-24 17:43:49 -0700710 completeAddApplication(
711 this, data, mAddScreen, mAddIntersectCellX, mAddIntersectCellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800712 break;
713 case REQUEST_PICK_SHORTCUT:
Joe Onoratodeb98af2010-02-19 14:59:39 -0800714 processShortcut(data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800715 break;
716 case REQUEST_CREATE_SHORTCUT:
Michael Jurka0280c3b2010-09-17 15:00:07 -0700717 completeAddShortcut(data, mAddScreen, mAddIntersectCellX, mAddIntersectCellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800718 break;
719 case REQUEST_PICK_LIVE_FOLDER:
720 addLiveFolder(data);
721 break;
722 case REQUEST_CREATE_LIVE_FOLDER:
Michael Jurka0280c3b2010-09-17 15:00:07 -0700723 completeAddLiveFolder(data, mAddScreen, mAddIntersectCellX, mAddIntersectCellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800724 break;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700725 case REQUEST_PICK_APPWIDGET:
Michael Jurkaaf442092010-06-10 17:01:57 -0700726 addAppWidgetFromPick(data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800727 break;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700728 case REQUEST_CREATE_APPWIDGET:
Michael Jurkaaf442092010-06-10 17:01:57 -0700729 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700730 completeAddAppWidget(appWidgetId, mAddScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800731 break;
Mike Clerona0618e42009-10-22 13:55:21 -0700732 case REQUEST_PICK_WALLPAPER:
733 // We just wanted the activity result here so we can clear mWaitingForResult
734 break;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800735 }
Romain Guy18042c82009-11-06 11:44:55 -0800736 } else if ((requestCode == REQUEST_PICK_APPWIDGET ||
737 requestCode == REQUEST_CREATE_APPWIDGET) && resultCode == RESULT_CANCELED &&
738 data != null) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700739 // Clean up the appWidgetId if we canceled
740 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
741 if (appWidgetId != -1) {
742 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800743 }
744 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800745 }
746
747 @Override
748 protected void onResume() {
749 super.onResume();
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800750 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700751 if (mRestoring || mOnResumeNeedsLoad) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400752 mWorkspaceLoading = true;
753 mModel.startLoader(this, true);
754 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700755 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800756 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700757 // When we resume Launcher, a different Activity might be responsible for the app
758 // market intent, so refresh the icon
759 updateAppMarketIcon();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800760 }
761
762 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700763 protected void onPause() {
764 super.onPause();
Michael Jurkaaf442092010-06-10 17:01:57 -0700765 // Some launcher layouts don't have a previous and next view
766 if (mPreviousView != null) {
767 dismissPreview(mPreviousView);
Patrick Dubroyab962b72010-07-26 12:10:10 -0700768 }
769 if (mNextView != null) {
Michael Jurkaaf442092010-06-10 17:01:57 -0700770 dismissPreview(mNextView);
771 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700772 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800773 mDragController.cancelDrag();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700774 }
Romain Guycbb89e42009-06-08 15:52:54 -0700775
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700776 @Override
777 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400778 // Flag the loader to stop early before switching
779 mModel.stopLoader();
Romain Guy13c2e7b2010-03-10 19:45:00 -0800780 mAllAppsGrid.surrender();
Romain Guy13c2e7b2010-03-10 19:45:00 -0800781 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700782 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700783
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800784 // We can't hide the IME if it was forced open. So don't bother
785 /*
786 @Override
787 public void onWindowFocusChanged(boolean hasFocus) {
788 super.onWindowFocusChanged(hasFocus);
789
790 if (hasFocus) {
791 final InputMethodManager inputManager = (InputMethodManager)
792 getSystemService(Context.INPUT_METHOD_SERVICE);
793 WindowManager.LayoutParams lp = getWindow().getAttributes();
794 inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
795 android.os.Handler()) {
796 protected void onReceiveResult(int resultCode, Bundle resultData) {
797 Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
798 }
799 });
800 Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
801 }
802 }
803 */
804
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800805 private boolean acceptFilter() {
806 final InputMethodManager inputManager = (InputMethodManager)
807 getSystemService(Context.INPUT_METHOD_SERVICE);
808 return !inputManager.isFullscreenMode();
809 }
810
811 @Override
812 public boolean onKeyDown(int keyCode, KeyEvent event) {
813 boolean handled = super.onKeyDown(keyCode, event);
814 if (!handled && acceptFilter() && keyCode != KeyEvent.KEYCODE_ENTER) {
815 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
816 keyCode, event);
817 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700818 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700819 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700820 // showSearchDialog()
821 // If there are multiple keystrokes before the search dialog takes focus,
822 // onSearchRequested() will be called for every keystroke,
823 // but it is idempotent, so it's fine.
824 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800825 }
826 }
827
Joe Onorato8a9625e2010-01-28 15:55:35 -0800828 // Eat the long press event so the keyboard doesn't come up.
829 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
830 return true;
831 }
832
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800833 return handled;
834 }
835
Karl Rosaen138a0412009-04-23 19:00:21 -0700836 private String getTypedText() {
837 return mDefaultKeySsb.toString();
838 }
839
840 private void clearTypedText() {
841 mDefaultKeySsb.clear();
842 mDefaultKeySsb.clearSpans();
843 Selection.setSelection(mDefaultKeySsb, 0);
844 }
845
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800846 /**
Michael Jurka883f55b2010-10-21 15:47:14 -0700847 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
848 * State
849 */
850 private static State intToState(int stateOrdinal) {
851 State state = State.WORKSPACE;
852 final State[] stateValues = State.values();
853 for (int i = 0; i < stateValues.length; i++) {
854 if (stateValues[i].ordinal() == stateOrdinal) {
855 state = stateValues[i];
856 break;
857 }
858 }
859 return state;
860 }
861
862 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800863 * Restores the previous state, if it exists.
864 *
865 * @param savedState The previous state.
866 */
867 private void restoreState(Bundle savedState) {
868 if (savedState == null) {
869 return;
870 }
871
Michael Jurka883f55b2010-10-21 15:47:14 -0700872 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
873
874 if (state == State.ALL_APPS) {
Joe Onorato3a8820b2009-11-10 15:06:42 -0800875 showAllApps(false);
Michael Jurka883f55b2010-10-21 15:47:14 -0700876 } else if (state == State.CUSTOMIZE) {
877 showCustomizationDrawer(false);
Joe Onorato3a8820b2009-11-10 15:06:42 -0800878 }
879
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800880 final int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
881 if (currentScreen > -1) {
Michael Jurka0142d492010-08-25 17:46:15 -0700882 mWorkspace.setCurrentPage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800883 }
884
885 final int addScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700886
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800887 if (addScreen > -1) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700888 mAddScreen = addScreen;
889 mAddIntersectCellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
890 mAddIntersectCellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800891 mRestoring = true;
892 }
893
894 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
895 if (renameFolder) {
896 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700897 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800898 mRestoring = true;
899 }
Winson Chunga12a2502010-12-20 14:41:35 -0800900
901 // Restore the current AllApps drawer tab
902 if (mAllAppsGrid != null && mAllAppsGrid instanceof AllAppsTabbed) {
903 String curTab = savedState.getString("allapps_currentTab");
904 if (curTab != null) {
905 AllAppsTabbed tabhost = (AllAppsTabbed) mAllAppsGrid;
906 tabhost.setCurrentTabByTag(curTab);
907 }
908 int curPage = savedState.getInt("allapps_currentPage", -1);
909 if (curPage > -1) {
910 mAllAppsPagedView.setRestorePage(curPage);
911 }
912 }
913
914 // Restore the current customization drawer tab
915 if (mHomeCustomizationDrawer != null) {
916 String curTab = savedState.getString("customize_currentTab");
917 if (curTab != null) {
918 // We set this directly so that there is no delay before the tab is set
919 mCustomizePagedView.setCustomizationFilter(getCustomizeFilterForTabTag(curTab));
920 mHomeCustomizationDrawer.setCurrentTabByTag(curTab);
921 }
922
923 // Note: currently we do not restore the page for the customization tray because unlike
924 // AllApps, the page content can change drastically
925 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800926 }
927
928 /**
929 * Finds all the views we need and configure them properly.
930 */
931 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -0700932 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -0400933
Romain Guyb1b69f52009-08-10 15:10:15 -0700934 DragLayer dragLayer = (DragLayer) findViewById(R.id.drag_layer);
Joe Onorato00acb122009-08-04 16:04:30 -0400935 dragLayer.setDragController(dragController);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800936
Joe Onorato7c312c12009-08-13 21:36:53 -0700937 mAllAppsGrid = (AllAppsView)dragLayer.findViewById(R.id.all_apps_view);
Joe Onorato6665c0f2009-09-02 15:27:24 -0700938 mAllAppsGrid.setLauncher(this);
Joe Onorato5162ea92009-09-03 09:39:42 -0700939 mAllAppsGrid.setDragController(dragController);
Romain Guyc16fea72010-03-12 17:17:56 -0800940 ((View) mAllAppsGrid).setWillNotDraw(false); // We don't want a hole punched in our window.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -0700941 // Manage focusability manually since this thing is always visible (in non-xlarge)
Winson Chungaafa03c2010-06-11 17:34:16 -0700942 ((View) mAllAppsGrid).setFocusable(false);
Joe Onorato7c312c12009-08-13 21:36:53 -0700943
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -0700944 if (LauncherApplication.isScreenXLarge()) {
945 // They need to be INVISIBLE initially so that they will be measured in the layout.
946 // Otherwise the animations are messed up when we show them for the first time.
947 ((View) mAllAppsGrid).setVisibility(View.INVISIBLE);
948 mHomeCustomizationDrawer.setVisibility(View.INVISIBLE);
949 }
950
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800951 mWorkspace = (Workspace) dragLayer.findViewById(R.id.workspace);
Adam Lesinski6b879f02010-11-04 16:15:23 -0700952
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800953 final Workspace workspace = mWorkspace;
Joe Onoratof0dde092010-02-16 18:25:23 -0500954 workspace.setHapticFeedbackEnabled(false);
Michael Jurka946ad472010-07-09 18:05:18 -0700955
Joe Onorato7c312c12009-08-13 21:36:53 -0700956 DeleteZone deleteZone = (DeleteZone) dragLayer.findViewById(R.id.delete_zone);
957 mDeleteZone = deleteZone;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800958
Michael Jurka2c3af5f2010-08-03 13:53:20 -0700959 View handleView = findViewById(R.id.all_apps_button);
960 if (handleView != null && handleView instanceof HandleView) {
961 // we don't use handle view in xlarge mode
Michael Jurka7ef4f752010-08-03 16:04:26 -0700962 mHandleView = (HandleView)handleView;
Michael Jurka2c3af5f2010-08-03 13:53:20 -0700963 mHandleView.setLauncher(this);
964 mHandleView.setOnClickListener(this);
965 mHandleView.setOnLongClickListener(this);
966 }
Romain Guy1fbc1c82009-11-09 20:43:08 -0800967
Winson Chung80baf5a2010-08-09 16:03:15 -0700968 if (mCustomizePagedView != null) {
969 mCustomizePagedView.setLauncher(this);
970 mCustomizePagedView.setDragController(dragController);
Michael Jurkaaf442092010-06-10 17:01:57 -0700971 } else {
972 ImageView hotseatLeft = (ImageView) findViewById(R.id.hotseat_left);
973 hotseatLeft.setContentDescription(mHotseatLabels[0]);
974 hotseatLeft.setImageDrawable(mHotseatIcons[0]);
975 ImageView hotseatRight = (ImageView) findViewById(R.id.hotseat_right);
976 hotseatRight.setContentDescription(mHotseatLabels[1]);
977 hotseatRight.setImageDrawable(mHotseatIcons[1]);
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400978
Michael Jurkaaf442092010-06-10 17:01:57 -0700979 mPreviousView = (ImageView) dragLayer.findViewById(R.id.previous_screen);
980 mNextView = (ImageView) dragLayer.findViewById(R.id.next_screen);
Romain Guy1fbc1c82009-11-09 20:43:08 -0800981
Michael Jurkaaf442092010-06-10 17:01:57 -0700982 Drawable previous = mPreviousView.getDrawable();
983 Drawable next = mNextView.getDrawable();
984 mWorkspace.setIndicators(previous, next);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800985
Michael Jurkaaf442092010-06-10 17:01:57 -0700986 mPreviousView.setHapticFeedbackEnabled(false);
987 mPreviousView.setOnLongClickListener(this);
988 mNextView.setHapticFeedbackEnabled(false);
989 mNextView.setOnLongClickListener(this);
990 }
Romain Guy1fbc1c82009-11-09 20:43:08 -0800991
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800992 workspace.setOnLongClickListener(this);
Joe Onorato00acb122009-08-04 16:04:30 -0400993 workspace.setDragController(dragController);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800994 workspace.setLauncher(this);
Michael Jurkac5b262c2011-01-12 20:24:50 -0800995 workspace.setWallpaperDimension();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800996
997 deleteZone.setLauncher(this);
Joe Onorato00acb122009-08-04 16:04:30 -0400998 deleteZone.setDragController(dragController);
Michael Jurkab8e14472010-12-20 16:06:10 -0800999
1000 final View allAppsButton = findViewById(R.id.all_apps_button);
1001 final View divider = findViewById(R.id.divider);
1002 final View configureButton = findViewById(R.id.configure_button);
1003
Michael Jurka54f7ac32010-08-02 13:56:46 -07001004 if (LauncherApplication.isScreenXLarge()) {
Winson Chung26cbf3a2011-01-06 16:25:55 -08001005 deleteZone.setOverlappingViews(new View[] { allAppsButton, divider, configureButton });
Michael Jurka54f7ac32010-08-02 13:56:46 -07001006 } else {
Winson Chung26cbf3a2011-01-06 16:25:55 -08001007 deleteZone.setOverlappingView(findViewById(R.id.all_apps_button_cluster));
Michael Jurka54f7ac32010-08-02 13:56:46 -07001008 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001009 dragController.addDragListener(deleteZone);
1010
Adam Cohencdc30d52010-12-01 15:09:47 -08001011 DeleteZone allAppsDeleteZone = (DeleteZone) findViewById(R.id.all_apps_delete_zone);
1012 if (allAppsDeleteZone != null) {
1013 allAppsDeleteZone.setLauncher(this);
1014 allAppsDeleteZone.setDragController(dragController);
1015 allAppsDeleteZone.setDragAndDropEnabled(false);
1016 dragController.addDragListener(allAppsDeleteZone);
1017 dragController.addDropTarget(allAppsDeleteZone);
1018 }
1019
1020 ApplicationInfoDropTarget allAppsInfoTarget = (ApplicationInfoDropTarget)
1021 findViewById(R.id.all_apps_info_target);
1022 if (allAppsInfoTarget != null) {
1023 allAppsInfoTarget.setLauncher(this);
1024 dragController.addDragListener(allAppsInfoTarget);
Adam Cohencdc30d52010-12-01 15:09:47 -08001025 allAppsInfoTarget.setDragAndDropEnabled(false);
1026 View marketButton = findViewById(R.id.market_button);
1027 if (marketButton != null) {
Michael Jurkab8e14472010-12-20 16:06:10 -08001028 allAppsInfoTarget.setOverlappingView(marketButton);
Adam Cohencdc30d52010-12-01 15:09:47 -08001029 }
1030 }
1031
Joe Onorato00acb122009-08-04 16:04:30 -04001032 dragController.setDragScoller(workspace);
Joe Onorato00acb122009-08-04 16:04:30 -04001033 dragController.setScrollView(dragLayer);
Romain Guyea3763c2010-01-11 18:02:04 -08001034 dragController.setMoveTarget(workspace);
Jason Samsfd22dac2009-09-20 17:24:16 -07001035
Joe Onorato00acb122009-08-04 16:04:30 -04001036 // The order here is bottom to top.
1037 dragController.addDropTarget(workspace);
1038 dragController.addDropTarget(deleteZone);
Adam Cohencdc30d52010-12-01 15:09:47 -08001039 if (allAppsInfoTarget != null) {
1040 dragController.addDropTarget(allAppsInfoTarget);
1041 }
1042 if (allAppsDeleteZone != null) {
1043 dragController.addDropTarget(allAppsDeleteZone);
1044 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001045 }
1046
Romain Guy8a73c512009-11-09 19:19:59 -08001047 @SuppressWarnings({"UnusedDeclaration"})
1048 public void previousScreen(View v) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001049 if (mState != State.ALL_APPS) {
Joe Onorato61597bd2009-11-19 12:51:57 -08001050 mWorkspace.scrollLeft();
1051 }
Romain Guy8a73c512009-11-09 19:19:59 -08001052 }
1053
1054 @SuppressWarnings({"UnusedDeclaration"})
1055 public void nextScreen(View v) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001056 if (mState != State.ALL_APPS) {
Joe Onorato61597bd2009-11-19 12:51:57 -08001057 mWorkspace.scrollRight();
1058 }
Romain Guy8a73c512009-11-09 19:19:59 -08001059 }
Daniel Sandlerc9b18772010-04-22 14:37:59 -04001060
1061 @SuppressWarnings({"UnusedDeclaration"})
1062 public void launchHotSeat(View v) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001063 if (mState == State.ALL_APPS) return;
Daniel Sandler3e9454a2010-05-24 11:22:41 -04001064
Daniel Sandlerc9b18772010-04-22 14:37:59 -04001065 int index = -1;
1066 if (v.getId() == R.id.hotseat_left) {
1067 index = 0;
1068 } else if (v.getId() == R.id.hotseat_right) {
1069 index = 1;
1070 }
1071
Daniel Sandlerab1ebd72010-04-27 16:57:25 -04001072 // reload these every tap; you never know when they might change
1073 loadHotseats();
1074 if (index >= 0 && index < mHotseats.length && mHotseats[index] != null) {
Daniel Sandlerc9b18772010-04-22 14:37:59 -04001075 startActivitySafely(
1076 mHotseats[index],
1077 "hotseat"
1078 );
1079 }
1080 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001081
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001082 /**
1083 * Creates a view representing a shortcut.
1084 *
1085 * @param info The data structure describing the shortcut.
1086 *
1087 * @return A View inflated from R.layout.application.
1088 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001089 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001090 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -07001091 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001092 }
1093
1094 /**
1095 * Creates a view representing a shortcut inflated from the specified resource.
1096 *
1097 * @param layoutResId The id of the XML layout used to create the shortcut.
1098 * @param parent The group the shortcut belongs to.
1099 * @param info The data structure describing the shortcut.
1100 *
1101 * @return A View inflated from layoutResId.
1102 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001103 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -08001104 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
1105 favorite.applyFromShortcutInfo(info, mIconCache);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001106 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001107 return favorite;
1108 }
1109
1110 /**
1111 * Add an application shortcut to the workspace.
1112 *
1113 * @param data The intent describing the application.
1114 * @param cellInfo The position on screen where to create the shortcut.
1115 */
Michael Jurka0280c3b2010-09-17 15:00:07 -07001116 void completeAddApplication(Context context, Intent data, int screen,
1117 int intersectCellX, int intersectCellY) {
1118 final int[] cellXY = mTmpAddItemCellCoordinates;
1119 final CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
1120
1121 if (!layout.findCellForSpanThatIntersects(cellXY, 1, 1, intersectCellX, intersectCellY)) {
1122 showOutOfSpaceMessage();
1123 return;
1124 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001125
Joe Onorato0589f0f2010-02-08 13:44:00 -08001126 final ShortcutInfo info = mModel.getShortcutInfo(context.getPackageManager(),
1127 data, context);
1128
Romain Guy73b979d2009-06-09 12:57:21 -07001129 if (info != null) {
Joe Onorato0589f0f2010-02-08 13:44:00 -08001130 info.setActivity(data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001131 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001132 info.container = ItemInfo.NO_ID;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001133 mWorkspace.addApplicationShortcut(info, screen, cellXY[0], cellXY[1],
1134 isWorkspaceLocked(), mAddIntersectCellX, mAddIntersectCellY);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001135 } else {
1136 Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001137 }
1138 }
Romain Guycbb89e42009-06-08 15:52:54 -07001139
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001140 /**
1141 * Add a shortcut to the workspace.
1142 *
1143 * @param data The intent describing the shortcut.
1144 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001145 */
Michael Jurka0280c3b2010-09-17 15:00:07 -07001146 private void completeAddShortcut(Intent data, int screen,
1147 int intersectCellX, int intersectCellY) {
1148 final int[] cellXY = mTmpAddItemCellCoordinates;
1149 final CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
Romain Guycbb89e42009-06-08 15:52:54 -07001150
Michael Jurkad3ef3062010-11-23 16:23:58 -08001151 int[] touchXY = null;
1152 if (mAddDropPosition != null && mAddDropPosition[0] > -1 && mAddDropPosition[1] > -1) {
1153 touchXY = mAddDropPosition;
1154 }
1155 boolean foundCellSpan = false;
1156 if (touchXY != null) {
1157 // when dragging and dropping, just find the closest free spot
1158 CellLayout screenLayout = (CellLayout) mWorkspace.getChildAt(screen);
1159 int[] result = screenLayout.findNearestVacantArea(
1160 touchXY[0], touchXY[1], 1, 1, cellXY);
1161 foundCellSpan = (result != null);
1162 } else {
1163 foundCellSpan = layout.findCellForSpanThatIntersects(
1164 cellXY, 1, 1, intersectCellX, intersectCellY);
1165 }
1166
1167 if (!foundCellSpan) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001168 showOutOfSpaceMessage();
1169 return;
1170 }
1171
1172 final ShortcutInfo info = mModel.addShortcut(
1173 this, data, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001174
1175 if (!mRestoring) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001176 final View view = createShortcut(info);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001177 mWorkspace.addInScreen(view, screen, cellXY[0], cellXY[1], 1, 1, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001178 }
1179 }
1180
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001181 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001182 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001183 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001184 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001185 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001186 */
Michael Jurka0280c3b2010-09-17 15:00:07 -07001187 private void completeAddAppWidget(int appWidgetId, int screen) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001188 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Romain Guycbb89e42009-06-08 15:52:54 -07001189
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001190 // Calculate the grid spans needed to fit this widget
Michael Jurka0280c3b2010-09-17 15:00:07 -07001191 CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
1192 int[] spanXY = layout.rectToCell(appWidgetInfo.minWidth, appWidgetInfo.minHeight, null);
Romain Guycbb89e42009-06-08 15:52:54 -07001193
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001194 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001195 // We have saved the position to which the widget was dragged-- this really only matters
1196 // if we are placing widgets on a "spring-loaded" screen
Michael Jurka0280c3b2010-09-17 15:00:07 -07001197 final int[] cellXY = mTmpAddItemCellCoordinates;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001198
1199 // For now, we don't save the coordinate where we dropped the icon because we're not
1200 // supporting spring-loaded mini-screens; however, leaving the ability to directly place
1201 // a widget on the home screen in case we want to add it in the future
Winson Chung55cef262010-10-28 14:14:18 -07001202 int[] touchXY = null;
Michael Jurka9c6de3d2010-11-23 16:23:58 -08001203 if (mAddDropPosition != null && mAddDropPosition[0] > -1 && mAddDropPosition[1] > -1) {
Winson Chung55cef262010-10-28 14:14:18 -07001204 touchXY = mAddDropPosition;
1205 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001206 boolean foundCellSpan = false;
1207 if (touchXY != null) {
1208 // when dragging and dropping, just find the closest free spot
1209 CellLayout screenLayout = (CellLayout) mWorkspace.getChildAt(screen);
1210 int[] result = screenLayout.findNearestVacantArea(
1211 touchXY[0], touchXY[1], spanXY[0], spanXY[1], cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001212 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001213 } else {
Michael Jurka9c6de3d2010-11-23 16:23:58 -08001214 // if we long pressed on an empty cell to bring up a menu,
1215 // make sure we intersect the empty cell
1216 // if mAddIntersectCellX/Y are -1 (e.g. we used menu -> add) then
1217 // findCellForSpanThatIntersects will just ignore them
1218 foundCellSpan = layout.findCellForSpanThatIntersects(cellXY, spanXY[0], spanXY[1],
1219 mAddIntersectCellX, mAddIntersectCellY);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001220 }
1221
Michael Jurka0280c3b2010-09-17 15:00:07 -07001222 if (!foundCellSpan) {
Romain Guy18042c82009-11-06 11:44:55 -08001223 if (appWidgetId != -1) mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001224 showOutOfSpaceMessage();
Romain Guy18042c82009-11-06 11:44:55 -08001225 return;
1226 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001227
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001228 // Build Launcher-specific widget info and save to database
1229 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001230 launcherInfo.spanX = spanXY[0];
1231 launcherInfo.spanY = spanXY[1];
Romain Guycbb89e42009-06-08 15:52:54 -07001232
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001233 LauncherModel.addItemToDatabase(this, launcherInfo,
1234 LauncherSettings.Favorites.CONTAINER_DESKTOP,
Michael Jurka0280c3b2010-09-17 15:00:07 -07001235 screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001236
1237 if (!mRestoring) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001238 mDesktopItems.add(launcherInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001239
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001240 // Perform actual inflation because we're live
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001241 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001242
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001243 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001244 launcherInfo.hostView.setTag(launcherInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001245
Michael Jurka0280c3b2010-09-17 15:00:07 -07001246 mWorkspace.addInScreen(launcherInfo.hostView, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001247 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001248
1249 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001250 }
1251 }
Romain Guycbb89e42009-06-08 15:52:54 -07001252
Adam Cohended9f8d2010-11-03 13:25:16 -07001253 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1254 @Override
1255 public void onReceive(Context context, Intent intent) {
1256 final String action = intent.getAction();
1257 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1258 mUserPresent = false;
1259 updateRunning();
1260 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1261 mUserPresent = true;
1262 updateRunning();
1263 }
1264 }
1265 };
1266
1267 @Override
1268 public void onAttachedToWindow() {
1269 super.onAttachedToWindow();
1270
1271 // Listen for broadcasts related to user-presence
1272 final IntentFilter filter = new IntentFilter();
1273 filter.addAction(Intent.ACTION_SCREEN_OFF);
1274 filter.addAction(Intent.ACTION_USER_PRESENT);
1275 registerReceiver(mReceiver, filter);
1276
Adam Cohend113e0c2010-11-11 10:48:05 -08001277 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001278 mVisible = true;
1279 }
1280
1281 @Override
1282 public void onDetachedFromWindow() {
1283 super.onDetachedFromWindow();
1284 mVisible = false;
1285
Adam Cohend113e0c2010-11-11 10:48:05 -08001286 if (mAttached) {
1287 unregisterReceiver(mReceiver);
1288 mAttached = false;
1289 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001290 updateRunning();
1291 }
1292
1293 public void onWindowVisibilityChanged(int visibility) {
1294 mVisible = visibility == View.VISIBLE;
1295 updateRunning();
1296 }
1297
1298 private void sendAdvanceMessage(long delay) {
1299 mHandler.removeMessages(ADVANCE_MSG);
1300 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1301 mHandler.sendMessageDelayed(msg, delay);
1302 mAutoAdvanceSentTime = System.currentTimeMillis();
1303 }
1304
1305 private void updateRunning() {
1306 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1307 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1308 mAutoAdvanceRunning = autoAdvanceRunning;
1309 if (autoAdvanceRunning) {
1310 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1311 sendAdvanceMessage(delay);
1312 } else {
1313 if (!mWidgetsToAdvance.isEmpty()) {
1314 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1315 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1316 }
1317 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001318 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001319 }
1320 }
1321 }
1322
1323 private final Handler mHandler = new Handler() {
1324 @Override
1325 public void handleMessage(Message msg) {
1326 if (msg.what == ADVANCE_MSG) {
1327 int i = 0;
1328 for (View key: mWidgetsToAdvance.keySet()) {
1329 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1330 final int delay = mAdvanceStagger * i;
1331 if (v instanceof Advanceable) {
1332 postDelayed(new Runnable() {
1333 public void run() {
1334 ((Advanceable) v).advance();
1335 }
1336 }, delay);
1337 }
1338 i++;
1339 }
1340 sendAdvanceMessage(mAdvanceInterval);
1341 }
1342 }
1343 };
1344
1345 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
1346 if (appWidgetInfo.autoAdvanceViewId == -1) return;
1347 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1348 if (v instanceof Advanceable) {
1349 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001350 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001351 updateRunning();
1352 }
1353 }
1354
1355 void removeWidgetToAutoAdvance(View hostView) {
1356 if (mWidgetsToAdvance.containsKey(hostView)) {
1357 mWidgetsToAdvance.remove(hostView);
1358 updateRunning();
1359 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001360 }
1361
Joe Onorato9c1289c2009-08-17 11:03:03 -04001362 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
1363 mDesktopItems.remove(launcherInfo);
Adam Cohended9f8d2010-11-03 13:25:16 -07001364 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001365 launcherInfo.hostView = null;
1366 }
1367
Adam Cohended9f8d2010-11-03 13:25:16 -07001368 void showOutOfSpaceMessage() {
1369 Toast.makeText(this, getString(R.string.out_of_space), Toast.LENGTH_SHORT).show();
1370 }
1371
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001372 public LauncherAppWidgetHost getAppWidgetHost() {
1373 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001374 }
Romain Guycbb89e42009-06-08 15:52:54 -07001375
Winson Chunga9abd0e2010-10-27 17:18:37 -07001376 public LauncherModel getModel() {
1377 return mModel;
1378 }
1379
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001380 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001381 getWindow().closeAllPanels();
1382
1383 try {
1384 dismissDialog(DIALOG_CREATE_SHORTCUT);
1385 // Unlock the workspace if the dialog was showing
1386 } catch (Exception e) {
1387 // An exception is thrown if the dialog is not visible, which is fine
1388 }
1389
1390 try {
1391 dismissDialog(DIALOG_RENAME_FOLDER);
1392 // Unlock the workspace if the dialog was showing
1393 } catch (Exception e) {
1394 // An exception is thrown if the dialog is not visible, which is fine
1395 }
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001396
1397 // Whatever we were doing is hereby canceled.
1398 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001399 }
1400
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001401 @Override
1402 protected void onNewIntent(Intent intent) {
1403 super.onNewIntent(intent);
1404
1405 // Close the menu
1406 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001407 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001408 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001409
Joe Onorato14f122b2009-11-19 14:06:36 -08001410 boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1411 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001412
Michael Jurka4cb37242010-08-09 21:05:32 -07001413 // in all these cases, only animate if we're already on home
1414 if (LauncherApplication.isScreenXLarge()) {
Michael Jurka99229f62010-09-09 11:49:32 -07001415 mWorkspace.unshrink(alreadyOnHome);
1416 }
1417 if (!mWorkspace.isDefaultPageShowing()) {
Michael Jurka4cb37242010-08-09 21:05:32 -07001418 // on the phone, we don't animate the change to the workspace if all apps is visible
Michael Jurkac5b262c2011-01-12 20:24:50 -08001419 boolean animate = alreadyOnHome &&
1420 (LauncherApplication.isScreenXLarge() || mState != State.ALL_APPS);
1421 mWorkspace.moveToDefaultScreen(animate);
1422 if (!animate) mWorkspace.updateWallpaperOffsetImmediately();
Joe Onorato3a8820b2009-11-10 15:06:42 -08001423 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001424 showWorkspace(alreadyOnHome);
Romain Guy1dd3a072009-07-16 13:21:01 -07001425
Joe Onorato3a8820b2009-11-10 15:06:42 -08001426 final View v = getWindow().peekDecorView();
1427 if (v != null && v.getWindowToken() != null) {
1428 InputMethodManager imm = (InputMethodManager)getSystemService(
1429 INPUT_METHOD_SERVICE);
1430 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001431 }
1432 }
1433 }
1434
1435 @Override
1436 protected void onRestoreInstanceState(Bundle savedInstanceState) {
1437 // Do not call super here
1438 mSavedInstanceState = savedInstanceState;
1439 }
1440
1441 @Override
1442 protected void onSaveInstanceState(Bundle outState) {
Michael Jurka0142d492010-08-25 17:46:15 -07001443 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getCurrentPage());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001444
1445 final ArrayList<Folder> folders = mWorkspace.getOpenFolders();
1446 if (folders.size() > 0) {
1447 final int count = folders.size();
1448 long[] ids = new long[count];
1449 for (int i = 0; i < count; i++) {
1450 final FolderInfo info = folders.get(i).getInfo();
1451 ids[i] = info.id;
1452 }
1453 outState.putLongArray(RUNTIME_STATE_USER_FOLDERS, ids);
1454 } else {
1455 super.onSaveInstanceState(outState);
1456 }
1457
Michael Jurka883f55b2010-10-21 15:47:14 -07001458 outState.putInt(RUNTIME_STATE, mState.ordinal());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001459
Michael Jurka0280c3b2010-09-17 15:00:07 -07001460 if (mAddScreen > -1 && mWaitingForResult) {
1461 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mAddScreen);
1462 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mAddIntersectCellX);
1463 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mAddIntersectCellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001464 }
1465
1466 if (mFolderInfo != null && mWaitingForResult) {
1467 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1468 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1469 }
Michael Jurka946ad472010-07-09 18:05:18 -07001470
Winson Chung43b119d2010-12-06 16:45:05 -08001471 // Save the current AllApps drawer tab
1472 if (mAllAppsGrid != null && mAllAppsGrid instanceof AllAppsTabbed) {
1473 AllAppsTabbed tabhost = (AllAppsTabbed) mAllAppsGrid;
1474 String currentTabTag = tabhost.getCurrentTabTag();
1475 if (currentTabTag != null) {
1476 outState.putString("allapps_currentTab", currentTabTag);
Winson Chunga12a2502010-12-20 14:41:35 -08001477 outState.putInt("allapps_currentPage", mAllAppsPagedView.getCurrentPage());
Winson Chung43b119d2010-12-06 16:45:05 -08001478 }
1479 }
1480
1481 // Save the current customization drawer tab
Michael Jurka946ad472010-07-09 18:05:18 -07001482 if (mHomeCustomizationDrawer != null) {
1483 String currentTabTag = mHomeCustomizationDrawer.getCurrentTabTag();
1484 if (currentTabTag != null) {
Winson Chung43b119d2010-12-06 16:45:05 -08001485 outState.putString("customize_currentTab", currentTabTag);
Michael Jurka946ad472010-07-09 18:05:18 -07001486 }
1487 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488 }
1489
1490 @Override
1491 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001492 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001493
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001494 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001495 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001496 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001497 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001498 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001499 mAppWidgetHost = null;
1500
1501 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001502
1503 TextKeyListener.getInstance().release();
1504
Joe Onorato9c1289c2009-08-17 11:03:03 -04001505 mModel.stopLoader();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001506
Joe Onorato9c1289c2009-08-17 11:03:03 -04001507 unbindDesktopItems();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001508
1509 getContentResolver().unregisterContentObserver(mWidgetObserver);
Winson Chungaafa03c2010-06-11 17:34:16 -07001510
Patrick Dubroyab962b72010-07-26 12:10:10 -07001511 // Some launcher layouts don't have a previous and next view
1512 if (mPreviousView != null) {
1513 dismissPreview(mPreviousView);
1514 }
1515 if (mNextView != null) {
1516 dismissPreview(mNextView);
1517 }
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001518
1519 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001520
1521 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1522 mWorkspace.removeAllViews();
1523 mWorkspace = null;
1524 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001525
1526 ValueAnimator.clearAllAnimations();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001527 }
1528
1529 @Override
1530 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001531 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001532 super.startActivityForResult(intent, requestCode);
1533 }
1534
1535 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001536 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001537 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001538
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001539 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001540
Karl Rosaen138a0412009-04-23 19:00:21 -07001541 if (initialQuery == null) {
1542 // Use any text typed in the launcher as the initial query
1543 initialQuery = getTypedText();
1544 clearTypedText();
1545 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001546 if (appSearchData == null) {
1547 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001548 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001549 }
Romain Guycbb89e42009-06-08 15:52:54 -07001550
Karl Rosaen138a0412009-04-23 19:00:21 -07001551 final SearchManager searchManager =
1552 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
Karl Rosaen138a0412009-04-23 19:00:21 -07001553 searchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
Romain Guycbb89e42009-06-08 15:52:54 -07001554 appSearchData, globalSearch);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001555 }
1556
1557 @Override
1558 public boolean onCreateOptionsMenu(Menu menu) {
Patrick Dubroy5905bca2010-09-08 22:43:38 -07001559 if (isWorkspaceLocked()) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001560 return false;
1561 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001562
1563 super.onCreateOptionsMenu(menu);
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001564
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001565 menu.add(MENU_GROUP_ADD, MENU_ADD, 0, R.string.menu_add)
1566 .setIcon(android.R.drawable.ic_menu_add)
1567 .setAlphabeticShortcut('A');
Winson Chung7ad01412010-09-27 11:33:03 -07001568 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1569 .setIcon(android.R.drawable.ic_menu_manage)
1570 .setAlphabeticShortcut('M');
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001571 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001572 .setIcon(android.R.drawable.ic_menu_gallery)
1573 .setAlphabeticShortcut('W');
1574 menu.add(0, MENU_SEARCH, 0, R.string.menu_search)
1575 .setIcon(android.R.drawable.ic_search_category_default)
1576 .setAlphabeticShortcut(SearchManager.MENU_KEY);
1577 menu.add(0, MENU_NOTIFICATIONS, 0, R.string.menu_notifications)
1578 .setIcon(com.android.internal.R.drawable.ic_menu_notifications)
1579 .setAlphabeticShortcut('N');
1580
1581 final Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
Romain Guy5a941392009-04-28 15:18:25 -07001582 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1583 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001584
1585 menu.add(0, MENU_SETTINGS, 0, R.string.menu_settings)
1586 .setIcon(android.R.drawable.ic_menu_preferences).setAlphabeticShortcut('P')
1587 .setIntent(settings);
1588
1589 return true;
1590 }
1591
1592 @Override
1593 public boolean onPrepareOptionsMenu(Menu menu) {
1594 super.onPrepareOptionsMenu(menu);
1595
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001596 // If all apps is animating, don't show the menu, because we don't know
1597 // which one to show.
Patrick Dubroyff5f0402010-07-26 15:23:26 -07001598 if (mAllAppsGrid.isAnimating()) {
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001599 return false;
1600 }
1601
1602 // Only show the add and wallpaper options when we're not in all apps.
Patrick Dubroyff5f0402010-07-26 15:23:26 -07001603 boolean visible = !mAllAppsGrid.isVisible();
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001604 menu.setGroupVisible(MENU_GROUP_ADD, visible);
1605 menu.setGroupVisible(MENU_GROUP_WALLPAPER, visible);
1606
1607 // Disable add if the workspace is full.
1608 if (visible) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001609 CellLayout layout = (CellLayout) mWorkspace.getChildAt(mWorkspace.getCurrentPage());
1610 menu.setGroupEnabled(MENU_GROUP_ADD, layout.existsEmptyCell());
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001611 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001612
1613 return true;
1614 }
1615
1616 @Override
1617 public boolean onOptionsItemSelected(MenuItem item) {
1618 switch (item.getItemId()) {
1619 case MENU_ADD:
1620 addItems();
1621 return true;
Winson Chung7ad01412010-09-27 11:33:03 -07001622 case MENU_MANAGE_APPS:
1623 manageApps();
1624 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001625 case MENU_WALLPAPER_SETTINGS:
1626 startWallpaper();
1627 return true;
1628 case MENU_SEARCH:
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001629 onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001630 return true;
1631 case MENU_NOTIFICATIONS:
1632 showNotifications();
1633 return true;
1634 }
1635
1636 return super.onOptionsItemSelected(item);
1637 }
Romain Guycbb89e42009-06-08 15:52:54 -07001638
Karl Rosaen138a0412009-04-23 19:00:21 -07001639 /**
1640 * Indicates that we want global search for this activity by setting the globalSearch
1641 * argument for {@link #startSearch} to true.
1642 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001643
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001644 @Override
1645 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001646 startSearch(null, false, null, true);
Karl Rosaen138a0412009-04-23 19:00:21 -07001647 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001648 }
1649
Joe Onorato9c1289c2009-08-17 11:03:03 -04001650 public boolean isWorkspaceLocked() {
1651 return mWorkspaceLoading || mWaitingForResult;
1652 }
1653
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001654 private void addItems() {
Patrick Dubroy558654c2010-07-23 16:48:11 -07001655 if (LauncherApplication.isScreenXLarge()) {
1656 // Animate the widget chooser up from the bottom of the screen
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001657 if (mState != State.CUSTOMIZE) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07001658 showCustomizationDrawer(true);
Patrick Dubroy558654c2010-07-23 16:48:11 -07001659 }
1660 } else {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001661 showWorkspace(true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001662 showAddDialog(-1, -1);
Patrick Dubroy558654c2010-07-23 16:48:11 -07001663 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001664 }
1665
Michael Jurka0280c3b2010-09-17 15:00:07 -07001666 private void resetAddInfo() {
1667 mAddScreen = -1;
1668 mAddIntersectCellX = -1;
1669 mAddIntersectCellY = -1;
1670 mAddDropPosition = null;
1671 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001672
Winson Chung55cef262010-10-28 14:14:18 -07001673 void addAppWidgetFromDrop(PendingAddWidgetInfo info, int screen, int[] position) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001674 resetAddInfo();
1675 mAddScreen = screen;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001676 mAddDropPosition = position;
1677
Michael Jurkaaf442092010-06-10 17:01:57 -07001678 int appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Winson Chung55cef262010-10-28 14:14:18 -07001679 AppWidgetManager.getInstance(this).bindAppWidgetId(appWidgetId, info.componentName);
1680 addAppWidgetImpl(appWidgetId, info);
Michael Jurkaaf442092010-06-10 17:01:57 -07001681 }
1682
Winson Chung7ad01412010-09-27 11:33:03 -07001683 private void manageApps() {
1684 startActivity(new Intent(android.provider.Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS));
1685 }
1686
Michael Jurkaaf442092010-06-10 17:01:57 -07001687 void addAppWidgetFromPick(Intent data) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001688 // TODO: catch bad widget exception when sent
1689 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Michael Jurkaaf442092010-06-10 17:01:57 -07001690 // TODO: Is this log message meaningful?
1691 if (LOGD) Log.d(TAG, "dumping extras content=" + data.getExtras());
Winson Chung55cef262010-10-28 14:14:18 -07001692 addAppWidgetImpl(appWidgetId, null);
Michael Jurkaaf442092010-06-10 17:01:57 -07001693 }
1694
Winson Chung55cef262010-10-28 14:14:18 -07001695 void addAppWidgetImpl(int appWidgetId, PendingAddWidgetInfo info) {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001696 AppWidgetProviderInfo appWidget = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001697
Bjorn Bringert7984c942009-12-09 15:38:25 +00001698 if (appWidget.configure != null) {
1699 // Launch over to configure widget, if needed
1700 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
1701 intent.setComponent(appWidget.configure);
1702 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Winson Chung55cef262010-10-28 14:14:18 -07001703 if (info != null) {
Winson Chung68846fd2010-10-29 11:00:27 -07001704 if (info.mimeType != null && !info.mimeType.isEmpty()) {
1705 intent.putExtra(
1706 InstallWidgetReceiver.EXTRA_APPWIDGET_CONFIGURATION_DATA_MIME_TYPE,
1707 info.mimeType);
1708
1709 final String mimeType = info.mimeType;
1710 final ClipData clipData = (ClipData) info.configurationData;
1711 final ClipDescription clipDesc = clipData.getDescription();
1712 for (int i = 0; i < clipDesc.getMimeTypeCount(); ++i) {
1713 if (clipDesc.getMimeType(i).equals(mimeType)) {
Dianne Hackborn0d5aad72011-01-17 15:28:58 -08001714 final ClipData.Item item = clipData.getItemAt(i);
Winson Chung68846fd2010-10-29 11:00:27 -07001715 final CharSequence stringData = item.getText();
1716 final Uri uriData = item.getUri();
1717 final Intent intentData = item.getIntent();
1718 final String key =
1719 InstallWidgetReceiver.EXTRA_APPWIDGET_CONFIGURATION_DATA;
1720 if (uriData != null) {
1721 intent.putExtra(key, uriData);
1722 } else if (intentData != null) {
1723 intent.putExtra(key, intentData);
1724 } else if (stringData != null) {
1725 intent.putExtra(key, stringData);
1726 }
1727 break;
1728 }
1729 }
1730 }
Winson Chung55cef262010-10-28 14:14:18 -07001731 }
Bjorn Bringert7984c942009-12-09 15:38:25 +00001732
Romain Guy8e633c52010-03-04 12:51:36 -08001733 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001734 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001735 // Otherwise just add it
Michael Jurka0280c3b2010-09-17 15:00:07 -07001736 completeAddAppWidget(appWidgetId, mAddScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001737 }
1738 }
Romain Guycbb89e42009-06-08 15:52:54 -07001739
Michael Jurka0280c3b2010-09-17 15:00:07 -07001740 void processShortcutFromDrop(ComponentName componentName, int screen, int[] position) {
1741 resetAddInfo();
1742 mAddScreen = screen;
1743 mAddDropPosition = position;
1744
1745 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1746 createShortcutIntent.setComponent(componentName);
1747 processShortcut(createShortcutIntent);
1748 }
1749
Joe Onoratodeb98af2010-02-19 14:59:39 -08001750 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001751 // Handle case where user selected "Applications"
1752 String applicationName = getResources().getString(R.string.group_applications);
1753 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001754
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001755 if (applicationName != null && applicationName.equals(shortcutName)) {
1756 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1757 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001758
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001759 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1760 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001761 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001762 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001763 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001764 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001765 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001766 }
1767
Winson Chung24ab2f12010-09-16 14:10:47 -07001768 void processWallpaper(Intent intent) {
1769 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1770 }
1771
Michael Jurka0280c3b2010-09-17 15:00:07 -07001772 void addLiveFolderFromDrop(ComponentName componentName, int screen, int[] position) {
1773 resetAddInfo();
1774 mAddScreen = screen;
1775 mAddDropPosition = position;
1776
1777 Intent createFolderIntent = new Intent(LiveFolders.ACTION_CREATE_LIVE_FOLDER);
1778 createFolderIntent.setComponent(componentName);
1779
1780 addLiveFolder(createFolderIntent);
1781 }
1782
1783 void addLiveFolder(Intent intent) { // YYY add screen intersect etc. parameters here
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001784 // Handle case where user selected "Folder"
Jeffrey Sharkeyc4bbd0a2009-03-24 22:47:52 -07001785 String folderName = getResources().getString(R.string.group_folder);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001786 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001787
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001788 if (folderName != null && folderName.equals(shortcutName)) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001789 addFolder(mAddScreen, mAddIntersectCellX, mAddIntersectCellY);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001790 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001791 startActivityForResultSafely(intent, REQUEST_CREATE_LIVE_FOLDER);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001792 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001793 }
1794
Michael Jurka0280c3b2010-09-17 15:00:07 -07001795 void addFolder(int screen, int intersectCellX, int intersectCellY) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001796 UserFolderInfo folderInfo = new UserFolderInfo();
1797 folderInfo.title = getText(R.string.folder_name);
1798
Michael Jurka0280c3b2010-09-17 15:00:07 -07001799 final CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
1800 final int[] cellXY = mTmpAddItemCellCoordinates;
1801 if (!layout.findCellForSpanThatIntersects(cellXY, 1, 1, intersectCellX, intersectCellY)) {
1802 showOutOfSpaceMessage();
1803 return;
1804 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001805
1806 // Update the model
Joe Onorato9c1289c2009-08-17 11:03:03 -04001807 LauncherModel.addItemToDatabase(this, folderInfo,
1808 LauncherSettings.Favorites.CONTAINER_DESKTOP,
Michael Jurka0280c3b2010-09-17 15:00:07 -07001809 screen, cellXY[0], cellXY[1], false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001810 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001811
1812 // Create the view
1813 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurkac9a96192010-11-01 11:52:08 -07001814 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()),
1815 folderInfo, mIconCache);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001816 mWorkspace.addInScreen(newFolder, screen, cellXY[0], cellXY[1], 1, 1, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001817 }
Romain Guycbb89e42009-06-08 15:52:54 -07001818
Joe Onorato9c1289c2009-08-17 11:03:03 -04001819 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001820 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001821 }
1822
Michael Jurka28750fb2010-09-24 17:43:49 -07001823 private void completeAddLiveFolder(
1824 Intent data, int screen, int intersectCellX, int intersectCellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001825 final CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
1826 final int[] cellXY = mTmpAddItemCellCoordinates;
1827 if (!layout.findCellForSpanThatIntersects(cellXY, 1, 1, intersectCellX, intersectCellY)) {
1828 showOutOfSpaceMessage();
1829 return;
1830 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001831
Michael Jurka0280c3b2010-09-17 15:00:07 -07001832 final LiveFolderInfo info = addLiveFolder(this, data, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001833
1834 if (!mRestoring) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001835 final View view = LiveFolderIcon.fromXml(R.layout.live_folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07001836 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001837 mWorkspace.addInScreen(view, screen, cellXY[0], cellXY[1], 1, 1, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001838 }
1839 }
1840
1841 static LiveFolderInfo addLiveFolder(Context context, Intent data,
Michael Jurka0280c3b2010-09-17 15:00:07 -07001842 int screen, int cellX, int cellY, boolean notify) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001843
1844 Intent baseIntent = data.getParcelableExtra(LiveFolders.EXTRA_LIVE_FOLDER_BASE_INTENT);
1845 String name = data.getStringExtra(LiveFolders.EXTRA_LIVE_FOLDER_NAME);
1846
1847 Drawable icon = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001848 Intent.ShortcutIconResource iconResource = null;
1849
1850 Parcelable extra = data.getParcelableExtra(LiveFolders.EXTRA_LIVE_FOLDER_ICON);
1851 if (extra != null && extra instanceof Intent.ShortcutIconResource) {
1852 try {
1853 iconResource = (Intent.ShortcutIconResource) extra;
1854 final PackageManager packageManager = context.getPackageManager();
1855 Resources resources = packageManager.getResourcesForApplication(
1856 iconResource.packageName);
1857 final int id = resources.getIdentifier(iconResource.resourceName, null, null);
1858 icon = resources.getDrawable(id);
1859 } catch (Exception e) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001860 Log.w(TAG, "Could not load live folder icon: " + extra);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001861 }
1862 }
1863
1864 if (icon == null) {
1865 icon = context.getResources().getDrawable(R.drawable.ic_launcher_folder);
1866 }
1867
1868 final LiveFolderInfo info = new LiveFolderInfo();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001869 info.icon = Utilities.createIconBitmap(icon, context);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001870 info.title = name;
1871 info.iconResource = iconResource;
1872 info.uri = data.getData();
1873 info.baseIntent = baseIntent;
1874 info.displayMode = data.getIntExtra(LiveFolders.EXTRA_LIVE_FOLDER_DISPLAY_MODE,
1875 LiveFolders.DISPLAY_MODE_GRID);
1876
1877 LauncherModel.addItemToDatabase(context, info, LauncherSettings.Favorites.CONTAINER_DESKTOP,
Michael Jurka0280c3b2010-09-17 15:00:07 -07001878 screen, cellX, cellY, notify);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001879 sFolders.put(info.id, info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001880
1881 return info;
1882 }
1883
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001884 private void showNotifications() {
1885 final StatusBarManager statusBar = (StatusBarManager) getSystemService(STATUS_BAR_SERVICE);
1886 if (statusBar != null) {
1887 statusBar.expand();
1888 }
1889 }
1890
1891 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001892 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001893 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001894 Intent chooser = Intent.createChooser(pickWallpaper,
1895 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001896 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1897 // Removed in Eclair MR1
1898// WallpaperManager wm = (WallpaperManager)
1899// getSystemService(Context.WALLPAPER_SERVICE);
1900// WallpaperInfo wi = wm.getWallpaperInfo();
1901// if (wi != null && wi.getSettingsActivity() != null) {
1902// LabeledIntent li = new LabeledIntent(getPackageName(),
1903// R.string.configure_wallpaper, 0);
1904// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1905// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1906// }
Mike Clerona0618e42009-10-22 13:55:21 -07001907 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001908 }
1909
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001910 /**
1911 * Registers various content observers. The current implementation registers
1912 * only a favorites observer to keep track of the favorites applications.
1913 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001914 private void registerContentObservers() {
1915 ContentResolver resolver = getContentResolver();
1916 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1917 true, mWidgetObserver);
1918 }
1919
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001920 @Override
1921 public boolean dispatchKeyEvent(KeyEvent event) {
1922 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1923 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001924 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001925 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001926 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jason Samseb5615d2009-11-30 11:50:10 -08001927 if (SystemProperties.getInt("debug.launcher2.dumpstate", 0) != 0) {
Joe Onoratobe386092009-11-17 17:32:16 -08001928 dumpState();
1929 return true;
1930 }
1931 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001932 }
1933 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1934 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001935 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001936 return true;
1937 }
1938 }
1939
1940 return super.dispatchKeyEvent(event);
1941 }
1942
Joe Onorato88ec0992009-11-19 13:16:06 -08001943 @Override
1944 public void onBackPressed() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001945 if (mState == State.ALL_APPS || mState == State.CUSTOMIZE) {
1946 showWorkspace(true);
Joe Onorato88ec0992009-11-19 13:16:06 -08001947 } else {
1948 closeFolder();
1949 }
Michael Jurkaaf442092010-06-10 17:01:57 -07001950 // Some launcher layouts don't have a previous and next view
1951 if (mPreviousView != null) {
1952 dismissPreview(mPreviousView);
1953 dismissPreview(mNextView);
1954 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001955 }
1956
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001957 private void closeFolder() {
1958 Folder folder = mWorkspace.getOpenFolder();
1959 if (folder != null) {
1960 closeFolder(folder);
1961 }
1962 }
1963
1964 void closeFolder(Folder folder) {
1965 folder.getInfo().opened = false;
1966 ViewGroup parent = (ViewGroup) folder.getParent();
1967 if (parent != null) {
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -07001968 CellLayout cl = (CellLayout) parent;
1969 cl.removeViewWithoutMarkingCells(folder);
Joe Onoratob6341e92009-11-02 10:41:48 -05001970 if (folder instanceof DropTarget) {
1971 // Live folders aren't DropTargets.
1972 mDragController.removeDropTarget((DropTarget)folder);
1973 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001974 }
1975 folder.onClose();
1976 }
1977
1978 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001979 * Re-listen when widgets are reset.
1980 */
1981 private void onAppWidgetReset() {
1982 mAppWidgetHost.startListening();
1983 }
1984
1985 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001986 * Go through the and disconnect any of the callbacks in the drawables and the views or we
1987 * leak the previous Home screen on orientation change.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001988 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04001989 private void unbindDesktopItems() {
1990 for (ItemInfo item: mDesktopItems) {
1991 item.unbind();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001992 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001993 mDesktopItems.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001994 }
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001995
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001996 /**
1997 * Launches the intent referred by the clicked shortcut.
1998 *
1999 * @param v The view representing the clicked shortcut.
2000 */
2001 public void onClick(View v) {
2002 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002003 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002004 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08002005 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08002006 int[] pos = new int[2];
2007 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08002008 intent.setSourceBounds(new Rect(pos[0], pos[1],
2009 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Joe Onoratof984e852010-03-25 09:47:45 -07002010 startActivitySafely(intent, tag);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002011 } else if (tag instanceof FolderInfo) {
2012 handleFolderClick((FolderInfo) tag);
Joe Onorato7404ee42009-07-31 11:54:44 -07002013 } else if (v == mHandleView) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002014 if (mState == State.ALL_APPS) {
2015 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07002016 } else {
Joe Onorato3a8820b2009-11-10 15:06:42 -08002017 showAllApps(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07002018 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002019 }
2020 }
2021
Michael Jurka0e260592010-06-30 17:07:39 -07002022 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07002023 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002024 // clicking anywhere on the workspace causes the customization drawer to slide down
2025 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07002026 return false;
2027 }
2028
Michael Jurkaaf442092010-06-10 17:01:57 -07002029 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002030 * Event handler for the search button
2031 *
2032 * @param v The view that was clicked.
2033 */
2034 public void onClickSearchButton(View v) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002035 startSearch(null, false, null, true);
Amith Yamasani1f878a12010-11-22 14:58:22 -08002036 // Use a custom animation for launching search
2037 overridePendingTransition(R.anim.fade_in_fast, R.anim.fade_out_fast);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002038 }
2039
2040 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002041 * Event handler for the voice button
2042 *
2043 * @param v The view that was clicked.
2044 */
2045 public void onClickVoiceButton(View v) {
2046 startVoiceSearch();
2047 }
2048
2049 private void startVoiceSearch() {
2050 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2051 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2052 startActivity(intent);
2053 }
2054
2055 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002056 * Event handler for the "gear" button that appears on the home screen, which
Michael Jurkaaf442092010-06-10 17:01:57 -07002057 * enters home screen customization mode.
2058 *
2059 * @param v The view that was clicked.
2060 */
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002061 public void onClickConfigureButton(View v) {
Patrick Dubroy558654c2010-07-23 16:48:11 -07002062 addItems();
Michael Jurkaaf442092010-06-10 17:01:57 -07002063 }
2064
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002065 /**
2066 * Event handler for the "grid" button that appears on the home screen, which
2067 * enters all apps mode.
2068 *
2069 * @param v The view that was clicked.
2070 */
2071 public void onClickAllAppsButton(View v) {
2072 showAllApps(true);
2073 }
2074
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002075 public void onClickAppMarketButton(View v) {
2076 if (mAppMarketIntent != null) {
2077 startActivitySafely(mAppMarketIntent, "app market");
2078 }
2079 }
2080
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002081 void startApplicationDetailsActivity(ComponentName componentName) {
2082 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002083 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
2084 Uri.fromParts("package", packageName, null));
2085 startActivity(intent);
2086 }
2087
Patrick Dubroy5539af72010-09-07 15:22:01 -07002088 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
2089 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
2090 // System applications cannot be installed. For now, show a toast explaining that.
2091 // We may give them the option of disabling apps this way.
2092 int messageId = R.string.uninstall_system_app_text;
2093 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
2094 } else {
2095 String packageName = appInfo.componentName.getPackageName();
2096 String className = appInfo.componentName.getClassName();
2097 Intent intent = new Intent(
2098 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
2099 startActivity(intent);
2100 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002101 }
2102
Joe Onoratof984e852010-03-25 09:47:45 -07002103 void startActivitySafely(Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002104 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2105 try {
2106 startActivity(intent);
2107 } catch (ActivityNotFoundException e) {
2108 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Daniel Sandlerc9b18772010-04-22 14:37:59 -04002109 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002110 } catch (SecurityException e) {
2111 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002112 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002113 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002114 "or use the exported attribute for this activity. "
2115 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002116 }
2117 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002118
Romain Guy8e633c52010-03-04 12:51:36 -08002119 void startActivityForResultSafely(Intent intent, int requestCode) {
2120 try {
2121 startActivityForResult(intent, requestCode);
2122 } catch (ActivityNotFoundException e) {
2123 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2124 } catch (SecurityException e) {
2125 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2126 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
2127 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
2128 "or use the exported attribute for this activity.", e);
2129 }
2130 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002131
2132 private void handleFolderClick(FolderInfo folderInfo) {
2133 if (!folderInfo.opened) {
2134 // Close any open folder
2135 closeFolder();
2136 // Open the requested folder
2137 openFolder(folderInfo);
2138 } else {
2139 // Find the open folder...
2140 Folder openFolder = mWorkspace.getFolderForTag(folderInfo);
2141 int folderScreen;
2142 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002143 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002144 // .. and close it
2145 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07002146 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002147 // Close any folder open on the current screen
2148 closeFolder();
2149 // Pull the folder onto this screen
2150 openFolder(folderInfo);
2151 }
2152 }
2153 }
2154 }
2155
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002156 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002157 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002158 * is animated relative to the specified View. If the View is null, no animation
2159 * is played.
2160 *
2161 * @param folderInfo The FolderInfo describing the folder to open.
2162 */
Winson Chungaafa03c2010-06-11 17:34:16 -07002163 public void openFolder(FolderInfo folderInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002164 Folder openFolder;
2165
2166 if (folderInfo instanceof UserFolderInfo) {
2167 openFolder = UserFolder.fromXml(this);
2168 } else if (folderInfo instanceof LiveFolderInfo) {
Joe Onoratoa5902522009-07-30 13:37:37 -07002169 openFolder = com.android.launcher2.LiveFolder.fromXml(this, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002170 } else {
2171 return;
2172 }
2173
Joe Onorato00acb122009-08-04 16:04:30 -04002174 openFolder.setDragController(mDragController);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002175 openFolder.setLauncher(this);
2176
2177 openFolder.bind(folderInfo);
2178 folderInfo.opened = true;
2179
Winson Chungaafa03c2010-06-11 17:34:16 -07002180 mWorkspace.addInFullScreen(openFolder, folderInfo.screen);
2181
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002182 openFolder.onOpen();
2183 }
2184
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002185 public boolean onLongClick(View v) {
Romain Guy1fbc1c82009-11-09 20:43:08 -08002186 switch (v.getId()) {
2187 case R.id.previous_screen:
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002188 if (mState != State.ALL_APPS) {
Joe Onorato0d44e942009-11-16 18:20:51 -08002189 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2190 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Romain Guyf8e6a802009-12-07 17:48:02 -08002191 showPreviews(v);
Joe Onorato0d44e942009-11-16 18:20:51 -08002192 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002193 return true;
2194 case R.id.next_screen:
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002195 if (mState != State.ALL_APPS) {
Joe Onorato0d44e942009-11-16 18:20:51 -08002196 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2197 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Romain Guyf8e6a802009-12-07 17:48:02 -08002198 showPreviews(v);
2199 }
2200 return true;
2201 case R.id.all_apps_button:
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002202 if (mState != State.ALL_APPS) {
Romain Guyf8e6a802009-12-07 17:48:02 -08002203 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2204 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
2205 showPreviews(v);
Joe Onorato0d44e942009-11-16 18:20:51 -08002206 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002207 return true;
2208 }
2209
Joe Onorato9c1289c2009-08-17 11:03:03 -04002210 if (isWorkspaceLocked()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002211 return false;
2212 }
2213
2214 if (!(v instanceof CellLayout)) {
2215 v = (View) v.getParent();
2216 }
2217
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002218
Michael Jurka0280c3b2010-09-17 15:00:07 -07002219 resetAddInfo();
2220 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002221 // This happens when long clicking an item with the dpad/trackball
Michael Jurka0280c3b2010-09-17 15:00:07 -07002222 if (longClickCellInfo == null || !longClickCellInfo.valid) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002223 return true;
2224 }
2225
Michael Jurka0280c3b2010-09-17 15:00:07 -07002226 final View itemUnderLongClick = longClickCellInfo.cell;
2227
Winson Chung304dcde2011-01-07 11:17:23 -08002228 if (mWorkspace.allowLongPress() && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002229 if (itemUnderLongClick == null) {
2230 // User long pressed on empty space
2231 mWorkspace.setAllowLongPress(false);
2232 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2233 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Patrick Dubroy8fedddc2011-01-19 14:54:38 -08002234 if (LauncherApplication.isScreenXLarge()) {
2235 addItems();
2236 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002237 showAddDialog(longClickCellInfo.cellX, longClickCellInfo.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002238 }
2239 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002240 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002241 // User long pressed on an item
Joe Onorato0d44e942009-11-16 18:20:51 -08002242 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2243 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002244 mAddIntersectCellX = longClickCellInfo.cellX;
2245 mAddIntersectCellY = longClickCellInfo.cellY;
2246 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002247 }
2248 }
2249 }
2250 return true;
2251 }
2252
Romain Guye6b8e2f2009-11-10 11:56:55 -08002253 @SuppressWarnings({"unchecked"})
Romain Guy9d31e9f2009-11-11 18:54:28 -08002254 private void dismissPreview(final View v) {
2255 final PopupWindow window = (PopupWindow) v.getTag();
Romain Guy1fbc1c82009-11-09 20:43:08 -08002256 if (window != null) {
Romain Guy9d31e9f2009-11-11 18:54:28 -08002257 window.setOnDismissListener(new PopupWindow.OnDismissListener() {
2258 public void onDismiss() {
2259 ViewGroup group = (ViewGroup) v.getTag(R.id.workspace);
2260 int count = group.getChildCount();
2261 for (int i = 0; i < count; i++) {
2262 ((ImageView) group.getChildAt(i)).setImageDrawable(null);
2263 }
Romain Guy9d31e9f2009-11-11 18:54:28 -08002264 ArrayList<Bitmap> bitmaps = (ArrayList<Bitmap>) v.getTag(R.id.icon);
2265 for (Bitmap bitmap : bitmaps) bitmap.recycle();
2266
2267 v.setTag(R.id.workspace, null);
2268 v.setTag(R.id.icon, null);
2269 window.setOnDismissListener(null);
2270 }
2271 });
Romain Guy1fbc1c82009-11-09 20:43:08 -08002272 window.dismiss();
Romain Guy1fbc1c82009-11-09 20:43:08 -08002273 }
2274 v.setTag(null);
2275 }
2276
Romain Guyf8e6a802009-12-07 17:48:02 -08002277 private void showPreviews(View anchor) {
Romain Guy9d31e9f2009-11-11 18:54:28 -08002278 showPreviews(anchor, 0, mWorkspace.getChildCount());
Romain Guy1fbc1c82009-11-09 20:43:08 -08002279 }
2280
Romain Guya6abce82009-11-10 02:54:41 -08002281 private void showPreviews(final View anchor, int start, int end) {
Romain Guyf8e6a802009-12-07 17:48:02 -08002282 final Resources resources = getResources();
2283 final Workspace workspace = mWorkspace;
Romain Guy1fbc1c82009-11-09 20:43:08 -08002284
Romain Guya6abce82009-11-10 02:54:41 -08002285 CellLayout cell = ((CellLayout) workspace.getChildAt(start));
Winson Chungaafa03c2010-06-11 17:34:16 -07002286
Romain Guy9d31e9f2009-11-11 18:54:28 -08002287 float max = workspace.getChildCount();
Winson Chungaafa03c2010-06-11 17:34:16 -07002288
Romain Guyf8e6a802009-12-07 17:48:02 -08002289 final Rect r = new Rect();
Romain Guy9d31e9f2009-11-11 18:54:28 -08002290 resources.getDrawable(R.drawable.preview_background).getPadding(r);
Romain Guye6b8e2f2009-11-10 11:56:55 -08002291 int extraW = (int) ((r.left + r.right) * max);
2292 int extraH = r.top + r.bottom;
Romain Guya6abce82009-11-10 02:54:41 -08002293
2294 int aW = cell.getWidth() - extraW;
2295 float w = aW / max;
2296
2297 int width = cell.getWidth();
2298 int height = cell.getHeight();
2299 int x = cell.getLeftPadding();
2300 int y = cell.getTopPadding();
2301 width -= (x + cell.getRightPadding());
2302 height -= (y + cell.getBottomPadding());
2303
2304 float scale = w / width;
2305
2306 int count = end - start;
2307
2308 final float sWidth = width * scale;
2309 float sHeight = height * scale;
2310
Romain Guye6b8e2f2009-11-10 11:56:55 -08002311 LinearLayout preview = new LinearLayout(this);
Romain Guya6abce82009-11-10 02:54:41 -08002312
Romain Guye6b8e2f2009-11-10 11:56:55 -08002313 PreviewTouchHandler handler = new PreviewTouchHandler(anchor);
2314 ArrayList<Bitmap> bitmaps = new ArrayList<Bitmap>(count);
Romain Guya6abce82009-11-10 02:54:41 -08002315
2316 for (int i = start; i < end; i++) {
Romain Guye6b8e2f2009-11-10 11:56:55 -08002317 ImageView image = new ImageView(this);
Romain Guya6abce82009-11-10 02:54:41 -08002318 cell = (CellLayout) workspace.getChildAt(i);
2319
Romain Guyf8e6a802009-12-07 17:48:02 -08002320 final Bitmap bitmap = Bitmap.createBitmap((int) sWidth, (int) sHeight,
Romain Guye6b8e2f2009-11-10 11:56:55 -08002321 Bitmap.Config.ARGB_8888);
Romain Guyf8e6a802009-12-07 17:48:02 -08002322
2323 final Canvas c = new Canvas(bitmap);
Romain Guya6abce82009-11-10 02:54:41 -08002324 c.scale(scale, scale);
2325 c.translate(-cell.getLeftPadding(), -cell.getTopPadding());
Patrick Dubroy1262e362010-10-06 15:49:50 -07002326 cell.drawChildren(c);
Romain Guya6abce82009-11-10 02:54:41 -08002327
Romain Guy9d31e9f2009-11-11 18:54:28 -08002328 image.setBackgroundDrawable(resources.getDrawable(R.drawable.preview_background));
Romain Guye6b8e2f2009-11-10 11:56:55 -08002329 image.setImageBitmap(bitmap);
2330 image.setTag(i);
2331 image.setOnClickListener(handler);
Romain Guy9d31e9f2009-11-11 18:54:28 -08002332 image.setOnFocusChangeListener(handler);
2333 image.setFocusable(true);
Michael Jurka0142d492010-08-25 17:46:15 -07002334 if (i == mWorkspace.getCurrentPage()) image.requestFocus();
Romain Guye6b8e2f2009-11-10 11:56:55 -08002335
2336 preview.addView(image,
Romain Guy9d31e9f2009-11-11 18:54:28 -08002337 LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
2338
Winson Chungaafa03c2010-06-11 17:34:16 -07002339 bitmaps.add(bitmap);
Romain Guya6abce82009-11-10 02:54:41 -08002340 }
Romain Guyf8e6a802009-12-07 17:48:02 -08002341
2342 final PopupWindow p = new PopupWindow(this);
Romain Guye6b8e2f2009-11-10 11:56:55 -08002343 p.setContentView(preview);
2344 p.setWidth((int) (sWidth * count + extraW));
2345 p.setHeight((int) (sHeight + extraH));
2346 p.setAnimationStyle(R.style.AnimationPreview);
2347 p.setOutsideTouchable(true);
Romain Guy9d31e9f2009-11-11 18:54:28 -08002348 p.setFocusable(true);
Romain Guyff0c2e22009-11-10 12:09:59 -08002349 p.setBackgroundDrawable(new ColorDrawable(0));
Romain Guy9d31e9f2009-11-11 18:54:28 -08002350 p.showAsDropDown(anchor, 0, 0);
Romain Guya6abce82009-11-10 02:54:41 -08002351
Romain Guye6b8e2f2009-11-10 11:56:55 -08002352 p.setOnDismissListener(new PopupWindow.OnDismissListener() {
2353 public void onDismiss() {
2354 dismissPreview(anchor);
2355 }
2356 });
Romain Guy1fbc1c82009-11-09 20:43:08 -08002357
2358 anchor.setTag(p);
2359 anchor.setTag(R.id.workspace, preview);
Winson Chungaafa03c2010-06-11 17:34:16 -07002360 anchor.setTag(R.id.icon, bitmaps);
Romain Guy1fbc1c82009-11-09 20:43:08 -08002361 }
2362
Romain Guy9d31e9f2009-11-11 18:54:28 -08002363 class PreviewTouchHandler implements View.OnClickListener, Runnable, View.OnFocusChangeListener {
Romain Guya6abce82009-11-10 02:54:41 -08002364 private final View mAnchor;
Romain Guya6abce82009-11-10 02:54:41 -08002365
Romain Guye6b8e2f2009-11-10 11:56:55 -08002366 public PreviewTouchHandler(View anchor) {
Romain Guya6abce82009-11-10 02:54:41 -08002367 mAnchor = anchor;
Romain Guya6abce82009-11-10 02:54:41 -08002368 }
2369
2370 public void onClick(View v) {
Michael Jurka0142d492010-08-25 17:46:15 -07002371 mWorkspace.snapToPage((Integer) v.getTag());
Romain Guy9d31e9f2009-11-11 18:54:28 -08002372 v.post(this);
2373 }
2374
2375 public void run() {
Winson Chungaafa03c2010-06-11 17:34:16 -07002376 dismissPreview(mAnchor);
Romain Guy9d31e9f2009-11-11 18:54:28 -08002377 }
2378
2379 public void onFocusChange(View v, boolean hasFocus) {
2380 if (hasFocus) {
Michael Jurka0142d492010-08-25 17:46:15 -07002381 mWorkspace.snapToPage((Integer) v.getTag());
Romain Guy9d31e9f2009-11-11 18:54:28 -08002382 }
Romain Guya6abce82009-11-10 02:54:41 -08002383 }
2384 }
2385
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002386 Workspace getWorkspace() {
2387 return mWorkspace;
2388 }
2389
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002390 @Override
2391 protected Dialog onCreateDialog(int id) {
2392 switch (id) {
2393 case DIALOG_CREATE_SHORTCUT:
2394 return new CreateShortcut().createDialog();
2395 case DIALOG_RENAME_FOLDER:
2396 return new RenameFolder().createDialog();
2397 }
2398
2399 return super.onCreateDialog(id);
2400 }
2401
2402 @Override
2403 protected void onPrepareDialog(int id, Dialog dialog) {
2404 switch (id) {
2405 case DIALOG_CREATE_SHORTCUT:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002406 break;
2407 case DIALOG_RENAME_FOLDER:
Romain Guy7b4ef332009-07-14 13:58:08 -07002408 if (mFolderInfo != null) {
2409 EditText input = (EditText) dialog.findViewById(R.id.folder_name);
2410 final CharSequence text = mFolderInfo.title;
2411 input.setText(text);
2412 input.setSelection(0, text.length());
2413 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002414 break;
2415 }
2416 }
2417
2418 void showRenameDialog(FolderInfo info) {
2419 mFolderInfo = info;
2420 mWaitingForResult = true;
2421 showDialog(DIALOG_RENAME_FOLDER);
2422 }
2423
Michael Jurka0280c3b2010-09-17 15:00:07 -07002424 private void showAddDialog(int intersectX, int intersectY) {
2425 resetAddInfo();
2426 mAddIntersectCellX = intersectX;
2427 mAddIntersectCellY = intersectY;
2428 mAddScreen = mWorkspace.getCurrentPage();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002429 mWaitingForResult = true;
2430 showDialog(DIALOG_CREATE_SHORTCUT);
2431 }
2432
Joe Onoratodeb98af2010-02-19 14:59:39 -08002433 private void pickShortcut() {
Michael Jurka0e260592010-06-30 17:07:39 -07002434 // Insert extra item to handle picking application
Romain Guy73b979d2009-06-09 12:57:21 -07002435 Bundle bundle = new Bundle();
2436
2437 ArrayList<String> shortcutNames = new ArrayList<String>();
2438 shortcutNames.add(getString(R.string.group_applications));
2439 bundle.putStringArrayList(Intent.EXTRA_SHORTCUT_NAME, shortcutNames);
2440
2441 ArrayList<ShortcutIconResource> shortcutIcons = new ArrayList<ShortcutIconResource>();
2442 shortcutIcons.add(ShortcutIconResource.fromContext(Launcher.this,
2443 R.drawable.ic_launcher_application));
2444 bundle.putParcelableArrayList(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, shortcutIcons);
2445
2446 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
2447 pickIntent.putExtra(Intent.EXTRA_INTENT, new Intent(Intent.ACTION_CREATE_SHORTCUT));
Joe Onoratodeb98af2010-02-19 14:59:39 -08002448 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_shortcut));
Romain Guy73b979d2009-06-09 12:57:21 -07002449 pickIntent.putExtras(bundle);
2450
Joe Onoratodeb98af2010-02-19 14:59:39 -08002451 startActivityForResult(pickIntent, REQUEST_PICK_SHORTCUT);
Romain Guy73b979d2009-06-09 12:57:21 -07002452 }
2453
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002454 private class RenameFolder {
2455 private EditText mInput;
2456
2457 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002458 final View layout = View.inflate(Launcher.this, R.layout.rename_folder, null);
2459 mInput = (EditText) layout.findViewById(R.id.folder_name);
2460
2461 AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
2462 builder.setIcon(0);
2463 builder.setTitle(getString(R.string.rename_folder_title));
2464 builder.setCancelable(true);
2465 builder.setOnCancelListener(new Dialog.OnCancelListener() {
2466 public void onCancel(DialogInterface dialog) {
2467 cleanup();
2468 }
2469 });
2470 builder.setNegativeButton(getString(R.string.cancel_action),
2471 new Dialog.OnClickListener() {
2472 public void onClick(DialogInterface dialog, int which) {
2473 cleanup();
2474 }
2475 }
2476 );
2477 builder.setPositiveButton(getString(R.string.rename_action),
2478 new Dialog.OnClickListener() {
2479 public void onClick(DialogInterface dialog, int which) {
2480 changeFolderName();
2481 }
2482 }
2483 );
2484 builder.setView(layout);
Romain Guy7b4ef332009-07-14 13:58:08 -07002485
2486 final AlertDialog dialog = builder.create();
2487 dialog.setOnShowListener(new DialogInterface.OnShowListener() {
2488 public void onShow(DialogInterface dialog) {
Joe Onorato7018d8e2010-04-13 20:25:47 -07002489 mWaitingForResult = true;
Joe Onoratod753b422009-11-08 13:31:11 -05002490 mInput.requestFocus();
2491 InputMethodManager inputManager = (InputMethodManager)
2492 getSystemService(Context.INPUT_METHOD_SERVICE);
2493 inputManager.showSoftInput(mInput, 0);
Romain Guy7b4ef332009-07-14 13:58:08 -07002494 }
2495 });
2496
2497 return dialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002498 }
2499
2500 private void changeFolderName() {
2501 final String name = mInput.getText().toString();
2502 if (!TextUtils.isEmpty(name)) {
2503 // Make sure we have the right folder info
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002504 mFolderInfo = sFolders.get(mFolderInfo.id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002505 mFolderInfo.title = name;
2506 LauncherModel.updateItemInDatabase(Launcher.this, mFolderInfo);
2507
Joe Onorato9c1289c2009-08-17 11:03:03 -04002508 if (mWorkspaceLoading) {
Joe Onorato7c312c12009-08-13 21:36:53 -07002509 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002510 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002511 } else {
2512 final FolderIcon folderIcon = (FolderIcon)
2513 mWorkspace.getViewForTag(mFolderInfo);
2514 if (folderIcon != null) {
2515 folderIcon.setText(name);
2516 getWorkspace().requestLayout();
2517 } else {
Joe Onorato7c312c12009-08-13 21:36:53 -07002518 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002519 mWorkspaceLoading = true;
2520 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002521 }
2522 }
2523 }
2524 cleanup();
2525 }
2526
2527 private void cleanup() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002528 dismissDialog(DIALOG_RENAME_FOLDER);
2529 mWaitingForResult = false;
2530 mFolderInfo = null;
2531 }
2532 }
2533
Daniel Sandler843e8602010-06-07 14:59:01 -04002534 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2535 public boolean isAllAppsVisible() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002536 return mState == State.ALL_APPS;
Joe Onoratofb0ca672009-09-14 17:55:46 -04002537 }
2538
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002539 // AllAppsView.Watcher
2540 public void zoomed(float zoom) {
Michael Jurka213d9632010-07-28 11:29:25 -07002541 // In XLarge view, we zoom down the workspace below all apps so it's still visible
2542 if (zoom == 1.0f && !LauncherApplication.isScreenXLarge()) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002543 mWorkspace.setVisibility(View.GONE);
2544 }
2545 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002546
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002547 private void showToolbarButton(View button) {
2548 button.setAlpha(1.0f);
2549 button.setVisibility(View.VISIBLE);
2550 button.setFocusable(true);
2551 button.setClickable(true);
2552 }
2553
2554 private void hideToolbarButton(View button) {
2555 button.setAlpha(0.0f);
2556 // We can't set it to GONE, otherwise the RelativeLayout gets screwed up
2557 button.setVisibility(View.INVISIBLE);
2558 button.setFocusable(false);
2559 button.setClickable(false);
2560 }
2561
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002562 /**
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002563 * Helper function for showing or hiding a toolbar button, possibly animated.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002564 *
2565 * @param show If true, create an animation to the show the item. Otherwise, hide it.
2566 * @param view The toolbar button to be animated
Chet Haaseb1254a62010-09-07 13:35:00 -07002567 * @param seq A AnimatorSet that will be used to animate the transition. If null, the
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002568 * transition will not be animated.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002569 */
Chet Haaseb1254a62010-09-07 13:35:00 -07002570 private void hideOrShowToolbarButton(boolean show, final View view, AnimatorSet seq) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002571 final boolean showing = show;
2572 final boolean hiding = !show;
2573
2574 final int duration = show ?
2575 getResources().getInteger(R.integer.config_toolbarButtonFadeInTime) :
2576 getResources().getInteger(R.integer.config_toolbarButtonFadeOutTime);
2577
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002578 if (seq != null) {
Chet Haase472b2812010-10-14 07:02:04 -07002579 Animator anim = ObjectAnimator.ofFloat(view, "alpha", show ? 1.0f : 0.0f);
2580 anim.setDuration(duration);
Michael Jurka8edd75c2010-12-17 20:15:06 -08002581 anim.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002582 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002583 public void onAnimationStart(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002584 if (showing) showToolbarButton(view);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002585 }
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002586 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002587 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002588 if (hiding) hideToolbarButton(view);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002589 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002590 });
2591 seq.play(anim);
2592 } else {
2593 if (showing) {
2594 showToolbarButton(view);
2595 } else {
2596 hideToolbarButton(view);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002597 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002598 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002599 }
2600
2601 /**
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002602 * Show/hide the appropriate toolbar buttons for newState.
2603 * If showSeq or hideSeq is null, the transition will be done immediately (not animated).
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002604 *
2605 * @param newState The state that is being switched to
Chet Haaseb1254a62010-09-07 13:35:00 -07002606 * @param showSeq AnimatorSet in which to put "show" animations, or null.
2607 * @param hideSeq AnimatorSet in which to put "hide" animations, or null.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002608 */
Chet Haaseb1254a62010-09-07 13:35:00 -07002609 private void hideAndShowToolbarButtons(State newState, AnimatorSet showSeq, AnimatorSet hideSeq) {
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002610 final View searchButton = findViewById(R.id.search_button_cluster);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002611 final View allAppsButton = findViewById(R.id.all_apps_button);
Michael Jurka800242b2010-12-16 11:39:26 -08002612 final View divider = findViewById(R.id.divider);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002613 final View configureButton = findViewById(R.id.configure_button);
2614
2615 switch (newState) {
2616 case WORKSPACE:
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002617 hideOrShowToolbarButton(true, searchButton, showSeq);
2618 hideOrShowToolbarButton(true, allAppsButton, showSeq);
Michael Jurka800242b2010-12-16 11:39:26 -08002619 hideOrShowToolbarButton(true, divider, showSeq);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002620 hideOrShowToolbarButton(true, configureButton, showSeq);
Michael Jurkab8e14472010-12-20 16:06:10 -08002621 mDeleteZone.setOverlappingViews(new View[] { allAppsButton, divider, configureButton });
Michael Jurka577d0172010-12-17 20:04:50 -08002622 mDeleteZone.setDragAndDropEnabled(true);
2623 mDeleteZone.setText(getResources().getString(R.string.delete_zone_label_workspace));
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002624 break;
2625 case ALL_APPS:
Adam Lesinski6b879f02010-11-04 16:15:23 -07002626 hideOrShowToolbarButton(false, configureButton, hideSeq);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002627 hideOrShowToolbarButton(false, searchButton, hideSeq);
Michael Jurka800242b2010-12-16 11:39:26 -08002628 hideOrShowToolbarButton(false, divider, hideSeq);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002629 hideOrShowToolbarButton(false, allAppsButton, hideSeq);
Michael Jurka577d0172010-12-17 20:04:50 -08002630 mDeleteZone.setDragAndDropEnabled(false);
2631 mDeleteZone.setText(getResources().getString(R.string.delete_zone_label_all_apps));
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002632 break;
2633 case CUSTOMIZE:
Adam Lesinski6b879f02010-11-04 16:15:23 -07002634 hideOrShowToolbarButton(false, allAppsButton, hideSeq);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002635 hideOrShowToolbarButton(false, searchButton, hideSeq);
Michael Jurka800242b2010-12-16 11:39:26 -08002636 hideOrShowToolbarButton(false, divider, hideSeq);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002637 hideOrShowToolbarButton(false, configureButton, hideSeq);
Michael Jurka577d0172010-12-17 20:04:50 -08002638 mDeleteZone.setDragAndDropEnabled(false);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002639 break;
2640 }
2641 }
2642
2643 /**
2644 * Helper method for the cameraZoomIn/cameraZoomOut animations
2645 * @param view The view being animated
2646 * @param state The state that we are moving in or out of -- either ALL_APPS or CUSTOMIZE
2647 * @param scaleFactor The scale factor used for the zoom
2648 */
2649 private void setPivotsForZoom(View view, State state, float scaleFactor) {
2650 final int height = view.getHeight();
Adam Cohen61033d32010-11-15 18:29:44 -08002651
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002652 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen61033d32010-11-15 18:29:44 -08002653 // Set pivotY so that at the starting zoom factor, the view is partially
2654 // visible. Modifying initialHeightFactor changes how much of the view is
2655 // initially showing, and hence the perceived angle from which the view enters.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002656 if (state == State.ALL_APPS) {
Adam Cohenf16e5712011-01-13 13:31:45 -08002657 final float initialHeightFactor = 0.165f;
2658 view.setPivotY((1 - initialHeightFactor) * height);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002659 } else {
Adam Cohenf16e5712011-01-13 13:31:45 -08002660 final float initialHeightFactor = 0.2f;
Adam Cohen61033d32010-11-15 18:29:44 -08002661 view.setPivotY(-initialHeightFactor * height);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002662 }
2663 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002664
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002665 /**
2666 * Zoom the camera out from the workspace to reveal 'toView'.
2667 * Assumes that the view to show is anchored at either the very top or very bottom
2668 * of the screen.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002669 * @param toState The state to zoom out to. Must be ALL_APPS or CUSTOMIZE.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002670 */
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002671 private void cameraZoomOut(State toState, boolean animated) {
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002672 final Resources res = getResources();
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002673 final boolean toAllApps = (toState == State.ALL_APPS);
Adam Cohenf16e5712011-01-13 13:31:45 -08002674
2675 final int duration = toAllApps ?
2676 res.getInteger(R.integer.config_allAppsZoomInTime) :
2677 res.getInteger(R.integer.config_customizeZoomInTime);
2678
2679 final float scale = toAllApps ?
2680 (float) res.getInteger(R.integer.config_allAppsZoomScaleFactor) :
2681 (float) res.getInteger(R.integer.config_customizeZoomScaleFactor);
2682
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002683 final View toView = toAllApps ? (View) mAllAppsGrid : mHomeCustomizationDrawer;
Patrick Dubroy558654c2010-07-23 16:48:11 -07002684
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002685 setPivotsForZoom(toView, toState, scale);
2686
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002687 if (toAllApps) {
Michael Jurkaaf91de02010-11-23 16:23:58 -08002688 mWorkspace.shrink(ShrinkState.BOTTOM_HIDDEN, animated);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002689 } else {
Michael Jurkaaf91de02010-11-23 16:23:58 -08002690 mWorkspace.shrink(ShrinkState.TOP, animated);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002691 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002692
2693 if (animated) {
Chet Haase472b2812010-10-14 07:02:04 -07002694 ValueAnimator scaleAnim = ObjectAnimator.ofPropertyValuesHolder(toView,
2695 PropertyValuesHolder.ofFloat("scaleX", scale, 1.0f),
2696 PropertyValuesHolder.ofFloat("scaleY", scale, 1.0f));
Adam Cohenf16e5712011-01-13 13:31:45 -08002697
Chet Haase472b2812010-10-14 07:02:04 -07002698 scaleAnim.setDuration(duration);
Adam Cohen61033d32010-11-15 18:29:44 -08002699
Adam Cohenf16e5712011-01-13 13:31:45 -08002700 if (toAllApps) {
Michael Jurkad99cf8b2011-01-16 16:53:18 -08002701 toView.setAlpha(0f);
Adam Cohenf16e5712011-01-13 13:31:45 -08002702 ObjectAnimator alphaAnim = ObjectAnimator.ofPropertyValuesHolder(toView,
2703 PropertyValuesHolder.ofFloat("alpha", 1.0f));
2704 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
2705 alphaAnim.setDuration(duration);
2706 alphaAnim.start();
2707 }
2708
Adam Cohen61033d32010-11-15 18:29:44 -08002709 scaleAnim.setInterpolator(new Workspace.ZoomOutInterpolator());
Michael Jurka8edd75c2010-12-17 20:15:06 -08002710 scaleAnim.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002711 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002712 public void onAnimationStart(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002713 // Prepare the position
2714 toView.setTranslationX(0.0f);
2715 toView.setTranslationY(0.0f);
2716 toView.setVisibility(View.VISIBLE);
Adam Cohenf16e5712011-01-13 13:31:45 -08002717 if (!toAllApps) {
2718 toView.setAlpha(1.0f);
2719 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002720 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002721 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002722 public void onAnimationEnd(Animator animation) {
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002723 // If we don't set the final scale values here, if this animation is cancelled
2724 // it will have the wrong scale value and subsequent cameraPan animations will
2725 // not fix that
2726 toView.setScaleX(1.0f);
2727 toView.setScaleY(1.0f);
2728 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002729 });
2730
Chet Haaseb1254a62010-09-07 13:35:00 -07002731 AnimatorSet toolbarHideAnim = new AnimatorSet();
2732 AnimatorSet toolbarShowAnim = new AnimatorSet();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002733 hideAndShowToolbarButtons(toState, toolbarShowAnim, toolbarHideAnim);
2734
2735 // toView should appear right at the end of the workspace shrink animation
Adam Cohenf16e5712011-01-13 13:31:45 -08002736 final int startDelay = 0;
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002737
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002738 if (mStateAnimation != null) mStateAnimation.cancel();
2739 mStateAnimation = new AnimatorSet();
2740 mStateAnimation.playTogether(scaleAnim, toolbarHideAnim);
2741 mStateAnimation.play(scaleAnim).after(startDelay);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002742
2743 // Show the new toolbar buttons just as the main animation is ending
2744 final int fadeInTime = res.getInteger(R.integer.config_toolbarButtonFadeInTime);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002745 mStateAnimation.play(toolbarShowAnim).after(duration + startDelay - fadeInTime);
2746 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002747 } else {
2748 toView.setTranslationX(0.0f);
2749 toView.setTranslationY(0.0f);
2750 toView.setScaleX(1.0f);
2751 toView.setScaleY(1.0f);
2752 toView.setVisibility(View.VISIBLE);
2753 hideAndShowToolbarButtons(toState, null, null);
2754 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002755 }
2756
2757 /**
2758 * Zoom the camera back into the workspace, hiding 'fromView'.
2759 * This is the opposite of cameraZoomOut.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002760 * @param fromState The current state (must be ALL_APPS or CUSTOMIZE).
2761 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002762 */
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002763 private void cameraZoomIn(State fromState, boolean animated) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08002764 cameraZoomIn(fromState, animated, false);
2765 }
2766
2767 private void cameraZoomIn(State fromState, boolean animated, boolean springLoaded) {
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002768 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002769 final boolean fromAllApps = (fromState == State.ALL_APPS);
2770
2771 int duration = fromAllApps ?
2772 res.getInteger(R.integer.config_allAppsZoomOutTime) :
2773 res.getInteger(R.integer.config_customizeZoomOutTime);
2774
2775 float scaleFactor = fromAllApps ?
2776 (float) res.getInteger(R.integer.config_allAppsZoomScaleFactor) :
2777 (float) res.getInteger(R.integer.config_customizeZoomScaleFactor);
2778
2779 final View fromView = fromAllApps ? (View) mAllAppsGrid : mHomeCustomizationDrawer;
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002780
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002781 mCustomizePagedView.endChoiceMode();
2782 mAllAppsPagedView.endChoiceMode();
2783
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002784 setPivotsForZoom(fromView, fromState, scaleFactor);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002785
Michael Jurkad3ef3062010-11-23 16:23:58 -08002786 if (!springLoaded) {
2787 mWorkspace.unshrink(animated);
2788 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002789
2790 if (animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002791 if (mStateAnimation != null) mStateAnimation.cancel();
2792 mStateAnimation = new AnimatorSet();
Chet Haase472b2812010-10-14 07:02:04 -07002793 ValueAnimator scaleAnim = ObjectAnimator.ofPropertyValuesHolder(fromView,
2794 PropertyValuesHolder.ofFloat("scaleX", scaleFactor),
2795 PropertyValuesHolder.ofFloat("scaleY", scaleFactor));
2796 scaleAnim.setDuration(duration);
Adam Cohen61033d32010-11-15 18:29:44 -08002797 scaleAnim.setInterpolator(new Workspace.ZoomInInterpolator());
2798
2799 ValueAnimator alphaAnim = ObjectAnimator.ofPropertyValuesHolder(fromView,
2800 PropertyValuesHolder.ofFloat("alpha", 1.0f, 0.0f));
2801 alphaAnim.setDuration(res.getInteger(R.integer.config_allAppsFadeOutTime));
Adam Cohenf16e5712011-01-13 13:31:45 -08002802 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Michael Jurka8edd75c2010-12-17 20:15:06 -08002803 alphaAnim.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002804 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002805 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002806 fromView.setVisibility(View.GONE);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002807 }
2808 });
2809
Chet Haaseb1254a62010-09-07 13:35:00 -07002810 AnimatorSet toolbarHideAnim = new AnimatorSet();
2811 AnimatorSet toolbarShowAnim = new AnimatorSet();
Michael Jurkad3ef3062010-11-23 16:23:58 -08002812 if (!springLoaded) {
2813 hideAndShowToolbarButtons(State.WORKSPACE, toolbarShowAnim, toolbarHideAnim);
2814 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002815
Adam Cohen61033d32010-11-15 18:29:44 -08002816 mStateAnimation.playTogether(scaleAnim, toolbarHideAnim, alphaAnim);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002817
2818 // Show the new toolbar buttons at the very end of the whole animation
2819 final int fadeInTime = res.getInteger(R.integer.config_toolbarButtonFadeInTime);
2820 final int unshrinkTime = res.getInteger(R.integer.config_workspaceUnshrinkTime);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002821 mStateAnimation.play(toolbarShowAnim).after(unshrinkTime - fadeInTime);
2822 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002823 } else {
2824 fromView.setVisibility(View.GONE);
Michael Jurkad3ef3062010-11-23 16:23:58 -08002825 if (!springLoaded) {
2826 hideAndShowToolbarButtons(State.WORKSPACE, null, null);
2827 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002828 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002829 }
2830
2831 /**
2832 * Pan the camera in the vertical plane between 'fromView' and 'toView'.
2833 * This is the transition used on xlarge screens to go between all apps and
2834 * the home customization drawer.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002835 * @param fromState The view to pan away from. Must be ALL_APPS or CUSTOMIZE.
2836 * @param toState The view to pan into the frame. Must be ALL_APPS or CUSTOMIZE.
2837 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002838 */
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002839 private void cameraPan(State fromState, State toState, boolean animated) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002840 final Resources res = getResources();
2841 final int duration = res.getInteger(R.integer.config_allAppsCameraPanTime);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002842 final int workspaceHeight = mWorkspace.getHeight();
2843
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002844 final boolean fromAllApps = (fromState == State.ALL_APPS);
2845 final View fromView = fromAllApps ? (View) mAllAppsGrid : mHomeCustomizationDrawer;
2846 final View toView = fromAllApps ? mHomeCustomizationDrawer : (View) mAllAppsGrid;
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002847
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002848 final float fromViewStartY = fromAllApps ? 0.0f : fromView.getY();
2849 final float fromViewEndY = fromAllApps ? -fromView.getHeight() * 2 : workspaceHeight * 2;
2850 final float toViewStartY = fromAllApps ? workspaceHeight * 2 : -toView.getHeight() * 2;
2851 final float toViewEndY = fromAllApps ? workspaceHeight - toView.getHeight() : 0.0f;
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002852
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002853 mCustomizePagedView.endChoiceMode();
2854 mAllAppsPagedView.endChoiceMode();
2855
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002856 if (toState == State.ALL_APPS) {
Michael Jurkaaf91de02010-11-23 16:23:58 -08002857 mWorkspace.shrink(Workspace.ShrinkState.BOTTOM_HIDDEN, animated);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002858 } else {
Michael Jurkaaf91de02010-11-23 16:23:58 -08002859 mWorkspace.shrink(Workspace.ShrinkState.TOP, animated);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002860 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002861
2862 if (animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002863 if (mStateAnimation != null) mStateAnimation.cancel();
2864 mStateAnimation = new AnimatorSet();
Michael Jurka8edd75c2010-12-17 20:15:06 -08002865 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002866 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002867 public void onAnimationStart(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002868 toView.setVisibility(View.VISIBLE);
2869 toView.setY(toViewStartY);
Adam Cohen61033d32010-11-15 18:29:44 -08002870 toView.setAlpha(1.0f);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002871 }
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002872 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002873 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002874 fromView.setVisibility(View.GONE);
2875 }
2876 });
2877
Chet Haaseb1254a62010-09-07 13:35:00 -07002878 AnimatorSet toolbarHideAnim = new AnimatorSet();
2879 AnimatorSet toolbarShowAnim = new AnimatorSet();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002880 hideAndShowToolbarButtons(toState, toolbarShowAnim, toolbarHideAnim);
2881
Chet Haase472b2812010-10-14 07:02:04 -07002882 ObjectAnimator fromAnim = ObjectAnimator.ofFloat(fromView, "y",
2883 fromViewStartY, fromViewEndY);
2884 fromAnim.setDuration(duration);
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002885 ObjectAnimator toAnim = ObjectAnimator.ofPropertyValuesHolder(toView,
2886 PropertyValuesHolder.ofFloat("y", toViewStartY, toViewEndY),
2887 PropertyValuesHolder.ofFloat("scaleX", toView.getScaleX(), 1.0f),
2888 PropertyValuesHolder.ofFloat("scaleY", toView.getScaleY(), 1.0f)
2889 );
Chet Haase472b2812010-10-14 07:02:04 -07002890 fromAnim.setDuration(duration);
2891 mStateAnimation.playTogether(toolbarHideAnim, fromAnim, toAnim);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002892
2893 // Show the new toolbar buttons just as the main animation is ending
2894 final int fadeInTime = res.getInteger(R.integer.config_toolbarButtonFadeInTime);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002895 mStateAnimation.play(toolbarShowAnim).after(duration - fadeInTime);
2896 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002897 } else {
2898 fromView.setY(fromViewEndY);
2899 fromView.setVisibility(View.GONE);
2900 toView.setY(toViewEndY);
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002901 toView.setScaleX(1.0f);
2902 toView.setScaleY(1.0f);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002903 toView.setVisibility(View.VISIBLE);
2904 hideAndShowToolbarButtons(toState, null, null);
2905 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002906 }
2907
2908 void showAllApps(boolean animated) {
Michael Jurka883f55b2010-10-21 15:47:14 -07002909 if (mState == State.ALL_APPS) {
Winson Chung80baf5a2010-08-09 16:03:15 -07002910 return;
Michael Jurka883f55b2010-10-21 15:47:14 -07002911 }
Winson Chung80baf5a2010-08-09 16:03:15 -07002912
Michael Jurka79212d82010-07-30 16:36:20 -07002913 if (LauncherApplication.isScreenXLarge()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002914 if (mState == State.CUSTOMIZE) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002915 cameraPan(State.CUSTOMIZE, State.ALL_APPS, animated);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002916 } else {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002917 cameraZoomOut(State.ALL_APPS, animated);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002918 }
Patrick Dubroy558654c2010-07-23 16:48:11 -07002919 } else {
2920 mAllAppsGrid.zoom(1.0f, animated);
2921 }
Joe Onorato3a8820b2009-11-10 15:06:42 -08002922
Romain Guyc16fea72010-03-12 17:17:56 -08002923 ((View) mAllAppsGrid).setFocusable(true);
2924 ((View) mAllAppsGrid).requestFocus();
Winson Chungaafa03c2010-06-11 17:34:16 -07002925
Joe Onorato7c312c12009-08-13 21:36:53 -07002926 // TODO: fade these two too
2927 mDeleteZone.setVisibility(View.GONE);
Adam Lesinski6b879f02010-11-04 16:15:23 -07002928
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002929 // Change the state *after* we've called all the transition code
2930 mState = State.ALL_APPS;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002931
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002932 // send an accessibility event to announce the context change
2933 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
2934 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002935
2936 void showWorkspace(boolean animated) {
2937 showWorkspace(animated, null);
2938 }
2939
2940 void showWorkspace(boolean animated, CellLayout layout) {
Michael Jurka9c6de3d2010-11-23 16:23:58 -08002941 if (layout != null) {
2942 // always animated, but that's ok since we never specify a layout and
2943 // want no animation
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002944 mWorkspace.unshrink(layout);
2945 } else {
2946 mWorkspace.unshrink(animated);
2947 }
2948 if (mState == State.ALL_APPS) {
2949 closeAllApps(animated);
2950 } else if (mState == State.CUSTOMIZE) {
2951 hideCustomizationDrawer(animated);
2952 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002953
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002954 // Change the state *after* we've called all the transition code
2955 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002956
2957 // send an accessibility event to announce the context change
2958 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
Joe Onorato00acb122009-08-04 16:04:30 -04002959 }
2960
Michael Jurkad3ef3062010-11-23 16:23:58 -08002961 void enterSpringLoadedDragMode(CellLayout layout) {
2962 mWorkspace.enterSpringLoadedDragMode(layout);
2963 if (mState == State.ALL_APPS) {
2964 cameraZoomIn(State.ALL_APPS, true, true);
2965 mState = State.ALL_APPS_SPRING_LOADED;
2966 } else if (mState == State.CUSTOMIZE) {
2967 cameraZoomIn(State.CUSTOMIZE, true, true);
2968 mState = State.CUSTOMIZE_SPRING_LOADED;
2969 }/* else {
2970 // we're already in spring loaded mode; don't do anything
2971 }*/
2972 }
2973
2974 void exitSpringLoadedDragMode() {
2975 if (mState == State.ALL_APPS_SPRING_LOADED) {
2976 mWorkspace.exitSpringLoadedDragMode(Workspace.ShrinkState.BOTTOM_VISIBLE);
2977 cameraZoomOut(State.ALL_APPS, true);
2978 mState = State.ALL_APPS;
2979 } else if (mState == State.CUSTOMIZE_SPRING_LOADED) {
2980 mWorkspace.exitSpringLoadedDragMode(Workspace.ShrinkState.TOP);
2981 cameraZoomOut(State.CUSTOMIZE, true);
2982 mState = State.CUSTOMIZE;
2983 }/* else {
2984 // we're not in spring loaded mode; don't do anything
2985 }*/
2986 }
2987
Joe Onoratob2061212009-11-24 16:13:54 -05002988 /**
Joe Onorato7e4ed992009-12-03 13:10:49 -08002989 * Things to test when changing this code.
Joe Onoratob2061212009-11-24 16:13:54 -05002990 * - Home from workspace
2991 * - from center screen
2992 * - from other screens
2993 * - Home from all apps
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002994 * - from center screen
2995 * - from other screens
Joe Onoratob2061212009-11-24 16:13:54 -05002996 * - Back from all apps
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002997 * - from center screen
2998 * - from other screens
Joe Onoratob2061212009-11-24 16:13:54 -05002999 * - Launch app from workspace and quit
3000 * - with back
3001 * - with home
3002 * - Launch app from all apps and quit
3003 * - with back
3004 * - with home
Joe Onorato7e4ed992009-12-03 13:10:49 -08003005 * - Go to a screen that's not the default, then all
3006 * apps, and launch and app, and go back
3007 * - with back
3008 * -with home
Joe Onoratob2061212009-11-24 16:13:54 -05003009 * - On workspace, long press power and go back
3010 * - with back
3011 * - with home
3012 * - On all apps, long press power and go back
3013 * - with back
3014 * - with home
3015 * - On workspace, power off
3016 * - On all apps, power off
Joe Onorato7e4ed992009-12-03 13:10:49 -08003017 * - Launch an app and turn off the screen while in that app
3018 * - Go back with home key
Joe Onorato34a0e1b2009-12-14 17:44:51 -08003019 * - Go back with back key TODO: make this not go to workspace
Joe Onorato7e4ed992009-12-03 13:10:49 -08003020 * - From all apps
3021 * - From workspace
Joe Onoratoeffc4a82010-04-15 11:48:13 -07003022 * - Enter and exit car mode (becuase it causes an extra configuration changed)
3023 * - From all apps
3024 * - From the center workspace
3025 * - From another workspace
Joe Onoratob2061212009-11-24 16:13:54 -05003026 */
Joe Onorato7bb17492009-09-24 17:51:01 -07003027 void closeAllApps(boolean animated) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08003028 if (mState == State.ALL_APPS || mState == State.ALL_APPS_SPRING_LOADED) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05003029 mWorkspace.setVisibility(View.VISIBLE);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003030 if (LauncherApplication.isScreenXLarge()) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003031 cameraZoomIn(State.ALL_APPS, animated);
Patrick Dubroy558654c2010-07-23 16:48:11 -07003032 } else {
3033 mAllAppsGrid.zoom(0.0f, animated);
3034 }
Daniel Sandler388f6792010-03-02 14:08:08 -05003035 ((View)mAllAppsGrid).setFocusable(false);
Michael Jurka0142d492010-08-25 17:46:15 -07003036 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onoratoe77c08d2009-08-01 00:01:20 -07003037 }
Joe Onorato7404ee42009-07-31 11:54:44 -07003038 }
3039
Joe Onorato7c312c12009-08-13 21:36:53 -07003040 void lockAllApps() {
3041 // TODO
3042 }
3043
3044 void unlockAllApps() {
3045 // TODO
3046 }
3047
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003048 // Show the customization drawer (only exists in x-large configuration)
3049 private void showCustomizationDrawer(boolean animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003050 if (mState == State.ALL_APPS) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003051 cameraPan(State.ALL_APPS, State.CUSTOMIZE, animated);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003052 } else {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003053 cameraZoomOut(State.CUSTOMIZE, animated);
Patrick Dubroy558654c2010-07-23 16:48:11 -07003054 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003055 // Change the state *after* we've called all the transition code
3056 mState = State.CUSTOMIZE;
Patrick Dubroy558654c2010-07-23 16:48:11 -07003057 }
3058
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003059 // Hide the customization drawer (only exists in x-large configuration)
3060 void hideCustomizationDrawer(boolean animated) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08003061 if (mState == State.CUSTOMIZE || mState == State.CUSTOMIZE_SPRING_LOADED) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003062 cameraZoomIn(State.CUSTOMIZE, animated);
Patrick Dubroy558654c2010-07-23 16:48:11 -07003063 }
3064 }
3065
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003066 void addExternalItemToScreen(ItemInfo itemInfo, CellLayout layout) {
3067 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
3068 showOutOfSpaceMessage();
Michael Jurka213d9632010-07-28 11:29:25 -07003069 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003070 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003071
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003072 void onWorkspaceClick(CellLayout layout) {
3073 showWorkspace(true, layout);
Michael Jurka213d9632010-07-28 11:29:25 -07003074 }
3075
Michael Jurka4ef207b2010-11-29 17:05:45 -08003076 // if successful in getting icon, return it; otherwise, set button to use default drawable
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003077 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurka0423dcf2010-10-05 14:56:18 -07003078 int buttonId, ComponentName activityName, int fallbackDrawableId) {
3079 ImageView button = (ImageView) findViewById(buttonId);
3080 Drawable toolbarIcon = null;
3081 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003082 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07003083 // Look for the toolbar icon specified in the activity meta-data
3084 Bundle metaData = packageManager.getActivityInfo(
3085 activityName, PackageManager.GET_META_DATA).metaData;
3086 if (metaData != null) {
3087 int iconResId = metaData.getInt(TOOLBAR_ICON_METADATA_NAME);
3088 if (iconResId != 0) {
3089 Resources res = packageManager.getResourcesForActivity(activityName);
3090 toolbarIcon = res.getDrawable(iconResId);
3091 }
3092 }
3093 } catch (NameNotFoundException e) {
3094 // Do nothing
3095 }
3096 // If we were unable to find the icon via the meta-data, use a generic one
3097 if (toolbarIcon == null) {
3098 button.setImageResource(fallbackDrawableId);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003099 return null;
Michael Jurka0423dcf2010-10-05 14:56:18 -07003100 } else {
3101 button.setImageDrawable(toolbarIcon);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003102 return toolbarIcon.getConstantState();
Michael Jurka0423dcf2010-10-05 14:56:18 -07003103 }
3104 }
3105
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003106 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003107 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003108 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003109 }
3110
Michael Jurka0423dcf2010-10-05 14:56:18 -07003111 private void updateGlobalSearchIcon() {
3112 if (LauncherApplication.isScreenXLarge()) {
3113 final SearchManager searchManager =
3114 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3115 ComponentName activityName = searchManager.getGlobalSearchActivity();
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003116 if (activityName != null) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003117 sGlobalSearchIcon = updateButtonWithIconFromExternalActivity(
Michael Jurka0423dcf2010-10-05 14:56:18 -07003118 R.id.search_button, activityName, R.drawable.search_button_generic);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003119 } else {
3120 findViewById(R.id.search_button).setVisibility(View.GONE);
3121 }
3122 }
3123 }
3124
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003125 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003126 updateButtonWithDrawable(R.id.search_button, d);
3127 }
3128
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003129 private void updateVoiceSearchIcon() {
3130 if (LauncherApplication.isScreenXLarge()) {
3131 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3132 ComponentName activityName = intent.resolveActivity(getPackageManager());
3133 if (activityName != null) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003134 sVoiceSearchIcon = updateButtonWithIconFromExternalActivity(
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003135 R.id.voice_button, activityName, R.drawable.ic_voice_search);
3136 } else {
3137 findViewById(R.id.voice_button).setVisibility(View.GONE);
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003138 }
3139 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003140 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003141
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003142 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003143 updateButtonWithDrawable(R.id.voice_button, d);
3144 }
3145
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003146 /**
3147 * Sets the app market icon (shown when all apps is visible on x-large screens)
3148 */
3149 private void updateAppMarketIcon() {
Michael Jurka0423dcf2010-10-05 14:56:18 -07003150 if (LauncherApplication.isScreenXLarge()) {
3151 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3152 // Find the app market activity by resolving an intent.
3153 // (If multiple app markets are installed, it will return the ResolverActivity.)
3154 ComponentName activityName = intent.resolveActivity(getPackageManager());
3155 if (activityName != null) {
3156 mAppMarketIntent = intent;
Michael Jurka4ef207b2010-11-29 17:05:45 -08003157 sAppMarketIcon = updateButtonWithIconFromExternalActivity(
Michael Jurka0423dcf2010-10-05 14:56:18 -07003158 R.id.market_button, activityName, R.drawable.app_market_generic);
3159 }
3160 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003161 }
3162
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003163 private void updateAppMarketIcon(Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003164 updateButtonWithDrawable(R.id.market_button, d);
3165 }
3166
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003167 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003168 * Displays the shortcut creation dialog and launches, if necessary, the
3169 * appropriate activity.
3170 */
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003171 private class CreateShortcut implements DialogInterface.OnClickListener,
Romain Guy7b4ef332009-07-14 13:58:08 -07003172 DialogInterface.OnCancelListener, DialogInterface.OnDismissListener,
3173 DialogInterface.OnShowListener {
3174
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003175 private AddAdapter mAdapter;
Romain Guy9ffb5432009-03-24 21:04:15 -07003176
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003177 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003178 mAdapter = new AddAdapter(Launcher.this);
Romain Guycbb89e42009-06-08 15:52:54 -07003179
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003180 final AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
3181 builder.setTitle(getString(R.string.menu_item_add_item));
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003182 builder.setAdapter(mAdapter, this);
Romain Guycbb89e42009-06-08 15:52:54 -07003183
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003184 builder.setInverseBackgroundForced(true);
3185
3186 AlertDialog dialog = builder.create();
3187 dialog.setOnCancelListener(this);
Romain Guycbb89e42009-06-08 15:52:54 -07003188 dialog.setOnDismissListener(this);
Romain Guy7b4ef332009-07-14 13:58:08 -07003189 dialog.setOnShowListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003190
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003191 return dialog;
3192 }
3193
3194 public void onCancel(DialogInterface dialog) {
3195 mWaitingForResult = false;
3196 cleanup();
3197 }
3198
Romain Guycbb89e42009-06-08 15:52:54 -07003199 public void onDismiss(DialogInterface dialog) {
Romain Guycbb89e42009-06-08 15:52:54 -07003200 }
3201
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003202 private void cleanup() {
Joe Onoratocc19a532009-11-19 14:19:17 -08003203 try {
3204 dismissDialog(DIALOG_CREATE_SHORTCUT);
3205 } catch (Exception e) {
3206 // An exception is thrown if the dialog is not visible, which is fine
3207 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003208 }
3209
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003210 /**
3211 * Handle the action clicked in the "Add to home" dialog.
3212 */
3213 public void onClick(DialogInterface dialog, int which) {
3214 Resources res = getResources();
3215 cleanup();
Romain Guycbb89e42009-06-08 15:52:54 -07003216
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003217 switch (which) {
3218 case AddAdapter.ITEM_SHORTCUT: {
Joe Onoratodeb98af2010-02-19 14:59:39 -08003219 pickShortcut();
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003220 break;
3221 }
Romain Guycbb89e42009-06-08 15:52:54 -07003222
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003223 case AddAdapter.ITEM_APPWIDGET: {
3224 int appWidgetId = Launcher.this.mAppWidgetHost.allocateAppWidgetId();
Romain Guycbb89e42009-06-08 15:52:54 -07003225
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003226 Intent pickIntent = new Intent(AppWidgetManager.ACTION_APPWIDGET_PICK);
3227 pickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003228 // start the pick activity
3229 startActivityForResult(pickIntent, REQUEST_PICK_APPWIDGET);
3230 break;
3231 }
Romain Guycbb89e42009-06-08 15:52:54 -07003232
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003233 case AddAdapter.ITEM_LIVE_FOLDER: {
3234 // Insert extra item to handle inserting folder
3235 Bundle bundle = new Bundle();
Romain Guycbb89e42009-06-08 15:52:54 -07003236
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003237 ArrayList<String> shortcutNames = new ArrayList<String>();
3238 shortcutNames.add(res.getString(R.string.group_folder));
3239 bundle.putStringArrayList(Intent.EXTRA_SHORTCUT_NAME, shortcutNames);
Romain Guycbb89e42009-06-08 15:52:54 -07003240
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003241 ArrayList<ShortcutIconResource> shortcutIcons =
3242 new ArrayList<ShortcutIconResource>();
3243 shortcutIcons.add(ShortcutIconResource.fromContext(Launcher.this,
3244 R.drawable.ic_launcher_folder));
3245 bundle.putParcelableArrayList(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, shortcutIcons);
3246
3247 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
3248 pickIntent.putExtra(Intent.EXTRA_INTENT,
3249 new Intent(LiveFolders.ACTION_CREATE_LIVE_FOLDER));
3250 pickIntent.putExtra(Intent.EXTRA_TITLE,
3251 getText(R.string.title_select_live_folder));
3252 pickIntent.putExtras(bundle);
Romain Guycbb89e42009-06-08 15:52:54 -07003253
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003254 startActivityForResult(pickIntent, REQUEST_PICK_LIVE_FOLDER);
3255 break;
3256 }
3257
3258 case AddAdapter.ITEM_WALLPAPER: {
3259 startWallpaper();
3260 break;
3261 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003262 }
3263 }
Romain Guy7b4ef332009-07-14 13:58:08 -07003264
3265 public void onShow(DialogInterface dialog) {
Winson Chungaafa03c2010-06-11 17:34:16 -07003266 mWaitingForResult = true;
Romain Guy7b4ef332009-07-14 13:58:08 -07003267 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003268 }
3269
3270 /**
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003271 * Receives notifications when applications are added/removed.
3272 */
3273 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
3274 @Override
3275 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003276 closeSystemDialogs();
Joe Onoratob2061212009-11-24 16:13:54 -05003277 String reason = intent.getStringExtra("reason");
3278 if (!"homekey".equals(reason)) {
3279 boolean animate = true;
Joe Onorato34a0e1b2009-12-14 17:44:51 -08003280 if (mPaused || "lock".equals(reason)) {
Joe Onoratob2061212009-11-24 16:13:54 -05003281 animate = false;
3282 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003283 showWorkspace(animate);
Joe Onoratob2061212009-11-24 16:13:54 -05003284 }
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003285 }
3286 }
3287
3288 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003289 * Receives notifications whenever the appwidgets are reset.
3290 */
3291 private class AppWidgetResetObserver extends ContentObserver {
3292 public AppWidgetResetObserver() {
3293 super(new Handler());
3294 }
3295
3296 @Override
3297 public void onChange(boolean selfChange) {
3298 onAppWidgetReset();
3299 }
3300 }
3301
3302 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003303 * If the activity is currently paused, signal that we need to re-run the loader
3304 * in onResume.
3305 *
3306 * This needs to be called from incoming places where resources might have been loaded
3307 * while we are paused. That is becaues the Configuration might be wrong
3308 * when we're not running, and if it comes back to what it was when we
3309 * were paused, we are not restarted.
3310 *
3311 * Implementation of the method from LauncherModel.Callbacks.
3312 *
3313 * @return true if we are currently paused. The caller might be able to
3314 * skip some work in that case since we will come back again.
3315 */
3316 public boolean setLoadOnResume() {
3317 if (mPaused) {
3318 Log.i(TAG, "setLoadOnResume");
3319 mOnResumeNeedsLoad = true;
3320 return true;
3321 } else {
3322 return false;
3323 }
3324 }
3325
3326 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003327 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003328 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003329 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003330 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003331 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003332 } else {
3333 return SCREEN_COUNT / 2;
3334 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003335 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003336
Winson Chunga12a2502010-12-20 14:41:35 -08003337 void setAllAppsPagedView(AllAppsPagedView view) {
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003338 mAllAppsPagedView = view;
3339 }
3340
Joe Onorato9c1289c2009-08-17 11:03:03 -04003341 /**
3342 * Refreshes the shortcuts shown on the workspace.
3343 *
3344 * Implementation of the method from LauncherModel.Callbacks.
3345 */
3346 public void startBinding() {
3347 final Workspace workspace = mWorkspace;
3348 int count = workspace.getChildCount();
3349 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04003350 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Joe Onorato9c1289c2009-08-17 11:03:03 -04003351 ((ViewGroup) workspace.getChildAt(i)).removeAllViewsInLayout();
3352 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003353
Joe Onorato9c1289c2009-08-17 11:03:03 -04003354 if (DEBUG_USER_INTERFACE) {
3355 android.widget.Button finishButton = new android.widget.Button(this);
3356 finishButton.setText("Finish");
3357 workspace.addInScreen(finishButton, 1, 0, 0, 1, 1);
3358
3359 finishButton.setOnClickListener(new android.widget.Button.OnClickListener() {
3360 public void onClick(View v) {
3361 finish();
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003362 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003363 });
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003364 }
3365 }
3366
3367 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003368 * Bind the items start-end from the list.
3369 *
3370 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003371 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003372 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
3373
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003374 setLoadOnResume();
3375
Joe Onorato9c1289c2009-08-17 11:03:03 -04003376 final Workspace workspace = mWorkspace;
3377
3378 for (int i=start; i<end; i++) {
3379 final ItemInfo item = shortcuts.get(i);
3380 mDesktopItems.add(item);
3381 switch (item.itemType) {
3382 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3383 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Joe Onorato0589f0f2010-02-08 13:44:00 -08003384 final View shortcut = createShortcut((ShortcutInfo)item);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003385 workspace.addInScreen(shortcut, item.screen, item.cellX, item.cellY, 1, 1,
3386 false);
3387 break;
3388 case LauncherSettings.Favorites.ITEM_TYPE_USER_FOLDER:
3389 final FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003390 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Michael Jurkac9a96192010-11-01 11:52:08 -07003391 (UserFolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003392 workspace.addInScreen(newFolder, item.screen, item.cellX, item.cellY, 1, 1,
3393 false);
3394 break;
3395 case LauncherSettings.Favorites.ITEM_TYPE_LIVE_FOLDER:
3396 final FolderIcon newLiveFolder = LiveFolderIcon.fromXml(
3397 R.layout.live_folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003398 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Joe Onorato9c1289c2009-08-17 11:03:03 -04003399 (LiveFolderInfo) item);
3400 workspace.addInScreen(newLiveFolder, item.screen, item.cellX, item.cellY, 1, 1,
3401 false);
3402 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003403 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003404 }
3405
Joe Onorato9c1289c2009-08-17 11:03:03 -04003406 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003407 }
3408
Joe Onorato9c1289c2009-08-17 11:03:03 -04003409 /**
3410 * Implementation of the method from LauncherModel.Callbacks.
3411 */
Joe Onoratoad72e172009-11-06 16:25:04 -05003412 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003413 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003414 sFolders.clear();
3415 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003416 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003417
3418 /**
3419 * Add the views for a widget to the workspace.
3420 *
3421 * Implementation of the method from LauncherModel.Callbacks.
3422 */
3423 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003424 setLoadOnResume();
3425
Daniel Sandler843e8602010-06-07 14:59:01 -04003426 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3427 if (DEBUG_WIDGETS) {
3428 Log.d(TAG, "bindAppWidget: " + item);
3429 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003430 final Workspace workspace = mWorkspace;
3431
3432 final int appWidgetId = item.appWidgetId;
3433 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003434 if (DEBUG_WIDGETS) {
3435 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3436 }
3437
Joe Onorato9c1289c2009-08-17 11:03:03 -04003438 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3439
Joe Onorato9c1289c2009-08-17 11:03:03 -04003440 item.hostView.setAppWidget(appWidgetId, appWidgetInfo);
3441 item.hostView.setTag(item);
3442
3443 workspace.addInScreen(item.hostView, item.screen, item.cellX,
3444 item.cellY, item.spanX, item.spanY, false);
3445
Adam Cohended9f8d2010-11-03 13:25:16 -07003446 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3447
Joe Onorato9c1289c2009-08-17 11:03:03 -04003448 workspace.requestLayout();
3449
3450 mDesktopItems.add(item);
Daniel Sandler843e8602010-06-07 14:59:01 -04003451
3452 if (DEBUG_WIDGETS) {
3453 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3454 + (SystemClock.uptimeMillis()-start) + "ms");
3455 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003456 }
3457
3458 /**
3459 * Callback saying that there aren't any more items to bind.
3460 *
3461 * Implementation of the method from LauncherModel.Callbacks.
3462 */
3463 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003464 setLoadOnResume();
3465
Joe Onorato9c1289c2009-08-17 11:03:03 -04003466 if (mSavedState != null) {
3467 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003468 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003469 }
3470
3471 final long[] userFolders = mSavedState.getLongArray(RUNTIME_STATE_USER_FOLDERS);
3472 if (userFolders != null) {
3473 for (long folderId : userFolders) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003474 final FolderInfo info = sFolders.get(folderId);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003475 if (info != null) {
3476 openFolder(info);
3477 }
3478 }
3479 final Folder openFolder = mWorkspace.getOpenFolder();
3480 if (openFolder != null) {
3481 openFolder.requestFocus();
3482 }
3483 }
3484
Joe Onorato9c1289c2009-08-17 11:03:03 -04003485 mSavedState = null;
3486 }
3487
3488 if (mSavedInstanceState != null) {
3489 super.onRestoreInstanceState(mSavedInstanceState);
3490 mSavedInstanceState = null;
3491 }
3492
Joe Onorato9c1289c2009-08-17 11:03:03 -04003493 mWorkspaceLoading = false;
3494 }
3495
3496 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003497 * Updates the icons on the launcher that are affected by changes to the package list
3498 * on the device.
3499 */
3500 private void updateIconsAffectedByPackageManagerChanges() {
3501 updateAppMarketIcon();
3502 updateGlobalSearchIcon();
3503 updateVoiceSearchIcon();
3504 }
3505
3506 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003507 * Add the icons for all apps.
3508 *
3509 * Implementation of the method from LauncherModel.Callbacks.
3510 */
3511 public void bindAllApplications(ArrayList<ApplicationInfo> apps) {
Romain Guy84f296c2009-11-04 15:00:44 -08003512 mAllAppsGrid.setApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003513 if (mCustomizePagedView != null) {
3514 mCustomizePagedView.setApps(apps);
3515 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003516 updateIconsAffectedByPackageManagerChanges();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003517 }
3518
3519 /**
3520 * A package was installed.
3521 *
3522 * Implementation of the method from LauncherModel.Callbacks.
3523 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003524 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003525 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003526 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onoratoa8138d52009-10-06 19:25:30 -07003527 mAllAppsGrid.addApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003528 if (mCustomizePagedView != null) {
3529 mCustomizePagedView.addApps(apps);
3530 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003531 updateIconsAffectedByPackageManagerChanges();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003532 }
3533
3534 /**
3535 * A package was updated.
3536 *
3537 * Implementation of the method from LauncherModel.Callbacks.
3538 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003539 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003540 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003541 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onorato64e6be72010-03-05 15:05:52 -05003542 mWorkspace.updateShortcuts(apps);
3543 mAllAppsGrid.updateApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003544 if (mCustomizePagedView != null) {
3545 mCustomizePagedView.updateApps(apps);
3546 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003547 updateIconsAffectedByPackageManagerChanges();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003548 }
3549
3550 /**
3551 * A package was uninstalled.
3552 *
3553 * Implementation of the method from LauncherModel.Callbacks.
3554 */
Joe Onorato36115782010-06-17 13:28:48 -04003555 public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003556 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onorato36115782010-06-17 13:28:48 -04003557 if (permanent) {
3558 mWorkspace.removeItems(apps);
3559 }
Joe Onoratoa8138d52009-10-06 19:25:30 -07003560 mAllAppsGrid.removeApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003561 if (mCustomizePagedView != null) {
3562 mCustomizePagedView.removeApps(apps);
3563 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003564 updateIconsAffectedByPackageManagerChanges();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003565 }
Joe Onoratobe386092009-11-17 17:32:16 -08003566
3567 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003568 * A number of packages were updated.
3569 */
3570 public void bindPackagesUpdated() {
3571 // update the customization drawer contents
Winson Chung5f941722010-09-28 16:36:43 -07003572 if (mCustomizePagedView != null) {
Winson Chungb3347bb2010-08-19 14:51:28 -07003573 mCustomizePagedView.update();
Winson Chung5f941722010-09-28 16:36:43 -07003574 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003575 }
3576
Winson Chung400438b2011-01-16 17:53:48 -08003577 private int mapConfigurationOriActivityInfoOri(int configOri) {
3578 final Display d = getWindowManager().getDefaultDisplay();
3579 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3580 switch (d.getRotation()) {
3581 case Surface.ROTATION_0:
3582 case Surface.ROTATION_180:
3583 // We are currently in the same basic orientation as the natural orientation
3584 naturalOri = configOri;
3585 break;
3586 case Surface.ROTATION_90:
3587 case Surface.ROTATION_270:
3588 // We are currently in the other basic orientation to the natural orientation
3589 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3590 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3591 break;
3592 }
3593
3594 int[] oriMap = {
3595 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3596 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3597 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3598 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3599 };
3600 // Since the map starts at portrait, we need to offset if this device's natural orientation
3601 // is landscape.
3602 int indexOffset = 0;
3603 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3604 indexOffset = 1;
3605 }
3606 return oriMap[(d.getRotation() + indexOffset) % 4];
3607 }
3608 public void lockScreenOrientation() {
3609 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3610 .getConfiguration().orientation));
3611 }
3612 public void unlockScreenOrientation() {
3613 mHandler.postDelayed(new Runnable() {
3614 public void run() {
3615 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3616 }
3617 }, mRestoreScreenOrientationDelay);
3618 }
3619
Winson Chung80baf5a2010-08-09 16:03:15 -07003620 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003621 * Prints out out state for debugging.
3622 */
3623 public void dumpState() {
3624 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003625 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003626 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3627 Log.d(TAG, "mRestoring=" + mRestoring);
3628 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3629 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
3630 Log.d(TAG, "mDesktopItems.size=" + mDesktopItems.size());
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003631 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003632 mModel.dumpState();
3633 mAllAppsGrid.dumpState();
3634 Log.d(TAG, "END launcher2 dump state");
3635 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003636}