blob: f718c5b3289821d9e7f4377899cda73dde89fba5 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Joe Onoratoa5902522009-07-30 13:37:37 -070017package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
19import android.app.Activity;
20import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080021import android.app.Dialog;
Mike LeBeau736cf282009-07-02 17:46:59 -070022import android.app.ISearchManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080023import android.app.SearchManager;
24import android.app.StatusBarManager;
Dianne Hackborn8355ae32009-09-07 21:47:51 -070025import android.app.WallpaperInfo;
Dianne Hackborn107f8392009-08-05 21:32:16 -070026import android.app.WallpaperManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027import android.content.ActivityNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.content.ComponentName;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080029import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.content.Context;
31import android.content.DialogInterface;
32import android.content.Intent;
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -070033import android.content.Intent.ShortcutIconResource;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.content.pm.ActivityInfo;
Dianne Hackborn8355ae32009-09-07 21:47:51 -070035import android.content.pm.LabeledIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036import android.content.pm.PackageManager;
37import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070039import android.content.res.Resources;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080040import android.database.ContentObserver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.graphics.Bitmap;
Romain Guy1fbc1c82009-11-09 20:43:08 -080042import android.graphics.Rect;
Romain Guya6abce82009-11-10 02:54:41 -080043import android.graphics.Canvas;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080044import android.graphics.drawable.Drawable;
Romain Guyff0c2e22009-11-10 12:09:59 -080045import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046import android.os.Bundle;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080047import android.os.Handler;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.os.Parcelable;
49import android.os.RemoteException;
50import android.os.ServiceManager;
Joe Onorato080d9b62009-11-02 12:01:11 -050051import android.os.SystemClock;
Karl Rosaen138a0412009-04-23 19:00:21 -070052import android.provider.LiveFolders;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080053import android.text.Selection;
54import android.text.SpannableStringBuilder;
55import android.text.TextUtils;
56import android.text.method.TextKeyListener;
The Android Open Source Projectf96811c2009-03-18 17:39:48 -070057import static android.util.Log.*;
Joe Onorato7c312c12009-08-13 21:36:53 -070058import android.util.Log;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080059import android.view.Display;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060import android.view.KeyEvent;
61import android.view.LayoutInflater;
62import android.view.Menu;
63import android.view.MenuItem;
64import android.view.View;
65import android.view.ViewGroup;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080066import android.view.View.OnLongClickListener;
67import android.view.inputmethod.InputMethodManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.widget.EditText;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069import android.widget.TextView;
70import android.widget.Toast;
Romain Guy8a73c512009-11-09 19:19:59 -080071import android.widget.ImageView;
Romain Guy1fbc1c82009-11-09 20:43:08 -080072import android.widget.PopupWindow;
Romain Guye6b8e2f2009-11-10 11:56:55 -080073import android.widget.LinearLayout;
The Android Open Source Project7376fae2009-03-11 12:11:58 -070074import android.appwidget.AppWidgetManager;
75import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080076
The Android Open Source Project31dd5032009-03-03 19:32:27 -080077import java.util.ArrayList;
Joe Onorato9c1289c2009-08-17 11:03:03 -040078import java.util.HashMap;
Romain Guy98d01652009-06-30 16:21:04 -070079import java.io.DataOutputStream;
80import java.io.FileNotFoundException;
81import java.io.IOException;
82import java.io.DataInputStream;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080083
84/**
85 * Default launcher application.
86 */
Joe Onorato9c1289c2009-08-17 11:03:03 -040087public final class Launcher extends Activity
Romain Guya6abce82009-11-10 02:54:41 -080088 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks {
The Android Open Source Project31dd5032009-03-03 19:32:27 -080089 static final String LOG_TAG = "Launcher";
Joe Onorato9c1289c2009-08-17 11:03:03 -040090 static final String TAG = LOG_TAG;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091 static final boolean LOGD = false;
92
Joe Onorato9c1289c2009-08-17 11:03:03 -040093 static final boolean PROFILE_STARTUP = false;
94 static final boolean PROFILE_ROTATE = false;
95 static final boolean DEBUG_USER_INTERFACE = false;
Romain Guy6fefcf12009-06-11 13:07:43 -070096
The Android Open Source Project31dd5032009-03-03 19:32:27 -080097 private static final int WALLPAPER_SCREENS_SPAN = 2;
98
99 private static final int MENU_GROUP_ADD = 1;
100 private static final int MENU_ADD = Menu.FIRST + 1;
101 private static final int MENU_WALLPAPER_SETTINGS = MENU_ADD + 1;
102 private static final int MENU_SEARCH = MENU_WALLPAPER_SETTINGS + 1;
103 private static final int MENU_NOTIFICATIONS = MENU_SEARCH + 1;
Romain Guy94dabf12009-07-21 10:55:43 -0700104 private static final int MENU_SETTINGS = MENU_NOTIFICATIONS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800105
106 private static final int REQUEST_CREATE_SHORTCUT = 1;
107 private static final int REQUEST_CREATE_LIVE_FOLDER = 4;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700108 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800109 private static final int REQUEST_PICK_APPLICATION = 6;
110 private static final int REQUEST_PICK_SHORTCUT = 7;
111 private static final int REQUEST_PICK_LIVE_FOLDER = 8;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700112 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700113 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800114
115 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
116
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700117 static final String EXTRA_CUSTOM_WIDGET = "custom_widget";
118 static final String SEARCH_WIDGET = "search_widget";
119
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800120 static final int SCREEN_COUNT = 5;
121 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800122 static final int NUMBER_CELLS_X = 4;
Romain Guycbb89e42009-06-08 15:52:54 -0700123 static final int NUMBER_CELLS_Y = 4;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800124
Joe Onorato7c312c12009-08-13 21:36:53 -0700125 static final int DIALOG_CREATE_SHORTCUT = 1;
126 static final int DIALOG_RENAME_FOLDER = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800127
Romain Guy98d01652009-06-30 16:21:04 -0700128 private static final String PREFERENCES = "launcher.preferences";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800129
130 // Type: int
131 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
132 // Type: boolean
133 private static final String RUNTIME_STATE_ALL_APPS_FOLDER = "launcher.all_apps_folder";
134 // Type: long
135 private static final String RUNTIME_STATE_USER_FOLDERS = "launcher.user_folder";
136 // Type: int
137 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
138 // Type: int
139 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cellX";
140 // Type: int
141 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cellY";
142 // Type: int
143 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_spanX";
144 // Type: int
145 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_spanY";
146 // Type: int
147 private static final String RUNTIME_STATE_PENDING_ADD_COUNT_X = "launcher.add_countX";
148 // Type: int
149 private static final String RUNTIME_STATE_PENDING_ADD_COUNT_Y = "launcher.add_countY";
150 // Type: int[]
151 private static final String RUNTIME_STATE_PENDING_ADD_OCCUPIED_CELLS = "launcher.add_occupied_cells";
152 // Type: boolean
153 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
154 // Type: long
155 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
156
Joe Onorato9c1289c2009-08-17 11:03:03 -0400157 static final int APPWIDGET_HOST_ID = 1024;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800158
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800159 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800160 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800161
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800162 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
163
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800164 private LayoutInflater mInflater;
165
Joe Onorato00acb122009-08-04 16:04:30 -0400166 private DragController mDragController;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800167 private Workspace mWorkspace;
Romain Guycbb89e42009-06-08 15:52:54 -0700168
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700169 private AppWidgetManager mAppWidgetManager;
170 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700171
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800172 private CellLayout.CellInfo mAddItemCellInfo;
173 private CellLayout.CellInfo mMenuAddInfo;
174 private final int[] mCellCoordinates = new int[2];
175 private FolderInfo mFolderInfo;
176
Joe Onorato7c312c12009-08-13 21:36:53 -0700177 private DeleteZone mDeleteZone;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700178 private HandleView mHandleView;
Joe Onorato7c312c12009-08-13 21:36:53 -0700179 private AllAppsView mAllAppsGrid;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 private Bundle mSavedState;
182
183 private SpannableStringBuilder mDefaultKeySsb = null;
184
Mike LeBeau736cf282009-07-02 17:46:59 -0700185 private boolean mIsNewIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800186
Joe Onorato9c1289c2009-08-17 11:03:03 -0400187 private boolean mWorkspaceLoading = true;
188
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800189 private boolean mRestoring;
190 private boolean mWaitingForResult;
Joe Onoratoff3862d2009-10-07 10:35:51 -0700191 private boolean mExitingBecauseOfLaunch;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800192
193 private Bundle mSavedInstanceState;
194
Joe Onorato9c1289c2009-08-17 11:03:03 -0400195 private LauncherModel mModel;
196
Romain Guy84f296c2009-11-04 15:00:44 -0800197 private ArrayList<ItemInfo> mDesktopItems = new ArrayList<ItemInfo>();
198 private static HashMap<Long, FolderInfo> mFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700199
Joe Onorato080d9b62009-11-02 12:01:11 -0500200 public static long lastStartTime;
Romain Guy1fbc1c82009-11-09 20:43:08 -0800201 private ImageView mPreviousView;
202 private ImageView mNextView;
Joe Onorato080d9b62009-11-02 12:01:11 -0500203
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800204 @Override
205 protected void onCreate(Bundle savedInstanceState) {
Joe Onorato080d9b62009-11-02 12:01:11 -0500206 lastStartTime = SystemClock.uptimeMillis();
207
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800208 super.onCreate(savedInstanceState);
Romain Guyb1b69f52009-08-10 15:10:15 -0700209
Joe Onorato9c1289c2009-08-17 11:03:03 -0400210 mModel = ((LauncherApplication)getApplication()).setLauncher(this);
Joe Onorato41a12d22009-10-31 18:30:00 -0400211 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800212 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700213
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700214 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700215 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
216 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700217
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800218 if (PROFILE_STARTUP) {
219 android.os.Debug.startMethodTracing("/sdcard/launcher");
220 }
221
222 checkForLocaleChange();
223 setWallpaperDimension();
224
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800225 setContentView(R.layout.launcher);
226 setupViews();
227
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800228 registerContentObservers();
229
Joe Onorato7c312c12009-08-13 21:36:53 -0700230 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700231
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800232 mSavedState = savedInstanceState;
233 restoreState(mSavedState);
234
235 if (PROFILE_STARTUP) {
236 android.os.Debug.stopMethodTracing();
237 }
238
Joe Onorato1d8e7bb2009-10-15 19:49:43 -0700239 // We have a new AllAppsView, we need to re-bind everything, and it could have
240 // changed in our absence.
241 mModel.setAllAppsDirty();
242 mModel.setWorkspaceDirty();
243
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800244 if (!mRestoring) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400245 mModel.startLoader(this, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800246 }
247
248 // For handling default keys
249 mDefaultKeySsb = new SpannableStringBuilder();
250 Selection.setSelection(mDefaultKeySsb, 0);
251 }
Romain Guycbb89e42009-06-08 15:52:54 -0700252
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800253 private void checkForLocaleChange() {
Romain Guy98d01652009-06-30 16:21:04 -0700254 final LocaleConfiguration localeConfiguration = new LocaleConfiguration();
255 readConfiguration(this, localeConfiguration);
Jason Samsfd22dac2009-09-20 17:24:16 -0700256
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800257 final Configuration configuration = getResources().getConfiguration();
258
Romain Guy98d01652009-06-30 16:21:04 -0700259 final String previousLocale = localeConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800260 final String locale = configuration.locale.toString();
261
Romain Guy98d01652009-06-30 16:21:04 -0700262 final int previousMcc = localeConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800263 final int mcc = configuration.mcc;
264
Romain Guy98d01652009-06-30 16:21:04 -0700265 final int previousMnc = localeConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800266 final int mnc = configuration.mnc;
267
Romain Guy84f296c2009-11-04 15:00:44 -0800268 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800269
Romain Guy84f296c2009-11-04 15:00:44 -0800270 if (localeChanged) {
Romain Guy98d01652009-06-30 16:21:04 -0700271 localeConfiguration.locale = locale;
272 localeConfiguration.mcc = mcc;
273 localeConfiguration.mnc = mnc;
274
275 writeConfiguration(this, localeConfiguration);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400276 AppInfoCache.flush();
Romain Guy98d01652009-06-30 16:21:04 -0700277 }
278 }
279
280 private static class LocaleConfiguration {
281 public String locale;
282 public int mcc = -1;
283 public int mnc = -1;
284 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700285
Romain Guy98d01652009-06-30 16:21:04 -0700286 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
287 DataInputStream in = null;
288 try {
289 in = new DataInputStream(context.openFileInput(PREFERENCES));
290 configuration.locale = in.readUTF();
291 configuration.mcc = in.readInt();
292 configuration.mnc = in.readInt();
293 } catch (FileNotFoundException e) {
294 // Ignore
295 } catch (IOException e) {
296 // Ignore
297 } finally {
298 if (in != null) {
299 try {
300 in.close();
301 } catch (IOException e) {
302 // Ignore
303 }
304 }
305 }
306 }
307
308 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
309 DataOutputStream out = null;
310 try {
311 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
312 out.writeUTF(configuration.locale);
313 out.writeInt(configuration.mcc);
314 out.writeInt(configuration.mnc);
315 out.flush();
316 } catch (FileNotFoundException e) {
317 // Ignore
318 } catch (IOException e) {
319 //noinspection ResultOfMethodCallIgnored
320 context.getFileStreamPath(PREFERENCES).delete();
321 } finally {
322 if (out != null) {
323 try {
324 out.close();
325 } catch (IOException e) {
326 // Ignore
327 }
328 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800329 }
330 }
331
332 static int getScreen() {
333 synchronized (sLock) {
334 return sScreen;
335 }
336 }
337
338 static void setScreen(int screen) {
339 synchronized (sLock) {
340 sScreen = screen;
341 }
342 }
343
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800344 private void setWallpaperDimension() {
Dianne Hackborn107f8392009-08-05 21:32:16 -0700345 WallpaperManager wpm = (WallpaperManager)getSystemService(WALLPAPER_SERVICE);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800346
347 Display display = getWindowManager().getDefaultDisplay();
348 boolean isPortrait = display.getWidth() < display.getHeight();
349
350 final int width = isPortrait ? display.getWidth() : display.getHeight();
351 final int height = isPortrait ? display.getHeight() : display.getWidth();
Dianne Hackborn64271802009-08-08 20:54:24 -0700352 wpm.suggestDesiredDimensions(width * WALLPAPER_SCREENS_SPAN, height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800353 }
354
355 @Override
356 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
Romain Guyaad5ef42009-06-10 02:48:37 -0700357 mWaitingForResult = false;
358
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800359 // The pattern used here is that a user PICKs a specific application,
360 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700361
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800362 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
363 // launch over to the Music app to actually CREATE_SHORTCUT.
Romain Guycbb89e42009-06-08 15:52:54 -0700364
Romain Guy94dabf12009-07-21 10:55:43 -0700365 if (resultCode == RESULT_OK && mAddItemCellInfo != null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800366 switch (requestCode) {
367 case REQUEST_PICK_APPLICATION:
Joe Onorato9c1289c2009-08-17 11:03:03 -0400368 completeAddApplication(this, data, mAddItemCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800369 break;
370 case REQUEST_PICK_SHORTCUT:
Romain Guy73b979d2009-06-09 12:57:21 -0700371 processShortcut(data, REQUEST_PICK_APPLICATION, REQUEST_CREATE_SHORTCUT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800372 break;
373 case REQUEST_CREATE_SHORTCUT:
Joe Onorato9c1289c2009-08-17 11:03:03 -0400374 completeAddShortcut(data, mAddItemCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800375 break;
376 case REQUEST_PICK_LIVE_FOLDER:
377 addLiveFolder(data);
378 break;
379 case REQUEST_CREATE_LIVE_FOLDER:
Joe Onorato9c1289c2009-08-17 11:03:03 -0400380 completeAddLiveFolder(data, mAddItemCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800381 break;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700382 case REQUEST_PICK_APPWIDGET:
383 addAppWidget(data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800384 break;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700385 case REQUEST_CREATE_APPWIDGET:
Joe Onorato9c1289c2009-08-17 11:03:03 -0400386 completeAddAppWidget(data, mAddItemCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800387 break;
Mike Clerona0618e42009-10-22 13:55:21 -0700388 case REQUEST_PICK_WALLPAPER:
389 // We just wanted the activity result here so we can clear mWaitingForResult
390 break;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800391 }
Romain Guy18042c82009-11-06 11:44:55 -0800392 } else if ((requestCode == REQUEST_PICK_APPWIDGET ||
393 requestCode == REQUEST_CREATE_APPWIDGET) && resultCode == RESULT_CANCELED &&
394 data != null) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700395 // Clean up the appWidgetId if we canceled
396 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
397 if (appWidgetId != -1) {
398 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800399 }
400 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800401 }
402
403 @Override
404 protected void onResume() {
Joe Onorato080d9b62009-11-02 12:01:11 -0500405 if (lastStartTime == 0) {
406 lastStartTime = SystemClock.uptimeMillis();
407 }
408
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800409 super.onResume();
410
411 if (mRestoring) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400412 mWorkspaceLoading = true;
413 mModel.startLoader(this, true);
414 mRestoring = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800415 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700416
Mike LeBeau736cf282009-07-02 17:46:59 -0700417 // If this was a new intent (i.e., the mIsNewIntent flag got set to true by
418 // onNewIntent), then close the search dialog if needed, because it probably
419 // came from the user pressing 'home' (rather than, for example, pressing 'back').
420 if (mIsNewIntent) {
421 // Post to a handler so that this happens after the search dialog tries to open
422 // itself again.
423 mWorkspace.post(new Runnable() {
424 public void run() {
425 ISearchManager searchManagerService = ISearchManager.Stub.asInterface(
426 ServiceManager.getService(Context.SEARCH_SERVICE));
427 try {
428 searchManagerService.stopSearch();
429 } catch (RemoteException e) {
430 e(LOG_TAG, "error stopping search", e);
Jason Samsfd22dac2009-09-20 17:24:16 -0700431 }
Mike LeBeau736cf282009-07-02 17:46:59 -0700432 }
433 });
434 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700435
Mike LeBeau736cf282009-07-02 17:46:59 -0700436 mIsNewIntent = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800437 }
438
439 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700440 protected void onPause() {
441 super.onPause();
Joe Onoratoff3862d2009-10-07 10:35:51 -0700442 if (mExitingBecauseOfLaunch) {
443 mExitingBecauseOfLaunch = false;
444 closeAllApps(false);
445 }
Romain Guy1fbc1c82009-11-09 20:43:08 -0800446 dismissPreview(mPreviousView);
447 dismissPreview(mNextView);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700448 }
Romain Guycbb89e42009-06-08 15:52:54 -0700449
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700450 @Override
451 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400452 // Flag the loader to stop early before switching
453 mModel.stopLoader();
Romain Guycbb89e42009-06-08 15:52:54 -0700454
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700455 if (PROFILE_ROTATE) {
456 android.os.Debug.startMethodTracing("/sdcard/launcher-rotate");
457 }
458 return null;
459 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700460
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800461 private boolean acceptFilter() {
462 final InputMethodManager inputManager = (InputMethodManager)
463 getSystemService(Context.INPUT_METHOD_SERVICE);
464 return !inputManager.isFullscreenMode();
465 }
466
467 @Override
468 public boolean onKeyDown(int keyCode, KeyEvent event) {
469 boolean handled = super.onKeyDown(keyCode, event);
470 if (!handled && acceptFilter() && keyCode != KeyEvent.KEYCODE_ENTER) {
471 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
472 keyCode, event);
473 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700474 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700475 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700476 // showSearchDialog()
477 // If there are multiple keystrokes before the search dialog takes focus,
478 // onSearchRequested() will be called for every keystroke,
479 // but it is idempotent, so it's fine.
480 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800481 }
482 }
483
484 return handled;
485 }
486
Karl Rosaen138a0412009-04-23 19:00:21 -0700487 private String getTypedText() {
488 return mDefaultKeySsb.toString();
489 }
490
491 private void clearTypedText() {
492 mDefaultKeySsb.clear();
493 mDefaultKeySsb.clearSpans();
494 Selection.setSelection(mDefaultKeySsb, 0);
495 }
496
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800497 /**
498 * Restores the previous state, if it exists.
499 *
500 * @param savedState The previous state.
501 */
502 private void restoreState(Bundle savedState) {
503 if (savedState == null) {
504 return;
505 }
506
507 final int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
508 if (currentScreen > -1) {
509 mWorkspace.setCurrentScreen(currentScreen);
510 }
511
512 final int addScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
513 if (addScreen > -1) {
514 mAddItemCellInfo = new CellLayout.CellInfo();
515 final CellLayout.CellInfo addItemCellInfo = mAddItemCellInfo;
516 addItemCellInfo.valid = true;
517 addItemCellInfo.screen = addScreen;
518 addItemCellInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
519 addItemCellInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
520 addItemCellInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
521 addItemCellInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
522 addItemCellInfo.findVacantCellsFromOccupied(
523 savedState.getBooleanArray(RUNTIME_STATE_PENDING_ADD_OCCUPIED_CELLS),
524 savedState.getInt(RUNTIME_STATE_PENDING_ADD_COUNT_X),
525 savedState.getInt(RUNTIME_STATE_PENDING_ADD_COUNT_Y));
526 mRestoring = true;
527 }
528
529 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
530 if (renameFolder) {
531 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400532 mFolderInfo = mModel.getFolderById(this, mFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800533 mRestoring = true;
534 }
535 }
536
537 /**
538 * Finds all the views we need and configure them properly.
539 */
540 private void setupViews() {
Joe Onorato00acb122009-08-04 16:04:30 -0400541 DragController dragController = mDragController;
542
Romain Guyb1b69f52009-08-10 15:10:15 -0700543 DragLayer dragLayer = (DragLayer) findViewById(R.id.drag_layer);
Joe Onorato00acb122009-08-04 16:04:30 -0400544 dragLayer.setDragController(dragController);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800545
Joe Onorato7c312c12009-08-13 21:36:53 -0700546 mAllAppsGrid = (AllAppsView)dragLayer.findViewById(R.id.all_apps_view);
Joe Onorato6665c0f2009-09-02 15:27:24 -0700547 mAllAppsGrid.setLauncher(this);
Joe Onorato5162ea92009-09-03 09:39:42 -0700548 mAllAppsGrid.setDragController(dragController);
Joe Onorato85a02a82009-09-08 12:34:22 -0700549 mAllAppsGrid.setWillNotDraw(false); // We don't want a hole punched in our window.
Mike Cleronb6082fa02009-10-19 17:03:36 -0700550 // Manage focusability manually since this thing is always visible
551 mAllAppsGrid.setFocusable(false);
Joe Onorato7c312c12009-08-13 21:36:53 -0700552
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800553 mWorkspace = (Workspace) dragLayer.findViewById(R.id.workspace);
554 final Workspace workspace = mWorkspace;
555
Joe Onorato7c312c12009-08-13 21:36:53 -0700556 DeleteZone deleteZone = (DeleteZone) dragLayer.findViewById(R.id.delete_zone);
557 mDeleteZone = deleteZone;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800558
Joe Onorato7c312c12009-08-13 21:36:53 -0700559 mHandleView = (HandleView) findViewById(R.id.all_apps_button);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700560 mHandleView.setLauncher(this);
Joe Onorato7404ee42009-07-31 11:54:44 -0700561 mHandleView.setOnClickListener(this);
Romain Guy1fbc1c82009-11-09 20:43:08 -0800562
563 mPreviousView = (ImageView) dragLayer.findViewById(R.id.previous_screen);
564 mNextView = (ImageView) dragLayer.findViewById(R.id.next_screen);
565
566 Drawable previous = mPreviousView.getDrawable();
567 Drawable next = mNextView.getDrawable();
Romain Guy8a73c512009-11-09 19:19:59 -0800568 mWorkspace.setIndicators(previous, next);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800569
Romain Guy1fbc1c82009-11-09 20:43:08 -0800570 mPreviousView.setOnLongClickListener(this);
Romain Guy1fbc1c82009-11-09 20:43:08 -0800571 mNextView.setOnLongClickListener(this);
Romain Guy1fbc1c82009-11-09 20:43:08 -0800572
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800573 workspace.setOnLongClickListener(this);
Joe Onorato00acb122009-08-04 16:04:30 -0400574 workspace.setDragController(dragController);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800575 workspace.setLauncher(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800576
577 deleteZone.setLauncher(this);
Joe Onorato00acb122009-08-04 16:04:30 -0400578 deleteZone.setDragController(dragController);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700579 deleteZone.setHandle(mHandleView);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800580
Joe Onorato00acb122009-08-04 16:04:30 -0400581 dragController.setDragScoller(workspace);
582 dragController.setDragListener(deleteZone);
583 dragController.setScrollView(dragLayer);
Jason Samsfd22dac2009-09-20 17:24:16 -0700584
Joe Onorato00acb122009-08-04 16:04:30 -0400585 // The order here is bottom to top.
586 dragController.addDropTarget(workspace);
587 dragController.addDropTarget(deleteZone);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800588 }
589
Romain Guy8a73c512009-11-09 19:19:59 -0800590 @SuppressWarnings({"UnusedDeclaration"})
591 public void previousScreen(View v) {
592 mWorkspace.scrollLeft();
593 }
594
595 @SuppressWarnings({"UnusedDeclaration"})
596 public void nextScreen(View v) {
597 mWorkspace.scrollRight();
598 }
599
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800600 /**
601 * Creates a view representing a shortcut.
602 *
603 * @param info The data structure describing the shortcut.
604 *
605 * @return A View inflated from R.layout.application.
606 */
607 View createShortcut(ApplicationInfo info) {
608 return createShortcut(R.layout.application,
609 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentScreen()), info);
610 }
611
612 /**
613 * Creates a view representing a shortcut inflated from the specified resource.
614 *
615 * @param layoutResId The id of the XML layout used to create the shortcut.
616 * @param parent The group the shortcut belongs to.
617 * @param info The data structure describing the shortcut.
618 *
619 * @return A View inflated from layoutResId.
620 */
621 View createShortcut(int layoutResId, ViewGroup parent, ApplicationInfo info) {
622 TextView favorite = (TextView) mInflater.inflate(layoutResId, parent, false);
623
Joe Onorato5162ea92009-09-03 09:39:42 -0700624 if (info.icon == null) {
625 info.icon = AppInfoCache.getIconDrawable(getPackageManager(), info);
626 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800627 if (!info.filtered) {
Joe Onorato6665c0f2009-09-02 15:27:24 -0700628 info.icon = Utilities.createIconThumbnail(info.icon, this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800629 info.filtered = true;
630 }
631
632 favorite.setCompoundDrawablesWithIntrinsicBounds(null, info.icon, null, null);
633 favorite.setText(info.title);
634 favorite.setTag(info);
635 favorite.setOnClickListener(this);
636
637 return favorite;
638 }
639
640 /**
641 * Add an application shortcut to the workspace.
642 *
643 * @param data The intent describing the application.
644 * @param cellInfo The position on screen where to create the shortcut.
645 */
Joe Onorato9c1289c2009-08-17 11:03:03 -0400646 void completeAddApplication(Context context, Intent data, CellLayout.CellInfo cellInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800647 cellInfo.screen = mWorkspace.getCurrentScreen();
648 if (!findSingleSlot(cellInfo)) return;
649
Romain Guy73b979d2009-06-09 12:57:21 -0700650 final ApplicationInfo info = infoFromApplicationIntent(context, data);
651 if (info != null) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400652 mWorkspace.addApplicationShortcut(info, cellInfo, isWorkspaceLocked());
Romain Guy73b979d2009-06-09 12:57:21 -0700653 }
654 }
655
656 private static ApplicationInfo infoFromApplicationIntent(Context context, Intent data) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800657 ComponentName component = data.getComponent();
658 PackageManager packageManager = context.getPackageManager();
659 ActivityInfo activityInfo = null;
660 try {
661 activityInfo = packageManager.getActivityInfo(component, 0 /* no flags */);
662 } catch (NameNotFoundException e) {
Romain Guy73b979d2009-06-09 12:57:21 -0700663 e(LOG_TAG, "Couldn't find ActivityInfo for selected application", e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800664 }
Romain Guycbb89e42009-06-08 15:52:54 -0700665
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800666 if (activityInfo != null) {
667 ApplicationInfo itemInfo = new ApplicationInfo();
Romain Guycbb89e42009-06-08 15:52:54 -0700668
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800669 itemInfo.title = activityInfo.loadLabel(packageManager);
670 if (itemInfo.title == null) {
671 itemInfo.title = activityInfo.name;
672 }
Romain Guycbb89e42009-06-08 15:52:54 -0700673
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800674 itemInfo.setActivity(component, Intent.FLAG_ACTIVITY_NEW_TASK |
675 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
676 itemInfo.icon = activityInfo.loadIcon(packageManager);
677 itemInfo.container = ItemInfo.NO_ID;
678
Romain Guy73b979d2009-06-09 12:57:21 -0700679 return itemInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800680 }
Romain Guy73b979d2009-06-09 12:57:21 -0700681
682 return null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800683 }
Romain Guycbb89e42009-06-08 15:52:54 -0700684
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800685 /**
686 * Add a shortcut to the workspace.
687 *
688 * @param data The intent describing the shortcut.
689 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800690 */
Joe Onorato9c1289c2009-08-17 11:03:03 -0400691 private void completeAddShortcut(Intent data, CellLayout.CellInfo cellInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800692 cellInfo.screen = mWorkspace.getCurrentScreen();
693 if (!findSingleSlot(cellInfo)) return;
Romain Guycbb89e42009-06-08 15:52:54 -0700694
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800695 final ApplicationInfo info = addShortcut(this, data, cellInfo, false);
696
697 if (!mRestoring) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800698 final View view = createShortcut(info);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400699 mWorkspace.addInCurrentScreen(view, cellInfo.cellX, cellInfo.cellY, 1, 1,
700 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800701 }
702 }
703
Romain Guycbb89e42009-06-08 15:52:54 -0700704
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800705 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700706 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800707 *
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700708 * @param data The intent describing the appWidgetId.
709 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800710 */
Joe Onorato9c1289c2009-08-17 11:03:03 -0400711 private void completeAddAppWidget(Intent data, CellLayout.CellInfo cellInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800712 Bundle extras = data.getExtras();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700713 int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Romain Guycbb89e42009-06-08 15:52:54 -0700714
Romain Guy18042c82009-11-06 11:44:55 -0800715 if (LOGD) d(LOG_TAG, "dumping extras content=" + extras.toString());
Romain Guycbb89e42009-06-08 15:52:54 -0700716
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700717 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Romain Guycbb89e42009-06-08 15:52:54 -0700718
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700719 // Calculate the grid spans needed to fit this widget
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800720 CellLayout layout = (CellLayout) mWorkspace.getChildAt(cellInfo.screen);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700721 int[] spans = layout.rectToCell(appWidgetInfo.minWidth, appWidgetInfo.minHeight);
Romain Guycbb89e42009-06-08 15:52:54 -0700722
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800723 // Try finding open space on Launcher screen
724 final int[] xy = mCellCoordinates;
Romain Guy18042c82009-11-06 11:44:55 -0800725 if (!findSlot(cellInfo, xy, spans[0], spans[1])) {
726 if (appWidgetId != -1) mAppWidgetHost.deleteAppWidgetId(appWidgetId);
727 return;
728 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800729
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700730 // Build Launcher-specific widget info and save to database
731 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800732 launcherInfo.spanX = spans[0];
733 launcherInfo.spanY = spans[1];
Romain Guycbb89e42009-06-08 15:52:54 -0700734
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800735 LauncherModel.addItemToDatabase(this, launcherInfo,
736 LauncherSettings.Favorites.CONTAINER_DESKTOP,
737 mWorkspace.getCurrentScreen(), xy[0], xy[1], false);
738
739 if (!mRestoring) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400740 mDesktopItems.add(launcherInfo);
Romain Guycbb89e42009-06-08 15:52:54 -0700741
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800742 // Perform actual inflation because we're live
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700743 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -0700744
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700745 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800746 launcherInfo.hostView.setTag(launcherInfo);
Romain Guycbb89e42009-06-08 15:52:54 -0700747
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800748 mWorkspace.addInCurrentScreen(launcherInfo.hostView, xy[0], xy[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -0400749 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800750 }
751 }
Romain Guycbb89e42009-06-08 15:52:54 -0700752
Joe Onorato9c1289c2009-08-17 11:03:03 -0400753 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
754 mDesktopItems.remove(launcherInfo);
755 launcherInfo.hostView = null;
756 }
757
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700758 public LauncherAppWidgetHost getAppWidgetHost() {
759 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800760 }
Romain Guycbb89e42009-06-08 15:52:54 -0700761
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800762 static ApplicationInfo addShortcut(Context context, Intent data,
763 CellLayout.CellInfo cellInfo, boolean notify) {
764
Romain Guy73b979d2009-06-09 12:57:21 -0700765 final ApplicationInfo info = infoFromShortcutIntent(context, data);
766 LauncherModel.addItemToDatabase(context, info, LauncherSettings.Favorites.CONTAINER_DESKTOP,
767 cellInfo.screen, cellInfo.cellX, cellInfo.cellY, notify);
768
769 return info;
770 }
771
772 private static ApplicationInfo infoFromShortcutIntent(Context context, Intent data) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800773 Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT);
774 String name = data.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
775 Bitmap bitmap = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON);
776
777 Drawable icon = null;
778 boolean filtered = false;
779 boolean customIcon = false;
Romain Guy73b979d2009-06-09 12:57:21 -0700780 ShortcutIconResource iconResource = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800781
782 if (bitmap != null) {
783 icon = new FastBitmapDrawable(Utilities.createBitmapThumbnail(bitmap, context));
784 filtered = true;
785 customIcon = true;
786 } else {
787 Parcelable extra = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE);
Romain Guy73b979d2009-06-09 12:57:21 -0700788 if (extra != null && extra instanceof ShortcutIconResource) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800789 try {
Romain Guy73b979d2009-06-09 12:57:21 -0700790 iconResource = (ShortcutIconResource) extra;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800791 final PackageManager packageManager = context.getPackageManager();
792 Resources resources = packageManager.getResourcesForApplication(
793 iconResource.packageName);
794 final int id = resources.getIdentifier(iconResource.resourceName, null, null);
795 icon = resources.getDrawable(id);
796 } catch (Exception e) {
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700797 w(LOG_TAG, "Could not load shortcut icon: " + extra);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800798 }
799 }
800 }
801
802 if (icon == null) {
803 icon = context.getPackageManager().getDefaultActivityIcon();
804 }
805
806 final ApplicationInfo info = new ApplicationInfo();
807 info.icon = icon;
808 info.filtered = filtered;
809 info.title = name;
810 info.intent = intent;
811 info.customIcon = customIcon;
812 info.iconResource = iconResource;
813
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800814 return info;
815 }
816
817 @Override
818 protected void onNewIntent(Intent intent) {
819 super.onNewIntent(intent);
820
821 // Close the menu
822 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
823 getWindow().closeAllPanels();
Jason Samsfd22dac2009-09-20 17:24:16 -0700824
Joe Onorato742966b2009-10-07 10:26:17 -0700825 // Whatever we were doing is hereby canceled.
826 mWaitingForResult = false;
827
Mike LeBeau736cf282009-07-02 17:46:59 -0700828 // Set this flag so that onResume knows to close the search dialog if it's open,
829 // because this was a new intent (thus a press of 'home' or some such) rather than
830 // for example onResume being called when the user pressed the 'back' button.
831 mIsNewIntent = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800832
833 try {
834 dismissDialog(DIALOG_CREATE_SHORTCUT);
835 // Unlock the workspace if the dialog was showing
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800836 } catch (Exception e) {
837 // An exception is thrown if the dialog is not visible, which is fine
838 }
839
840 try {
841 dismissDialog(DIALOG_RENAME_FOLDER);
842 // Unlock the workspace if the dialog was showing
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800843 } catch (Exception e) {
844 // An exception is thrown if the dialog is not visible, which is fine
845 }
846
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800847 if ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT) !=
848 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT) {
Romain Guy73b979d2009-06-09 12:57:21 -0700849
Romain Guy94dabf12009-07-21 10:55:43 -0700850 if (!mWorkspace.isDefaultScreenShowing()) {
851 mWorkspace.moveToDefaultScreen();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800852 }
Romain Guy1dd3a072009-07-16 13:21:01 -0700853
Joe Onorato7bb17492009-09-24 17:51:01 -0700854 closeAllApps(true);
Romain Guy73b979d2009-06-09 12:57:21 -0700855
856 final View v = getWindow().peekDecorView();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800857 if (v != null && v.getWindowToken() != null) {
858 InputMethodManager imm = (InputMethodManager)getSystemService(
859 INPUT_METHOD_SERVICE);
860 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
861 }
862 } else {
Joe Onorato7bb17492009-09-24 17:51:01 -0700863 closeAllApps(false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800864 }
865 }
866 }
867
868 @Override
869 protected void onRestoreInstanceState(Bundle savedInstanceState) {
870 // Do not call super here
871 mSavedInstanceState = savedInstanceState;
872 }
873
874 @Override
875 protected void onSaveInstanceState(Bundle outState) {
876 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getCurrentScreen());
877
878 final ArrayList<Folder> folders = mWorkspace.getOpenFolders();
879 if (folders.size() > 0) {
880 final int count = folders.size();
881 long[] ids = new long[count];
882 for (int i = 0; i < count; i++) {
883 final FolderInfo info = folders.get(i).getInfo();
884 ids[i] = info.id;
885 }
886 outState.putLongArray(RUNTIME_STATE_USER_FOLDERS, ids);
887 } else {
888 super.onSaveInstanceState(outState);
889 }
890
Romain Guy3cf604f2009-06-16 13:12:53 -0700891 final boolean isConfigurationChange = getChangingConfigurations() != 0;
892
Romain Guy5a941392009-04-28 15:18:25 -0700893 // When the drawer is opened and we are saving the state because of a
894 // configuration change
Joe Onoratofb0ca672009-09-14 17:55:46 -0400895 // TODO should not do this if the drawer is currently closing.
896 if (isAllAppsVisible() && isConfigurationChange) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800897 outState.putBoolean(RUNTIME_STATE_ALL_APPS_FOLDER, true);
Romain Guy5a941392009-04-28 15:18:25 -0700898 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800899
900 if (mAddItemCellInfo != null && mAddItemCellInfo.valid && mWaitingForResult) {
901 final CellLayout.CellInfo addItemCellInfo = mAddItemCellInfo;
902 final CellLayout layout = (CellLayout) mWorkspace.getChildAt(addItemCellInfo.screen);
903
904 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, addItemCellInfo.screen);
905 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, addItemCellInfo.cellX);
906 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, addItemCellInfo.cellY);
907 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, addItemCellInfo.spanX);
908 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, addItemCellInfo.spanY);
909 outState.putInt(RUNTIME_STATE_PENDING_ADD_COUNT_X, layout.getCountX());
910 outState.putInt(RUNTIME_STATE_PENDING_ADD_COUNT_Y, layout.getCountY());
911 outState.putBooleanArray(RUNTIME_STATE_PENDING_ADD_OCCUPIED_CELLS,
912 layout.getOccupiedCells());
913 }
914
915 if (mFolderInfo != null && mWaitingForResult) {
916 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
917 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
918 }
919 }
920
921 @Override
922 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800923 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -0700924
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800925 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700926 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800927 } catch (NullPointerException ex) {
The Android Open Source Projectf96811c2009-03-18 17:39:48 -0700928 w(LOG_TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800929 }
930
931 TextKeyListener.getInstance().release();
932
Joe Onorato9c1289c2009-08-17 11:03:03 -0400933 mModel.stopLoader();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800934
Joe Onorato9c1289c2009-08-17 11:03:03 -0400935 unbindDesktopItems();
936 AppInfoCache.unbindDrawables();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800937
938 getContentResolver().unregisterContentObserver(mWidgetObserver);
Romain Guy1fbc1c82009-11-09 20:43:08 -0800939
940 dismissPreview(mPreviousView);
Romain Guya6abce82009-11-10 02:54:41 -0800941 dismissPreview(mNextView);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800942 }
943
944 @Override
945 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -0700946 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800947 super.startActivityForResult(intent, requestCode);
948 }
949
950 @Override
Romain Guycbb89e42009-06-08 15:52:54 -0700951 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800952 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700953
Joe Onorato7bb17492009-09-24 17:51:01 -0700954 closeAllApps(true);
Romain Guycbb89e42009-06-08 15:52:54 -0700955
Karl Rosaen138a0412009-04-23 19:00:21 -0700956 // Slide the search widget to the top, if it's on the current screen,
957 // otherwise show the search dialog immediately.
958 Search searchWidget = mWorkspace.findSearchWidgetOnCurrentScreen();
959 if (searchWidget == null) {
960 showSearchDialog(initialQuery, selectInitialQuery, appSearchData, globalSearch);
961 } else {
962 searchWidget.startSearch(initialQuery, selectInitialQuery, appSearchData, globalSearch);
963 // show the currently typed text in the search widget while sliding
964 searchWidget.setQuery(getTypedText());
965 }
966 }
Romain Guycbb89e42009-06-08 15:52:54 -0700967
Karl Rosaen138a0412009-04-23 19:00:21 -0700968 /**
969 * Show the search dialog immediately, without changing the search widget.
Romain Guy5a941392009-04-28 15:18:25 -0700970 *
971 * @see Activity#startSearch(String, boolean, android.os.Bundle, boolean)
Karl Rosaen138a0412009-04-23 19:00:21 -0700972 */
Romain Guycbb89e42009-06-08 15:52:54 -0700973 void showSearchDialog(String initialQuery, boolean selectInitialQuery,
Karl Rosaen138a0412009-04-23 19:00:21 -0700974 Bundle appSearchData, boolean globalSearch) {
Romain Guycbb89e42009-06-08 15:52:54 -0700975
Karl Rosaen138a0412009-04-23 19:00:21 -0700976 if (initialQuery == null) {
977 // Use any text typed in the launcher as the initial query
978 initialQuery = getTypedText();
979 clearTypedText();
980 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800981 if (appSearchData == null) {
982 appSearchData = new Bundle();
983 appSearchData.putString(SearchManager.SOURCE, "launcher-search");
984 }
Romain Guycbb89e42009-06-08 15:52:54 -0700985
Karl Rosaen138a0412009-04-23 19:00:21 -0700986 final SearchManager searchManager =
987 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
988
989 final Search searchWidget = mWorkspace.findSearchWidgetOnCurrentScreen();
990 if (searchWidget != null) {
991 // This gets called when the user leaves the search dialog to go back to
992 // the Launcher.
993 searchManager.setOnCancelListener(new SearchManager.OnCancelListener() {
994 public void onCancel() {
995 searchManager.setOnCancelListener(null);
Romain Guy5a941392009-04-28 15:18:25 -0700996 stopSearch();
Romain Guycbb89e42009-06-08 15:52:54 -0700997 }
Karl Rosaen138a0412009-04-23 19:00:21 -0700998 });
999 }
Romain Guycbb89e42009-06-08 15:52:54 -07001000
Karl Rosaen138a0412009-04-23 19:00:21 -07001001 searchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
Romain Guycbb89e42009-06-08 15:52:54 -07001002 appSearchData, globalSearch);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001003 }
1004
Karl Rosaen138a0412009-04-23 19:00:21 -07001005 /**
1006 * Cancel search dialog if it is open.
Karl Rosaen138a0412009-04-23 19:00:21 -07001007 */
Romain Guy5a941392009-04-28 15:18:25 -07001008 void stopSearch() {
Karl Rosaen138a0412009-04-23 19:00:21 -07001009 // Close search dialog
1010 SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);
Bjorn Bringert0879cef2009-07-08 12:38:25 +01001011 searchManager.stopSearch();
Karl Rosaen138a0412009-04-23 19:00:21 -07001012 // Restore search widget to its normal position
1013 Search searchWidget = mWorkspace.findSearchWidgetOnCurrentScreen();
1014 if (searchWidget != null) {
1015 searchWidget.stopSearch(false);
1016 }
1017 }
Romain Guycbb89e42009-06-08 15:52:54 -07001018
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001019 @Override
1020 public boolean onCreateOptionsMenu(Menu menu) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001021 if (isWorkspaceLocked()) {
1022 return false;
1023 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001024
1025 super.onCreateOptionsMenu(menu);
1026 menu.add(MENU_GROUP_ADD, MENU_ADD, 0, R.string.menu_add)
1027 .setIcon(android.R.drawable.ic_menu_add)
1028 .setAlphabeticShortcut('A');
1029 menu.add(0, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1030 .setIcon(android.R.drawable.ic_menu_gallery)
1031 .setAlphabeticShortcut('W');
1032 menu.add(0, MENU_SEARCH, 0, R.string.menu_search)
1033 .setIcon(android.R.drawable.ic_search_category_default)
1034 .setAlphabeticShortcut(SearchManager.MENU_KEY);
1035 menu.add(0, MENU_NOTIFICATIONS, 0, R.string.menu_notifications)
1036 .setIcon(com.android.internal.R.drawable.ic_menu_notifications)
1037 .setAlphabeticShortcut('N');
1038
1039 final Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
Romain Guy5a941392009-04-28 15:18:25 -07001040 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1041 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001042
1043 menu.add(0, MENU_SETTINGS, 0, R.string.menu_settings)
1044 .setIcon(android.R.drawable.ic_menu_preferences).setAlphabeticShortcut('P')
1045 .setIntent(settings);
1046
1047 return true;
1048 }
1049
1050 @Override
1051 public boolean onPrepareOptionsMenu(Menu menu) {
1052 super.onPrepareOptionsMenu(menu);
1053
1054 mMenuAddInfo = mWorkspace.findAllVacantCells(null);
1055 menu.setGroupEnabled(MENU_GROUP_ADD, mMenuAddInfo != null && mMenuAddInfo.valid);
1056
1057 return true;
1058 }
1059
1060 @Override
1061 public boolean onOptionsItemSelected(MenuItem item) {
1062 switch (item.getItemId()) {
1063 case MENU_ADD:
1064 addItems();
1065 return true;
1066 case MENU_WALLPAPER_SETTINGS:
1067 startWallpaper();
1068 return true;
1069 case MENU_SEARCH:
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001070 onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001071 return true;
1072 case MENU_NOTIFICATIONS:
1073 showNotifications();
1074 return true;
1075 }
1076
1077 return super.onOptionsItemSelected(item);
1078 }
Romain Guycbb89e42009-06-08 15:52:54 -07001079
Karl Rosaen138a0412009-04-23 19:00:21 -07001080 /**
1081 * Indicates that we want global search for this activity by setting the globalSearch
1082 * argument for {@link #startSearch} to true.
1083 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001084
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001085 @Override
1086 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001087 startSearch(null, false, null, true);
Karl Rosaen138a0412009-04-23 19:00:21 -07001088 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001089 }
1090
Joe Onorato9c1289c2009-08-17 11:03:03 -04001091 public boolean isWorkspaceLocked() {
1092 return mWorkspaceLoading || mWaitingForResult;
1093 }
1094
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001095 private void addItems() {
Joe Onoratoe6168662009-11-08 13:39:30 -05001096 closeAllApps(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001097 showAddDialog(mMenuAddInfo);
1098 }
1099
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001100 void addAppWidget(Intent data) {
1101 // TODO: catch bad widget exception when sent
1102 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001103
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001104 String customWidget = data.getStringExtra(EXTRA_CUSTOM_WIDGET);
1105 if (SEARCH_WIDGET.equals(customWidget)) {
1106 // We don't need this any more, since this isn't a real app widget.
1107 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
1108 // add the search widget
1109 addSearch();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001110 } else {
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001111 AppWidgetProviderInfo appWidget = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1112
1113 if (appWidget.configure != null) {
1114 // Launch over to configure widget, if needed
1115 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
1116 intent.setComponent(appWidget.configure);
1117 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1118
1119 startActivityForResult(intent, REQUEST_CREATE_APPWIDGET);
1120 } else {
1121 // Otherwise just add it
1122 onActivityResult(REQUEST_CREATE_APPWIDGET, Activity.RESULT_OK, data);
1123 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001124 }
1125 }
Romain Guycbb89e42009-06-08 15:52:54 -07001126
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001127 void addSearch() {
1128 final Widget info = Widget.makeSearch();
1129 final CellLayout.CellInfo cellInfo = mAddItemCellInfo;
Romain Guycbb89e42009-06-08 15:52:54 -07001130
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001131 final int[] xy = mCellCoordinates;
1132 final int spanX = info.spanX;
1133 final int spanY = info.spanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001134
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001135 if (!findSlot(cellInfo, xy, spanX, spanY)) return;
Romain Guycbb89e42009-06-08 15:52:54 -07001136
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001137 LauncherModel.addItemToDatabase(this, info, LauncherSettings.Favorites.CONTAINER_DESKTOP,
1138 mWorkspace.getCurrentScreen(), xy[0], xy[1], false);
Romain Guycbb89e42009-06-08 15:52:54 -07001139
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001140 final View view = mInflater.inflate(info.layoutResource, null);
1141 view.setTag(info);
Karl Rosaen138a0412009-04-23 19:00:21 -07001142 Search search = (Search) view.findViewById(R.id.widget_search);
1143 search.setLauncher(this);
Romain Guycbb89e42009-06-08 15:52:54 -07001144
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001145 mWorkspace.addInCurrentScreen(view, xy[0], xy[1], info.spanX, spanY);
1146 }
1147
Romain Guy73b979d2009-06-09 12:57:21 -07001148 void processShortcut(Intent intent, int requestCodeApplication, int requestCodeShortcut) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001149 // Handle case where user selected "Applications"
1150 String applicationName = getResources().getString(R.string.group_applications);
1151 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001152
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001153 if (applicationName != null && applicationName.equals(shortcutName)) {
1154 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1155 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001156
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001157 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1158 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Romain Guy73b979d2009-06-09 12:57:21 -07001159 startActivityForResult(pickIntent, requestCodeApplication);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001160 } else {
Romain Guy73b979d2009-06-09 12:57:21 -07001161 startActivityForResult(intent, requestCodeShortcut);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001162 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001163 }
1164
1165 void addLiveFolder(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001166 // Handle case where user selected "Folder"
Jeffrey Sharkeyc4bbd0a2009-03-24 22:47:52 -07001167 String folderName = getResources().getString(R.string.group_folder);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001168 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001169
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001170 if (folderName != null && folderName.equals(shortcutName)) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001171 addFolder();
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001172 } else {
1173 startActivityForResult(intent, REQUEST_CREATE_LIVE_FOLDER);
1174 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001175 }
1176
Joe Onorato9c1289c2009-08-17 11:03:03 -04001177 void addFolder() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001178 UserFolderInfo folderInfo = new UserFolderInfo();
1179 folderInfo.title = getText(R.string.folder_name);
1180
1181 CellLayout.CellInfo cellInfo = mAddItemCellInfo;
1182 cellInfo.screen = mWorkspace.getCurrentScreen();
1183 if (!findSingleSlot(cellInfo)) return;
1184
1185 // Update the model
Joe Onorato9c1289c2009-08-17 11:03:03 -04001186 LauncherModel.addItemToDatabase(this, folderInfo,
1187 LauncherSettings.Favorites.CONTAINER_DESKTOP,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001188 mWorkspace.getCurrentScreen(), cellInfo.cellX, cellInfo.cellY, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001189 mFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001190
1191 // Create the view
1192 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
1193 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentScreen()), folderInfo);
1194 mWorkspace.addInCurrentScreen(newFolder,
Joe Onorato9c1289c2009-08-17 11:03:03 -04001195 cellInfo.cellX, cellInfo.cellY, 1, 1, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001196 }
Romain Guycbb89e42009-06-08 15:52:54 -07001197
Joe Onorato9c1289c2009-08-17 11:03:03 -04001198 void removeFolder(FolderInfo folder) {
1199 mFolders.remove(folder.id);
1200 }
1201
1202 private void completeAddLiveFolder(Intent data, CellLayout.CellInfo cellInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001203 cellInfo.screen = mWorkspace.getCurrentScreen();
1204 if (!findSingleSlot(cellInfo)) return;
1205
1206 final LiveFolderInfo info = addLiveFolder(this, data, cellInfo, false);
1207
1208 if (!mRestoring) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001209 final View view = LiveFolderIcon.fromXml(R.layout.live_folder_icon, this,
1210 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentScreen()), info);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001211 mWorkspace.addInCurrentScreen(view, cellInfo.cellX, cellInfo.cellY, 1, 1,
1212 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001213 }
1214 }
1215
1216 static LiveFolderInfo addLiveFolder(Context context, Intent data,
1217 CellLayout.CellInfo cellInfo, boolean notify) {
1218
1219 Intent baseIntent = data.getParcelableExtra(LiveFolders.EXTRA_LIVE_FOLDER_BASE_INTENT);
1220 String name = data.getStringExtra(LiveFolders.EXTRA_LIVE_FOLDER_NAME);
1221
1222 Drawable icon = null;
1223 boolean filtered = false;
1224 Intent.ShortcutIconResource iconResource = null;
1225
1226 Parcelable extra = data.getParcelableExtra(LiveFolders.EXTRA_LIVE_FOLDER_ICON);
1227 if (extra != null && extra instanceof Intent.ShortcutIconResource) {
1228 try {
1229 iconResource = (Intent.ShortcutIconResource) extra;
1230 final PackageManager packageManager = context.getPackageManager();
1231 Resources resources = packageManager.getResourcesForApplication(
1232 iconResource.packageName);
1233 final int id = resources.getIdentifier(iconResource.resourceName, null, null);
1234 icon = resources.getDrawable(id);
1235 } catch (Exception e) {
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001236 w(LOG_TAG, "Could not load live folder icon: " + extra);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001237 }
1238 }
1239
1240 if (icon == null) {
1241 icon = context.getResources().getDrawable(R.drawable.ic_launcher_folder);
1242 }
1243
1244 final LiveFolderInfo info = new LiveFolderInfo();
1245 info.icon = icon;
1246 info.filtered = filtered;
1247 info.title = name;
1248 info.iconResource = iconResource;
1249 info.uri = data.getData();
1250 info.baseIntent = baseIntent;
1251 info.displayMode = data.getIntExtra(LiveFolders.EXTRA_LIVE_FOLDER_DISPLAY_MODE,
1252 LiveFolders.DISPLAY_MODE_GRID);
1253
1254 LauncherModel.addItemToDatabase(context, info, LauncherSettings.Favorites.CONTAINER_DESKTOP,
1255 cellInfo.screen, cellInfo.cellX, cellInfo.cellY, notify);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001256 mFolders.put(info.id, info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001257
1258 return info;
1259 }
1260
1261 private boolean findSingleSlot(CellLayout.CellInfo cellInfo) {
1262 final int[] xy = new int[2];
1263 if (findSlot(cellInfo, xy, 1, 1)) {
1264 cellInfo.cellX = xy[0];
1265 cellInfo.cellY = xy[1];
1266 return true;
1267 }
1268 return false;
1269 }
1270
1271 private boolean findSlot(CellLayout.CellInfo cellInfo, int[] xy, int spanX, int spanY) {
1272 if (!cellInfo.findCellForSpan(xy, spanX, spanY)) {
1273 boolean[] occupied = mSavedState != null ?
1274 mSavedState.getBooleanArray(RUNTIME_STATE_PENDING_ADD_OCCUPIED_CELLS) : null;
1275 cellInfo = mWorkspace.findAllVacantCells(occupied);
1276 if (!cellInfo.findCellForSpan(xy, spanX, spanY)) {
1277 Toast.makeText(this, getString(R.string.out_of_space), Toast.LENGTH_SHORT).show();
1278 return false;
1279 }
1280 }
1281 return true;
1282 }
1283
1284 private void showNotifications() {
1285 final StatusBarManager statusBar = (StatusBarManager) getSystemService(STATUS_BAR_SERVICE);
1286 if (statusBar != null) {
1287 statusBar.expand();
1288 }
1289 }
1290
1291 private void startWallpaper() {
Joe Onoratoe6168662009-11-08 13:39:30 -05001292 closeAllApps(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001293 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001294 Intent chooser = Intent.createChooser(pickWallpaper,
1295 getText(R.string.chooser_wallpaper));
1296 WallpaperManager wm = (WallpaperManager)
1297 getSystemService(Context.WALLPAPER_SERVICE);
1298 WallpaperInfo wi = wm.getWallpaperInfo();
1299 if (wi != null && wi.getSettingsActivity() != null) {
1300 LabeledIntent li = new LabeledIntent(getPackageName(),
1301 R.string.configure_wallpaper, 0);
1302 li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1303 chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1304 }
Mike Clerona0618e42009-10-22 13:55:21 -07001305 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001306 }
1307
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001308 private void registerContentObservers() {
1309 ContentResolver resolver = getContentResolver();
1310 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1311 true, mWidgetObserver);
1312 }
1313
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001314 @Override
1315 public boolean dispatchKeyEvent(KeyEvent event) {
1316 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1317 switch (event.getKeyCode()) {
1318 case KeyEvent.KEYCODE_BACK:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001319 return true;
1320 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001321 return true;
1322 }
1323 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1324 switch (event.getKeyCode()) {
1325 case KeyEvent.KEYCODE_BACK:
1326 if (!event.isCanceled()) {
1327 mWorkspace.dispatchKeyEvent(event);
Joe Onoratofb0ca672009-09-14 17:55:46 -04001328 if (isAllAppsVisible()) {
Joe Onorato7bb17492009-09-24 17:51:01 -07001329 closeAllApps(true);
Dianne Hackborn67800862009-07-24 17:15:20 -07001330 } else {
1331 closeFolder();
1332 }
Romain Guya6abce82009-11-10 02:54:41 -08001333 dismissPreview(mPreviousView);
1334 dismissPreview(mNextView);
Dianne Hackborn67800862009-07-24 17:15:20 -07001335 }
Dianne Hackborn67800862009-07-24 17:15:20 -07001336 return true;
1337 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001338 return true;
1339 }
1340 }
1341
1342 return super.dispatchKeyEvent(event);
1343 }
1344
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001345 private void closeFolder() {
1346 Folder folder = mWorkspace.getOpenFolder();
1347 if (folder != null) {
1348 closeFolder(folder);
1349 }
1350 }
1351
1352 void closeFolder(Folder folder) {
1353 folder.getInfo().opened = false;
1354 ViewGroup parent = (ViewGroup) folder.getParent();
1355 if (parent != null) {
1356 parent.removeView(folder);
Joe Onoratob6341e92009-11-02 10:41:48 -05001357 if (folder instanceof DropTarget) {
1358 // Live folders aren't DropTargets.
1359 mDragController.removeDropTarget((DropTarget)folder);
1360 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001361 }
1362 folder.onClose();
1363 }
1364
1365 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001366 * Re-listen when widgets are reset.
1367 */
1368 private void onAppWidgetReset() {
1369 mAppWidgetHost.startListening();
1370 }
1371
1372 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001373 * Go through the and disconnect any of the callbacks in the drawables and the views or we
1374 * leak the previous Home screen on orientation change.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001375 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04001376 private void unbindDesktopItems() {
1377 for (ItemInfo item: mDesktopItems) {
1378 item.unbind();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001379 }
1380 }
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001381
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001382 /**
1383 * Launches the intent referred by the clicked shortcut.
1384 *
1385 * @param v The view representing the clicked shortcut.
1386 */
1387 public void onClick(View v) {
1388 Object tag = v.getTag();
1389 if (tag instanceof ApplicationInfo) {
1390 // Open shortcut
1391 final Intent intent = ((ApplicationInfo) tag).intent;
1392 startActivitySafely(intent);
Joe Onoratoff3862d2009-10-07 10:35:51 -07001393 mExitingBecauseOfLaunch = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001394 } else if (tag instanceof FolderInfo) {
1395 handleFolderClick((FolderInfo) tag);
Joe Onorato7404ee42009-07-31 11:54:44 -07001396 } else if (v == mHandleView) {
Joe Onoratofb0ca672009-09-14 17:55:46 -04001397 Log.d(TAG, "onClick");
1398 if (isAllAppsVisible()) {
Joe Onorato7bb17492009-09-24 17:51:01 -07001399 closeAllApps(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001400 } else {
Jason Samsfd22dac2009-09-20 17:24:16 -07001401 showAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -07001402 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001403 }
1404 }
1405
1406 void startActivitySafely(Intent intent) {
1407 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1408 try {
1409 startActivity(intent);
1410 } catch (ActivityNotFoundException e) {
1411 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1412 } catch (SecurityException e) {
1413 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Romain Guy73b979d2009-06-09 12:57:21 -07001414 e(LOG_TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001415 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
1416 "or use the exported attribute for this activity.", e);
1417 }
1418 }
1419
1420 private void handleFolderClick(FolderInfo folderInfo) {
1421 if (!folderInfo.opened) {
1422 // Close any open folder
1423 closeFolder();
1424 // Open the requested folder
1425 openFolder(folderInfo);
1426 } else {
1427 // Find the open folder...
1428 Folder openFolder = mWorkspace.getFolderForTag(folderInfo);
1429 int folderScreen;
1430 if (openFolder != null) {
1431 folderScreen = mWorkspace.getScreenForView(openFolder);
1432 // .. and close it
1433 closeFolder(openFolder);
1434 if (folderScreen != mWorkspace.getCurrentScreen()) {
1435 // Close any folder open on the current screen
1436 closeFolder();
1437 // Pull the folder onto this screen
1438 openFolder(folderInfo);
1439 }
1440 }
1441 }
1442 }
1443
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001444 /**
1445 * Opens the user fodler described by the specified tag. The opening of the folder
1446 * is animated relative to the specified View. If the View is null, no animation
1447 * is played.
1448 *
1449 * @param folderInfo The FolderInfo describing the folder to open.
1450 */
1451 private void openFolder(FolderInfo folderInfo) {
1452 Folder openFolder;
1453
1454 if (folderInfo instanceof UserFolderInfo) {
1455 openFolder = UserFolder.fromXml(this);
1456 } else if (folderInfo instanceof LiveFolderInfo) {
Joe Onoratoa5902522009-07-30 13:37:37 -07001457 openFolder = com.android.launcher2.LiveFolder.fromXml(this, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001458 } else {
1459 return;
1460 }
1461
Joe Onorato00acb122009-08-04 16:04:30 -04001462 openFolder.setDragController(mDragController);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001463 openFolder.setLauncher(this);
1464
1465 openFolder.bind(folderInfo);
1466 folderInfo.opened = true;
1467
1468 mWorkspace.addInScreen(openFolder, folderInfo.screen, 0, 0, 4, 4);
1469 openFolder.onOpen();
1470 }
1471
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001472 public boolean onLongClick(View v) {
Romain Guy1fbc1c82009-11-09 20:43:08 -08001473 switch (v.getId()) {
1474 case R.id.previous_screen:
1475 showPreviousPreview(v);
1476 return true;
1477 case R.id.next_screen:
1478 showNextPreview(v);
1479 return true;
1480 }
1481
Joe Onorato9c1289c2009-08-17 11:03:03 -04001482 if (isWorkspaceLocked()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001483 return false;
1484 }
1485
1486 if (!(v instanceof CellLayout)) {
1487 v = (View) v.getParent();
1488 }
1489
1490 CellLayout.CellInfo cellInfo = (CellLayout.CellInfo) v.getTag();
1491
1492 // This happens when long clicking an item with the dpad/trackball
1493 if (cellInfo == null) {
1494 return true;
1495 }
1496
1497 if (mWorkspace.allowLongPress()) {
1498 if (cellInfo.cell == null) {
1499 if (cellInfo.valid) {
1500 // User long pressed on empty space
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001501 mWorkspace.setAllowLongPress(false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001502 showAddDialog(cellInfo);
1503 }
1504 } else {
1505 if (!(cellInfo.cell instanceof Folder)) {
1506 // User long pressed on an item
1507 mWorkspace.startDrag(cellInfo);
1508 }
1509 }
1510 }
1511 return true;
1512 }
1513
Romain Guye6b8e2f2009-11-10 11:56:55 -08001514 @SuppressWarnings({"unchecked"})
Romain Guy1fbc1c82009-11-09 20:43:08 -08001515 private void dismissPreview(View v) {
1516 PopupWindow window = (PopupWindow) v.getTag();
1517 if (window != null) {
Romain Guya6abce82009-11-10 02:54:41 -08001518 window.setOnDismissListener(null);
Romain Guy1fbc1c82009-11-09 20:43:08 -08001519 window.dismiss();
Romain Guye6b8e2f2009-11-10 11:56:55 -08001520
1521 ViewGroup group = (ViewGroup) v.getTag(R.id.workspace);
1522 int count = group.getChildCount();
1523 for (int i = 0; i < count; i++) {
1524 ((ImageView) group.getChildAt(i)).setImageDrawable(null);
1525 }
1526
1527 ArrayList<Bitmap> bitmaps = (ArrayList<Bitmap>) v.getTag(R.id.icon);
1528 for (Bitmap bitmap : bitmaps) bitmap.recycle();
Romain Guy1fbc1c82009-11-09 20:43:08 -08001529
1530 v.setTag(R.id.workspace, null);
1531 v.setTag(R.id.icon, null);
1532 }
1533 v.setTag(null);
1534 }
1535
1536 private void showPreviousPreview(View anchor) {
1537 int current = mWorkspace.getCurrentScreen();
1538 if (current <= 0) return;
1539
Romain Guya6abce82009-11-10 02:54:41 -08001540 showPreviews(anchor, 0, current);
Romain Guy1fbc1c82009-11-09 20:43:08 -08001541 }
1542
1543 private void showNextPreview(View anchor) {
1544 int current = mWorkspace.getCurrentScreen();
1545 if (current >= mWorkspace.getChildCount() - 1) return;
1546
Romain Guya6abce82009-11-10 02:54:41 -08001547 showPreviews(anchor, current + 1, mWorkspace.getChildCount());
Romain Guy1fbc1c82009-11-09 20:43:08 -08001548 }
1549
Romain Guya6abce82009-11-10 02:54:41 -08001550 @Override
1551 public void onWindowFocusChanged(boolean hasFocus) {
1552 super.onWindowFocusChanged(hasFocus);
Romain Guy1fbc1c82009-11-09 20:43:08 -08001553
Romain Guya6abce82009-11-10 02:54:41 -08001554 if (!hasFocus) {
1555 dismissPreview(mPreviousView);
1556 dismissPreview(mNextView);
1557 }
1558 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08001559
Romain Guya6abce82009-11-10 02:54:41 -08001560 private void showPreviews(final View anchor, int start, int end) {
Romain Guy1fbc1c82009-11-09 20:43:08 -08001561 Drawable d = getResources().getDrawable(R.drawable.preview_popup);
Romain Guy1fbc1c82009-11-09 20:43:08 -08001562
Romain Guya6abce82009-11-10 02:54:41 -08001563 Workspace workspace = mWorkspace;
1564 CellLayout cell = ((CellLayout) workspace.getChildAt(start));
1565
1566 float max = workspace.getChildCount() - 1;
Romain Guye6b8e2f2009-11-10 11:56:55 -08001567
1568 Rect r = new Rect();
1569 d.getPadding(r);
1570 int extraW = (int) ((r.left + r.right) * max);
1571 int extraH = r.top + r.bottom;
Romain Guya6abce82009-11-10 02:54:41 -08001572
1573 int aW = cell.getWidth() - extraW;
1574 float w = aW / max;
1575
1576 int width = cell.getWidth();
1577 int height = cell.getHeight();
1578 int x = cell.getLeftPadding();
1579 int y = cell.getTopPadding();
1580 width -= (x + cell.getRightPadding());
1581 height -= (y + cell.getBottomPadding());
1582
1583 float scale = w / width;
1584
1585 int count = end - start;
1586
1587 final float sWidth = width * scale;
1588 float sHeight = height * scale;
1589
Romain Guye6b8e2f2009-11-10 11:56:55 -08001590 LinearLayout preview = new LinearLayout(this);
Romain Guya6abce82009-11-10 02:54:41 -08001591
Romain Guye6b8e2f2009-11-10 11:56:55 -08001592 PreviewTouchHandler handler = new PreviewTouchHandler(anchor);
1593 ArrayList<Bitmap> bitmaps = new ArrayList<Bitmap>(count);
Romain Guya6abce82009-11-10 02:54:41 -08001594
1595 for (int i = start; i < end; i++) {
Romain Guye6b8e2f2009-11-10 11:56:55 -08001596 ImageView image = new ImageView(this);
Romain Guya6abce82009-11-10 02:54:41 -08001597 cell = (CellLayout) workspace.getChildAt(i);
1598
Romain Guye6b8e2f2009-11-10 11:56:55 -08001599 Bitmap bitmap = Bitmap.createBitmap((int) sWidth, (int) sHeight,
1600 Bitmap.Config.ARGB_8888);
1601
1602 Canvas c = new Canvas(bitmap);
Romain Guya6abce82009-11-10 02:54:41 -08001603 c.scale(scale, scale);
1604 c.translate(-cell.getLeftPadding(), -cell.getTopPadding());
1605 cell.dispatchDraw(c);
Romain Guya6abce82009-11-10 02:54:41 -08001606
Romain Guye6b8e2f2009-11-10 11:56:55 -08001607 image.setBackgroundDrawable(d);
1608 image.setImageBitmap(bitmap);
1609 image.setTag(i);
1610 image.setOnClickListener(handler);
1611 bitmaps.add(bitmap);
1612
1613 preview.addView(image,
1614 ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
Romain Guya6abce82009-11-10 02:54:41 -08001615 }
Romain Guye6b8e2f2009-11-10 11:56:55 -08001616
1617 PopupWindow p = new PopupWindow(this);
1618 p.setContentView(preview);
1619 p.setWidth((int) (sWidth * count + extraW));
1620 p.setHeight((int) (sHeight + extraH));
1621 p.setAnimationStyle(R.style.AnimationPreview);
1622 p.setOutsideTouchable(true);
Romain Guyff0c2e22009-11-10 12:09:59 -08001623 p.setBackgroundDrawable(new ColorDrawable(0));
Romain Guye6b8e2f2009-11-10 11:56:55 -08001624 p.showAsDropDown(anchor, 0, 0);
Romain Guya6abce82009-11-10 02:54:41 -08001625
Romain Guye6b8e2f2009-11-10 11:56:55 -08001626 p.setOnDismissListener(new PopupWindow.OnDismissListener() {
1627 public void onDismiss() {
1628 dismissPreview(anchor);
1629 }
1630 });
Romain Guy1fbc1c82009-11-09 20:43:08 -08001631
1632 anchor.setTag(p);
1633 anchor.setTag(R.id.workspace, preview);
Romain Guye6b8e2f2009-11-10 11:56:55 -08001634 anchor.setTag(R.id.icon, bitmaps);
Romain Guy1fbc1c82009-11-09 20:43:08 -08001635 }
1636
Romain Guye6b8e2f2009-11-10 11:56:55 -08001637 class PreviewTouchHandler implements View.OnClickListener {
Romain Guya6abce82009-11-10 02:54:41 -08001638 private final View mAnchor;
Romain Guya6abce82009-11-10 02:54:41 -08001639
Romain Guye6b8e2f2009-11-10 11:56:55 -08001640 public PreviewTouchHandler(View anchor) {
Romain Guya6abce82009-11-10 02:54:41 -08001641 mAnchor = anchor;
Romain Guya6abce82009-11-10 02:54:41 -08001642 }
1643
1644 public void onClick(View v) {
Romain Guye6b8e2f2009-11-10 11:56:55 -08001645 mWorkspace.snapToScreen((Integer) v.getTag());
Romain Guya6abce82009-11-10 02:54:41 -08001646 dismissPreview(mAnchor);
1647 }
1648 }
1649
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001650 View getDrawerHandle() {
1651 return mHandleView;
1652 }
1653
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001654 Workspace getWorkspace() {
1655 return mWorkspace;
1656 }
1657
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001658 @Override
1659 protected Dialog onCreateDialog(int id) {
1660 switch (id) {
1661 case DIALOG_CREATE_SHORTCUT:
1662 return new CreateShortcut().createDialog();
1663 case DIALOG_RENAME_FOLDER:
1664 return new RenameFolder().createDialog();
1665 }
1666
1667 return super.onCreateDialog(id);
1668 }
1669
1670 @Override
1671 protected void onPrepareDialog(int id, Dialog dialog) {
1672 switch (id) {
1673 case DIALOG_CREATE_SHORTCUT:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001674 break;
1675 case DIALOG_RENAME_FOLDER:
Romain Guy7b4ef332009-07-14 13:58:08 -07001676 if (mFolderInfo != null) {
1677 EditText input = (EditText) dialog.findViewById(R.id.folder_name);
1678 final CharSequence text = mFolderInfo.title;
1679 input.setText(text);
1680 input.setSelection(0, text.length());
1681 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001682 break;
1683 }
1684 }
1685
1686 void showRenameDialog(FolderInfo info) {
1687 mFolderInfo = info;
1688 mWaitingForResult = true;
1689 showDialog(DIALOG_RENAME_FOLDER);
1690 }
1691
1692 private void showAddDialog(CellLayout.CellInfo cellInfo) {
1693 mAddItemCellInfo = cellInfo;
1694 mWaitingForResult = true;
1695 showDialog(DIALOG_CREATE_SHORTCUT);
1696 }
1697
Romain Guy73b979d2009-06-09 12:57:21 -07001698 private void pickShortcut(int requestCode, int title) {
1699 Bundle bundle = new Bundle();
1700
1701 ArrayList<String> shortcutNames = new ArrayList<String>();
1702 shortcutNames.add(getString(R.string.group_applications));
1703 bundle.putStringArrayList(Intent.EXTRA_SHORTCUT_NAME, shortcutNames);
1704
1705 ArrayList<ShortcutIconResource> shortcutIcons = new ArrayList<ShortcutIconResource>();
1706 shortcutIcons.add(ShortcutIconResource.fromContext(Launcher.this,
1707 R.drawable.ic_launcher_application));
1708 bundle.putParcelableArrayList(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, shortcutIcons);
1709
1710 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1711 pickIntent.putExtra(Intent.EXTRA_INTENT, new Intent(Intent.ACTION_CREATE_SHORTCUT));
1712 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(title));
1713 pickIntent.putExtras(bundle);
1714
1715 startActivityForResult(pickIntent, requestCode);
1716 }
1717
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001718 private class RenameFolder {
1719 private EditText mInput;
1720
1721 Dialog createDialog() {
1722 mWaitingForResult = true;
1723 final View layout = View.inflate(Launcher.this, R.layout.rename_folder, null);
1724 mInput = (EditText) layout.findViewById(R.id.folder_name);
1725
1726 AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
1727 builder.setIcon(0);
1728 builder.setTitle(getString(R.string.rename_folder_title));
1729 builder.setCancelable(true);
1730 builder.setOnCancelListener(new Dialog.OnCancelListener() {
1731 public void onCancel(DialogInterface dialog) {
1732 cleanup();
1733 }
1734 });
1735 builder.setNegativeButton(getString(R.string.cancel_action),
1736 new Dialog.OnClickListener() {
1737 public void onClick(DialogInterface dialog, int which) {
1738 cleanup();
1739 }
1740 }
1741 );
1742 builder.setPositiveButton(getString(R.string.rename_action),
1743 new Dialog.OnClickListener() {
1744 public void onClick(DialogInterface dialog, int which) {
1745 changeFolderName();
1746 }
1747 }
1748 );
1749 builder.setView(layout);
Romain Guy7b4ef332009-07-14 13:58:08 -07001750
1751 final AlertDialog dialog = builder.create();
1752 dialog.setOnShowListener(new DialogInterface.OnShowListener() {
1753 public void onShow(DialogInterface dialog) {
Joe Onoratod753b422009-11-08 13:31:11 -05001754 mInput.requestFocus();
1755 InputMethodManager inputManager = (InputMethodManager)
1756 getSystemService(Context.INPUT_METHOD_SERVICE);
1757 inputManager.showSoftInput(mInput, 0);
Romain Guy7b4ef332009-07-14 13:58:08 -07001758 }
1759 });
1760
1761 return dialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001762 }
1763
1764 private void changeFolderName() {
1765 final String name = mInput.getText().toString();
1766 if (!TextUtils.isEmpty(name)) {
1767 // Make sure we have the right folder info
Joe Onorato9c1289c2009-08-17 11:03:03 -04001768 mFolderInfo = mFolders.get(mFolderInfo.id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001769 mFolderInfo.title = name;
1770 LauncherModel.updateItemInDatabase(Launcher.this, mFolderInfo);
1771
Joe Onorato9c1289c2009-08-17 11:03:03 -04001772 if (mWorkspaceLoading) {
Joe Onorato7c312c12009-08-13 21:36:53 -07001773 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001774 mModel.setWorkspaceDirty();
1775 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001776 } else {
1777 final FolderIcon folderIcon = (FolderIcon)
1778 mWorkspace.getViewForTag(mFolderInfo);
1779 if (folderIcon != null) {
1780 folderIcon.setText(name);
1781 getWorkspace().requestLayout();
1782 } else {
Joe Onorato7c312c12009-08-13 21:36:53 -07001783 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04001784 mModel.setWorkspaceDirty();
1785 mWorkspaceLoading = true;
1786 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001787 }
1788 }
1789 }
1790 cleanup();
1791 }
1792
1793 private void cleanup() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001794 dismissDialog(DIALOG_RENAME_FOLDER);
1795 mWaitingForResult = false;
1796 mFolderInfo = null;
1797 }
1798 }
1799
Joe Onoratofb0ca672009-09-14 17:55:46 -04001800 boolean isAllAppsVisible() {
Joe Onorato7bb17492009-09-24 17:51:01 -07001801 return mAllAppsGrid.isVisible();
Joe Onoratofb0ca672009-09-14 17:55:46 -04001802 }
1803
Jason Samsfd22dac2009-09-20 17:24:16 -07001804 void showAllApps() {
Jason Sams12c14a82009-10-06 14:33:15 -07001805 mAllAppsGrid.zoom(1.0f);
Joe Onorato7bb17492009-09-24 17:51:01 -07001806 //mWorkspace.hide();
Jason Samsfd22dac2009-09-20 17:24:16 -07001807
Mike Cleronb6082fa02009-10-19 17:03:36 -07001808 mAllAppsGrid.setFocusable(true);
Mike Clerona0618e42009-10-22 13:55:21 -07001809 mAllAppsGrid.requestFocus();
Mike Cleronb6082fa02009-10-19 17:03:36 -07001810
Joe Onorato7c312c12009-08-13 21:36:53 -07001811 // TODO: fade these two too
1812 mDeleteZone.setVisibility(View.GONE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04001813 //mHandleView.setVisibility(View.GONE);
Joe Onorato00acb122009-08-04 16:04:30 -04001814 }
1815
Joe Onorato7bb17492009-09-24 17:51:01 -07001816 void closeAllApps(boolean animated) {
Joe Onoratofb0ca672009-09-14 17:55:46 -04001817 if (mAllAppsGrid.isVisible()) {
Jason Sams12c14a82009-10-06 14:33:15 -07001818 mAllAppsGrid.zoom(0.0f);
Mike Cleronb6082fa02009-10-19 17:03:36 -07001819 mAllAppsGrid.setFocusable(false);
Joe Onoratoe77c08d2009-08-01 00:01:20 -07001820 mWorkspace.getChildAt(mWorkspace.getCurrentScreen()).requestFocus();
Joe Onorato7c312c12009-08-13 21:36:53 -07001821
Mike Cleronb6082fa02009-10-19 17:03:36 -07001822
Joe Onorato7c312c12009-08-13 21:36:53 -07001823 // TODO: fade these two too
Joe Onoratofb0ca672009-09-14 17:55:46 -04001824 /*
Joe Onorato7c312c12009-08-13 21:36:53 -07001825 mDeleteZone.setVisibility(View.VISIBLE);
1826 mHandleView.setVisibility(View.VISIBLE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04001827 */
Joe Onoratoe77c08d2009-08-01 00:01:20 -07001828 }
Joe Onorato7404ee42009-07-31 11:54:44 -07001829 }
1830
Joe Onorato7c312c12009-08-13 21:36:53 -07001831 void lockAllApps() {
1832 // TODO
1833 }
1834
1835 void unlockAllApps() {
1836 // TODO
1837 }
1838
Joe Onorato7404ee42009-07-31 11:54:44 -07001839 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001840 * Displays the shortcut creation dialog and launches, if necessary, the
1841 * appropriate activity.
1842 */
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001843 private class CreateShortcut implements DialogInterface.OnClickListener,
Romain Guy7b4ef332009-07-14 13:58:08 -07001844 DialogInterface.OnCancelListener, DialogInterface.OnDismissListener,
1845 DialogInterface.OnShowListener {
1846
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001847 private AddAdapter mAdapter;
Romain Guy9ffb5432009-03-24 21:04:15 -07001848
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001849 Dialog createDialog() {
1850 mWaitingForResult = true;
Romain Guycbb89e42009-06-08 15:52:54 -07001851
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001852 mAdapter = new AddAdapter(Launcher.this);
Romain Guycbb89e42009-06-08 15:52:54 -07001853
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001854 final AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
1855 builder.setTitle(getString(R.string.menu_item_add_item));
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001856 builder.setAdapter(mAdapter, this);
Romain Guycbb89e42009-06-08 15:52:54 -07001857
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001858 builder.setInverseBackgroundForced(true);
1859
1860 AlertDialog dialog = builder.create();
1861 dialog.setOnCancelListener(this);
Romain Guycbb89e42009-06-08 15:52:54 -07001862 dialog.setOnDismissListener(this);
Romain Guy7b4ef332009-07-14 13:58:08 -07001863 dialog.setOnShowListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001864
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001865 return dialog;
1866 }
1867
1868 public void onCancel(DialogInterface dialog) {
1869 mWaitingForResult = false;
1870 cleanup();
1871 }
1872
Romain Guycbb89e42009-06-08 15:52:54 -07001873 public void onDismiss(DialogInterface dialog) {
Romain Guycbb89e42009-06-08 15:52:54 -07001874 }
1875
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001876 private void cleanup() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001877 dismissDialog(DIALOG_CREATE_SHORTCUT);
1878 }
1879
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001880 /**
1881 * Handle the action clicked in the "Add to home" dialog.
1882 */
1883 public void onClick(DialogInterface dialog, int which) {
1884 Resources res = getResources();
1885 cleanup();
Romain Guycbb89e42009-06-08 15:52:54 -07001886
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001887 switch (which) {
1888 case AddAdapter.ITEM_SHORTCUT: {
1889 // Insert extra item to handle picking application
Romain Guy73b979d2009-06-09 12:57:21 -07001890 pickShortcut(REQUEST_PICK_SHORTCUT, R.string.title_select_shortcut);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001891 break;
1892 }
Romain Guycbb89e42009-06-08 15:52:54 -07001893
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001894 case AddAdapter.ITEM_APPWIDGET: {
1895 int appWidgetId = Launcher.this.mAppWidgetHost.allocateAppWidgetId();
Romain Guycbb89e42009-06-08 15:52:54 -07001896
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001897 Intent pickIntent = new Intent(AppWidgetManager.ACTION_APPWIDGET_PICK);
1898 pickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1899 // add the search widget
1900 ArrayList<AppWidgetProviderInfo> customInfo =
1901 new ArrayList<AppWidgetProviderInfo>();
1902 AppWidgetProviderInfo info = new AppWidgetProviderInfo();
1903 info.provider = new ComponentName(getPackageName(), "XXX.YYY");
1904 info.label = getString(R.string.group_search);
1905 info.icon = R.drawable.ic_search_widget;
1906 customInfo.add(info);
1907 pickIntent.putParcelableArrayListExtra(
1908 AppWidgetManager.EXTRA_CUSTOM_INFO, customInfo);
1909 ArrayList<Bundle> customExtras = new ArrayList<Bundle>();
1910 Bundle b = new Bundle();
1911 b.putString(EXTRA_CUSTOM_WIDGET, SEARCH_WIDGET);
1912 customExtras.add(b);
1913 pickIntent.putParcelableArrayListExtra(
1914 AppWidgetManager.EXTRA_CUSTOM_EXTRAS, customExtras);
1915 // start the pick activity
1916 startActivityForResult(pickIntent, REQUEST_PICK_APPWIDGET);
1917 break;
1918 }
Romain Guycbb89e42009-06-08 15:52:54 -07001919
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001920 case AddAdapter.ITEM_LIVE_FOLDER: {
1921 // Insert extra item to handle inserting folder
1922 Bundle bundle = new Bundle();
Romain Guycbb89e42009-06-08 15:52:54 -07001923
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001924 ArrayList<String> shortcutNames = new ArrayList<String>();
1925 shortcutNames.add(res.getString(R.string.group_folder));
1926 bundle.putStringArrayList(Intent.EXTRA_SHORTCUT_NAME, shortcutNames);
Romain Guycbb89e42009-06-08 15:52:54 -07001927
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001928 ArrayList<ShortcutIconResource> shortcutIcons =
1929 new ArrayList<ShortcutIconResource>();
1930 shortcutIcons.add(ShortcutIconResource.fromContext(Launcher.this,
1931 R.drawable.ic_launcher_folder));
1932 bundle.putParcelableArrayList(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, shortcutIcons);
1933
1934 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1935 pickIntent.putExtra(Intent.EXTRA_INTENT,
1936 new Intent(LiveFolders.ACTION_CREATE_LIVE_FOLDER));
1937 pickIntent.putExtra(Intent.EXTRA_TITLE,
1938 getText(R.string.title_select_live_folder));
1939 pickIntent.putExtras(bundle);
Romain Guycbb89e42009-06-08 15:52:54 -07001940
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001941 startActivityForResult(pickIntent, REQUEST_PICK_LIVE_FOLDER);
1942 break;
1943 }
1944
1945 case AddAdapter.ITEM_WALLPAPER: {
1946 startWallpaper();
1947 break;
1948 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001949 }
1950 }
Romain Guy7b4ef332009-07-14 13:58:08 -07001951
1952 public void onShow(DialogInterface dialog) {
Romain Guy7b4ef332009-07-14 13:58:08 -07001953 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001954 }
1955
1956 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001957 * Receives notifications whenever the appwidgets are reset.
1958 */
1959 private class AppWidgetResetObserver extends ContentObserver {
1960 public AppWidgetResetObserver() {
1961 super(new Handler());
1962 }
1963
1964 @Override
1965 public void onChange(boolean selfChange) {
1966 onAppWidgetReset();
1967 }
1968 }
1969
1970 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001971 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001972 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04001973 public int getCurrentWorkspaceScreen() {
1974 return mWorkspace.getCurrentScreen();
1975 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001976
Joe Onorato9c1289c2009-08-17 11:03:03 -04001977 /**
1978 * Refreshes the shortcuts shown on the workspace.
1979 *
1980 * Implementation of the method from LauncherModel.Callbacks.
1981 */
1982 public void startBinding() {
1983 final Workspace workspace = mWorkspace;
1984 int count = workspace.getChildCount();
1985 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04001986 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Joe Onorato9c1289c2009-08-17 11:03:03 -04001987 ((ViewGroup) workspace.getChildAt(i)).removeAllViewsInLayout();
1988 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001989
Joe Onorato9c1289c2009-08-17 11:03:03 -04001990 if (DEBUG_USER_INTERFACE) {
1991 android.widget.Button finishButton = new android.widget.Button(this);
1992 finishButton.setText("Finish");
1993 workspace.addInScreen(finishButton, 1, 0, 0, 1, 1);
1994
1995 finishButton.setOnClickListener(new android.widget.Button.OnClickListener() {
1996 public void onClick(View v) {
1997 finish();
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07001998 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04001999 });
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002000 }
2001 }
2002
2003 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002004 * Bind the items start-end from the list.
2005 *
2006 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002007 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04002008 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
2009
2010 final Workspace workspace = mWorkspace;
2011
2012 for (int i=start; i<end; i++) {
2013 final ItemInfo item = shortcuts.get(i);
2014 mDesktopItems.add(item);
2015 switch (item.itemType) {
2016 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
2017 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2018 final View shortcut = createShortcut((ApplicationInfo) item);
2019 workspace.addInScreen(shortcut, item.screen, item.cellX, item.cellY, 1, 1,
2020 false);
2021 break;
2022 case LauncherSettings.Favorites.ITEM_TYPE_USER_FOLDER:
2023 final FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
2024 (ViewGroup) workspace.getChildAt(workspace.getCurrentScreen()),
2025 (UserFolderInfo) item);
2026 workspace.addInScreen(newFolder, item.screen, item.cellX, item.cellY, 1, 1,
2027 false);
2028 break;
2029 case LauncherSettings.Favorites.ITEM_TYPE_LIVE_FOLDER:
2030 final FolderIcon newLiveFolder = LiveFolderIcon.fromXml(
2031 R.layout.live_folder_icon, this,
2032 (ViewGroup) workspace.getChildAt(workspace.getCurrentScreen()),
2033 (LiveFolderInfo) item);
2034 workspace.addInScreen(newLiveFolder, item.screen, item.cellX, item.cellY, 1, 1,
2035 false);
2036 break;
2037 case LauncherSettings.Favorites.ITEM_TYPE_WIDGET_SEARCH:
2038 final int screen = workspace.getCurrentScreen();
2039 final View view = mInflater.inflate(R.layout.widget_search,
2040 (ViewGroup) workspace.getChildAt(screen), false);
2041
2042 Search search = (Search) view.findViewById(R.id.widget_search);
2043 search.setLauncher(this);
2044
2045 final Widget widget = (Widget) item;
2046 view.setTag(widget);
2047
2048 workspace.addWidget(view, widget, false);
2049 break;
2050 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002051 }
2052
Joe Onorato9c1289c2009-08-17 11:03:03 -04002053 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002054 }
2055
Joe Onorato9c1289c2009-08-17 11:03:03 -04002056 /**
2057 * Implementation of the method from LauncherModel.Callbacks.
2058 */
Joe Onoratoad72e172009-11-06 16:25:04 -05002059 public void bindFolders(HashMap<Long, FolderInfo> folders) {
2060 mFolders.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002061 mFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002062 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002063
2064 /**
2065 * Add the views for a widget to the workspace.
2066 *
2067 * Implementation of the method from LauncherModel.Callbacks.
2068 */
2069 public void bindAppWidget(LauncherAppWidgetInfo item) {
2070 final Workspace workspace = mWorkspace;
2071
2072 final int appWidgetId = item.appWidgetId;
2073 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
2074 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
2075
Joe Onorato9c1289c2009-08-17 11:03:03 -04002076 item.hostView.setAppWidget(appWidgetId, appWidgetInfo);
2077 item.hostView.setTag(item);
2078
2079 workspace.addInScreen(item.hostView, item.screen, item.cellX,
2080 item.cellY, item.spanX, item.spanY, false);
2081
2082 workspace.requestLayout();
2083
2084 mDesktopItems.add(item);
2085 }
2086
2087 /**
2088 * Callback saying that there aren't any more items to bind.
2089 *
2090 * Implementation of the method from LauncherModel.Callbacks.
2091 */
2092 public void finishBindingItems() {
2093 if (mSavedState != null) {
2094 if (!mWorkspace.hasFocus()) {
2095 mWorkspace.getChildAt(mWorkspace.getCurrentScreen()).requestFocus();
2096 }
2097
2098 final long[] userFolders = mSavedState.getLongArray(RUNTIME_STATE_USER_FOLDERS);
2099 if (userFolders != null) {
2100 for (long folderId : userFolders) {
2101 final FolderInfo info = mFolders.get(folderId);
2102 if (info != null) {
2103 openFolder(info);
2104 }
2105 }
2106 final Folder openFolder = mWorkspace.getOpenFolder();
2107 if (openFolder != null) {
2108 openFolder.requestFocus();
2109 }
2110 }
2111
2112 final boolean allApps = mSavedState.getBoolean(RUNTIME_STATE_ALL_APPS_FOLDER, false);
2113 if (allApps) {
Jason Samsfd22dac2009-09-20 17:24:16 -07002114 showAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002115 }
2116
2117 mSavedState = null;
2118 }
2119
2120 if (mSavedInstanceState != null) {
2121 super.onRestoreInstanceState(mSavedInstanceState);
2122 mSavedInstanceState = null;
2123 }
2124
Joe Onorato9c1289c2009-08-17 11:03:03 -04002125 Log.d(TAG, "finishBindingItems done");
2126 mWorkspaceLoading = false;
2127 }
2128
2129 /**
2130 * Add the icons for all apps.
2131 *
2132 * Implementation of the method from LauncherModel.Callbacks.
2133 */
2134 public void bindAllApplications(ArrayList<ApplicationInfo> apps) {
Romain Guy84f296c2009-11-04 15:00:44 -08002135 mAllAppsGrid.setApps(apps);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002136 }
2137
2138 /**
2139 * A package was installed.
2140 *
2141 * Implementation of the method from LauncherModel.Callbacks.
2142 */
2143 public void bindPackageAdded(ArrayList<ApplicationInfo> apps) {
2144 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onoratoa8138d52009-10-06 19:25:30 -07002145 mAllAppsGrid.addApps(apps);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002146 }
2147
2148 /**
2149 * A package was updated.
2150 *
2151 * Implementation of the method from LauncherModel.Callbacks.
2152 */
2153 public void bindPackageUpdated(String packageName, ArrayList<ApplicationInfo> apps) {
2154 removeDialog(DIALOG_CREATE_SHORTCUT);
2155 mWorkspace.updateShortcutsForPackage(packageName);
2156 }
2157
2158 /**
2159 * A package was uninstalled.
2160 *
2161 * Implementation of the method from LauncherModel.Callbacks.
2162 */
2163 public void bindPackageRemoved(String packageName, ArrayList<ApplicationInfo> apps) {
2164 removeDialog(DIALOG_CREATE_SHORTCUT);
2165 mWorkspace.removeShortcutsForPackage(packageName);
Joe Onoratoa8138d52009-10-06 19:25:30 -07002166 mAllAppsGrid.removeApps(apps);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002167 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002168}