blob: 444357ebc9c6144623d8285e9b768713c19c8386 [file] [log] [blame]
Michael Jurka01f0ed42010-08-20 00:41:17 -07001
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002/*
3 * Copyright (C) 2008 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
Joe Onoratoa5902522009-07-30 13:37:37 -070018package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019
Patrick Dubroy4ed62782010-08-17 15:11:18 -070020import com.android.common.Search;
21import com.android.launcher.R;
22
Gilles Debunnedd6c9922010-10-25 11:23:41 -070023import android.animation.Animator;
24import android.animation.AnimatorListenerAdapter;
25import android.animation.AnimatorSet;
Chet Haaseb1254a62010-09-07 13:35:00 -070026import android.animation.ObjectAnimator;
Patrick Dubroy07a0de42010-08-26 11:48:35 -070027import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070028import android.animation.ValueAnimator;
Michael Jurka946ad472010-07-09 18:05:18 -070029import android.app.Activity;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.app.Dialog;
32import android.app.SearchManager;
33import android.app.StatusBarManager;
Dianne Hackborn107f8392009-08-05 21:32:16 -070034import android.app.WallpaperManager;
Michael Jurkaaf442092010-06-10 17:01:57 -070035import android.appwidget.AppWidgetManager;
36import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080037import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080038import android.content.BroadcastReceiver;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040039import android.content.ComponentName;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080040import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Context;
42import android.content.DialogInterface;
43import android.content.Intent;
Winson Chung80baf5a2010-08-09 16:03:15 -070044import android.content.Intent.ShortcutIconResource;
Romain Guy5bbc91b2010-08-18 11:38:46 -070045import android.content.IntentFilter;
Winson Chungaafa03c2010-06-11 17:34:16 -070046import android.content.pm.ActivityInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
Patrick Dubroyceae05d2010-08-30 10:40:53 -070048import android.content.pm.PackageManager.NameNotFoundException;
Daniel Sandlerab1ebd72010-04-27 16:57:25 -040049import android.content.pm.ResolveInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070051import android.content.res.Resources;
Daniel Sandlerab1ebd72010-04-27 16:57:25 -040052import android.content.res.TypedArray;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080053import android.database.ContentObserver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080054import android.graphics.Bitmap;
Romain Guya6abce82009-11-10 02:54:41 -080055import android.graphics.Canvas;
Michael Jurkaaf442092010-06-10 17:01:57 -070056import android.graphics.Rect;
Romain Guyff0c2e22009-11-10 12:09:59 -080057import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070058import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040059import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070060import android.os.AsyncTask;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020062import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080063import android.os.Handler;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080064import android.os.Parcelable;
Daniel Sandler843e8602010-06-07 14:59:01 -040065import android.os.SystemClock;
Joe Onoratobe386092009-11-17 17:32:16 -080066import android.os.SystemProperties;
Karl Rosaen138a0412009-04-23 19:00:21 -070067import android.provider.LiveFolders;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070068import android.provider.Settings;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069import android.text.Selection;
70import android.text.SpannableStringBuilder;
71import android.text.TextUtils;
72import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070073import android.util.Log;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080074import android.view.Display;
Joe Onorato0d44e942009-11-16 18:20:51 -080075import android.view.HapticFeedbackConstants;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080076import android.view.KeyEvent;
77import android.view.LayoutInflater;
78import android.view.Menu;
79import android.view.MenuItem;
Michael Jurka0e260592010-06-30 17:07:39 -070080import android.view.MotionEvent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080081import android.view.View;
Romain Guy5bbc91b2010-08-18 11:38:46 -070082import android.view.View.OnLongClickListener;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080083import android.view.ViewGroup;
Winson Chungaafa03c2010-06-11 17:34:16 -070084import android.view.WindowManager;
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -070085import android.view.animation.AccelerateInterpolator;
Patrick Dubroy7247f632010-08-04 16:02:59 -070086import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080087import android.view.inputmethod.InputMethodManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080088import android.widget.EditText;
Michael Jurkaaf442092010-06-10 17:01:57 -070089import android.widget.ImageView;
90import android.widget.LinearLayout;
91import android.widget.PopupWindow;
Michael Jurka0e260592010-06-30 17:07:39 -070092import android.widget.TabHost;
Romain Guy5bbc91b2010-08-18 11:38:46 -070093import android.widget.TabHost.OnTabChangeListener;
94import android.widget.TabHost.TabContentFactory;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080095import android.widget.TextView;
96import android.widget.Toast;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070097
98import java.io.DataInputStream;
99import java.io.DataOutputStream;
100import java.io.FileNotFoundException;
101import java.io.IOException;
102import java.util.ArrayList;
103import java.util.HashMap;
104import java.util.List;
Romain Guyedcce092010-03-04 13:03:17 -0800105
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800106/**
107 * Default launcher application.
108 */
Michael Jurka946ad472010-07-09 18:05:18 -0700109public final class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700110 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
111 AllAppsView.Watcher, View.OnTouchListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800112 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700113 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800114
Joe Onorato9c1289c2009-08-17 11:03:03 -0400115 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400116 static final boolean DEBUG_WIDGETS = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400117 static final boolean DEBUG_USER_INTERFACE = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700118
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800119 private static final int MENU_GROUP_ADD = 1;
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800120 private static final int MENU_GROUP_WALLPAPER = MENU_GROUP_ADD + 1;
121
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800122 private static final int MENU_ADD = Menu.FIRST + 1;
Winson Chung7ad01412010-09-27 11:33:03 -0700123 private static final int MENU_MANAGE_APPS = MENU_ADD + 1;
124 private static final int MENU_WALLPAPER_SETTINGS = MENU_MANAGE_APPS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800125 private static final int MENU_SEARCH = MENU_WALLPAPER_SETTINGS + 1;
126 private static final int MENU_NOTIFICATIONS = MENU_SEARCH + 1;
Romain Guy94dabf12009-07-21 10:55:43 -0700127 private static final int MENU_SETTINGS = MENU_NOTIFICATIONS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800128
129 private static final int REQUEST_CREATE_SHORTCUT = 1;
130 private static final int REQUEST_CREATE_LIVE_FOLDER = 4;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700131 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800132 private static final int REQUEST_PICK_APPLICATION = 6;
133 private static final int REQUEST_PICK_SHORTCUT = 7;
134 private static final int REQUEST_PICK_LIVE_FOLDER = 8;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700135 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700136 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800137
138 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
139
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800140 static final int SCREEN_COUNT = 5;
141 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142
Joe Onorato7c312c12009-08-13 21:36:53 -0700143 static final int DIALOG_CREATE_SHORTCUT = 1;
144 static final int DIALOG_RENAME_FOLDER = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800145
Romain Guy98d01652009-06-30 16:21:04 -0700146 private static final String PREFERENCES = "launcher.preferences";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800147
148 // Type: int
149 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700150 // Type: int
151 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800152 // Type: long
153 private static final String RUNTIME_STATE_USER_FOLDERS = "launcher.user_folder";
154 // Type: int
155 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
156 // Type: int
157 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cellX";
158 // Type: int
159 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cellY";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800160 // Type: boolean
161 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
162 // Type: long
163 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
164
Winson Chung80baf5a2010-08-09 16:03:15 -0700165 // tags for the customization tabs
166 private static final String WIDGETS_TAG = "widgets";
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700167 private static final String APPLICATIONS_TAG = "applications";
Winson Chung80baf5a2010-08-09 16:03:15 -0700168 private static final String SHORTCUTS_TAG = "shortcuts";
169 private static final String WALLPAPERS_TAG = "wallpapers";
170
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700171 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
172
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700173 /** The different states that Launcher can be in. */
174 private enum State { WORKSPACE, ALL_APPS, CUSTOMIZE, OVERVIEW };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700175 private State mState = State.WORKSPACE;
176 private AnimatorSet mStateAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700177
Joe Onorato9c1289c2009-08-17 11:03:03 -0400178 static final int APPWIDGET_HOST_ID = 1024;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800181 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800183 private final BroadcastReceiver mCloseSystemDialogsReceiver
184 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800185 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
186
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800187 private LayoutInflater mInflater;
188
Joe Onorato00acb122009-08-04 16:04:30 -0400189 private DragController mDragController;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800190 private Workspace mWorkspace;
Romain Guycbb89e42009-06-08 15:52:54 -0700191
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700192 private AppWidgetManager mAppWidgetManager;
193 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700194
Michael Jurka0280c3b2010-09-17 15:00:07 -0700195 private int mAddScreen = -1;
196 private int mAddIntersectCellX = -1;
197 private int mAddIntersectCellY = -1;
198 private int[] mAddDropPosition;
199 private int[] mTmpAddItemCellCoordinates = new int[2];
200
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800201 private FolderInfo mFolderInfo;
202
Joe Onorato7c312c12009-08-13 21:36:53 -0700203 private DeleteZone mDeleteZone;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700204 private HandleView mHandleView;
Joe Onorato7c312c12009-08-13 21:36:53 -0700205 private AllAppsView mAllAppsGrid;
Michael Jurka0e260592010-06-30 17:07:39 -0700206 private TabHost mHomeCustomizationDrawer;
Patrick Dubroy2b9ff372010-09-07 17:49:27 -0700207
208 private PagedView mAllAppsPagedView = null;
209 private CustomizePagedView mCustomizePagedView = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800210
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800211 private Bundle mSavedState;
212
213 private SpannableStringBuilder mDefaultKeySsb = null;
214
Joe Onorato9c1289c2009-08-17 11:03:03 -0400215 private boolean mWorkspaceLoading = true;
216
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800217 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800218 private boolean mRestoring;
219 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700220 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800221
222 private Bundle mSavedInstanceState;
223
Joe Onorato9c1289c2009-08-17 11:03:03 -0400224 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800225 private IconCache mIconCache;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400226
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700227 private static LocaleConfiguration sLocaleConfiguration = null;
228
Romain Guy84f296c2009-11-04 15:00:44 -0800229 private ArrayList<ItemInfo> mDesktopItems = new ArrayList<ItemInfo>();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700230 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700231
Romain Guy1fbc1c82009-11-09 20:43:08 -0800232 private ImageView mPreviousView;
233 private ImageView mNextView;
Joe Onorato080d9b62009-11-02 12:01:11 -0500234
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400235 // Hotseats (quick-launch icons next to AllApps)
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400236 private String[] mHotseatConfig = null;
237 private Intent[] mHotseats = null;
238 private Drawable[] mHotseatIcons = null;
239 private CharSequence[] mHotseatLabels = null;
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400240
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700241 private Intent mAppMarketIntent = null;
242
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800243 @Override
244 protected void onCreate(Bundle savedInstanceState) {
245 super.onCreate(savedInstanceState);
Romain Guyb1b69f52009-08-10 15:10:15 -0700246
Winson Chungaafa03c2010-06-11 17:34:16 -0700247 if (LauncherApplication.isInPlaceRotationEnabled()) {
248 // hide the status bar (temporary until we get the status bar design figured out)
249 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
250 this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR);
251 }
252
Joe Onorato0589f0f2010-02-08 13:44:00 -0800253 LauncherApplication app = ((LauncherApplication)getApplication());
254 mModel = app.setLauncher(this);
255 mIconCache = app.getIconCache();
Joe Onorato41a12d22009-10-31 18:30:00 -0400256 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800257 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700258
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700259 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700260 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
261 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700262
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800263 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200264 android.os.Debug.startMethodTracing(
265 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800266 }
267
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400268 loadHotseats();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800269 checkForLocaleChange();
270 setWallpaperDimension();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800271 setContentView(R.layout.launcher);
Michael Jurka946ad472010-07-09 18:05:18 -0700272 mHomeCustomizationDrawer = (TabHost) findViewById(com.android.internal.R.id.tabhost);
273 if (mHomeCustomizationDrawer != null) {
274 mHomeCustomizationDrawer.setup();
Winson Chungaafa03c2010-06-11 17:34:16 -0700275
Winson Chung80baf5a2010-08-09 16:03:15 -0700276 // share the same customization workspace across all the tabs
Winson Chunge3193b92010-09-10 11:44:42 -0700277 mCustomizePagedView = (CustomizePagedView) mInflater.inflate(
278 R.layout.customization_drawer, mHomeCustomizationDrawer, false);
Winson Chung80baf5a2010-08-09 16:03:15 -0700279 TabContentFactory contentFactory = new TabContentFactory() {
280 public View createTabContent(String tag) {
281 return mCustomizePagedView;
282 }
283 };
284
Michael Jurka946ad472010-07-09 18:05:18 -0700285 String widgetsLabel = getString(R.string.widgets_tab_label);
Winson Chung80baf5a2010-08-09 16:03:15 -0700286 mHomeCustomizationDrawer.addTab(mHomeCustomizationDrawer.newTabSpec(WIDGETS_TAG)
287 .setIndicator(widgetsLabel).setContent(contentFactory));
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700288 String applicationsLabel = getString(R.string.applications_tab_label);
289 mHomeCustomizationDrawer.addTab(mHomeCustomizationDrawer.newTabSpec(APPLICATIONS_TAG)
290 .setIndicator(applicationsLabel).setContent(contentFactory));
Michael Jurka946ad472010-07-09 18:05:18 -0700291 String wallpapersLabel = getString(R.string.wallpapers_tab_label);
Winson Chung80baf5a2010-08-09 16:03:15 -0700292 mHomeCustomizationDrawer.addTab(mHomeCustomizationDrawer.newTabSpec(WALLPAPERS_TAG)
293 .setIndicator(wallpapersLabel).setContent(contentFactory));
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700294 String shortcutsLabel = getString(R.string.shortcuts_tab_label);
295 mHomeCustomizationDrawer.addTab(mHomeCustomizationDrawer.newTabSpec(SHORTCUTS_TAG)
296 .setIndicator(shortcutsLabel).setContent(contentFactory));
Winson Chung80baf5a2010-08-09 16:03:15 -0700297
Winson Chung80baf5a2010-08-09 16:03:15 -0700298 mHomeCustomizationDrawer.setOnTabChangedListener(new OnTabChangeListener() {
299 public void onTabChanged(String tabId) {
300 // animate the changing of the tab content by fading pages in and out
301 final int duration = 150;
302 final float alpha = mCustomizePagedView.getAlpha();
Chet Haase472b2812010-10-14 07:02:04 -0700303 ValueAnimator alphaAnim = ObjectAnimator.ofFloat(mCustomizePagedView,
Winson Chung80baf5a2010-08-09 16:03:15 -0700304 "alpha", alpha, 0.0f);
Chet Haase472b2812010-10-14 07:02:04 -0700305 alphaAnim.setDuration(duration);
Chet Haaseb1254a62010-09-07 13:35:00 -0700306 alphaAnim.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700307 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -0700308 public void onAnimationEnd(Animator animation) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700309 String tag = mHomeCustomizationDrawer.getCurrentTabTag();
310 if (tag == WIDGETS_TAG) {
311 mCustomizePagedView.setCustomizationFilter(
312 CustomizePagedView.CustomizationType.WidgetCustomization);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700313 } else if (tag == APPLICATIONS_TAG) {
314 mCustomizePagedView.setCustomizationFilter(
315 CustomizePagedView.CustomizationType.ApplicationCustomization);
Winson Chung80baf5a2010-08-09 16:03:15 -0700316 } else if (tag == WALLPAPERS_TAG) {
317 mCustomizePagedView.setCustomizationFilter(
318 CustomizePagedView.CustomizationType.WallpaperCustomization);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700319 } else if (tag == SHORTCUTS_TAG) {
320 mCustomizePagedView.setCustomizationFilter(
321 CustomizePagedView.CustomizationType.ShortcutCustomization);
Winson Chung80baf5a2010-08-09 16:03:15 -0700322 }
323
324 final float alpha = mCustomizePagedView.getAlpha();
Chet Haase472b2812010-10-14 07:02:04 -0700325 ValueAnimator alphaAnim = ObjectAnimator.ofFloat(
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700326 mCustomizePagedView, "alpha", alpha, 1.0f);
Chet Haase472b2812010-10-14 07:02:04 -0700327 alphaAnim.setDuration(duration);
Winson Chung80baf5a2010-08-09 16:03:15 -0700328 alphaAnim.start();
329 }
330 });
331 alphaAnim.start();
332 }
333 });
Michael Jurka946ad472010-07-09 18:05:18 -0700334 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800335 setupViews();
336
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800337 registerContentObservers();
338
Joe Onorato7c312c12009-08-13 21:36:53 -0700339 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700340
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800341 mSavedState = savedInstanceState;
342 restoreState(mSavedState);
343
344 if (PROFILE_STARTUP) {
345 android.os.Debug.stopMethodTracing();
346 }
347
348 if (!mRestoring) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400349 mModel.startLoader(this, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800350 }
351
352 // For handling default keys
353 mDefaultKeySsb = new SpannableStringBuilder();
354 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800355
356 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
357 registerReceiver(mCloseSystemDialogsReceiver, filter);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800358 }
Romain Guycbb89e42009-06-08 15:52:54 -0700359
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800360 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700361 if (sLocaleConfiguration == null) {
362 new AsyncTask<Void, Void, LocaleConfiguration>() {
363 @Override
364 protected LocaleConfiguration doInBackground(Void... unused) {
365 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
366 readConfiguration(Launcher.this, localeConfiguration);
367 return localeConfiguration;
368 }
369
370 @Override
371 protected void onPostExecute(LocaleConfiguration result) {
372 sLocaleConfiguration = result;
373 checkForLocaleChange(); // recursive, but now with a locale configuration
374 }
375 }.execute();
376 return;
377 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700378
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800379 final Configuration configuration = getResources().getConfiguration();
380
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700381 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800382 final String locale = configuration.locale.toString();
383
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700384 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800385 final int mcc = configuration.mcc;
386
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700387 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800388 final int mnc = configuration.mnc;
389
Romain Guy84f296c2009-11-04 15:00:44 -0800390 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800391
Romain Guy84f296c2009-11-04 15:00:44 -0800392 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700393 sLocaleConfiguration.locale = locale;
394 sLocaleConfiguration.mcc = mcc;
395 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700396
Joe Onorato0589f0f2010-02-08 13:44:00 -0800397 mIconCache.flush();
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400398 loadHotseats();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700399
400 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
401 new Thread("WriteLocaleConfiguration") {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700402 @Override
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700403 public void run() {
404 writeConfiguration(Launcher.this, localeConfiguration);
405 }
406 }.start();
Romain Guy98d01652009-06-30 16:21:04 -0700407 }
408 }
409
410 private static class LocaleConfiguration {
411 public String locale;
412 public int mcc = -1;
413 public int mnc = -1;
414 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700415
Romain Guy98d01652009-06-30 16:21:04 -0700416 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
417 DataInputStream in = null;
418 try {
419 in = new DataInputStream(context.openFileInput(PREFERENCES));
420 configuration.locale = in.readUTF();
421 configuration.mcc = in.readInt();
422 configuration.mnc = in.readInt();
423 } catch (FileNotFoundException e) {
424 // Ignore
425 } catch (IOException e) {
426 // Ignore
427 } finally {
428 if (in != null) {
429 try {
430 in.close();
431 } catch (IOException e) {
432 // Ignore
433 }
434 }
435 }
436 }
437
438 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
439 DataOutputStream out = null;
440 try {
441 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
442 out.writeUTF(configuration.locale);
443 out.writeInt(configuration.mcc);
444 out.writeInt(configuration.mnc);
445 out.flush();
446 } catch (FileNotFoundException e) {
447 // Ignore
448 } catch (IOException e) {
449 //noinspection ResultOfMethodCallIgnored
450 context.getFileStreamPath(PREFERENCES).delete();
451 } finally {
452 if (out != null) {
453 try {
454 out.close();
455 } catch (IOException e) {
456 // Ignore
457 }
458 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800459 }
460 }
461
462 static int getScreen() {
463 synchronized (sLock) {
464 return sScreen;
465 }
466 }
467
468 static void setScreen(int screen) {
469 synchronized (sLock) {
470 sScreen = screen;
471 }
472 }
473
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800474 private void setWallpaperDimension() {
Dianne Hackborn107f8392009-08-05 21:32:16 -0700475 WallpaperManager wpm = (WallpaperManager)getSystemService(WALLPAPER_SERVICE);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800476
477 Display display = getWindowManager().getDefaultDisplay();
Romain Guy5bbc91b2010-08-18 11:38:46 -0700478 // TODO: Put back when we decide about scrolling the wallpaper
479 // boolean isPortrait = display.getWidth() < display.getHeight();
480 // final int width = isPortrait ? display.getWidth() : display.getHeight();
481 // final int height = isPortrait ? display.getHeight() : display.getWidth();
482 wpm.suggestDesiredDimensions(Math.max(display.getWidth(), display.getHeight()),
483 Math.max(display.getWidth(), display.getHeight()));
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800484 }
485
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400486 // Note: This doesn't do all the client-id magic that BrowserProvider does
487 // in Browser. (http://b/2425179)
488 private Uri getDefaultBrowserUri() {
489 String url = getString(R.string.default_browser_url);
490 if (url.indexOf("{CID}") != -1) {
491 url = url.replace("{CID}", "android-google");
492 }
493 return Uri.parse(url);
494 }
495
496 // Load the Intent templates from arrays.xml to populate the hotseats. For
497 // each Intent, if it resolves to a single app, use that as the launch
498 // intent & use that app's label as the contentDescription. Otherwise,
499 // retain the ResolveActivity so the user can pick an app.
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400500 private void loadHotseats() {
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400501 if (mHotseatConfig == null) {
502 mHotseatConfig = getResources().getStringArray(R.array.hotseats);
503 if (mHotseatConfig.length > 0) {
504 mHotseats = new Intent[mHotseatConfig.length];
505 mHotseatLabels = new CharSequence[mHotseatConfig.length];
506 mHotseatIcons = new Drawable[mHotseatConfig.length];
507 } else {
508 mHotseats = null;
509 mHotseatIcons = null;
510 mHotseatLabels = null;
511 }
512
513 TypedArray hotseatIconDrawables = getResources().obtainTypedArray(R.array.hotseat_icons);
514 for (int i=0; i<mHotseatConfig.length; i++) {
515 // load icon for this slot; currently unrelated to the actual activity
516 try {
517 mHotseatIcons[i] = hotseatIconDrawables.getDrawable(i);
518 } catch (ArrayIndexOutOfBoundsException ex) {
519 Log.w(TAG, "Missing hotseat_icons array item #" + i);
520 mHotseatIcons[i] = null;
521 }
522 }
523 hotseatIconDrawables.recycle();
524 }
525
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400526 PackageManager pm = getPackageManager();
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400527 for (int i=0; i<mHotseatConfig.length; i++) {
528 Intent intent = null;
529 if (mHotseatConfig[i].equals("*BROWSER*")) {
530 // magic value meaning "launch user's default web browser"
531 // replace it with a generic web request so we can see if there is indeed a default
532 String defaultUri = getString(R.string.default_browser_url);
533 intent = new Intent(
534 Intent.ACTION_VIEW,
535 ((defaultUri != null)
536 ? Uri.parse(defaultUri)
537 : getDefaultBrowserUri())
538 ).addCategory(Intent.CATEGORY_BROWSABLE);
539 // note: if the user launches this without a default set, she
540 // will always be taken to the default URL above; this is
541 // unavoidable as we must specify a valid URL in order for the
Winson Chungaafa03c2010-06-11 17:34:16 -0700542 // chooser to appear, and once the user selects something, that
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400543 // URL is unavoidably sent to the chosen app.
544 } else {
545 try {
546 intent = Intent.parseUri(mHotseatConfig[i], 0);
547 } catch (java.net.URISyntaxException ex) {
548 Log.w(TAG, "Invalid hotseat intent: " + mHotseatConfig[i]);
549 // bogus; leave intent=null
550 }
551 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700552
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400553 if (intent == null) {
554 mHotseats[i] = null;
555 mHotseatLabels[i] = getText(R.string.activity_not_found);
556 continue;
557 }
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400558
559 if (LOGD) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700560 Log.d(TAG, "loadHotseats: hotseat " + i
561 + " initial intent=["
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400562 + intent.toUri(Intent.URI_INTENT_SCHEME)
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400563 + "]");
564 }
565
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400566 ResolveInfo bestMatch = pm.resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY);
567 List<ResolveInfo> allMatches = pm.queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
Winson Chungaafa03c2010-06-11 17:34:16 -0700568 if (LOGD) {
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400569 Log.d(TAG, "Best match for intent: " + bestMatch);
570 Log.d(TAG, "All matches: ");
571 for (ResolveInfo ri : allMatches) {
572 Log.d(TAG, " --> " + ri);
573 }
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400574 }
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400575 // did this resolve to a single app, or the resolver?
576 if (allMatches.size() == 0 || bestMatch == null) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700577 // can't find any activity to handle this. let's leave the
578 // intent as-is and let Launcher show a toast when it fails
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400579 // to launch.
580 mHotseats[i] = intent;
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400581
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400582 // set accessibility text to "Not installed"
583 mHotseatLabels[i] = getText(R.string.activity_not_found);
584 } else {
585 boolean found = false;
586 for (ResolveInfo ri : allMatches) {
587 if (bestMatch.activityInfo.name.equals(ri.activityInfo.name)
588 && bestMatch.activityInfo.applicationInfo.packageName
589 .equals(ri.activityInfo.applicationInfo.packageName)) {
590 found = true;
591 break;
592 }
593 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700594
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400595 if (!found) {
596 if (LOGD) Log.d(TAG, "Multiple options, no default yet");
597 // the bestMatch is probably the ResolveActivity, meaning the
598 // user has not yet selected a default
599 // so: we'll keep the original intent for now
600 mHotseats[i] = intent;
601
602 // set the accessibility text to "Select shortcut"
603 mHotseatLabels[i] = getText(R.string.title_select_shortcut);
604 } else {
605 // we have an app!
606 // now reconstruct the intent to launch it through the front
607 // door
608 ComponentName com = new ComponentName(
609 bestMatch.activityInfo.applicationInfo.packageName,
610 bestMatch.activityInfo.name);
611 mHotseats[i] = new Intent(Intent.ACTION_MAIN).setComponent(com);
612
613 // load the app label for accessibility
614 mHotseatLabels[i] = bestMatch.activityInfo.loadLabel(pm);
615 }
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400616 }
617
618 if (LOGD) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700619 Log.d(TAG, "loadHotseats: hotseat " + i
620 + " final intent=["
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400621 + ((mHotseats[i] == null)
622 ? "null"
623 : mHotseats[i].toUri(Intent.URI_INTENT_SCHEME))
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400624 + "] label=[" + mHotseatLabels[i]
625 + "]"
626 );
627 }
628 }
629 }
630
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800631 @Override
632 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
Romain Guyaad5ef42009-06-10 02:48:37 -0700633 mWaitingForResult = false;
634
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800635 // The pattern used here is that a user PICKs a specific application,
636 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700637
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800638 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
639 // launch over to the Music app to actually CREATE_SHORTCUT.
Romain Guycbb89e42009-06-08 15:52:54 -0700640
Michael Jurka0280c3b2010-09-17 15:00:07 -0700641 if (resultCode == RESULT_OK && mAddScreen != -1) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800642 switch (requestCode) {
643 case REQUEST_PICK_APPLICATION:
Michael Jurka28750fb2010-09-24 17:43:49 -0700644 completeAddApplication(
645 this, data, mAddScreen, mAddIntersectCellX, mAddIntersectCellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800646 break;
647 case REQUEST_PICK_SHORTCUT:
Joe Onoratodeb98af2010-02-19 14:59:39 -0800648 processShortcut(data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800649 break;
650 case REQUEST_CREATE_SHORTCUT:
Michael Jurka0280c3b2010-09-17 15:00:07 -0700651 completeAddShortcut(data, mAddScreen, mAddIntersectCellX, mAddIntersectCellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800652 break;
653 case REQUEST_PICK_LIVE_FOLDER:
654 addLiveFolder(data);
655 break;
656 case REQUEST_CREATE_LIVE_FOLDER:
Michael Jurka0280c3b2010-09-17 15:00:07 -0700657 completeAddLiveFolder(data, mAddScreen, mAddIntersectCellX, mAddIntersectCellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800658 break;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700659 case REQUEST_PICK_APPWIDGET:
Michael Jurkaaf442092010-06-10 17:01:57 -0700660 addAppWidgetFromPick(data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800661 break;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700662 case REQUEST_CREATE_APPWIDGET:
Michael Jurkaaf442092010-06-10 17:01:57 -0700663 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700664 completeAddAppWidget(appWidgetId, mAddScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800665 break;
Mike Clerona0618e42009-10-22 13:55:21 -0700666 case REQUEST_PICK_WALLPAPER:
667 // We just wanted the activity result here so we can clear mWaitingForResult
668 break;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800669 }
Romain Guy18042c82009-11-06 11:44:55 -0800670 } else if ((requestCode == REQUEST_PICK_APPWIDGET ||
671 requestCode == REQUEST_CREATE_APPWIDGET) && resultCode == RESULT_CANCELED &&
672 data != null) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700673 // Clean up the appWidgetId if we canceled
674 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
675 if (appWidgetId != -1) {
676 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800677 }
678 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800679 }
680
681 @Override
682 protected void onResume() {
683 super.onResume();
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800684 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700685 if (mRestoring || mOnResumeNeedsLoad) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400686 mWorkspaceLoading = true;
687 mModel.startLoader(this, true);
688 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700689 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800690 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700691 // When we resume Launcher, a different Activity might be responsible for the app
692 // market intent, so refresh the icon
693 updateAppMarketIcon();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800694 }
695
696 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700697 protected void onPause() {
698 super.onPause();
Michael Jurkaaf442092010-06-10 17:01:57 -0700699 // Some launcher layouts don't have a previous and next view
700 if (mPreviousView != null) {
701 dismissPreview(mPreviousView);
Patrick Dubroyab962b72010-07-26 12:10:10 -0700702 }
703 if (mNextView != null) {
Michael Jurkaaf442092010-06-10 17:01:57 -0700704 dismissPreview(mNextView);
705 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700706 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800707 mDragController.cancelDrag();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700708 }
Romain Guycbb89e42009-06-08 15:52:54 -0700709
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700710 @Override
711 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400712 // Flag the loader to stop early before switching
713 mModel.stopLoader();
Romain Guy13c2e7b2010-03-10 19:45:00 -0800714 mAllAppsGrid.surrender();
Romain Guy13c2e7b2010-03-10 19:45:00 -0800715 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700716 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700717
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800718 // We can't hide the IME if it was forced open. So don't bother
719 /*
720 @Override
721 public void onWindowFocusChanged(boolean hasFocus) {
722 super.onWindowFocusChanged(hasFocus);
723
724 if (hasFocus) {
725 final InputMethodManager inputManager = (InputMethodManager)
726 getSystemService(Context.INPUT_METHOD_SERVICE);
727 WindowManager.LayoutParams lp = getWindow().getAttributes();
728 inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
729 android.os.Handler()) {
730 protected void onReceiveResult(int resultCode, Bundle resultData) {
731 Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
732 }
733 });
734 Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
735 }
736 }
737 */
738
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800739 private boolean acceptFilter() {
740 final InputMethodManager inputManager = (InputMethodManager)
741 getSystemService(Context.INPUT_METHOD_SERVICE);
742 return !inputManager.isFullscreenMode();
743 }
744
745 @Override
746 public boolean onKeyDown(int keyCode, KeyEvent event) {
747 boolean handled = super.onKeyDown(keyCode, event);
748 if (!handled && acceptFilter() && keyCode != KeyEvent.KEYCODE_ENTER) {
749 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
750 keyCode, event);
751 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700752 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700753 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700754 // showSearchDialog()
755 // If there are multiple keystrokes before the search dialog takes focus,
756 // onSearchRequested() will be called for every keystroke,
757 // but it is idempotent, so it's fine.
758 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800759 }
760 }
761
Joe Onorato8a9625e2010-01-28 15:55:35 -0800762 // Eat the long press event so the keyboard doesn't come up.
763 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
764 return true;
765 }
766
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800767 return handled;
768 }
769
Karl Rosaen138a0412009-04-23 19:00:21 -0700770 private String getTypedText() {
771 return mDefaultKeySsb.toString();
772 }
773
774 private void clearTypedText() {
775 mDefaultKeySsb.clear();
776 mDefaultKeySsb.clearSpans();
777 Selection.setSelection(mDefaultKeySsb, 0);
778 }
779
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800780 /**
Michael Jurka883f55b2010-10-21 15:47:14 -0700781 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
782 * State
783 */
784 private static State intToState(int stateOrdinal) {
785 State state = State.WORKSPACE;
786 final State[] stateValues = State.values();
787 for (int i = 0; i < stateValues.length; i++) {
788 if (stateValues[i].ordinal() == stateOrdinal) {
789 state = stateValues[i];
790 break;
791 }
792 }
793 return state;
794 }
795
796 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800797 * Restores the previous state, if it exists.
798 *
799 * @param savedState The previous state.
800 */
801 private void restoreState(Bundle savedState) {
802 if (savedState == null) {
803 return;
804 }
805
Michael Jurka883f55b2010-10-21 15:47:14 -0700806 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
807
808 if (state == State.ALL_APPS) {
Joe Onorato3a8820b2009-11-10 15:06:42 -0800809 showAllApps(false);
Michael Jurka883f55b2010-10-21 15:47:14 -0700810 } else if (state == State.CUSTOMIZE) {
811 showCustomizationDrawer(false);
Joe Onorato3a8820b2009-11-10 15:06:42 -0800812 }
813
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800814 final int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
815 if (currentScreen > -1) {
Michael Jurka0142d492010-08-25 17:46:15 -0700816 mWorkspace.setCurrentPage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800817 }
818
819 final int addScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700820
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800821 if (addScreen > -1) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700822 mAddScreen = addScreen;
823 mAddIntersectCellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
824 mAddIntersectCellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800825 mRestoring = true;
826 }
827
828 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
829 if (renameFolder) {
830 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700831 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800832 mRestoring = true;
833 }
834 }
835
836 /**
837 * Finds all the views we need and configure them properly.
838 */
839 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -0700840 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -0400841
Romain Guyb1b69f52009-08-10 15:10:15 -0700842 DragLayer dragLayer = (DragLayer) findViewById(R.id.drag_layer);
Joe Onorato00acb122009-08-04 16:04:30 -0400843 dragLayer.setDragController(dragController);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800844
Joe Onorato7c312c12009-08-13 21:36:53 -0700845 mAllAppsGrid = (AllAppsView)dragLayer.findViewById(R.id.all_apps_view);
Joe Onorato6665c0f2009-09-02 15:27:24 -0700846 mAllAppsGrid.setLauncher(this);
Joe Onorato5162ea92009-09-03 09:39:42 -0700847 mAllAppsGrid.setDragController(dragController);
Romain Guyc16fea72010-03-12 17:17:56 -0800848 ((View) mAllAppsGrid).setWillNotDraw(false); // We don't want a hole punched in our window.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -0700849 // Manage focusability manually since this thing is always visible (in non-xlarge)
Winson Chungaafa03c2010-06-11 17:34:16 -0700850 ((View) mAllAppsGrid).setFocusable(false);
Joe Onorato7c312c12009-08-13 21:36:53 -0700851
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -0700852 if (LauncherApplication.isScreenXLarge()) {
853 // They need to be INVISIBLE initially so that they will be measured in the layout.
854 // Otherwise the animations are messed up when we show them for the first time.
855 ((View) mAllAppsGrid).setVisibility(View.INVISIBLE);
856 mHomeCustomizationDrawer.setVisibility(View.INVISIBLE);
857 }
858
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800859 mWorkspace = (Workspace) dragLayer.findViewById(R.id.workspace);
860 final Workspace workspace = mWorkspace;
Joe Onoratof0dde092010-02-16 18:25:23 -0500861 workspace.setHapticFeedbackEnabled(false);
Michael Jurka946ad472010-07-09 18:05:18 -0700862
Joe Onorato7c312c12009-08-13 21:36:53 -0700863 DeleteZone deleteZone = (DeleteZone) dragLayer.findViewById(R.id.delete_zone);
864 mDeleteZone = deleteZone;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800865
Michael Jurka2c3af5f2010-08-03 13:53:20 -0700866 View handleView = findViewById(R.id.all_apps_button);
867 if (handleView != null && handleView instanceof HandleView) {
868 // we don't use handle view in xlarge mode
Michael Jurka7ef4f752010-08-03 16:04:26 -0700869 mHandleView = (HandleView)handleView;
Michael Jurka2c3af5f2010-08-03 13:53:20 -0700870 mHandleView.setLauncher(this);
871 mHandleView.setOnClickListener(this);
872 mHandleView.setOnLongClickListener(this);
873 }
Romain Guy1fbc1c82009-11-09 20:43:08 -0800874
Winson Chung80baf5a2010-08-09 16:03:15 -0700875 if (mCustomizePagedView != null) {
876 mCustomizePagedView.setLauncher(this);
877 mCustomizePagedView.setDragController(dragController);
878 mCustomizePagedView.update();
Michael Jurkaaf442092010-06-10 17:01:57 -0700879 } else {
880 ImageView hotseatLeft = (ImageView) findViewById(R.id.hotseat_left);
881 hotseatLeft.setContentDescription(mHotseatLabels[0]);
882 hotseatLeft.setImageDrawable(mHotseatIcons[0]);
883 ImageView hotseatRight = (ImageView) findViewById(R.id.hotseat_right);
884 hotseatRight.setContentDescription(mHotseatLabels[1]);
885 hotseatRight.setImageDrawable(mHotseatIcons[1]);
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400886
Michael Jurkaaf442092010-06-10 17:01:57 -0700887 mPreviousView = (ImageView) dragLayer.findViewById(R.id.previous_screen);
888 mNextView = (ImageView) dragLayer.findViewById(R.id.next_screen);
Romain Guy1fbc1c82009-11-09 20:43:08 -0800889
Michael Jurkaaf442092010-06-10 17:01:57 -0700890 Drawable previous = mPreviousView.getDrawable();
891 Drawable next = mNextView.getDrawable();
892 mWorkspace.setIndicators(previous, next);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800893
Michael Jurkaaf442092010-06-10 17:01:57 -0700894 mPreviousView.setHapticFeedbackEnabled(false);
895 mPreviousView.setOnLongClickListener(this);
896 mNextView.setHapticFeedbackEnabled(false);
897 mNextView.setOnLongClickListener(this);
898 }
Romain Guy1fbc1c82009-11-09 20:43:08 -0800899
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800900 workspace.setOnLongClickListener(this);
Joe Onorato00acb122009-08-04 16:04:30 -0400901 workspace.setDragController(dragController);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800902 workspace.setLauncher(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800903
904 deleteZone.setLauncher(this);
Joe Onorato00acb122009-08-04 16:04:30 -0400905 deleteZone.setDragController(dragController);
Michael Jurka54f7ac32010-08-02 13:56:46 -0700906 int deleteZoneHandleId;
907 if (LauncherApplication.isScreenXLarge()) {
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700908 deleteZoneHandleId = R.id.all_apps_button;
Michael Jurka54f7ac32010-08-02 13:56:46 -0700909 } else {
910 deleteZoneHandleId = R.id.all_apps_button_cluster;
911 }
Michael Jurkaaf442092010-06-10 17:01:57 -0700912 deleteZone.setHandle(findViewById(deleteZoneHandleId));
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700913 dragController.addDragListener(deleteZone);
914
915 ApplicationInfoDropTarget infoButton = (ApplicationInfoDropTarget)findViewById(R.id.info_button);
916 if (infoButton != null) {
917 infoButton.setLauncher(this);
918 infoButton.setHandle(findViewById(R.id.configure_button));
919 infoButton.setDragColor(getResources().getColor(R.color.app_info_filter));
920 dragController.addDragListener(infoButton);
921 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800922
Joe Onorato00acb122009-08-04 16:04:30 -0400923 dragController.setDragScoller(workspace);
Joe Onorato00acb122009-08-04 16:04:30 -0400924 dragController.setScrollView(dragLayer);
Romain Guyea3763c2010-01-11 18:02:04 -0800925 dragController.setMoveTarget(workspace);
Jason Samsfd22dac2009-09-20 17:24:16 -0700926
Joe Onorato00acb122009-08-04 16:04:30 -0400927 // The order here is bottom to top.
928 dragController.addDropTarget(workspace);
929 dragController.addDropTarget(deleteZone);
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700930 if (infoButton != null) {
931 dragController.addDropTarget(infoButton);
932 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800933 }
934
Romain Guy8a73c512009-11-09 19:19:59 -0800935 @SuppressWarnings({"UnusedDeclaration"})
936 public void previousScreen(View v) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700937 if (mState != State.ALL_APPS) {
Joe Onorato61597bd2009-11-19 12:51:57 -0800938 mWorkspace.scrollLeft();
939 }
Romain Guy8a73c512009-11-09 19:19:59 -0800940 }
941
942 @SuppressWarnings({"UnusedDeclaration"})
943 public void nextScreen(View v) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700944 if (mState != State.ALL_APPS) {
Joe Onorato61597bd2009-11-19 12:51:57 -0800945 mWorkspace.scrollRight();
946 }
Romain Guy8a73c512009-11-09 19:19:59 -0800947 }
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400948
949 @SuppressWarnings({"UnusedDeclaration"})
950 public void launchHotSeat(View v) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700951 if (mState == State.ALL_APPS) return;
Daniel Sandler3e9454a2010-05-24 11:22:41 -0400952
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400953 int index = -1;
954 if (v.getId() == R.id.hotseat_left) {
955 index = 0;
956 } else if (v.getId() == R.id.hotseat_right) {
957 index = 1;
958 }
959
Daniel Sandlerab1ebd72010-04-27 16:57:25 -0400960 // reload these every tap; you never know when they might change
961 loadHotseats();
962 if (index >= 0 && index < mHotseats.length && mHotseats[index] != null) {
963 Intent intent = mHotseats[index];
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400964 startActivitySafely(
965 mHotseats[index],
966 "hotseat"
967 );
968 }
969 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700970
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800971 /**
972 * Creates a view representing a shortcut.
973 *
974 * @param info The data structure describing the shortcut.
975 *
976 * @return A View inflated from R.layout.application.
977 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800978 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800979 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -0700980 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800981 }
982
983 /**
984 * Creates a view representing a shortcut inflated from the specified resource.
985 *
986 * @param layoutResId The id of the XML layout used to create the shortcut.
987 * @param parent The group the shortcut belongs to.
988 * @param info The data structure describing the shortcut.
989 *
990 * @return A View inflated from layoutResId.
991 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800992 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800993 TextView favorite = (TextView) mInflater.inflate(layoutResId, parent, false);
994
Joe Onorato0589f0f2010-02-08 13:44:00 -0800995 favorite.setCompoundDrawablesWithIntrinsicBounds(null,
996 new FastBitmapDrawable(info.getIcon(mIconCache)),
997 null, null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800998 favorite.setText(info.title);
999 favorite.setTag(info);
1000 favorite.setOnClickListener(this);
1001
1002 return favorite;
1003 }
1004
1005 /**
1006 * Add an application shortcut to the workspace.
1007 *
1008 * @param data The intent describing the application.
1009 * @param cellInfo The position on screen where to create the shortcut.
1010 */
Michael Jurka0280c3b2010-09-17 15:00:07 -07001011 void completeAddApplication(Context context, Intent data, int screen,
1012 int intersectCellX, int intersectCellY) {
1013 final int[] cellXY = mTmpAddItemCellCoordinates;
1014 final CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
1015
1016 if (!layout.findCellForSpanThatIntersects(cellXY, 1, 1, intersectCellX, intersectCellY)) {
1017 showOutOfSpaceMessage();
1018 return;
1019 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001020
Joe Onorato0589f0f2010-02-08 13:44:00 -08001021 final ShortcutInfo info = mModel.getShortcutInfo(context.getPackageManager(),
1022 data, context);
1023
Romain Guy73b979d2009-06-09 12:57:21 -07001024 if (info != null) {
Joe Onorato0589f0f2010-02-08 13:44:00 -08001025 info.setActivity(data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001026 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001027 info.container = ItemInfo.NO_ID;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001028 mWorkspace.addApplicationShortcut(info, screen, cellXY[0], cellXY[1],
1029 isWorkspaceLocked(), mAddIntersectCellX, mAddIntersectCellY);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001030 } else {
1031 Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001032 }
1033 }
Romain Guycbb89e42009-06-08 15:52:54 -07001034
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001035 /**
1036 * Add a shortcut to the workspace.
1037 *
1038 * @param data The intent describing the shortcut.
1039 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001040 */
Michael Jurka0280c3b2010-09-17 15:00:07 -07001041 private void completeAddShortcut(Intent data, int screen,
1042 int intersectCellX, int intersectCellY) {
1043 final int[] cellXY = mTmpAddItemCellCoordinates;
1044 final CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
Romain Guycbb89e42009-06-08 15:52:54 -07001045
Michael Jurka0280c3b2010-09-17 15:00:07 -07001046 if (!layout.findCellForSpanThatIntersects(cellXY, 1, 1, intersectCellX, intersectCellY)) {
1047 showOutOfSpaceMessage();
1048 return;
1049 }
1050
1051 final ShortcutInfo info = mModel.addShortcut(
1052 this, data, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001053
1054 if (!mRestoring) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001055 final View view = createShortcut(info);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001056 mWorkspace.addInScreen(view, screen, cellXY[0], cellXY[1], 1, 1, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001057 }
1058 }
1059
Romain Guycbb89e42009-06-08 15:52:54 -07001060
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001061 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001062 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001063 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001064 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001065 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001066 */
Michael Jurka0280c3b2010-09-17 15:00:07 -07001067 private void completeAddAppWidget(int appWidgetId, int screen) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001068 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Romain Guycbb89e42009-06-08 15:52:54 -07001069
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001070 // Calculate the grid spans needed to fit this widget
Michael Jurka0280c3b2010-09-17 15:00:07 -07001071 CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
1072 int[] spanXY = layout.rectToCell(appWidgetInfo.minWidth, appWidgetInfo.minHeight, null);
Romain Guycbb89e42009-06-08 15:52:54 -07001073
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001074 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001075 // We have saved the position to which the widget was dragged-- this really only matters
1076 // if we are placing widgets on a "spring-loaded" screen
Michael Jurka0280c3b2010-09-17 15:00:07 -07001077 final int[] cellXY = mTmpAddItemCellCoordinates;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001078
1079 // For now, we don't save the coordinate where we dropped the icon because we're not
1080 // supporting spring-loaded mini-screens; however, leaving the ability to directly place
1081 // a widget on the home screen in case we want to add it in the future
Michael Jurka0280c3b2010-09-17 15:00:07 -07001082 final int[] touchXY = null;
1083 //final int[] touchXY = mAddDropPosition;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001084 boolean findNearestVacantAreaFailed = false;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001085 boolean foundCellSpan = false;
1086 if (touchXY != null) {
1087 // when dragging and dropping, just find the closest free spot
1088 CellLayout screenLayout = (CellLayout) mWorkspace.getChildAt(screen);
1089 int[] result = screenLayout.findNearestVacantArea(
1090 touchXY[0], touchXY[1], spanXY[0], spanXY[1], cellXY);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001091 findNearestVacantAreaFailed = (result == null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001092 foundCellSpan = !findNearestVacantAreaFailed;
1093 } else {
1094 if (mAddIntersectCellX != -1 && mAddIntersectCellY != -1) {
1095 // if we long pressed on an empty cell to bring up a menu,
1096 // make sure we intersect the empty cell
1097 foundCellSpan = layout.findCellForSpanThatIntersects(cellXY, spanXY[0], spanXY[1],
1098 mAddIntersectCellX, mAddIntersectCellY);
1099 } else {
1100 // if we went through the menu -> add, just find any spot
1101 foundCellSpan = layout.findCellForSpan(cellXY, spanXY[0], spanXY[1]);
1102 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001103 }
1104
Michael Jurka0280c3b2010-09-17 15:00:07 -07001105 if (!foundCellSpan) {
Romain Guy18042c82009-11-06 11:44:55 -08001106 if (appWidgetId != -1) mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001107 showOutOfSpaceMessage();
Romain Guy18042c82009-11-06 11:44:55 -08001108 return;
1109 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001110
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001111 // Build Launcher-specific widget info and save to database
1112 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001113 launcherInfo.spanX = spanXY[0];
1114 launcherInfo.spanY = spanXY[1];
Romain Guycbb89e42009-06-08 15:52:54 -07001115
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001116 LauncherModel.addItemToDatabase(this, launcherInfo,
1117 LauncherSettings.Favorites.CONTAINER_DESKTOP,
Michael Jurka0280c3b2010-09-17 15:00:07 -07001118 screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001119
1120 if (!mRestoring) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001121 mDesktopItems.add(launcherInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001122
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001123 // Perform actual inflation because we're live
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001124 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001125
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001126 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001127 launcherInfo.hostView.setTag(launcherInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001128
Michael Jurka0280c3b2010-09-17 15:00:07 -07001129 mWorkspace.addInScreen(launcherInfo.hostView, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001130 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001131 }
1132 }
Romain Guycbb89e42009-06-08 15:52:54 -07001133
Michael Jurka0280c3b2010-09-17 15:00:07 -07001134 void showOutOfSpaceMessage() {
1135 Toast.makeText(this, getString(R.string.out_of_space), Toast.LENGTH_SHORT).show();
1136 }
1137
Joe Onorato9c1289c2009-08-17 11:03:03 -04001138 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
1139 mDesktopItems.remove(launcherInfo);
1140 launcherInfo.hostView = null;
1141 }
1142
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001143 public LauncherAppWidgetHost getAppWidgetHost() {
1144 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001145 }
Romain Guycbb89e42009-06-08 15:52:54 -07001146
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001147 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001148 getWindow().closeAllPanels();
1149
1150 try {
1151 dismissDialog(DIALOG_CREATE_SHORTCUT);
1152 // Unlock the workspace if the dialog was showing
1153 } catch (Exception e) {
1154 // An exception is thrown if the dialog is not visible, which is fine
1155 }
1156
1157 try {
1158 dismissDialog(DIALOG_RENAME_FOLDER);
1159 // Unlock the workspace if the dialog was showing
1160 } catch (Exception e) {
1161 // An exception is thrown if the dialog is not visible, which is fine
1162 }
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001163
1164 // Whatever we were doing is hereby canceled.
1165 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001166 }
1167
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001168 @Override
1169 protected void onNewIntent(Intent intent) {
1170 super.onNewIntent(intent);
1171
1172 // Close the menu
1173 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001174 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001175 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001176
Joe Onorato14f122b2009-11-19 14:06:36 -08001177 boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1178 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001179
Michael Jurka4cb37242010-08-09 21:05:32 -07001180 // in all these cases, only animate if we're already on home
1181 if (LauncherApplication.isScreenXLarge()) {
Michael Jurka99229f62010-09-09 11:49:32 -07001182 mWorkspace.unshrink(alreadyOnHome);
1183 }
1184 if (!mWorkspace.isDefaultPageShowing()) {
Michael Jurka4cb37242010-08-09 21:05:32 -07001185 // on the phone, we don't animate the change to the workspace if all apps is visible
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001186 mWorkspace.moveToDefaultScreen(alreadyOnHome &&
1187 (LauncherApplication.isScreenXLarge() || mState != State.ALL_APPS));
Joe Onorato3a8820b2009-11-10 15:06:42 -08001188 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001189 showWorkspace(alreadyOnHome);
Romain Guy1dd3a072009-07-16 13:21:01 -07001190
Joe Onorato3a8820b2009-11-10 15:06:42 -08001191 final View v = getWindow().peekDecorView();
1192 if (v != null && v.getWindowToken() != null) {
1193 InputMethodManager imm = (InputMethodManager)getSystemService(
1194 INPUT_METHOD_SERVICE);
1195 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001196 }
1197 }
1198 }
1199
1200 @Override
1201 protected void onRestoreInstanceState(Bundle savedInstanceState) {
1202 // Do not call super here
1203 mSavedInstanceState = savedInstanceState;
Michael Jurka946ad472010-07-09 18:05:18 -07001204
1205 if (mHomeCustomizationDrawer != null) {
1206 String cur = savedInstanceState.getString("currentTab");
1207 if (cur != null) {
1208 mHomeCustomizationDrawer.setCurrentTabByTag(cur);
1209 }
1210 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001211 }
1212
1213 @Override
1214 protected void onSaveInstanceState(Bundle outState) {
Michael Jurka0142d492010-08-25 17:46:15 -07001215 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getCurrentPage());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001216
1217 final ArrayList<Folder> folders = mWorkspace.getOpenFolders();
1218 if (folders.size() > 0) {
1219 final int count = folders.size();
1220 long[] ids = new long[count];
1221 for (int i = 0; i < count; i++) {
1222 final FolderInfo info = folders.get(i).getInfo();
1223 ids[i] = info.id;
1224 }
1225 outState.putLongArray(RUNTIME_STATE_USER_FOLDERS, ids);
1226 } else {
1227 super.onSaveInstanceState(outState);
1228 }
1229
Michael Jurka883f55b2010-10-21 15:47:14 -07001230 outState.putInt(RUNTIME_STATE, mState.ordinal());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001231
Michael Jurka0280c3b2010-09-17 15:00:07 -07001232 if (mAddScreen > -1 && mWaitingForResult) {
1233 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mAddScreen);
1234 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mAddIntersectCellX);
1235 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mAddIntersectCellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001236 }
1237
1238 if (mFolderInfo != null && mWaitingForResult) {
1239 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1240 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1241 }
Michael Jurka946ad472010-07-09 18:05:18 -07001242
1243 if (mHomeCustomizationDrawer != null) {
1244 String currentTabTag = mHomeCustomizationDrawer.getCurrentTabTag();
1245 if (currentTabTag != null) {
1246 outState.putString("currentTab", currentTabTag);
1247 }
1248 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001249 }
1250
1251 @Override
1252 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001253 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001254
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001255 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001256 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001257 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001258 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001259 }
1260
1261 TextKeyListener.getInstance().release();
1262
Joe Onorato9c1289c2009-08-17 11:03:03 -04001263 mModel.stopLoader();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001264
Joe Onorato9c1289c2009-08-17 11:03:03 -04001265 unbindDesktopItems();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001266
1267 getContentResolver().unregisterContentObserver(mWidgetObserver);
Winson Chungaafa03c2010-06-11 17:34:16 -07001268
Patrick Dubroyab962b72010-07-26 12:10:10 -07001269 // Some launcher layouts don't have a previous and next view
1270 if (mPreviousView != null) {
1271 dismissPreview(mPreviousView);
1272 }
1273 if (mNextView != null) {
1274 dismissPreview(mNextView);
1275 }
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001276
1277 unregisterReceiver(mCloseSystemDialogsReceiver);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001278 }
1279
1280 @Override
1281 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001282 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001283 super.startActivityForResult(intent, requestCode);
1284 }
1285
1286 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001287 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001288 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001289
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001290 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001291
Karl Rosaen138a0412009-04-23 19:00:21 -07001292 if (initialQuery == null) {
1293 // Use any text typed in the launcher as the initial query
1294 initialQuery = getTypedText();
1295 clearTypedText();
1296 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001297 if (appSearchData == null) {
1298 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001299 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001300 }
Romain Guycbb89e42009-06-08 15:52:54 -07001301
Karl Rosaen138a0412009-04-23 19:00:21 -07001302 final SearchManager searchManager =
1303 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
Karl Rosaen138a0412009-04-23 19:00:21 -07001304 searchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
Romain Guycbb89e42009-06-08 15:52:54 -07001305 appSearchData, globalSearch);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001306 }
1307
1308 @Override
1309 public boolean onCreateOptionsMenu(Menu menu) {
Patrick Dubroy5905bca2010-09-08 22:43:38 -07001310 if (isWorkspaceLocked()) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001311 return false;
1312 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001313
1314 super.onCreateOptionsMenu(menu);
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001315
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001316 menu.add(MENU_GROUP_ADD, MENU_ADD, 0, R.string.menu_add)
1317 .setIcon(android.R.drawable.ic_menu_add)
1318 .setAlphabeticShortcut('A');
Winson Chung7ad01412010-09-27 11:33:03 -07001319 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1320 .setIcon(android.R.drawable.ic_menu_manage)
1321 .setAlphabeticShortcut('M');
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001322 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001323 .setIcon(android.R.drawable.ic_menu_gallery)
1324 .setAlphabeticShortcut('W');
1325 menu.add(0, MENU_SEARCH, 0, R.string.menu_search)
1326 .setIcon(android.R.drawable.ic_search_category_default)
1327 .setAlphabeticShortcut(SearchManager.MENU_KEY);
1328 menu.add(0, MENU_NOTIFICATIONS, 0, R.string.menu_notifications)
1329 .setIcon(com.android.internal.R.drawable.ic_menu_notifications)
1330 .setAlphabeticShortcut('N');
1331
1332 final Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
Romain Guy5a941392009-04-28 15:18:25 -07001333 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1334 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001335
1336 menu.add(0, MENU_SETTINGS, 0, R.string.menu_settings)
1337 .setIcon(android.R.drawable.ic_menu_preferences).setAlphabeticShortcut('P')
1338 .setIntent(settings);
1339
1340 return true;
1341 }
1342
1343 @Override
1344 public boolean onPrepareOptionsMenu(Menu menu) {
1345 super.onPrepareOptionsMenu(menu);
1346
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001347 // If all apps is animating, don't show the menu, because we don't know
1348 // which one to show.
Patrick Dubroyff5f0402010-07-26 15:23:26 -07001349 if (mAllAppsGrid.isAnimating()) {
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001350 return false;
1351 }
1352
1353 // Only show the add and wallpaper options when we're not in all apps.
Patrick Dubroyff5f0402010-07-26 15:23:26 -07001354 boolean visible = !mAllAppsGrid.isVisible();
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001355 menu.setGroupVisible(MENU_GROUP_ADD, visible);
1356 menu.setGroupVisible(MENU_GROUP_WALLPAPER, visible);
1357
1358 // Disable add if the workspace is full.
1359 if (visible) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001360 CellLayout layout = (CellLayout) mWorkspace.getChildAt(mWorkspace.getCurrentPage());
1361 menu.setGroupEnabled(MENU_GROUP_ADD, layout.existsEmptyCell());
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001362 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001363
1364 return true;
1365 }
1366
1367 @Override
1368 public boolean onOptionsItemSelected(MenuItem item) {
1369 switch (item.getItemId()) {
1370 case MENU_ADD:
1371 addItems();
1372 return true;
Winson Chung7ad01412010-09-27 11:33:03 -07001373 case MENU_MANAGE_APPS:
1374 manageApps();
1375 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001376 case MENU_WALLPAPER_SETTINGS:
1377 startWallpaper();
1378 return true;
1379 case MENU_SEARCH:
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001380 onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001381 return true;
1382 case MENU_NOTIFICATIONS:
1383 showNotifications();
1384 return true;
1385 }
1386
1387 return super.onOptionsItemSelected(item);
1388 }
Romain Guycbb89e42009-06-08 15:52:54 -07001389
Karl Rosaen138a0412009-04-23 19:00:21 -07001390 /**
1391 * Indicates that we want global search for this activity by setting the globalSearch
1392 * argument for {@link #startSearch} to true.
1393 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001394
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001395 @Override
1396 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001397 startSearch(null, false, null, true);
Karl Rosaen138a0412009-04-23 19:00:21 -07001398 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001399 }
1400
Joe Onorato9c1289c2009-08-17 11:03:03 -04001401 public boolean isWorkspaceLocked() {
1402 return mWorkspaceLoading || mWaitingForResult;
1403 }
1404
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001405 private void addItems() {
Patrick Dubroy558654c2010-07-23 16:48:11 -07001406 if (LauncherApplication.isScreenXLarge()) {
1407 // Animate the widget chooser up from the bottom of the screen
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001408 if (mState != State.CUSTOMIZE) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07001409 showCustomizationDrawer(true);
Patrick Dubroy558654c2010-07-23 16:48:11 -07001410 }
1411 } else {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001412 showWorkspace(true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001413 showAddDialog(-1, -1);
Patrick Dubroy558654c2010-07-23 16:48:11 -07001414 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001415 }
1416
Michael Jurka0280c3b2010-09-17 15:00:07 -07001417 private void resetAddInfo() {
1418 mAddScreen = -1;
1419 mAddIntersectCellX = -1;
1420 mAddIntersectCellY = -1;
1421 mAddDropPosition = null;
1422 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001423
Michael Jurka0280c3b2010-09-17 15:00:07 -07001424 void addAppWidgetFromDrop(ComponentName appWidgetProvider, int screen, int[] position) {
1425 resetAddInfo();
1426 mAddScreen = screen;
1427
1428 // only set mAddDropPosition if we dropped on home screen in "spring-loaded" manner
1429 mAddDropPosition = position;
1430
Michael Jurkaaf442092010-06-10 17:01:57 -07001431 int appWidgetId = getAppWidgetHost().allocateAppWidgetId();
1432 AppWidgetManager.getInstance(this).bindAppWidgetId(appWidgetId, appWidgetProvider);
1433 addAppWidgetImpl(appWidgetId);
1434 }
1435
Winson Chung7ad01412010-09-27 11:33:03 -07001436 private void manageApps() {
1437 startActivity(new Intent(android.provider.Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS));
1438 }
1439
Michael Jurkaaf442092010-06-10 17:01:57 -07001440 void addAppWidgetFromPick(Intent data) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001441 // TODO: catch bad widget exception when sent
1442 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Michael Jurkaaf442092010-06-10 17:01:57 -07001443 // TODO: Is this log message meaningful?
1444 if (LOGD) Log.d(TAG, "dumping extras content=" + data.getExtras());
1445 addAppWidgetImpl(appWidgetId);
1446 }
1447
1448 void addAppWidgetImpl(int appWidgetId) {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001449 AppWidgetProviderInfo appWidget = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001450
Bjorn Bringert7984c942009-12-09 15:38:25 +00001451 if (appWidget.configure != null) {
1452 // Launch over to configure widget, if needed
1453 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
1454 intent.setComponent(appWidget.configure);
1455 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1456
Romain Guy8e633c52010-03-04 12:51:36 -08001457 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001458 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001459 // Otherwise just add it
Michael Jurka0280c3b2010-09-17 15:00:07 -07001460 completeAddAppWidget(appWidgetId, mAddScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001461 }
1462 }
Romain Guycbb89e42009-06-08 15:52:54 -07001463
Michael Jurka0280c3b2010-09-17 15:00:07 -07001464 void processShortcutFromDrop(ComponentName componentName, int screen, int[] position) {
1465 resetAddInfo();
1466 mAddScreen = screen;
1467 mAddDropPosition = position;
1468
1469 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1470 createShortcutIntent.setComponent(componentName);
1471 processShortcut(createShortcutIntent);
1472 }
1473
Joe Onoratodeb98af2010-02-19 14:59:39 -08001474 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001475 // Handle case where user selected "Applications"
1476 String applicationName = getResources().getString(R.string.group_applications);
1477 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001478
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001479 if (applicationName != null && applicationName.equals(shortcutName)) {
1480 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1481 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001482
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001483 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1484 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001485 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001486 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001487 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001488 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001489 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001490 }
1491
Winson Chung24ab2f12010-09-16 14:10:47 -07001492 void processWallpaper(Intent intent) {
1493 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1494 }
1495
Michael Jurka0280c3b2010-09-17 15:00:07 -07001496 void addLiveFolderFromDrop(ComponentName componentName, int screen, int[] position) {
1497 resetAddInfo();
1498 mAddScreen = screen;
1499 mAddDropPosition = position;
1500
1501 Intent createFolderIntent = new Intent(LiveFolders.ACTION_CREATE_LIVE_FOLDER);
1502 createFolderIntent.setComponent(componentName);
1503
1504 addLiveFolder(createFolderIntent);
1505 }
1506
1507 void addLiveFolder(Intent intent) { // YYY add screen intersect etc. parameters here
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001508 // Handle case where user selected "Folder"
Jeffrey Sharkeyc4bbd0a2009-03-24 22:47:52 -07001509 String folderName = getResources().getString(R.string.group_folder);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001510 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001511
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001512 if (folderName != null && folderName.equals(shortcutName)) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001513 addFolder(mAddScreen, mAddIntersectCellX, mAddIntersectCellY);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001514 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001515 startActivityForResultSafely(intent, REQUEST_CREATE_LIVE_FOLDER);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001516 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001517 }
1518
Michael Jurka0280c3b2010-09-17 15:00:07 -07001519 void addFolder(int screen, int intersectCellX, int intersectCellY) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001520 UserFolderInfo folderInfo = new UserFolderInfo();
1521 folderInfo.title = getText(R.string.folder_name);
1522
Michael Jurka0280c3b2010-09-17 15:00:07 -07001523 final CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
1524 final int[] cellXY = mTmpAddItemCellCoordinates;
1525 if (!layout.findCellForSpanThatIntersects(cellXY, 1, 1, intersectCellX, intersectCellY)) {
1526 showOutOfSpaceMessage();
1527 return;
1528 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001529
1530 // Update the model
Joe Onorato9c1289c2009-08-17 11:03:03 -04001531 LauncherModel.addItemToDatabase(this, folderInfo,
1532 LauncherSettings.Favorites.CONTAINER_DESKTOP,
Michael Jurka0280c3b2010-09-17 15:00:07 -07001533 screen, cellXY[0], cellXY[1], false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001534 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001535
1536 // Create the view
1537 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07001538 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), folderInfo);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001539 mWorkspace.addInScreen(newFolder, screen, cellXY[0], cellXY[1], 1, 1, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001540 }
Romain Guycbb89e42009-06-08 15:52:54 -07001541
Joe Onorato9c1289c2009-08-17 11:03:03 -04001542 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001543 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001544 }
1545
Michael Jurka28750fb2010-09-24 17:43:49 -07001546 private void completeAddLiveFolder(
1547 Intent data, int screen, int intersectCellX, int intersectCellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001548 final CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
1549 final int[] cellXY = mTmpAddItemCellCoordinates;
1550 if (!layout.findCellForSpanThatIntersects(cellXY, 1, 1, intersectCellX, intersectCellY)) {
1551 showOutOfSpaceMessage();
1552 return;
1553 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001554
Michael Jurka0280c3b2010-09-17 15:00:07 -07001555 final LiveFolderInfo info = addLiveFolder(this, data, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001556
1557 if (!mRestoring) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001558 final View view = LiveFolderIcon.fromXml(R.layout.live_folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07001559 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001560 mWorkspace.addInScreen(view, screen, cellXY[0], cellXY[1], 1, 1, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001561 }
1562 }
1563
1564 static LiveFolderInfo addLiveFolder(Context context, Intent data,
Michael Jurka0280c3b2010-09-17 15:00:07 -07001565 int screen, int cellX, int cellY, boolean notify) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001566
1567 Intent baseIntent = data.getParcelableExtra(LiveFolders.EXTRA_LIVE_FOLDER_BASE_INTENT);
1568 String name = data.getStringExtra(LiveFolders.EXTRA_LIVE_FOLDER_NAME);
1569
1570 Drawable icon = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001571 Intent.ShortcutIconResource iconResource = null;
1572
1573 Parcelable extra = data.getParcelableExtra(LiveFolders.EXTRA_LIVE_FOLDER_ICON);
1574 if (extra != null && extra instanceof Intent.ShortcutIconResource) {
1575 try {
1576 iconResource = (Intent.ShortcutIconResource) extra;
1577 final PackageManager packageManager = context.getPackageManager();
1578 Resources resources = packageManager.getResourcesForApplication(
1579 iconResource.packageName);
1580 final int id = resources.getIdentifier(iconResource.resourceName, null, null);
1581 icon = resources.getDrawable(id);
1582 } catch (Exception e) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001583 Log.w(TAG, "Could not load live folder icon: " + extra);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001584 }
1585 }
1586
1587 if (icon == null) {
1588 icon = context.getResources().getDrawable(R.drawable.ic_launcher_folder);
1589 }
1590
1591 final LiveFolderInfo info = new LiveFolderInfo();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001592 info.icon = Utilities.createIconBitmap(icon, context);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001593 info.title = name;
1594 info.iconResource = iconResource;
1595 info.uri = data.getData();
1596 info.baseIntent = baseIntent;
1597 info.displayMode = data.getIntExtra(LiveFolders.EXTRA_LIVE_FOLDER_DISPLAY_MODE,
1598 LiveFolders.DISPLAY_MODE_GRID);
1599
1600 LauncherModel.addItemToDatabase(context, info, LauncherSettings.Favorites.CONTAINER_DESKTOP,
Michael Jurka0280c3b2010-09-17 15:00:07 -07001601 screen, cellX, cellY, notify);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001602 sFolders.put(info.id, info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001603
1604 return info;
1605 }
1606
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001607 private void showNotifications() {
1608 final StatusBarManager statusBar = (StatusBarManager) getSystemService(STATUS_BAR_SERVICE);
1609 if (statusBar != null) {
1610 statusBar.expand();
1611 }
1612 }
1613
1614 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001615 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001616 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001617 Intent chooser = Intent.createChooser(pickWallpaper,
1618 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001619 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1620 // Removed in Eclair MR1
1621// WallpaperManager wm = (WallpaperManager)
1622// getSystemService(Context.WALLPAPER_SERVICE);
1623// WallpaperInfo wi = wm.getWallpaperInfo();
1624// if (wi != null && wi.getSettingsActivity() != null) {
1625// LabeledIntent li = new LabeledIntent(getPackageName(),
1626// R.string.configure_wallpaper, 0);
1627// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1628// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1629// }
Mike Clerona0618e42009-10-22 13:55:21 -07001630 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001631 }
1632
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001633 /**
1634 * Registers various content observers. The current implementation registers
1635 * only a favorites observer to keep track of the favorites applications.
1636 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001637 private void registerContentObservers() {
1638 ContentResolver resolver = getContentResolver();
1639 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1640 true, mWidgetObserver);
1641 }
1642
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001643 @Override
1644 public boolean dispatchKeyEvent(KeyEvent event) {
1645 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1646 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001647 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001648 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001649 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jason Samseb5615d2009-11-30 11:50:10 -08001650 if (SystemProperties.getInt("debug.launcher2.dumpstate", 0) != 0) {
Joe Onoratobe386092009-11-17 17:32:16 -08001651 dumpState();
1652 return true;
1653 }
1654 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001655 }
1656 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1657 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001658 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001659 return true;
1660 }
1661 }
1662
1663 return super.dispatchKeyEvent(event);
1664 }
1665
Joe Onorato88ec0992009-11-19 13:16:06 -08001666 @Override
1667 public void onBackPressed() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001668 if (mState == State.ALL_APPS || mState == State.CUSTOMIZE) {
1669 showWorkspace(true);
Joe Onorato88ec0992009-11-19 13:16:06 -08001670 } else {
1671 closeFolder();
1672 }
Michael Jurkaaf442092010-06-10 17:01:57 -07001673 // Some launcher layouts don't have a previous and next view
1674 if (mPreviousView != null) {
1675 dismissPreview(mPreviousView);
1676 dismissPreview(mNextView);
1677 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001678 }
1679
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001680 private void closeFolder() {
1681 Folder folder = mWorkspace.getOpenFolder();
1682 if (folder != null) {
1683 closeFolder(folder);
1684 }
1685 }
1686
1687 void closeFolder(Folder folder) {
1688 folder.getInfo().opened = false;
1689 ViewGroup parent = (ViewGroup) folder.getParent();
1690 if (parent != null) {
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -07001691 CellLayout cl = (CellLayout) parent;
1692 cl.removeViewWithoutMarkingCells(folder);
Joe Onoratob6341e92009-11-02 10:41:48 -05001693 if (folder instanceof DropTarget) {
1694 // Live folders aren't DropTargets.
1695 mDragController.removeDropTarget((DropTarget)folder);
1696 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001697 }
1698 folder.onClose();
1699 }
1700
1701 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001702 * Re-listen when widgets are reset.
1703 */
1704 private void onAppWidgetReset() {
1705 mAppWidgetHost.startListening();
1706 }
1707
1708 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001709 * Go through the and disconnect any of the callbacks in the drawables and the views or we
1710 * leak the previous Home screen on orientation change.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001711 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04001712 private void unbindDesktopItems() {
1713 for (ItemInfo item: mDesktopItems) {
1714 item.unbind();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001715 }
1716 }
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001717
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001718 /**
1719 * Launches the intent referred by the clicked shortcut.
1720 *
1721 * @param v The view representing the clicked shortcut.
1722 */
1723 public void onClick(View v) {
1724 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001725 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001726 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08001727 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08001728 int[] pos = new int[2];
1729 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08001730 intent.setSourceBounds(new Rect(pos[0], pos[1],
1731 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Joe Onoratof984e852010-03-25 09:47:45 -07001732 startActivitySafely(intent, tag);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001733 } else if (tag instanceof FolderInfo) {
1734 handleFolderClick((FolderInfo) tag);
Joe Onorato7404ee42009-07-31 11:54:44 -07001735 } else if (v == mHandleView) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001736 if (mState == State.ALL_APPS) {
1737 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001738 } else {
Joe Onorato3a8820b2009-11-10 15:06:42 -08001739 showAllApps(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001740 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001741 }
1742 }
1743
Michael Jurka0e260592010-06-30 17:07:39 -07001744 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07001745 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001746 // clicking anywhere on the workspace causes the customization drawer to slide down
1747 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07001748 return false;
1749 }
1750
Michael Jurkaaf442092010-06-10 17:01:57 -07001751 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001752 * Event handler for the search button
1753 *
1754 * @param v The view that was clicked.
1755 */
1756 public void onClickSearchButton(View v) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07001757 startSearch(null, false, null, true);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001758 }
1759
1760 /**
1761 * Event handler for the "gear" button that appears on the home screen, which
Michael Jurkaaf442092010-06-10 17:01:57 -07001762 * enters home screen customization mode.
1763 *
1764 * @param v The view that was clicked.
1765 */
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001766 public void onClickConfigureButton(View v) {
Patrick Dubroy558654c2010-07-23 16:48:11 -07001767 addItems();
Michael Jurkaaf442092010-06-10 17:01:57 -07001768 }
1769
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001770 /**
1771 * Event handler for the "grid" button that appears on the home screen, which
1772 * enters all apps mode.
1773 *
1774 * @param v The view that was clicked.
1775 */
1776 public void onClickAllAppsButton(View v) {
1777 showAllApps(true);
1778 }
1779
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001780 public void onClickAppMarketButton(View v) {
1781 if (mAppMarketIntent != null) {
1782 startActivitySafely(mAppMarketIntent, "app market");
1783 }
1784 }
1785
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001786 void startApplicationDetailsActivity(ComponentName componentName) {
1787 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001788 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
1789 Uri.fromParts("package", packageName, null));
1790 startActivity(intent);
1791 }
1792
Patrick Dubroy5539af72010-09-07 15:22:01 -07001793 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
1794 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
1795 // System applications cannot be installed. For now, show a toast explaining that.
1796 // We may give them the option of disabling apps this way.
1797 int messageId = R.string.uninstall_system_app_text;
1798 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
1799 } else {
1800 String packageName = appInfo.componentName.getPackageName();
1801 String className = appInfo.componentName.getClassName();
1802 Intent intent = new Intent(
1803 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
1804 startActivity(intent);
1805 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001806 }
1807
Joe Onoratof984e852010-03-25 09:47:45 -07001808 void startActivitySafely(Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001809 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1810 try {
1811 startActivity(intent);
1812 } catch (ActivityNotFoundException e) {
1813 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Daniel Sandlerc9b18772010-04-22 14:37:59 -04001814 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001815 } catch (SecurityException e) {
1816 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001817 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001818 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07001819 "or use the exported attribute for this activity. "
1820 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001821 }
1822 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001823
Romain Guy8e633c52010-03-04 12:51:36 -08001824 void startActivityForResultSafely(Intent intent, int requestCode) {
1825 try {
1826 startActivityForResult(intent, requestCode);
1827 } catch (ActivityNotFoundException e) {
1828 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1829 } catch (SecurityException e) {
1830 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1831 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
1832 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
1833 "or use the exported attribute for this activity.", e);
1834 }
1835 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001836
1837 private void handleFolderClick(FolderInfo folderInfo) {
1838 if (!folderInfo.opened) {
1839 // Close any open folder
1840 closeFolder();
1841 // Open the requested folder
1842 openFolder(folderInfo);
1843 } else {
1844 // Find the open folder...
1845 Folder openFolder = mWorkspace.getFolderForTag(folderInfo);
1846 int folderScreen;
1847 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07001848 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001849 // .. and close it
1850 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07001851 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001852 // Close any folder open on the current screen
1853 closeFolder();
1854 // Pull the folder onto this screen
1855 openFolder(folderInfo);
1856 }
1857 }
1858 }
1859 }
1860
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001861 /**
Michael Jurka774bd372010-10-22 13:40:50 -07001862 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001863 * is animated relative to the specified View. If the View is null, no animation
1864 * is played.
1865 *
1866 * @param folderInfo The FolderInfo describing the folder to open.
1867 */
Winson Chungaafa03c2010-06-11 17:34:16 -07001868 public void openFolder(FolderInfo folderInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001869 Folder openFolder;
1870
1871 if (folderInfo instanceof UserFolderInfo) {
1872 openFolder = UserFolder.fromXml(this);
1873 } else if (folderInfo instanceof LiveFolderInfo) {
Joe Onoratoa5902522009-07-30 13:37:37 -07001874 openFolder = com.android.launcher2.LiveFolder.fromXml(this, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001875 } else {
1876 return;
1877 }
1878
Joe Onorato00acb122009-08-04 16:04:30 -04001879 openFolder.setDragController(mDragController);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001880 openFolder.setLauncher(this);
1881
1882 openFolder.bind(folderInfo);
1883 folderInfo.opened = true;
1884
Winson Chungaafa03c2010-06-11 17:34:16 -07001885 mWorkspace.addInFullScreen(openFolder, folderInfo.screen);
1886
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001887 openFolder.onOpen();
1888 }
1889
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001890 public boolean onLongClick(View v) {
Romain Guy1fbc1c82009-11-09 20:43:08 -08001891 switch (v.getId()) {
1892 case R.id.previous_screen:
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001893 if (mState != State.ALL_APPS) {
Joe Onorato0d44e942009-11-16 18:20:51 -08001894 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1895 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Romain Guyf8e6a802009-12-07 17:48:02 -08001896 showPreviews(v);
Joe Onorato0d44e942009-11-16 18:20:51 -08001897 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08001898 return true;
1899 case R.id.next_screen:
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001900 if (mState != State.ALL_APPS) {
Joe Onorato0d44e942009-11-16 18:20:51 -08001901 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1902 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Romain Guyf8e6a802009-12-07 17:48:02 -08001903 showPreviews(v);
1904 }
1905 return true;
1906 case R.id.all_apps_button:
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001907 if (mState != State.ALL_APPS) {
Romain Guyf8e6a802009-12-07 17:48:02 -08001908 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1909 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
1910 showPreviews(v);
Joe Onorato0d44e942009-11-16 18:20:51 -08001911 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08001912 return true;
1913 }
1914
Joe Onorato9c1289c2009-08-17 11:03:03 -04001915 if (isWorkspaceLocked()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001916 return false;
1917 }
1918
1919 if (!(v instanceof CellLayout)) {
1920 v = (View) v.getParent();
1921 }
1922
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001923
Michael Jurka0280c3b2010-09-17 15:00:07 -07001924 resetAddInfo();
1925 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001926 // This happens when long clicking an item with the dpad/trackball
Michael Jurka0280c3b2010-09-17 15:00:07 -07001927 if (longClickCellInfo == null || !longClickCellInfo.valid) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001928 return true;
1929 }
1930
Michael Jurka0280c3b2010-09-17 15:00:07 -07001931 final View itemUnderLongClick = longClickCellInfo.cell;
1932
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001933 if (mWorkspace.allowLongPress()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001934 if (itemUnderLongClick == null) {
1935 // User long pressed on empty space
1936 mWorkspace.setAllowLongPress(false);
1937 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1938 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Michael Jurka56170562010-10-05 14:14:56 -07001939 if (!LauncherApplication.isScreenXLarge()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001940 showAddDialog(longClickCellInfo.cellX, longClickCellInfo.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001941 }
1942 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001943 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001944 // User long pressed on an item
Joe Onorato0d44e942009-11-16 18:20:51 -08001945 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1946 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001947 mAddIntersectCellX = longClickCellInfo.cellX;
1948 mAddIntersectCellY = longClickCellInfo.cellY;
1949 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001950 }
1951 }
1952 }
1953 return true;
1954 }
1955
Romain Guye6b8e2f2009-11-10 11:56:55 -08001956 @SuppressWarnings({"unchecked"})
Romain Guy9d31e9f2009-11-11 18:54:28 -08001957 private void dismissPreview(final View v) {
1958 final PopupWindow window = (PopupWindow) v.getTag();
Romain Guy1fbc1c82009-11-09 20:43:08 -08001959 if (window != null) {
Romain Guy9d31e9f2009-11-11 18:54:28 -08001960 window.setOnDismissListener(new PopupWindow.OnDismissListener() {
1961 public void onDismiss() {
1962 ViewGroup group = (ViewGroup) v.getTag(R.id.workspace);
1963 int count = group.getChildCount();
1964 for (int i = 0; i < count; i++) {
1965 ((ImageView) group.getChildAt(i)).setImageDrawable(null);
1966 }
Romain Guy9d31e9f2009-11-11 18:54:28 -08001967 ArrayList<Bitmap> bitmaps = (ArrayList<Bitmap>) v.getTag(R.id.icon);
1968 for (Bitmap bitmap : bitmaps) bitmap.recycle();
1969
1970 v.setTag(R.id.workspace, null);
1971 v.setTag(R.id.icon, null);
1972 window.setOnDismissListener(null);
1973 }
1974 });
Romain Guy1fbc1c82009-11-09 20:43:08 -08001975 window.dismiss();
Romain Guy1fbc1c82009-11-09 20:43:08 -08001976 }
1977 v.setTag(null);
1978 }
1979
Romain Guyf8e6a802009-12-07 17:48:02 -08001980 private void showPreviews(View anchor) {
Romain Guy9d31e9f2009-11-11 18:54:28 -08001981 showPreviews(anchor, 0, mWorkspace.getChildCount());
Romain Guy1fbc1c82009-11-09 20:43:08 -08001982 }
1983
Romain Guya6abce82009-11-10 02:54:41 -08001984 private void showPreviews(final View anchor, int start, int end) {
Romain Guyf8e6a802009-12-07 17:48:02 -08001985 final Resources resources = getResources();
1986 final Workspace workspace = mWorkspace;
Romain Guy1fbc1c82009-11-09 20:43:08 -08001987
Romain Guya6abce82009-11-10 02:54:41 -08001988 CellLayout cell = ((CellLayout) workspace.getChildAt(start));
Winson Chungaafa03c2010-06-11 17:34:16 -07001989
Romain Guy9d31e9f2009-11-11 18:54:28 -08001990 float max = workspace.getChildCount();
Winson Chungaafa03c2010-06-11 17:34:16 -07001991
Romain Guyf8e6a802009-12-07 17:48:02 -08001992 final Rect r = new Rect();
Romain Guy9d31e9f2009-11-11 18:54:28 -08001993 resources.getDrawable(R.drawable.preview_background).getPadding(r);
Romain Guye6b8e2f2009-11-10 11:56:55 -08001994 int extraW = (int) ((r.left + r.right) * max);
1995 int extraH = r.top + r.bottom;
Romain Guya6abce82009-11-10 02:54:41 -08001996
1997 int aW = cell.getWidth() - extraW;
1998 float w = aW / max;
1999
2000 int width = cell.getWidth();
2001 int height = cell.getHeight();
2002 int x = cell.getLeftPadding();
2003 int y = cell.getTopPadding();
2004 width -= (x + cell.getRightPadding());
2005 height -= (y + cell.getBottomPadding());
2006
2007 float scale = w / width;
2008
2009 int count = end - start;
2010
2011 final float sWidth = width * scale;
2012 float sHeight = height * scale;
2013
Romain Guye6b8e2f2009-11-10 11:56:55 -08002014 LinearLayout preview = new LinearLayout(this);
Romain Guya6abce82009-11-10 02:54:41 -08002015
Romain Guye6b8e2f2009-11-10 11:56:55 -08002016 PreviewTouchHandler handler = new PreviewTouchHandler(anchor);
2017 ArrayList<Bitmap> bitmaps = new ArrayList<Bitmap>(count);
Romain Guya6abce82009-11-10 02:54:41 -08002018
2019 for (int i = start; i < end; i++) {
Romain Guye6b8e2f2009-11-10 11:56:55 -08002020 ImageView image = new ImageView(this);
Romain Guya6abce82009-11-10 02:54:41 -08002021 cell = (CellLayout) workspace.getChildAt(i);
2022
Romain Guyf8e6a802009-12-07 17:48:02 -08002023 final Bitmap bitmap = Bitmap.createBitmap((int) sWidth, (int) sHeight,
Romain Guye6b8e2f2009-11-10 11:56:55 -08002024 Bitmap.Config.ARGB_8888);
Romain Guyf8e6a802009-12-07 17:48:02 -08002025
2026 final Canvas c = new Canvas(bitmap);
Romain Guya6abce82009-11-10 02:54:41 -08002027 c.scale(scale, scale);
2028 c.translate(-cell.getLeftPadding(), -cell.getTopPadding());
Patrick Dubroy1262e362010-10-06 15:49:50 -07002029 cell.drawChildren(c);
Romain Guya6abce82009-11-10 02:54:41 -08002030
Romain Guy9d31e9f2009-11-11 18:54:28 -08002031 image.setBackgroundDrawable(resources.getDrawable(R.drawable.preview_background));
Romain Guye6b8e2f2009-11-10 11:56:55 -08002032 image.setImageBitmap(bitmap);
2033 image.setTag(i);
2034 image.setOnClickListener(handler);
Romain Guy9d31e9f2009-11-11 18:54:28 -08002035 image.setOnFocusChangeListener(handler);
2036 image.setFocusable(true);
Michael Jurka0142d492010-08-25 17:46:15 -07002037 if (i == mWorkspace.getCurrentPage()) image.requestFocus();
Romain Guye6b8e2f2009-11-10 11:56:55 -08002038
2039 preview.addView(image,
Romain Guy9d31e9f2009-11-11 18:54:28 -08002040 LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
2041
Winson Chungaafa03c2010-06-11 17:34:16 -07002042 bitmaps.add(bitmap);
Romain Guya6abce82009-11-10 02:54:41 -08002043 }
Romain Guyf8e6a802009-12-07 17:48:02 -08002044
2045 final PopupWindow p = new PopupWindow(this);
Romain Guye6b8e2f2009-11-10 11:56:55 -08002046 p.setContentView(preview);
2047 p.setWidth((int) (sWidth * count + extraW));
2048 p.setHeight((int) (sHeight + extraH));
2049 p.setAnimationStyle(R.style.AnimationPreview);
2050 p.setOutsideTouchable(true);
Romain Guy9d31e9f2009-11-11 18:54:28 -08002051 p.setFocusable(true);
Romain Guyff0c2e22009-11-10 12:09:59 -08002052 p.setBackgroundDrawable(new ColorDrawable(0));
Romain Guy9d31e9f2009-11-11 18:54:28 -08002053 p.showAsDropDown(anchor, 0, 0);
Romain Guya6abce82009-11-10 02:54:41 -08002054
Romain Guye6b8e2f2009-11-10 11:56:55 -08002055 p.setOnDismissListener(new PopupWindow.OnDismissListener() {
2056 public void onDismiss() {
2057 dismissPreview(anchor);
2058 }
2059 });
Romain Guy1fbc1c82009-11-09 20:43:08 -08002060
2061 anchor.setTag(p);
2062 anchor.setTag(R.id.workspace, preview);
Winson Chungaafa03c2010-06-11 17:34:16 -07002063 anchor.setTag(R.id.icon, bitmaps);
Romain Guy1fbc1c82009-11-09 20:43:08 -08002064 }
2065
Romain Guy9d31e9f2009-11-11 18:54:28 -08002066 class PreviewTouchHandler implements View.OnClickListener, Runnable, View.OnFocusChangeListener {
Romain Guya6abce82009-11-10 02:54:41 -08002067 private final View mAnchor;
Romain Guya6abce82009-11-10 02:54:41 -08002068
Romain Guye6b8e2f2009-11-10 11:56:55 -08002069 public PreviewTouchHandler(View anchor) {
Romain Guya6abce82009-11-10 02:54:41 -08002070 mAnchor = anchor;
Romain Guya6abce82009-11-10 02:54:41 -08002071 }
2072
2073 public void onClick(View v) {
Michael Jurka0142d492010-08-25 17:46:15 -07002074 mWorkspace.snapToPage((Integer) v.getTag());
Romain Guy9d31e9f2009-11-11 18:54:28 -08002075 v.post(this);
2076 }
2077
2078 public void run() {
Winson Chungaafa03c2010-06-11 17:34:16 -07002079 dismissPreview(mAnchor);
Romain Guy9d31e9f2009-11-11 18:54:28 -08002080 }
2081
2082 public void onFocusChange(View v, boolean hasFocus) {
2083 if (hasFocus) {
Michael Jurka0142d492010-08-25 17:46:15 -07002084 mWorkspace.snapToPage((Integer) v.getTag());
Romain Guy9d31e9f2009-11-11 18:54:28 -08002085 }
Romain Guya6abce82009-11-10 02:54:41 -08002086 }
2087 }
2088
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002089 Workspace getWorkspace() {
2090 return mWorkspace;
2091 }
2092
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002093 @Override
2094 protected Dialog onCreateDialog(int id) {
2095 switch (id) {
2096 case DIALOG_CREATE_SHORTCUT:
2097 return new CreateShortcut().createDialog();
2098 case DIALOG_RENAME_FOLDER:
2099 return new RenameFolder().createDialog();
2100 }
2101
2102 return super.onCreateDialog(id);
2103 }
2104
2105 @Override
2106 protected void onPrepareDialog(int id, Dialog dialog) {
2107 switch (id) {
2108 case DIALOG_CREATE_SHORTCUT:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002109 break;
2110 case DIALOG_RENAME_FOLDER:
Romain Guy7b4ef332009-07-14 13:58:08 -07002111 if (mFolderInfo != null) {
2112 EditText input = (EditText) dialog.findViewById(R.id.folder_name);
2113 final CharSequence text = mFolderInfo.title;
2114 input.setText(text);
2115 input.setSelection(0, text.length());
2116 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002117 break;
2118 }
2119 }
2120
2121 void showRenameDialog(FolderInfo info) {
2122 mFolderInfo = info;
2123 mWaitingForResult = true;
2124 showDialog(DIALOG_RENAME_FOLDER);
2125 }
2126
Michael Jurka0280c3b2010-09-17 15:00:07 -07002127 private void showAddDialog(int intersectX, int intersectY) {
2128 resetAddInfo();
2129 mAddIntersectCellX = intersectX;
2130 mAddIntersectCellY = intersectY;
2131 mAddScreen = mWorkspace.getCurrentPage();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002132 mWaitingForResult = true;
2133 showDialog(DIALOG_CREATE_SHORTCUT);
2134 }
2135
Joe Onoratodeb98af2010-02-19 14:59:39 -08002136 private void pickShortcut() {
Michael Jurka0e260592010-06-30 17:07:39 -07002137 // Insert extra item to handle picking application
Romain Guy73b979d2009-06-09 12:57:21 -07002138 Bundle bundle = new Bundle();
2139
2140 ArrayList<String> shortcutNames = new ArrayList<String>();
2141 shortcutNames.add(getString(R.string.group_applications));
2142 bundle.putStringArrayList(Intent.EXTRA_SHORTCUT_NAME, shortcutNames);
2143
2144 ArrayList<ShortcutIconResource> shortcutIcons = new ArrayList<ShortcutIconResource>();
2145 shortcutIcons.add(ShortcutIconResource.fromContext(Launcher.this,
2146 R.drawable.ic_launcher_application));
2147 bundle.putParcelableArrayList(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, shortcutIcons);
2148
2149 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
2150 pickIntent.putExtra(Intent.EXTRA_INTENT, new Intent(Intent.ACTION_CREATE_SHORTCUT));
Joe Onoratodeb98af2010-02-19 14:59:39 -08002151 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_shortcut));
Romain Guy73b979d2009-06-09 12:57:21 -07002152 pickIntent.putExtras(bundle);
2153
Joe Onoratodeb98af2010-02-19 14:59:39 -08002154 startActivityForResult(pickIntent, REQUEST_PICK_SHORTCUT);
Romain Guy73b979d2009-06-09 12:57:21 -07002155 }
2156
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002157 private class RenameFolder {
2158 private EditText mInput;
2159
2160 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002161 final View layout = View.inflate(Launcher.this, R.layout.rename_folder, null);
2162 mInput = (EditText) layout.findViewById(R.id.folder_name);
2163
2164 AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
2165 builder.setIcon(0);
2166 builder.setTitle(getString(R.string.rename_folder_title));
2167 builder.setCancelable(true);
2168 builder.setOnCancelListener(new Dialog.OnCancelListener() {
2169 public void onCancel(DialogInterface dialog) {
2170 cleanup();
2171 }
2172 });
2173 builder.setNegativeButton(getString(R.string.cancel_action),
2174 new Dialog.OnClickListener() {
2175 public void onClick(DialogInterface dialog, int which) {
2176 cleanup();
2177 }
2178 }
2179 );
2180 builder.setPositiveButton(getString(R.string.rename_action),
2181 new Dialog.OnClickListener() {
2182 public void onClick(DialogInterface dialog, int which) {
2183 changeFolderName();
2184 }
2185 }
2186 );
2187 builder.setView(layout);
Romain Guy7b4ef332009-07-14 13:58:08 -07002188
2189 final AlertDialog dialog = builder.create();
2190 dialog.setOnShowListener(new DialogInterface.OnShowListener() {
2191 public void onShow(DialogInterface dialog) {
Joe Onorato7018d8e2010-04-13 20:25:47 -07002192 mWaitingForResult = true;
Joe Onoratod753b422009-11-08 13:31:11 -05002193 mInput.requestFocus();
2194 InputMethodManager inputManager = (InputMethodManager)
2195 getSystemService(Context.INPUT_METHOD_SERVICE);
2196 inputManager.showSoftInput(mInput, 0);
Romain Guy7b4ef332009-07-14 13:58:08 -07002197 }
2198 });
2199
2200 return dialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002201 }
2202
2203 private void changeFolderName() {
2204 final String name = mInput.getText().toString();
2205 if (!TextUtils.isEmpty(name)) {
2206 // Make sure we have the right folder info
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002207 mFolderInfo = sFolders.get(mFolderInfo.id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002208 mFolderInfo.title = name;
2209 LauncherModel.updateItemInDatabase(Launcher.this, mFolderInfo);
2210
Joe Onorato9c1289c2009-08-17 11:03:03 -04002211 if (mWorkspaceLoading) {
Joe Onorato7c312c12009-08-13 21:36:53 -07002212 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002213 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002214 } else {
2215 final FolderIcon folderIcon = (FolderIcon)
2216 mWorkspace.getViewForTag(mFolderInfo);
2217 if (folderIcon != null) {
2218 folderIcon.setText(name);
2219 getWorkspace().requestLayout();
2220 } else {
Joe Onorato7c312c12009-08-13 21:36:53 -07002221 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002222 mWorkspaceLoading = true;
2223 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002224 }
2225 }
2226 }
2227 cleanup();
2228 }
2229
2230 private void cleanup() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002231 dismissDialog(DIALOG_RENAME_FOLDER);
2232 mWaitingForResult = false;
2233 mFolderInfo = null;
2234 }
2235 }
2236
Daniel Sandler843e8602010-06-07 14:59:01 -04002237 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2238 public boolean isAllAppsVisible() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002239 return mState == State.ALL_APPS;
Joe Onoratofb0ca672009-09-14 17:55:46 -04002240 }
2241
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002242 // AllAppsView.Watcher
2243 public void zoomed(float zoom) {
Michael Jurka213d9632010-07-28 11:29:25 -07002244 // In XLarge view, we zoom down the workspace below all apps so it's still visible
2245 if (zoom == 1.0f && !LauncherApplication.isScreenXLarge()) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002246 mWorkspace.setVisibility(View.GONE);
2247 }
2248 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002249
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002250 private void showToolbarButton(View button) {
2251 button.setAlpha(1.0f);
2252 button.setVisibility(View.VISIBLE);
2253 button.setFocusable(true);
2254 button.setClickable(true);
2255 }
2256
2257 private void hideToolbarButton(View button) {
2258 button.setAlpha(0.0f);
2259 // We can't set it to GONE, otherwise the RelativeLayout gets screwed up
2260 button.setVisibility(View.INVISIBLE);
2261 button.setFocusable(false);
2262 button.setClickable(false);
2263 }
2264
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002265 /**
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002266 * Helper function for showing or hiding a toolbar button, possibly animated.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002267 *
2268 * @param show If true, create an animation to the show the item. Otherwise, hide it.
2269 * @param view The toolbar button to be animated
Chet Haaseb1254a62010-09-07 13:35:00 -07002270 * @param seq A AnimatorSet that will be used to animate the transition. If null, the
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002271 * transition will not be animated.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002272 */
Chet Haaseb1254a62010-09-07 13:35:00 -07002273 private void hideOrShowToolbarButton(boolean show, final View view, AnimatorSet seq) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002274 final boolean showing = show;
2275 final boolean hiding = !show;
2276
2277 final int duration = show ?
2278 getResources().getInteger(R.integer.config_toolbarButtonFadeInTime) :
2279 getResources().getInteger(R.integer.config_toolbarButtonFadeOutTime);
2280
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002281 if (seq != null) {
Chet Haase472b2812010-10-14 07:02:04 -07002282 Animator anim = ObjectAnimator.ofFloat(view, "alpha", show ? 1.0f : 0.0f);
2283 anim.setDuration(duration);
Chet Haaseb1254a62010-09-07 13:35:00 -07002284 anim.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002285 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002286 public void onAnimationStart(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002287 if (showing) showToolbarButton(view);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002288 }
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002289 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002290 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002291 if (hiding) hideToolbarButton(view);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002292 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002293 });
2294 seq.play(anim);
2295 } else {
2296 if (showing) {
2297 showToolbarButton(view);
2298 } else {
2299 hideToolbarButton(view);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002300 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002301 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002302 }
2303
2304 /**
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002305 * Show/hide the appropriate toolbar buttons for newState.
2306 * If showSeq or hideSeq is null, the transition will be done immediately (not animated).
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002307 *
2308 * @param newState The state that is being switched to
Chet Haaseb1254a62010-09-07 13:35:00 -07002309 * @param showSeq AnimatorSet in which to put "show" animations, or null.
2310 * @param hideSeq AnimatorSet in which to put "hide" animations, or null.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002311 */
Chet Haaseb1254a62010-09-07 13:35:00 -07002312 private void hideAndShowToolbarButtons(State newState, AnimatorSet showSeq, AnimatorSet hideSeq) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002313 final View searchButton = findViewById(R.id.search_button);
2314 final View allAppsButton = findViewById(R.id.all_apps_button);
2315 final View marketButton = findViewById(R.id.market_button);
2316 final View configureButton = findViewById(R.id.configure_button);
2317
2318 switch (newState) {
2319 case WORKSPACE:
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002320 hideOrShowToolbarButton(true, searchButton, showSeq);
2321 hideOrShowToolbarButton(true, allAppsButton, showSeq);
2322 hideOrShowToolbarButton(true, configureButton, showSeq);
2323 hideOrShowToolbarButton(false, marketButton, hideSeq);
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002324 mDeleteZone.setHandle(allAppsButton);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002325 break;
2326 case ALL_APPS:
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002327 hideOrShowToolbarButton(true, configureButton, showSeq);
2328 hideOrShowToolbarButton(true, marketButton, showSeq);
2329 hideOrShowToolbarButton(false, searchButton, hideSeq);
2330 hideOrShowToolbarButton(false, allAppsButton, hideSeq);
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002331 mDeleteZone.setHandle(marketButton);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002332 break;
2333 case CUSTOMIZE:
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002334 hideOrShowToolbarButton(true, allAppsButton, showSeq);
2335 hideOrShowToolbarButton(false, searchButton, hideSeq);
2336 hideOrShowToolbarButton(false, marketButton, hideSeq);
2337 hideOrShowToolbarButton(false, configureButton, hideSeq);
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002338 mDeleteZone.setHandle(allAppsButton);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002339 break;
2340 }
2341 }
2342
2343 /**
2344 * Helper method for the cameraZoomIn/cameraZoomOut animations
2345 * @param view The view being animated
2346 * @param state The state that we are moving in or out of -- either ALL_APPS or CUSTOMIZE
2347 * @param scaleFactor The scale factor used for the zoom
2348 */
2349 private void setPivotsForZoom(View view, State state, float scaleFactor) {
2350 final int height = view.getHeight();
2351 view.setPivotX(view.getWidth() / 2.0f);
2352 // Set pivotY so that at the starting zoom factor, the view is off-screen by a small margin
2353 // Assumes that the view is normally anchored to either the top or bottom of the screen
2354 final int margin = getResources().getInteger(R.integer.config_allAppsVerticalOffset);
2355 if (state == State.ALL_APPS) {
2356 view.setPivotY(height + ((view.getTop() + height) / scaleFactor) + margin);
2357 } else {
2358 view.setPivotY(0.0f - (view.getTop() / scaleFactor) - margin);
2359 }
2360 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002361
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002362 /**
2363 * Zoom the camera out from the workspace to reveal 'toView'.
2364 * Assumes that the view to show is anchored at either the very top or very bottom
2365 * of the screen.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002366 * @param toState The state to zoom out to. Must be ALL_APPS or CUSTOMIZE.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002367 */
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002368 private void cameraZoomOut(State toState, boolean animated) {
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002369 final Resources res = getResources();
2370 final int duration = res.getInteger(R.integer.config_allAppsZoomInTime);
2371 final float scale = (float) res.getInteger(R.integer.config_allAppsZoomScaleFactor);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002372 final boolean toAllApps = (toState == State.ALL_APPS);
2373 final View toView = toAllApps ? (View) mAllAppsGrid : mHomeCustomizationDrawer;
Patrick Dubroy558654c2010-07-23 16:48:11 -07002374
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002375 setPivotsForZoom(toView, toState, scale);
2376
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002377 if (toState == State.ALL_APPS) {
2378 mWorkspace.shrinkToBottom(animated);
2379 } else {
2380 mWorkspace.shrinkToTop(animated);
2381 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002382
2383 if (animated) {
Chet Haase472b2812010-10-14 07:02:04 -07002384 ValueAnimator scaleAnim = ObjectAnimator.ofPropertyValuesHolder(toView,
2385 PropertyValuesHolder.ofFloat("scaleX", scale, 1.0f),
2386 PropertyValuesHolder.ofFloat("scaleY", scale, 1.0f));
2387 scaleAnim.setDuration(duration);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002388 scaleAnim.setInterpolator(new DecelerateInterpolator());
Chet Haaseb1254a62010-09-07 13:35:00 -07002389 scaleAnim.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002390 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002391 public void onAnimationStart(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002392 // Prepare the position
2393 toView.setTranslationX(0.0f);
2394 toView.setTranslationY(0.0f);
2395 toView.setVisibility(View.VISIBLE);
2396 }
2397 });
2398
Chet Haaseb1254a62010-09-07 13:35:00 -07002399 AnimatorSet toolbarHideAnim = new AnimatorSet();
2400 AnimatorSet toolbarShowAnim = new AnimatorSet();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002401 hideAndShowToolbarButtons(toState, toolbarShowAnim, toolbarHideAnim);
2402
2403 // toView should appear right at the end of the workspace shrink animation
2404 final int startDelay = res.getInteger(R.integer.config_workspaceShrinkTime) - duration;
2405
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002406 if (mStateAnimation != null) mStateAnimation.cancel();
2407 mStateAnimation = new AnimatorSet();
2408 mStateAnimation.playTogether(scaleAnim, toolbarHideAnim);
2409 mStateAnimation.play(scaleAnim).after(startDelay);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002410
2411 // Show the new toolbar buttons just as the main animation is ending
2412 final int fadeInTime = res.getInteger(R.integer.config_toolbarButtonFadeInTime);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002413 mStateAnimation.play(toolbarShowAnim).after(duration + startDelay - fadeInTime);
2414 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002415 } else {
2416 toView.setTranslationX(0.0f);
2417 toView.setTranslationY(0.0f);
2418 toView.setScaleX(1.0f);
2419 toView.setScaleY(1.0f);
2420 toView.setVisibility(View.VISIBLE);
2421 hideAndShowToolbarButtons(toState, null, null);
2422 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002423 }
2424
2425 /**
2426 * Zoom the camera back into the workspace, hiding 'fromView'.
2427 * This is the opposite of cameraZoomOut.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002428 * @param fromState The current state (must be ALL_APPS or CUSTOMIZE).
2429 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002430 */
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002431 private void cameraZoomIn(State fromState, boolean animated) {
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002432 Resources res = getResources();
2433 int duration = res.getInteger(R.integer.config_allAppsZoomOutTime);
2434 float scaleFactor = (float) res.getInteger(R.integer.config_allAppsZoomScaleFactor);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002435 final View fromView =
2436 (fromState == State.ALL_APPS) ? (View) mAllAppsGrid : mHomeCustomizationDrawer;
2437
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002438 mCustomizePagedView.endChoiceMode();
2439 mAllAppsPagedView.endChoiceMode();
2440
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002441 setPivotsForZoom(fromView, fromState, scaleFactor);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002442
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002443 mWorkspace.unshrink(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002444
2445 if (animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002446 if (mStateAnimation != null) mStateAnimation.cancel();
2447 mStateAnimation = new AnimatorSet();
Chet Haase472b2812010-10-14 07:02:04 -07002448 ValueAnimator scaleAnim = ObjectAnimator.ofPropertyValuesHolder(fromView,
2449 PropertyValuesHolder.ofFloat("scaleX", scaleFactor),
2450 PropertyValuesHolder.ofFloat("scaleY", scaleFactor));
2451 scaleAnim.setDuration(duration);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002452 scaleAnim.setInterpolator(new AccelerateInterpolator());
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002453 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002454 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002455 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002456 fromView.setVisibility(View.GONE);
2457 fromView.setScaleX(1.0f);
2458 fromView.setScaleY(1.0f);
2459 }
2460 });
2461
Chet Haaseb1254a62010-09-07 13:35:00 -07002462 AnimatorSet toolbarHideAnim = new AnimatorSet();
2463 AnimatorSet toolbarShowAnim = new AnimatorSet();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002464 hideAndShowToolbarButtons(State.WORKSPACE, toolbarShowAnim, toolbarHideAnim);
2465
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002466 mStateAnimation.playTogether(scaleAnim, toolbarHideAnim);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002467
2468 // Show the new toolbar buttons at the very end of the whole animation
2469 final int fadeInTime = res.getInteger(R.integer.config_toolbarButtonFadeInTime);
2470 final int unshrinkTime = res.getInteger(R.integer.config_workspaceUnshrinkTime);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002471 mStateAnimation.play(toolbarShowAnim).after(unshrinkTime - fadeInTime);
2472 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002473 } else {
2474 fromView.setVisibility(View.GONE);
2475 hideAndShowToolbarButtons(State.WORKSPACE, null, null);
2476 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002477 }
2478
2479 /**
2480 * Pan the camera in the vertical plane between 'fromView' and 'toView'.
2481 * This is the transition used on xlarge screens to go between all apps and
2482 * the home customization drawer.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002483 * @param fromState The view to pan away from. Must be ALL_APPS or CUSTOMIZE.
2484 * @param toState The view to pan into the frame. Must be ALL_APPS or CUSTOMIZE.
2485 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002486 */
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002487 private void cameraPan(State fromState, State toState, boolean animated) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002488 final Resources res = getResources();
2489 final int duration = res.getInteger(R.integer.config_allAppsCameraPanTime);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002490 final int workspaceHeight = mWorkspace.getHeight();
2491
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002492 final boolean fromAllApps = (fromState == State.ALL_APPS);
2493 final View fromView = fromAllApps ? (View) mAllAppsGrid : mHomeCustomizationDrawer;
2494 final View toView = fromAllApps ? mHomeCustomizationDrawer : (View) mAllAppsGrid;
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002495
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002496 final float fromViewStartY = fromAllApps ? 0.0f : fromView.getY();
2497 final float fromViewEndY = fromAllApps ? -fromView.getHeight() * 2 : workspaceHeight * 2;
2498 final float toViewStartY = fromAllApps ? workspaceHeight * 2 : -toView.getHeight() * 2;
2499 final float toViewEndY = fromAllApps ? workspaceHeight - toView.getHeight() : 0.0f;
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002500
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002501 mCustomizePagedView.endChoiceMode();
2502 mAllAppsPagedView.endChoiceMode();
2503
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002504 if (toState == State.ALL_APPS) {
2505 mWorkspace.shrinkToBottom(animated);
2506 } else {
2507 mWorkspace.shrinkToTop(animated);
2508 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002509
2510 if (animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002511 if (mStateAnimation != null) mStateAnimation.cancel();
2512 mStateAnimation = new AnimatorSet();
2513 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002514 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002515 public void onAnimationStart(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002516 toView.setVisibility(View.VISIBLE);
2517 toView.setY(toViewStartY);
2518 }
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002519 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002520 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002521 fromView.setVisibility(View.GONE);
2522 }
2523 });
2524
Chet Haaseb1254a62010-09-07 13:35:00 -07002525 AnimatorSet toolbarHideAnim = new AnimatorSet();
2526 AnimatorSet toolbarShowAnim = new AnimatorSet();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002527 hideAndShowToolbarButtons(toState, toolbarShowAnim, toolbarHideAnim);
2528
Chet Haase472b2812010-10-14 07:02:04 -07002529 ObjectAnimator fromAnim = ObjectAnimator.ofFloat(fromView, "y",
2530 fromViewStartY, fromViewEndY);
2531 fromAnim.setDuration(duration);
2532 ObjectAnimator toAnim = ObjectAnimator.ofFloat(toView, "y",
2533 toViewStartY, toViewEndY);
2534 fromAnim.setDuration(duration);
2535 mStateAnimation.playTogether(toolbarHideAnim, fromAnim, toAnim);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002536
2537 // Show the new toolbar buttons just as the main animation is ending
2538 final int fadeInTime = res.getInteger(R.integer.config_toolbarButtonFadeInTime);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002539 mStateAnimation.play(toolbarShowAnim).after(duration - fadeInTime);
2540 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002541 } else {
2542 fromView.setY(fromViewEndY);
2543 fromView.setVisibility(View.GONE);
2544 toView.setY(toViewEndY);
2545 toView.setVisibility(View.VISIBLE);
2546 hideAndShowToolbarButtons(toState, null, null);
2547 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002548 }
2549
2550 void showAllApps(boolean animated) {
Michael Jurka883f55b2010-10-21 15:47:14 -07002551 if (mState == State.ALL_APPS) {
Winson Chung80baf5a2010-08-09 16:03:15 -07002552 return;
Michael Jurka883f55b2010-10-21 15:47:14 -07002553 }
Winson Chung80baf5a2010-08-09 16:03:15 -07002554
Michael Jurka79212d82010-07-30 16:36:20 -07002555 if (LauncherApplication.isScreenXLarge()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002556 if (mState == State.CUSTOMIZE) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002557 cameraPan(State.CUSTOMIZE, State.ALL_APPS, animated);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002558 } else {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002559 cameraZoomOut(State.ALL_APPS, animated);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002560 }
Patrick Dubroy558654c2010-07-23 16:48:11 -07002561 } else {
2562 mAllAppsGrid.zoom(1.0f, animated);
2563 }
Joe Onorato3a8820b2009-11-10 15:06:42 -08002564
Romain Guyc16fea72010-03-12 17:17:56 -08002565 ((View) mAllAppsGrid).setFocusable(true);
2566 ((View) mAllAppsGrid).requestFocus();
Winson Chungaafa03c2010-06-11 17:34:16 -07002567
Joe Onorato7c312c12009-08-13 21:36:53 -07002568 // TODO: fade these two too
2569 mDeleteZone.setVisibility(View.GONE);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002570 // Change the state *after* we've called all the transition code
2571 mState = State.ALL_APPS;
2572 }
2573
2574
2575 void showWorkspace(boolean animated) {
2576 showWorkspace(animated, null);
2577 }
2578
2579 void showWorkspace(boolean animated, CellLayout layout) {
2580 if (layout != null && animated) {
2581 mWorkspace.unshrink(layout);
2582 } else {
2583 mWorkspace.unshrink(animated);
2584 }
2585 if (mState == State.ALL_APPS) {
2586 closeAllApps(animated);
2587 } else if (mState == State.CUSTOMIZE) {
2588 hideCustomizationDrawer(animated);
2589 }
2590 // Change the state *after* we've called all the transition code
2591 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04002592 }
2593
Joe Onoratob2061212009-11-24 16:13:54 -05002594 /**
Joe Onorato7e4ed992009-12-03 13:10:49 -08002595 * Things to test when changing this code.
Joe Onoratob2061212009-11-24 16:13:54 -05002596 * - Home from workspace
2597 * - from center screen
2598 * - from other screens
2599 * - Home from all apps
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002600 * - from center screen
2601 * - from other screens
Joe Onoratob2061212009-11-24 16:13:54 -05002602 * - Back from all apps
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002603 * - from center screen
2604 * - from other screens
Joe Onoratob2061212009-11-24 16:13:54 -05002605 * - Launch app from workspace and quit
2606 * - with back
2607 * - with home
2608 * - Launch app from all apps and quit
2609 * - with back
2610 * - with home
Joe Onorato7e4ed992009-12-03 13:10:49 -08002611 * - Go to a screen that's not the default, then all
2612 * apps, and launch and app, and go back
2613 * - with back
2614 * -with home
Joe Onoratob2061212009-11-24 16:13:54 -05002615 * - On workspace, long press power and go back
2616 * - with back
2617 * - with home
2618 * - On all apps, long press power and go back
2619 * - with back
2620 * - with home
2621 * - On workspace, power off
2622 * - On all apps, power off
Joe Onorato7e4ed992009-12-03 13:10:49 -08002623 * - Launch an app and turn off the screen while in that app
2624 * - Go back with home key
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002625 * - Go back with back key TODO: make this not go to workspace
Joe Onorato7e4ed992009-12-03 13:10:49 -08002626 * - From all apps
2627 * - From workspace
Joe Onoratoeffc4a82010-04-15 11:48:13 -07002628 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2629 * - From all apps
2630 * - From the center workspace
2631 * - From another workspace
Joe Onoratob2061212009-11-24 16:13:54 -05002632 */
Joe Onorato7bb17492009-09-24 17:51:01 -07002633 void closeAllApps(boolean animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002634 if (mState == State.ALL_APPS) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002635 mWorkspace.setVisibility(View.VISIBLE);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002636 if (LauncherApplication.isScreenXLarge()) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002637 cameraZoomIn(State.ALL_APPS, animated);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002638 } else {
2639 mAllAppsGrid.zoom(0.0f, animated);
2640 }
Daniel Sandler388f6792010-03-02 14:08:08 -05002641 ((View)mAllAppsGrid).setFocusable(false);
Michael Jurka0142d492010-08-25 17:46:15 -07002642 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onoratoe77c08d2009-08-01 00:01:20 -07002643 }
Joe Onorato7404ee42009-07-31 11:54:44 -07002644 }
2645
Joe Onorato7c312c12009-08-13 21:36:53 -07002646 void lockAllApps() {
2647 // TODO
2648 }
2649
2650 void unlockAllApps() {
2651 // TODO
2652 }
2653
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002654 // Show the customization drawer (only exists in x-large configuration)
2655 private void showCustomizationDrawer(boolean animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002656 if (mState == State.ALL_APPS) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002657 cameraPan(State.ALL_APPS, State.CUSTOMIZE, animated);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002658 } else {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002659 cameraZoomOut(State.CUSTOMIZE, animated);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002660 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002661 // Change the state *after* we've called all the transition code
2662 mState = State.CUSTOMIZE;
Patrick Dubroy558654c2010-07-23 16:48:11 -07002663 }
2664
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002665 // Hide the customization drawer (only exists in x-large configuration)
2666 void hideCustomizationDrawer(boolean animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002667 if (mState == State.CUSTOMIZE) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002668 cameraZoomIn(State.CUSTOMIZE, animated);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002669 }
2670 }
2671
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002672 void addExternalItemToScreen(ItemInfo itemInfo, CellLayout layout) {
2673 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
2674 showOutOfSpaceMessage();
Michael Jurka213d9632010-07-28 11:29:25 -07002675 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002676 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002677
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002678 void onWorkspaceClick(CellLayout layout) {
2679 showWorkspace(true, layout);
Michael Jurka213d9632010-07-28 11:29:25 -07002680 }
2681
Michael Jurka0423dcf2010-10-05 14:56:18 -07002682 private void updateButtonWithIconFromExternalActivity(
2683 int buttonId, ComponentName activityName, int fallbackDrawableId) {
2684 ImageView button = (ImageView) findViewById(buttonId);
2685 Drawable toolbarIcon = null;
2686 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002687 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002688 // Look for the toolbar icon specified in the activity meta-data
2689 Bundle metaData = packageManager.getActivityInfo(
2690 activityName, PackageManager.GET_META_DATA).metaData;
2691 if (metaData != null) {
2692 int iconResId = metaData.getInt(TOOLBAR_ICON_METADATA_NAME);
2693 if (iconResId != 0) {
2694 Resources res = packageManager.getResourcesForActivity(activityName);
2695 toolbarIcon = res.getDrawable(iconResId);
2696 }
2697 }
2698 } catch (NameNotFoundException e) {
2699 // Do nothing
2700 }
2701 // If we were unable to find the icon via the meta-data, use a generic one
2702 if (toolbarIcon == null) {
2703 button.setImageResource(fallbackDrawableId);
2704 } else {
2705 button.setImageDrawable(toolbarIcon);
2706 }
2707 }
2708
2709 private void updateGlobalSearchIcon() {
2710 if (LauncherApplication.isScreenXLarge()) {
2711 final SearchManager searchManager =
2712 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2713 ComponentName activityName = searchManager.getGlobalSearchActivity();
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002714 if (activityName != null) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002715 updateButtonWithIconFromExternalActivity(
2716 R.id.search_button, activityName, R.drawable.search_button_generic);
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002717 }
2718 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002719 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002720
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002721 /**
2722 * Sets the app market icon (shown when all apps is visible on x-large screens)
2723 */
2724 private void updateAppMarketIcon() {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002725 if (LauncherApplication.isScreenXLarge()) {
2726 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
2727 // Find the app market activity by resolving an intent.
2728 // (If multiple app markets are installed, it will return the ResolverActivity.)
2729 ComponentName activityName = intent.resolveActivity(getPackageManager());
2730 if (activityName != null) {
2731 mAppMarketIntent = intent;
2732 updateButtonWithIconFromExternalActivity(
2733 R.id.market_button, activityName, R.drawable.app_market_generic);
2734 }
2735 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002736 }
2737
2738 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002739 * Displays the shortcut creation dialog and launches, if necessary, the
2740 * appropriate activity.
2741 */
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002742 private class CreateShortcut implements DialogInterface.OnClickListener,
Romain Guy7b4ef332009-07-14 13:58:08 -07002743 DialogInterface.OnCancelListener, DialogInterface.OnDismissListener,
2744 DialogInterface.OnShowListener {
2745
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002746 private AddAdapter mAdapter;
Romain Guy9ffb5432009-03-24 21:04:15 -07002747
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002748 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002749 mAdapter = new AddAdapter(Launcher.this);
Romain Guycbb89e42009-06-08 15:52:54 -07002750
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002751 final AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
2752 builder.setTitle(getString(R.string.menu_item_add_item));
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002753 builder.setAdapter(mAdapter, this);
Romain Guycbb89e42009-06-08 15:52:54 -07002754
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002755 builder.setInverseBackgroundForced(true);
2756
2757 AlertDialog dialog = builder.create();
2758 dialog.setOnCancelListener(this);
Romain Guycbb89e42009-06-08 15:52:54 -07002759 dialog.setOnDismissListener(this);
Romain Guy7b4ef332009-07-14 13:58:08 -07002760 dialog.setOnShowListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002761
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002762 return dialog;
2763 }
2764
2765 public void onCancel(DialogInterface dialog) {
2766 mWaitingForResult = false;
2767 cleanup();
2768 }
2769
Romain Guycbb89e42009-06-08 15:52:54 -07002770 public void onDismiss(DialogInterface dialog) {
Romain Guycbb89e42009-06-08 15:52:54 -07002771 }
2772
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002773 private void cleanup() {
Joe Onoratocc19a532009-11-19 14:19:17 -08002774 try {
2775 dismissDialog(DIALOG_CREATE_SHORTCUT);
2776 } catch (Exception e) {
2777 // An exception is thrown if the dialog is not visible, which is fine
2778 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002779 }
2780
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002781 /**
2782 * Handle the action clicked in the "Add to home" dialog.
2783 */
2784 public void onClick(DialogInterface dialog, int which) {
2785 Resources res = getResources();
2786 cleanup();
Romain Guycbb89e42009-06-08 15:52:54 -07002787
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002788 switch (which) {
2789 case AddAdapter.ITEM_SHORTCUT: {
Joe Onoratodeb98af2010-02-19 14:59:39 -08002790 pickShortcut();
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002791 break;
2792 }
Romain Guycbb89e42009-06-08 15:52:54 -07002793
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002794 case AddAdapter.ITEM_APPWIDGET: {
2795 int appWidgetId = Launcher.this.mAppWidgetHost.allocateAppWidgetId();
Romain Guycbb89e42009-06-08 15:52:54 -07002796
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002797 Intent pickIntent = new Intent(AppWidgetManager.ACTION_APPWIDGET_PICK);
2798 pickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002799 // start the pick activity
2800 startActivityForResult(pickIntent, REQUEST_PICK_APPWIDGET);
2801 break;
2802 }
Romain Guycbb89e42009-06-08 15:52:54 -07002803
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002804 case AddAdapter.ITEM_LIVE_FOLDER: {
2805 // Insert extra item to handle inserting folder
2806 Bundle bundle = new Bundle();
Romain Guycbb89e42009-06-08 15:52:54 -07002807
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002808 ArrayList<String> shortcutNames = new ArrayList<String>();
2809 shortcutNames.add(res.getString(R.string.group_folder));
2810 bundle.putStringArrayList(Intent.EXTRA_SHORTCUT_NAME, shortcutNames);
Romain Guycbb89e42009-06-08 15:52:54 -07002811
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002812 ArrayList<ShortcutIconResource> shortcutIcons =
2813 new ArrayList<ShortcutIconResource>();
2814 shortcutIcons.add(ShortcutIconResource.fromContext(Launcher.this,
2815 R.drawable.ic_launcher_folder));
2816 bundle.putParcelableArrayList(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, shortcutIcons);
2817
2818 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
2819 pickIntent.putExtra(Intent.EXTRA_INTENT,
2820 new Intent(LiveFolders.ACTION_CREATE_LIVE_FOLDER));
2821 pickIntent.putExtra(Intent.EXTRA_TITLE,
2822 getText(R.string.title_select_live_folder));
2823 pickIntent.putExtras(bundle);
Romain Guycbb89e42009-06-08 15:52:54 -07002824
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002825 startActivityForResult(pickIntent, REQUEST_PICK_LIVE_FOLDER);
2826 break;
2827 }
2828
2829 case AddAdapter.ITEM_WALLPAPER: {
2830 startWallpaper();
2831 break;
2832 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002833 }
2834 }
Romain Guy7b4ef332009-07-14 13:58:08 -07002835
2836 public void onShow(DialogInterface dialog) {
Winson Chungaafa03c2010-06-11 17:34:16 -07002837 mWaitingForResult = true;
Romain Guy7b4ef332009-07-14 13:58:08 -07002838 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002839 }
2840
2841 /**
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002842 * Receives notifications when applications are added/removed.
2843 */
2844 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
2845 @Override
2846 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002847 closeSystemDialogs();
Joe Onoratob2061212009-11-24 16:13:54 -05002848 String reason = intent.getStringExtra("reason");
2849 if (!"homekey".equals(reason)) {
2850 boolean animate = true;
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002851 if (mPaused || "lock".equals(reason)) {
Joe Onoratob2061212009-11-24 16:13:54 -05002852 animate = false;
2853 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002854 showWorkspace(animate);
Joe Onoratob2061212009-11-24 16:13:54 -05002855 }
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002856 }
2857 }
2858
2859 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002860 * Receives notifications whenever the appwidgets are reset.
2861 */
2862 private class AppWidgetResetObserver extends ContentObserver {
2863 public AppWidgetResetObserver() {
2864 super(new Handler());
2865 }
2866
2867 @Override
2868 public void onChange(boolean selfChange) {
2869 onAppWidgetReset();
2870 }
2871 }
2872
2873 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002874 * If the activity is currently paused, signal that we need to re-run the loader
2875 * in onResume.
2876 *
2877 * This needs to be called from incoming places where resources might have been loaded
2878 * while we are paused. That is becaues the Configuration might be wrong
2879 * when we're not running, and if it comes back to what it was when we
2880 * were paused, we are not restarted.
2881 *
2882 * Implementation of the method from LauncherModel.Callbacks.
2883 *
2884 * @return true if we are currently paused. The caller might be able to
2885 * skip some work in that case since we will come back again.
2886 */
2887 public boolean setLoadOnResume() {
2888 if (mPaused) {
2889 Log.i(TAG, "setLoadOnResume");
2890 mOnResumeNeedsLoad = true;
2891 return true;
2892 } else {
2893 return false;
2894 }
2895 }
2896
2897 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002898 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002899 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04002900 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07002901 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002902 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07002903 } else {
2904 return SCREEN_COUNT / 2;
2905 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002906 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07002907
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002908 void setAllAppsPagedView(PagedView view) {
2909 mAllAppsPagedView = view;
2910 }
2911
Joe Onorato9c1289c2009-08-17 11:03:03 -04002912 /**
2913 * Refreshes the shortcuts shown on the workspace.
2914 *
2915 * Implementation of the method from LauncherModel.Callbacks.
2916 */
2917 public void startBinding() {
2918 final Workspace workspace = mWorkspace;
2919 int count = workspace.getChildCount();
2920 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04002921 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Joe Onorato9c1289c2009-08-17 11:03:03 -04002922 ((ViewGroup) workspace.getChildAt(i)).removeAllViewsInLayout();
2923 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07002924
Joe Onorato9c1289c2009-08-17 11:03:03 -04002925 if (DEBUG_USER_INTERFACE) {
2926 android.widget.Button finishButton = new android.widget.Button(this);
2927 finishButton.setText("Finish");
2928 workspace.addInScreen(finishButton, 1, 0, 0, 1, 1);
2929
2930 finishButton.setOnClickListener(new android.widget.Button.OnClickListener() {
2931 public void onClick(View v) {
2932 finish();
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07002933 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002934 });
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002935 }
2936 }
2937
2938 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002939 * Bind the items start-end from the list.
2940 *
2941 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002942 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04002943 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
2944
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002945 setLoadOnResume();
2946
Joe Onorato9c1289c2009-08-17 11:03:03 -04002947 final Workspace workspace = mWorkspace;
2948
2949 for (int i=start; i<end; i++) {
2950 final ItemInfo item = shortcuts.get(i);
2951 mDesktopItems.add(item);
2952 switch (item.itemType) {
2953 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
2954 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Joe Onorato0589f0f2010-02-08 13:44:00 -08002955 final View shortcut = createShortcut((ShortcutInfo)item);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002956 workspace.addInScreen(shortcut, item.screen, item.cellX, item.cellY, 1, 1,
2957 false);
2958 break;
2959 case LauncherSettings.Favorites.ITEM_TYPE_USER_FOLDER:
2960 final FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07002961 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Joe Onorato9c1289c2009-08-17 11:03:03 -04002962 (UserFolderInfo) item);
2963 workspace.addInScreen(newFolder, item.screen, item.cellX, item.cellY, 1, 1,
2964 false);
2965 break;
2966 case LauncherSettings.Favorites.ITEM_TYPE_LIVE_FOLDER:
2967 final FolderIcon newLiveFolder = LiveFolderIcon.fromXml(
2968 R.layout.live_folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07002969 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Joe Onorato9c1289c2009-08-17 11:03:03 -04002970 (LiveFolderInfo) item);
2971 workspace.addInScreen(newLiveFolder, item.screen, item.cellX, item.cellY, 1, 1,
2972 false);
2973 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04002974 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002975 }
2976
Joe Onorato9c1289c2009-08-17 11:03:03 -04002977 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002978 }
2979
Joe Onorato9c1289c2009-08-17 11:03:03 -04002980 /**
2981 * Implementation of the method from LauncherModel.Callbacks.
2982 */
Joe Onoratoad72e172009-11-06 16:25:04 -05002983 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002984 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002985 sFolders.clear();
2986 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002987 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002988
2989 /**
2990 * Add the views for a widget to the workspace.
2991 *
2992 * Implementation of the method from LauncherModel.Callbacks.
2993 */
2994 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002995 setLoadOnResume();
2996
Daniel Sandler843e8602010-06-07 14:59:01 -04002997 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
2998 if (DEBUG_WIDGETS) {
2999 Log.d(TAG, "bindAppWidget: " + item);
3000 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003001 final Workspace workspace = mWorkspace;
3002
3003 final int appWidgetId = item.appWidgetId;
3004 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003005 if (DEBUG_WIDGETS) {
3006 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3007 }
3008
Joe Onorato9c1289c2009-08-17 11:03:03 -04003009 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3010
Joe Onorato9c1289c2009-08-17 11:03:03 -04003011 item.hostView.setAppWidget(appWidgetId, appWidgetInfo);
3012 item.hostView.setTag(item);
3013
3014 workspace.addInScreen(item.hostView, item.screen, item.cellX,
3015 item.cellY, item.spanX, item.spanY, false);
3016
3017 workspace.requestLayout();
3018
3019 mDesktopItems.add(item);
Daniel Sandler843e8602010-06-07 14:59:01 -04003020
3021 if (DEBUG_WIDGETS) {
3022 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3023 + (SystemClock.uptimeMillis()-start) + "ms");
3024 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003025 }
3026
3027 /**
3028 * Callback saying that there aren't any more items to bind.
3029 *
3030 * Implementation of the method from LauncherModel.Callbacks.
3031 */
3032 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003033 setLoadOnResume();
3034
Joe Onorato9c1289c2009-08-17 11:03:03 -04003035 if (mSavedState != null) {
3036 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003037 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003038 }
3039
3040 final long[] userFolders = mSavedState.getLongArray(RUNTIME_STATE_USER_FOLDERS);
3041 if (userFolders != null) {
3042 for (long folderId : userFolders) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003043 final FolderInfo info = sFolders.get(folderId);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003044 if (info != null) {
3045 openFolder(info);
3046 }
3047 }
3048 final Folder openFolder = mWorkspace.getOpenFolder();
3049 if (openFolder != null) {
3050 openFolder.requestFocus();
3051 }
3052 }
3053
Joe Onorato9c1289c2009-08-17 11:03:03 -04003054 mSavedState = null;
3055 }
3056
3057 if (mSavedInstanceState != null) {
3058 super.onRestoreInstanceState(mSavedInstanceState);
3059 mSavedInstanceState = null;
3060 }
3061
Joe Onorato9c1289c2009-08-17 11:03:03 -04003062 mWorkspaceLoading = false;
3063 }
3064
3065 /**
3066 * Add the icons for all apps.
3067 *
3068 * Implementation of the method from LauncherModel.Callbacks.
3069 */
3070 public void bindAllApplications(ArrayList<ApplicationInfo> apps) {
Romain Guy84f296c2009-11-04 15:00:44 -08003071 mAllAppsGrid.setApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003072 if (mCustomizePagedView != null) {
3073 mCustomizePagedView.setApps(apps);
3074 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003075 updateAppMarketIcon();
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003076 updateGlobalSearchIcon();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003077 }
3078
3079 /**
3080 * A package was installed.
3081 *
3082 * Implementation of the method from LauncherModel.Callbacks.
3083 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003084 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003085 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003086 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onoratoa8138d52009-10-06 19:25:30 -07003087 mAllAppsGrid.addApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003088 if (mCustomizePagedView != null) {
3089 mCustomizePagedView.addApps(apps);
3090 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003091 updateAppMarketIcon();
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003092 updateGlobalSearchIcon();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003093 }
3094
3095 /**
3096 * A package was updated.
3097 *
3098 * Implementation of the method from LauncherModel.Callbacks.
3099 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003100 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003101 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003102 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onorato64e6be72010-03-05 15:05:52 -05003103 mWorkspace.updateShortcuts(apps);
3104 mAllAppsGrid.updateApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003105 if (mCustomizePagedView != null) {
3106 mCustomizePagedView.updateApps(apps);
3107 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003108 updateAppMarketIcon();
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003109 updateGlobalSearchIcon();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003110 }
3111
3112 /**
3113 * A package was uninstalled.
3114 *
3115 * Implementation of the method from LauncherModel.Callbacks.
3116 */
Joe Onorato36115782010-06-17 13:28:48 -04003117 public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003118 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onorato36115782010-06-17 13:28:48 -04003119 if (permanent) {
3120 mWorkspace.removeItems(apps);
3121 }
Joe Onoratoa8138d52009-10-06 19:25:30 -07003122 mAllAppsGrid.removeApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003123 if (mCustomizePagedView != null) {
3124 mCustomizePagedView.removeApps(apps);
3125 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003126 updateAppMarketIcon();
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003127 updateGlobalSearchIcon();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003128 }
Joe Onoratobe386092009-11-17 17:32:16 -08003129
3130 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003131 * A number of packages were updated.
3132 */
3133 public void bindPackagesUpdated() {
3134 // update the customization drawer contents
Winson Chung5f941722010-09-28 16:36:43 -07003135 if (mCustomizePagedView != null) {
Winson Chungb3347bb2010-08-19 14:51:28 -07003136 mCustomizePagedView.update();
Winson Chung5f941722010-09-28 16:36:43 -07003137 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003138 }
3139
3140 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003141 * Prints out out state for debugging.
3142 */
3143 public void dumpState() {
3144 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003145 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003146 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3147 Log.d(TAG, "mRestoring=" + mRestoring);
3148 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3149 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
3150 Log.d(TAG, "mDesktopItems.size=" + mDesktopItems.size());
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003151 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003152 mModel.dumpState();
3153 mAllAppsGrid.dumpState();
3154 Log.d(TAG, "END launcher2 dump state");
3155 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003156}