blob: 346e472c52ff20607281cc7f3ffc760669f275b8 [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
Winson Chunga9abd0e2010-10-27 17:18:37 -07001147 public LauncherModel getModel() {
1148 return mModel;
1149 }
1150
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001151 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001152 getWindow().closeAllPanels();
1153
1154 try {
1155 dismissDialog(DIALOG_CREATE_SHORTCUT);
1156 // Unlock the workspace if the dialog was showing
1157 } catch (Exception e) {
1158 // An exception is thrown if the dialog is not visible, which is fine
1159 }
1160
1161 try {
1162 dismissDialog(DIALOG_RENAME_FOLDER);
1163 // Unlock the workspace if the dialog was showing
1164 } catch (Exception e) {
1165 // An exception is thrown if the dialog is not visible, which is fine
1166 }
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001167
1168 // Whatever we were doing is hereby canceled.
1169 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001170 }
1171
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001172 @Override
1173 protected void onNewIntent(Intent intent) {
1174 super.onNewIntent(intent);
1175
1176 // Close the menu
1177 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001178 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001179 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001180
Joe Onorato14f122b2009-11-19 14:06:36 -08001181 boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1182 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001183
Michael Jurka4cb37242010-08-09 21:05:32 -07001184 // in all these cases, only animate if we're already on home
1185 if (LauncherApplication.isScreenXLarge()) {
Michael Jurka99229f62010-09-09 11:49:32 -07001186 mWorkspace.unshrink(alreadyOnHome);
1187 }
1188 if (!mWorkspace.isDefaultPageShowing()) {
Michael Jurka4cb37242010-08-09 21:05:32 -07001189 // on the phone, we don't animate the change to the workspace if all apps is visible
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001190 mWorkspace.moveToDefaultScreen(alreadyOnHome &&
1191 (LauncherApplication.isScreenXLarge() || mState != State.ALL_APPS));
Joe Onorato3a8820b2009-11-10 15:06:42 -08001192 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001193 showWorkspace(alreadyOnHome);
Romain Guy1dd3a072009-07-16 13:21:01 -07001194
Joe Onorato3a8820b2009-11-10 15:06:42 -08001195 final View v = getWindow().peekDecorView();
1196 if (v != null && v.getWindowToken() != null) {
1197 InputMethodManager imm = (InputMethodManager)getSystemService(
1198 INPUT_METHOD_SERVICE);
1199 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001200 }
1201 }
1202 }
1203
1204 @Override
1205 protected void onRestoreInstanceState(Bundle savedInstanceState) {
1206 // Do not call super here
1207 mSavedInstanceState = savedInstanceState;
Michael Jurka946ad472010-07-09 18:05:18 -07001208
1209 if (mHomeCustomizationDrawer != null) {
1210 String cur = savedInstanceState.getString("currentTab");
1211 if (cur != null) {
1212 mHomeCustomizationDrawer.setCurrentTabByTag(cur);
1213 }
1214 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001215 }
1216
1217 @Override
1218 protected void onSaveInstanceState(Bundle outState) {
Michael Jurka0142d492010-08-25 17:46:15 -07001219 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getCurrentPage());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001220
1221 final ArrayList<Folder> folders = mWorkspace.getOpenFolders();
1222 if (folders.size() > 0) {
1223 final int count = folders.size();
1224 long[] ids = new long[count];
1225 for (int i = 0; i < count; i++) {
1226 final FolderInfo info = folders.get(i).getInfo();
1227 ids[i] = info.id;
1228 }
1229 outState.putLongArray(RUNTIME_STATE_USER_FOLDERS, ids);
1230 } else {
1231 super.onSaveInstanceState(outState);
1232 }
1233
Michael Jurka883f55b2010-10-21 15:47:14 -07001234 outState.putInt(RUNTIME_STATE, mState.ordinal());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001235
Michael Jurka0280c3b2010-09-17 15:00:07 -07001236 if (mAddScreen > -1 && mWaitingForResult) {
1237 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mAddScreen);
1238 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mAddIntersectCellX);
1239 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mAddIntersectCellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001240 }
1241
1242 if (mFolderInfo != null && mWaitingForResult) {
1243 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1244 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1245 }
Michael Jurka946ad472010-07-09 18:05:18 -07001246
1247 if (mHomeCustomizationDrawer != null) {
1248 String currentTabTag = mHomeCustomizationDrawer.getCurrentTabTag();
1249 if (currentTabTag != null) {
1250 outState.putString("currentTab", currentTabTag);
1251 }
1252 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001253 }
1254
1255 @Override
1256 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001257 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001258
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001259 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001260 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001261 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001262 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001263 }
1264
1265 TextKeyListener.getInstance().release();
1266
Joe Onorato9c1289c2009-08-17 11:03:03 -04001267 mModel.stopLoader();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001268
Joe Onorato9c1289c2009-08-17 11:03:03 -04001269 unbindDesktopItems();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001270
1271 getContentResolver().unregisterContentObserver(mWidgetObserver);
Winson Chungaafa03c2010-06-11 17:34:16 -07001272
Patrick Dubroyab962b72010-07-26 12:10:10 -07001273 // Some launcher layouts don't have a previous and next view
1274 if (mPreviousView != null) {
1275 dismissPreview(mPreviousView);
1276 }
1277 if (mNextView != null) {
1278 dismissPreview(mNextView);
1279 }
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001280
1281 unregisterReceiver(mCloseSystemDialogsReceiver);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001282 }
1283
1284 @Override
1285 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001286 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001287 super.startActivityForResult(intent, requestCode);
1288 }
1289
1290 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001291 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001292 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001293
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001294 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001295
Karl Rosaen138a0412009-04-23 19:00:21 -07001296 if (initialQuery == null) {
1297 // Use any text typed in the launcher as the initial query
1298 initialQuery = getTypedText();
1299 clearTypedText();
1300 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001301 if (appSearchData == null) {
1302 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001303 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001304 }
Romain Guycbb89e42009-06-08 15:52:54 -07001305
Karl Rosaen138a0412009-04-23 19:00:21 -07001306 final SearchManager searchManager =
1307 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
Karl Rosaen138a0412009-04-23 19:00:21 -07001308 searchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
Romain Guycbb89e42009-06-08 15:52:54 -07001309 appSearchData, globalSearch);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001310 }
1311
1312 @Override
1313 public boolean onCreateOptionsMenu(Menu menu) {
Patrick Dubroy5905bca2010-09-08 22:43:38 -07001314 if (isWorkspaceLocked()) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001315 return false;
1316 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001317
1318 super.onCreateOptionsMenu(menu);
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001319
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001320 menu.add(MENU_GROUP_ADD, MENU_ADD, 0, R.string.menu_add)
1321 .setIcon(android.R.drawable.ic_menu_add)
1322 .setAlphabeticShortcut('A');
Winson Chung7ad01412010-09-27 11:33:03 -07001323 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1324 .setIcon(android.R.drawable.ic_menu_manage)
1325 .setAlphabeticShortcut('M');
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001326 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001327 .setIcon(android.R.drawable.ic_menu_gallery)
1328 .setAlphabeticShortcut('W');
1329 menu.add(0, MENU_SEARCH, 0, R.string.menu_search)
1330 .setIcon(android.R.drawable.ic_search_category_default)
1331 .setAlphabeticShortcut(SearchManager.MENU_KEY);
1332 menu.add(0, MENU_NOTIFICATIONS, 0, R.string.menu_notifications)
1333 .setIcon(com.android.internal.R.drawable.ic_menu_notifications)
1334 .setAlphabeticShortcut('N');
1335
1336 final Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
Romain Guy5a941392009-04-28 15:18:25 -07001337 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1338 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001339
1340 menu.add(0, MENU_SETTINGS, 0, R.string.menu_settings)
1341 .setIcon(android.R.drawable.ic_menu_preferences).setAlphabeticShortcut('P')
1342 .setIntent(settings);
1343
1344 return true;
1345 }
1346
1347 @Override
1348 public boolean onPrepareOptionsMenu(Menu menu) {
1349 super.onPrepareOptionsMenu(menu);
1350
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001351 // If all apps is animating, don't show the menu, because we don't know
1352 // which one to show.
Patrick Dubroyff5f0402010-07-26 15:23:26 -07001353 if (mAllAppsGrid.isAnimating()) {
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001354 return false;
1355 }
1356
1357 // Only show the add and wallpaper options when we're not in all apps.
Patrick Dubroyff5f0402010-07-26 15:23:26 -07001358 boolean visible = !mAllAppsGrid.isVisible();
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001359 menu.setGroupVisible(MENU_GROUP_ADD, visible);
1360 menu.setGroupVisible(MENU_GROUP_WALLPAPER, visible);
1361
1362 // Disable add if the workspace is full.
1363 if (visible) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001364 CellLayout layout = (CellLayout) mWorkspace.getChildAt(mWorkspace.getCurrentPage());
1365 menu.setGroupEnabled(MENU_GROUP_ADD, layout.existsEmptyCell());
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001366 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001367
1368 return true;
1369 }
1370
1371 @Override
1372 public boolean onOptionsItemSelected(MenuItem item) {
1373 switch (item.getItemId()) {
1374 case MENU_ADD:
1375 addItems();
1376 return true;
Winson Chung7ad01412010-09-27 11:33:03 -07001377 case MENU_MANAGE_APPS:
1378 manageApps();
1379 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001380 case MENU_WALLPAPER_SETTINGS:
1381 startWallpaper();
1382 return true;
1383 case MENU_SEARCH:
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001384 onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001385 return true;
1386 case MENU_NOTIFICATIONS:
1387 showNotifications();
1388 return true;
1389 }
1390
1391 return super.onOptionsItemSelected(item);
1392 }
Romain Guycbb89e42009-06-08 15:52:54 -07001393
Karl Rosaen138a0412009-04-23 19:00:21 -07001394 /**
1395 * Indicates that we want global search for this activity by setting the globalSearch
1396 * argument for {@link #startSearch} to true.
1397 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001398
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001399 @Override
1400 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001401 startSearch(null, false, null, true);
Karl Rosaen138a0412009-04-23 19:00:21 -07001402 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001403 }
1404
Joe Onorato9c1289c2009-08-17 11:03:03 -04001405 public boolean isWorkspaceLocked() {
1406 return mWorkspaceLoading || mWaitingForResult;
1407 }
1408
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001409 private void addItems() {
Patrick Dubroy558654c2010-07-23 16:48:11 -07001410 if (LauncherApplication.isScreenXLarge()) {
1411 // Animate the widget chooser up from the bottom of the screen
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001412 if (mState != State.CUSTOMIZE) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07001413 showCustomizationDrawer(true);
Patrick Dubroy558654c2010-07-23 16:48:11 -07001414 }
1415 } else {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001416 showWorkspace(true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001417 showAddDialog(-1, -1);
Patrick Dubroy558654c2010-07-23 16:48:11 -07001418 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001419 }
1420
Michael Jurka0280c3b2010-09-17 15:00:07 -07001421 private void resetAddInfo() {
1422 mAddScreen = -1;
1423 mAddIntersectCellX = -1;
1424 mAddIntersectCellY = -1;
1425 mAddDropPosition = null;
1426 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001427
Michael Jurka0280c3b2010-09-17 15:00:07 -07001428 void addAppWidgetFromDrop(ComponentName appWidgetProvider, int screen, int[] position) {
1429 resetAddInfo();
1430 mAddScreen = screen;
1431
1432 // only set mAddDropPosition if we dropped on home screen in "spring-loaded" manner
1433 mAddDropPosition = position;
1434
Michael Jurkaaf442092010-06-10 17:01:57 -07001435 int appWidgetId = getAppWidgetHost().allocateAppWidgetId();
1436 AppWidgetManager.getInstance(this).bindAppWidgetId(appWidgetId, appWidgetProvider);
1437 addAppWidgetImpl(appWidgetId);
1438 }
1439
Winson Chung7ad01412010-09-27 11:33:03 -07001440 private void manageApps() {
1441 startActivity(new Intent(android.provider.Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS));
1442 }
1443
Michael Jurkaaf442092010-06-10 17:01:57 -07001444 void addAppWidgetFromPick(Intent data) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001445 // TODO: catch bad widget exception when sent
1446 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Michael Jurkaaf442092010-06-10 17:01:57 -07001447 // TODO: Is this log message meaningful?
1448 if (LOGD) Log.d(TAG, "dumping extras content=" + data.getExtras());
1449 addAppWidgetImpl(appWidgetId);
1450 }
1451
1452 void addAppWidgetImpl(int appWidgetId) {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001453 AppWidgetProviderInfo appWidget = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001454
Bjorn Bringert7984c942009-12-09 15:38:25 +00001455 if (appWidget.configure != null) {
1456 // Launch over to configure widget, if needed
1457 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
1458 intent.setComponent(appWidget.configure);
1459 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1460
Romain Guy8e633c52010-03-04 12:51:36 -08001461 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001462 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001463 // Otherwise just add it
Michael Jurka0280c3b2010-09-17 15:00:07 -07001464 completeAddAppWidget(appWidgetId, mAddScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001465 }
1466 }
Romain Guycbb89e42009-06-08 15:52:54 -07001467
Michael Jurka0280c3b2010-09-17 15:00:07 -07001468 void processShortcutFromDrop(ComponentName componentName, int screen, int[] position) {
1469 resetAddInfo();
1470 mAddScreen = screen;
1471 mAddDropPosition = position;
1472
1473 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1474 createShortcutIntent.setComponent(componentName);
1475 processShortcut(createShortcutIntent);
1476 }
1477
Joe Onoratodeb98af2010-02-19 14:59:39 -08001478 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001479 // Handle case where user selected "Applications"
1480 String applicationName = getResources().getString(R.string.group_applications);
1481 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001482
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001483 if (applicationName != null && applicationName.equals(shortcutName)) {
1484 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1485 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001486
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001487 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1488 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001489 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001490 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001491 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001492 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001493 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001494 }
1495
Winson Chung24ab2f12010-09-16 14:10:47 -07001496 void processWallpaper(Intent intent) {
1497 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1498 }
1499
Michael Jurka0280c3b2010-09-17 15:00:07 -07001500 void addLiveFolderFromDrop(ComponentName componentName, int screen, int[] position) {
1501 resetAddInfo();
1502 mAddScreen = screen;
1503 mAddDropPosition = position;
1504
1505 Intent createFolderIntent = new Intent(LiveFolders.ACTION_CREATE_LIVE_FOLDER);
1506 createFolderIntent.setComponent(componentName);
1507
1508 addLiveFolder(createFolderIntent);
1509 }
1510
1511 void addLiveFolder(Intent intent) { // YYY add screen intersect etc. parameters here
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001512 // Handle case where user selected "Folder"
Jeffrey Sharkeyc4bbd0a2009-03-24 22:47:52 -07001513 String folderName = getResources().getString(R.string.group_folder);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001514 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001515
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001516 if (folderName != null && folderName.equals(shortcutName)) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001517 addFolder(mAddScreen, mAddIntersectCellX, mAddIntersectCellY);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001518 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001519 startActivityForResultSafely(intent, REQUEST_CREATE_LIVE_FOLDER);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001520 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001521 }
1522
Michael Jurka0280c3b2010-09-17 15:00:07 -07001523 void addFolder(int screen, int intersectCellX, int intersectCellY) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001524 UserFolderInfo folderInfo = new UserFolderInfo();
1525 folderInfo.title = getText(R.string.folder_name);
1526
Michael Jurka0280c3b2010-09-17 15:00:07 -07001527 final CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
1528 final int[] cellXY = mTmpAddItemCellCoordinates;
1529 if (!layout.findCellForSpanThatIntersects(cellXY, 1, 1, intersectCellX, intersectCellY)) {
1530 showOutOfSpaceMessage();
1531 return;
1532 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001533
1534 // Update the model
Joe Onorato9c1289c2009-08-17 11:03:03 -04001535 LauncherModel.addItemToDatabase(this, folderInfo,
1536 LauncherSettings.Favorites.CONTAINER_DESKTOP,
Michael Jurka0280c3b2010-09-17 15:00:07 -07001537 screen, cellXY[0], cellXY[1], false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001538 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001539
1540 // Create the view
1541 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07001542 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), folderInfo);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001543 mWorkspace.addInScreen(newFolder, screen, cellXY[0], cellXY[1], 1, 1, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001544 }
Romain Guycbb89e42009-06-08 15:52:54 -07001545
Joe Onorato9c1289c2009-08-17 11:03:03 -04001546 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001547 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001548 }
1549
Michael Jurka28750fb2010-09-24 17:43:49 -07001550 private void completeAddLiveFolder(
1551 Intent data, int screen, int intersectCellX, int intersectCellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001552 final CellLayout layout = (CellLayout) mWorkspace.getChildAt(screen);
1553 final int[] cellXY = mTmpAddItemCellCoordinates;
1554 if (!layout.findCellForSpanThatIntersects(cellXY, 1, 1, intersectCellX, intersectCellY)) {
1555 showOutOfSpaceMessage();
1556 return;
1557 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001558
Michael Jurka0280c3b2010-09-17 15:00:07 -07001559 final LiveFolderInfo info = addLiveFolder(this, data, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001560
1561 if (!mRestoring) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001562 final View view = LiveFolderIcon.fromXml(R.layout.live_folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07001563 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001564 mWorkspace.addInScreen(view, screen, cellXY[0], cellXY[1], 1, 1, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001565 }
1566 }
1567
1568 static LiveFolderInfo addLiveFolder(Context context, Intent data,
Michael Jurka0280c3b2010-09-17 15:00:07 -07001569 int screen, int cellX, int cellY, boolean notify) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001570
1571 Intent baseIntent = data.getParcelableExtra(LiveFolders.EXTRA_LIVE_FOLDER_BASE_INTENT);
1572 String name = data.getStringExtra(LiveFolders.EXTRA_LIVE_FOLDER_NAME);
1573
1574 Drawable icon = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001575 Intent.ShortcutIconResource iconResource = null;
1576
1577 Parcelable extra = data.getParcelableExtra(LiveFolders.EXTRA_LIVE_FOLDER_ICON);
1578 if (extra != null && extra instanceof Intent.ShortcutIconResource) {
1579 try {
1580 iconResource = (Intent.ShortcutIconResource) extra;
1581 final PackageManager packageManager = context.getPackageManager();
1582 Resources resources = packageManager.getResourcesForApplication(
1583 iconResource.packageName);
1584 final int id = resources.getIdentifier(iconResource.resourceName, null, null);
1585 icon = resources.getDrawable(id);
1586 } catch (Exception e) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001587 Log.w(TAG, "Could not load live folder icon: " + extra);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001588 }
1589 }
1590
1591 if (icon == null) {
1592 icon = context.getResources().getDrawable(R.drawable.ic_launcher_folder);
1593 }
1594
1595 final LiveFolderInfo info = new LiveFolderInfo();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001596 info.icon = Utilities.createIconBitmap(icon, context);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001597 info.title = name;
1598 info.iconResource = iconResource;
1599 info.uri = data.getData();
1600 info.baseIntent = baseIntent;
1601 info.displayMode = data.getIntExtra(LiveFolders.EXTRA_LIVE_FOLDER_DISPLAY_MODE,
1602 LiveFolders.DISPLAY_MODE_GRID);
1603
1604 LauncherModel.addItemToDatabase(context, info, LauncherSettings.Favorites.CONTAINER_DESKTOP,
Michael Jurka0280c3b2010-09-17 15:00:07 -07001605 screen, cellX, cellY, notify);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001606 sFolders.put(info.id, info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001607
1608 return info;
1609 }
1610
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001611 private void showNotifications() {
1612 final StatusBarManager statusBar = (StatusBarManager) getSystemService(STATUS_BAR_SERVICE);
1613 if (statusBar != null) {
1614 statusBar.expand();
1615 }
1616 }
1617
1618 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001619 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001620 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001621 Intent chooser = Intent.createChooser(pickWallpaper,
1622 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001623 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1624 // Removed in Eclair MR1
1625// WallpaperManager wm = (WallpaperManager)
1626// getSystemService(Context.WALLPAPER_SERVICE);
1627// WallpaperInfo wi = wm.getWallpaperInfo();
1628// if (wi != null && wi.getSettingsActivity() != null) {
1629// LabeledIntent li = new LabeledIntent(getPackageName(),
1630// R.string.configure_wallpaper, 0);
1631// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1632// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1633// }
Mike Clerona0618e42009-10-22 13:55:21 -07001634 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001635 }
1636
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001637 /**
1638 * Registers various content observers. The current implementation registers
1639 * only a favorites observer to keep track of the favorites applications.
1640 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001641 private void registerContentObservers() {
1642 ContentResolver resolver = getContentResolver();
1643 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1644 true, mWidgetObserver);
1645 }
1646
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001647 @Override
1648 public boolean dispatchKeyEvent(KeyEvent event) {
1649 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1650 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001651 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001652 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001653 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jason Samseb5615d2009-11-30 11:50:10 -08001654 if (SystemProperties.getInt("debug.launcher2.dumpstate", 0) != 0) {
Joe Onoratobe386092009-11-17 17:32:16 -08001655 dumpState();
1656 return true;
1657 }
1658 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001659 }
1660 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1661 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001662 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001663 return true;
1664 }
1665 }
1666
1667 return super.dispatchKeyEvent(event);
1668 }
1669
Joe Onorato88ec0992009-11-19 13:16:06 -08001670 @Override
1671 public void onBackPressed() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001672 if (mState == State.ALL_APPS || mState == State.CUSTOMIZE) {
1673 showWorkspace(true);
Joe Onorato88ec0992009-11-19 13:16:06 -08001674 } else {
1675 closeFolder();
1676 }
Michael Jurkaaf442092010-06-10 17:01:57 -07001677 // Some launcher layouts don't have a previous and next view
1678 if (mPreviousView != null) {
1679 dismissPreview(mPreviousView);
1680 dismissPreview(mNextView);
1681 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001682 }
1683
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001684 private void closeFolder() {
1685 Folder folder = mWorkspace.getOpenFolder();
1686 if (folder != null) {
1687 closeFolder(folder);
1688 }
1689 }
1690
1691 void closeFolder(Folder folder) {
1692 folder.getInfo().opened = false;
1693 ViewGroup parent = (ViewGroup) folder.getParent();
1694 if (parent != null) {
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -07001695 CellLayout cl = (CellLayout) parent;
1696 cl.removeViewWithoutMarkingCells(folder);
Joe Onoratob6341e92009-11-02 10:41:48 -05001697 if (folder instanceof DropTarget) {
1698 // Live folders aren't DropTargets.
1699 mDragController.removeDropTarget((DropTarget)folder);
1700 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001701 }
1702 folder.onClose();
1703 }
1704
1705 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001706 * Re-listen when widgets are reset.
1707 */
1708 private void onAppWidgetReset() {
1709 mAppWidgetHost.startListening();
1710 }
1711
1712 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001713 * Go through the and disconnect any of the callbacks in the drawables and the views or we
1714 * leak the previous Home screen on orientation change.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001715 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04001716 private void unbindDesktopItems() {
1717 for (ItemInfo item: mDesktopItems) {
1718 item.unbind();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001719 }
1720 }
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001721
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001722 /**
1723 * Launches the intent referred by the clicked shortcut.
1724 *
1725 * @param v The view representing the clicked shortcut.
1726 */
1727 public void onClick(View v) {
1728 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001729 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001730 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08001731 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08001732 int[] pos = new int[2];
1733 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08001734 intent.setSourceBounds(new Rect(pos[0], pos[1],
1735 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Joe Onoratof984e852010-03-25 09:47:45 -07001736 startActivitySafely(intent, tag);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001737 } else if (tag instanceof FolderInfo) {
1738 handleFolderClick((FolderInfo) tag);
Joe Onorato7404ee42009-07-31 11:54:44 -07001739 } else if (v == mHandleView) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001740 if (mState == State.ALL_APPS) {
1741 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001742 } else {
Joe Onorato3a8820b2009-11-10 15:06:42 -08001743 showAllApps(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001744 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001745 }
1746 }
1747
Michael Jurka0e260592010-06-30 17:07:39 -07001748 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07001749 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001750 // clicking anywhere on the workspace causes the customization drawer to slide down
1751 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07001752 return false;
1753 }
1754
Michael Jurkaaf442092010-06-10 17:01:57 -07001755 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001756 * Event handler for the search button
1757 *
1758 * @param v The view that was clicked.
1759 */
1760 public void onClickSearchButton(View v) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07001761 startSearch(null, false, null, true);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001762 }
1763
1764 /**
1765 * Event handler for the "gear" button that appears on the home screen, which
Michael Jurkaaf442092010-06-10 17:01:57 -07001766 * enters home screen customization mode.
1767 *
1768 * @param v The view that was clicked.
1769 */
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001770 public void onClickConfigureButton(View v) {
Patrick Dubroy558654c2010-07-23 16:48:11 -07001771 addItems();
Michael Jurkaaf442092010-06-10 17:01:57 -07001772 }
1773
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001774 /**
1775 * Event handler for the "grid" button that appears on the home screen, which
1776 * enters all apps mode.
1777 *
1778 * @param v The view that was clicked.
1779 */
1780 public void onClickAllAppsButton(View v) {
1781 showAllApps(true);
1782 }
1783
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001784 public void onClickAppMarketButton(View v) {
1785 if (mAppMarketIntent != null) {
1786 startActivitySafely(mAppMarketIntent, "app market");
1787 }
1788 }
1789
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001790 void startApplicationDetailsActivity(ComponentName componentName) {
1791 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001792 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
1793 Uri.fromParts("package", packageName, null));
1794 startActivity(intent);
1795 }
1796
Patrick Dubroy5539af72010-09-07 15:22:01 -07001797 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
1798 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
1799 // System applications cannot be installed. For now, show a toast explaining that.
1800 // We may give them the option of disabling apps this way.
1801 int messageId = R.string.uninstall_system_app_text;
1802 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
1803 } else {
1804 String packageName = appInfo.componentName.getPackageName();
1805 String className = appInfo.componentName.getClassName();
1806 Intent intent = new Intent(
1807 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
1808 startActivity(intent);
1809 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001810 }
1811
Joe Onoratof984e852010-03-25 09:47:45 -07001812 void startActivitySafely(Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001813 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1814 try {
1815 startActivity(intent);
1816 } catch (ActivityNotFoundException e) {
1817 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Daniel Sandlerc9b18772010-04-22 14:37:59 -04001818 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001819 } catch (SecurityException e) {
1820 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001821 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001822 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07001823 "or use the exported attribute for this activity. "
1824 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001825 }
1826 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001827
Romain Guy8e633c52010-03-04 12:51:36 -08001828 void startActivityForResultSafely(Intent intent, int requestCode) {
1829 try {
1830 startActivityForResult(intent, requestCode);
1831 } catch (ActivityNotFoundException e) {
1832 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1833 } catch (SecurityException e) {
1834 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1835 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
1836 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
1837 "or use the exported attribute for this activity.", e);
1838 }
1839 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001840
1841 private void handleFolderClick(FolderInfo folderInfo) {
1842 if (!folderInfo.opened) {
1843 // Close any open folder
1844 closeFolder();
1845 // Open the requested folder
1846 openFolder(folderInfo);
1847 } else {
1848 // Find the open folder...
1849 Folder openFolder = mWorkspace.getFolderForTag(folderInfo);
1850 int folderScreen;
1851 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07001852 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001853 // .. and close it
1854 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07001855 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001856 // Close any folder open on the current screen
1857 closeFolder();
1858 // Pull the folder onto this screen
1859 openFolder(folderInfo);
1860 }
1861 }
1862 }
1863 }
1864
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001865 /**
Michael Jurka774bd372010-10-22 13:40:50 -07001866 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001867 * is animated relative to the specified View. If the View is null, no animation
1868 * is played.
1869 *
1870 * @param folderInfo The FolderInfo describing the folder to open.
1871 */
Winson Chungaafa03c2010-06-11 17:34:16 -07001872 public void openFolder(FolderInfo folderInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001873 Folder openFolder;
1874
1875 if (folderInfo instanceof UserFolderInfo) {
1876 openFolder = UserFolder.fromXml(this);
1877 } else if (folderInfo instanceof LiveFolderInfo) {
Joe Onoratoa5902522009-07-30 13:37:37 -07001878 openFolder = com.android.launcher2.LiveFolder.fromXml(this, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001879 } else {
1880 return;
1881 }
1882
Joe Onorato00acb122009-08-04 16:04:30 -04001883 openFolder.setDragController(mDragController);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001884 openFolder.setLauncher(this);
1885
1886 openFolder.bind(folderInfo);
1887 folderInfo.opened = true;
1888
Winson Chungaafa03c2010-06-11 17:34:16 -07001889 mWorkspace.addInFullScreen(openFolder, folderInfo.screen);
1890
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001891 openFolder.onOpen();
1892 }
1893
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001894 public boolean onLongClick(View v) {
Romain Guy1fbc1c82009-11-09 20:43:08 -08001895 switch (v.getId()) {
1896 case R.id.previous_screen:
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001897 if (mState != State.ALL_APPS) {
Joe Onorato0d44e942009-11-16 18:20:51 -08001898 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1899 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Romain Guyf8e6a802009-12-07 17:48:02 -08001900 showPreviews(v);
Joe Onorato0d44e942009-11-16 18:20:51 -08001901 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08001902 return true;
1903 case R.id.next_screen:
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001904 if (mState != State.ALL_APPS) {
Joe Onorato0d44e942009-11-16 18:20:51 -08001905 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1906 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Romain Guyf8e6a802009-12-07 17:48:02 -08001907 showPreviews(v);
1908 }
1909 return true;
1910 case R.id.all_apps_button:
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001911 if (mState != State.ALL_APPS) {
Romain Guyf8e6a802009-12-07 17:48:02 -08001912 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1913 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
1914 showPreviews(v);
Joe Onorato0d44e942009-11-16 18:20:51 -08001915 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08001916 return true;
1917 }
1918
Joe Onorato9c1289c2009-08-17 11:03:03 -04001919 if (isWorkspaceLocked()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001920 return false;
1921 }
1922
1923 if (!(v instanceof CellLayout)) {
1924 v = (View) v.getParent();
1925 }
1926
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001927
Michael Jurka0280c3b2010-09-17 15:00:07 -07001928 resetAddInfo();
1929 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001930 // This happens when long clicking an item with the dpad/trackball
Michael Jurka0280c3b2010-09-17 15:00:07 -07001931 if (longClickCellInfo == null || !longClickCellInfo.valid) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001932 return true;
1933 }
1934
Michael Jurka0280c3b2010-09-17 15:00:07 -07001935 final View itemUnderLongClick = longClickCellInfo.cell;
1936
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001937 if (mWorkspace.allowLongPress()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001938 if (itemUnderLongClick == null) {
1939 // User long pressed on empty space
1940 mWorkspace.setAllowLongPress(false);
1941 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1942 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Michael Jurka56170562010-10-05 14:14:56 -07001943 if (!LauncherApplication.isScreenXLarge()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001944 showAddDialog(longClickCellInfo.cellX, longClickCellInfo.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001945 }
1946 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001947 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001948 // User long pressed on an item
Joe Onorato0d44e942009-11-16 18:20:51 -08001949 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1950 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001951 mAddIntersectCellX = longClickCellInfo.cellX;
1952 mAddIntersectCellY = longClickCellInfo.cellY;
1953 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001954 }
1955 }
1956 }
1957 return true;
1958 }
1959
Romain Guye6b8e2f2009-11-10 11:56:55 -08001960 @SuppressWarnings({"unchecked"})
Romain Guy9d31e9f2009-11-11 18:54:28 -08001961 private void dismissPreview(final View v) {
1962 final PopupWindow window = (PopupWindow) v.getTag();
Romain Guy1fbc1c82009-11-09 20:43:08 -08001963 if (window != null) {
Romain Guy9d31e9f2009-11-11 18:54:28 -08001964 window.setOnDismissListener(new PopupWindow.OnDismissListener() {
1965 public void onDismiss() {
1966 ViewGroup group = (ViewGroup) v.getTag(R.id.workspace);
1967 int count = group.getChildCount();
1968 for (int i = 0; i < count; i++) {
1969 ((ImageView) group.getChildAt(i)).setImageDrawable(null);
1970 }
Romain Guy9d31e9f2009-11-11 18:54:28 -08001971 ArrayList<Bitmap> bitmaps = (ArrayList<Bitmap>) v.getTag(R.id.icon);
1972 for (Bitmap bitmap : bitmaps) bitmap.recycle();
1973
1974 v.setTag(R.id.workspace, null);
1975 v.setTag(R.id.icon, null);
1976 window.setOnDismissListener(null);
1977 }
1978 });
Romain Guy1fbc1c82009-11-09 20:43:08 -08001979 window.dismiss();
Romain Guy1fbc1c82009-11-09 20:43:08 -08001980 }
1981 v.setTag(null);
1982 }
1983
Romain Guyf8e6a802009-12-07 17:48:02 -08001984 private void showPreviews(View anchor) {
Romain Guy9d31e9f2009-11-11 18:54:28 -08001985 showPreviews(anchor, 0, mWorkspace.getChildCount());
Romain Guy1fbc1c82009-11-09 20:43:08 -08001986 }
1987
Romain Guya6abce82009-11-10 02:54:41 -08001988 private void showPreviews(final View anchor, int start, int end) {
Romain Guyf8e6a802009-12-07 17:48:02 -08001989 final Resources resources = getResources();
1990 final Workspace workspace = mWorkspace;
Romain Guy1fbc1c82009-11-09 20:43:08 -08001991
Romain Guya6abce82009-11-10 02:54:41 -08001992 CellLayout cell = ((CellLayout) workspace.getChildAt(start));
Winson Chungaafa03c2010-06-11 17:34:16 -07001993
Romain Guy9d31e9f2009-11-11 18:54:28 -08001994 float max = workspace.getChildCount();
Winson Chungaafa03c2010-06-11 17:34:16 -07001995
Romain Guyf8e6a802009-12-07 17:48:02 -08001996 final Rect r = new Rect();
Romain Guy9d31e9f2009-11-11 18:54:28 -08001997 resources.getDrawable(R.drawable.preview_background).getPadding(r);
Romain Guye6b8e2f2009-11-10 11:56:55 -08001998 int extraW = (int) ((r.left + r.right) * max);
1999 int extraH = r.top + r.bottom;
Romain Guya6abce82009-11-10 02:54:41 -08002000
2001 int aW = cell.getWidth() - extraW;
2002 float w = aW / max;
2003
2004 int width = cell.getWidth();
2005 int height = cell.getHeight();
2006 int x = cell.getLeftPadding();
2007 int y = cell.getTopPadding();
2008 width -= (x + cell.getRightPadding());
2009 height -= (y + cell.getBottomPadding());
2010
2011 float scale = w / width;
2012
2013 int count = end - start;
2014
2015 final float sWidth = width * scale;
2016 float sHeight = height * scale;
2017
Romain Guye6b8e2f2009-11-10 11:56:55 -08002018 LinearLayout preview = new LinearLayout(this);
Romain Guya6abce82009-11-10 02:54:41 -08002019
Romain Guye6b8e2f2009-11-10 11:56:55 -08002020 PreviewTouchHandler handler = new PreviewTouchHandler(anchor);
2021 ArrayList<Bitmap> bitmaps = new ArrayList<Bitmap>(count);
Romain Guya6abce82009-11-10 02:54:41 -08002022
2023 for (int i = start; i < end; i++) {
Romain Guye6b8e2f2009-11-10 11:56:55 -08002024 ImageView image = new ImageView(this);
Romain Guya6abce82009-11-10 02:54:41 -08002025 cell = (CellLayout) workspace.getChildAt(i);
2026
Romain Guyf8e6a802009-12-07 17:48:02 -08002027 final Bitmap bitmap = Bitmap.createBitmap((int) sWidth, (int) sHeight,
Romain Guye6b8e2f2009-11-10 11:56:55 -08002028 Bitmap.Config.ARGB_8888);
Romain Guyf8e6a802009-12-07 17:48:02 -08002029
2030 final Canvas c = new Canvas(bitmap);
Romain Guya6abce82009-11-10 02:54:41 -08002031 c.scale(scale, scale);
2032 c.translate(-cell.getLeftPadding(), -cell.getTopPadding());
Patrick Dubroy1262e362010-10-06 15:49:50 -07002033 cell.drawChildren(c);
Romain Guya6abce82009-11-10 02:54:41 -08002034
Romain Guy9d31e9f2009-11-11 18:54:28 -08002035 image.setBackgroundDrawable(resources.getDrawable(R.drawable.preview_background));
Romain Guye6b8e2f2009-11-10 11:56:55 -08002036 image.setImageBitmap(bitmap);
2037 image.setTag(i);
2038 image.setOnClickListener(handler);
Romain Guy9d31e9f2009-11-11 18:54:28 -08002039 image.setOnFocusChangeListener(handler);
2040 image.setFocusable(true);
Michael Jurka0142d492010-08-25 17:46:15 -07002041 if (i == mWorkspace.getCurrentPage()) image.requestFocus();
Romain Guye6b8e2f2009-11-10 11:56:55 -08002042
2043 preview.addView(image,
Romain Guy9d31e9f2009-11-11 18:54:28 -08002044 LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
2045
Winson Chungaafa03c2010-06-11 17:34:16 -07002046 bitmaps.add(bitmap);
Romain Guya6abce82009-11-10 02:54:41 -08002047 }
Romain Guyf8e6a802009-12-07 17:48:02 -08002048
2049 final PopupWindow p = new PopupWindow(this);
Romain Guye6b8e2f2009-11-10 11:56:55 -08002050 p.setContentView(preview);
2051 p.setWidth((int) (sWidth * count + extraW));
2052 p.setHeight((int) (sHeight + extraH));
2053 p.setAnimationStyle(R.style.AnimationPreview);
2054 p.setOutsideTouchable(true);
Romain Guy9d31e9f2009-11-11 18:54:28 -08002055 p.setFocusable(true);
Romain Guyff0c2e22009-11-10 12:09:59 -08002056 p.setBackgroundDrawable(new ColorDrawable(0));
Romain Guy9d31e9f2009-11-11 18:54:28 -08002057 p.showAsDropDown(anchor, 0, 0);
Romain Guya6abce82009-11-10 02:54:41 -08002058
Romain Guye6b8e2f2009-11-10 11:56:55 -08002059 p.setOnDismissListener(new PopupWindow.OnDismissListener() {
2060 public void onDismiss() {
2061 dismissPreview(anchor);
2062 }
2063 });
Romain Guy1fbc1c82009-11-09 20:43:08 -08002064
2065 anchor.setTag(p);
2066 anchor.setTag(R.id.workspace, preview);
Winson Chungaafa03c2010-06-11 17:34:16 -07002067 anchor.setTag(R.id.icon, bitmaps);
Romain Guy1fbc1c82009-11-09 20:43:08 -08002068 }
2069
Romain Guy9d31e9f2009-11-11 18:54:28 -08002070 class PreviewTouchHandler implements View.OnClickListener, Runnable, View.OnFocusChangeListener {
Romain Guya6abce82009-11-10 02:54:41 -08002071 private final View mAnchor;
Romain Guya6abce82009-11-10 02:54:41 -08002072
Romain Guye6b8e2f2009-11-10 11:56:55 -08002073 public PreviewTouchHandler(View anchor) {
Romain Guya6abce82009-11-10 02:54:41 -08002074 mAnchor = anchor;
Romain Guya6abce82009-11-10 02:54:41 -08002075 }
2076
2077 public void onClick(View v) {
Michael Jurka0142d492010-08-25 17:46:15 -07002078 mWorkspace.snapToPage((Integer) v.getTag());
Romain Guy9d31e9f2009-11-11 18:54:28 -08002079 v.post(this);
2080 }
2081
2082 public void run() {
Winson Chungaafa03c2010-06-11 17:34:16 -07002083 dismissPreview(mAnchor);
Romain Guy9d31e9f2009-11-11 18:54:28 -08002084 }
2085
2086 public void onFocusChange(View v, boolean hasFocus) {
2087 if (hasFocus) {
Michael Jurka0142d492010-08-25 17:46:15 -07002088 mWorkspace.snapToPage((Integer) v.getTag());
Romain Guy9d31e9f2009-11-11 18:54:28 -08002089 }
Romain Guya6abce82009-11-10 02:54:41 -08002090 }
2091 }
2092
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002093 Workspace getWorkspace() {
2094 return mWorkspace;
2095 }
2096
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002097 @Override
2098 protected Dialog onCreateDialog(int id) {
2099 switch (id) {
2100 case DIALOG_CREATE_SHORTCUT:
2101 return new CreateShortcut().createDialog();
2102 case DIALOG_RENAME_FOLDER:
2103 return new RenameFolder().createDialog();
2104 }
2105
2106 return super.onCreateDialog(id);
2107 }
2108
2109 @Override
2110 protected void onPrepareDialog(int id, Dialog dialog) {
2111 switch (id) {
2112 case DIALOG_CREATE_SHORTCUT:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002113 break;
2114 case DIALOG_RENAME_FOLDER:
Romain Guy7b4ef332009-07-14 13:58:08 -07002115 if (mFolderInfo != null) {
2116 EditText input = (EditText) dialog.findViewById(R.id.folder_name);
2117 final CharSequence text = mFolderInfo.title;
2118 input.setText(text);
2119 input.setSelection(0, text.length());
2120 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002121 break;
2122 }
2123 }
2124
2125 void showRenameDialog(FolderInfo info) {
2126 mFolderInfo = info;
2127 mWaitingForResult = true;
2128 showDialog(DIALOG_RENAME_FOLDER);
2129 }
2130
Michael Jurka0280c3b2010-09-17 15:00:07 -07002131 private void showAddDialog(int intersectX, int intersectY) {
2132 resetAddInfo();
2133 mAddIntersectCellX = intersectX;
2134 mAddIntersectCellY = intersectY;
2135 mAddScreen = mWorkspace.getCurrentPage();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002136 mWaitingForResult = true;
2137 showDialog(DIALOG_CREATE_SHORTCUT);
2138 }
2139
Joe Onoratodeb98af2010-02-19 14:59:39 -08002140 private void pickShortcut() {
Michael Jurka0e260592010-06-30 17:07:39 -07002141 // Insert extra item to handle picking application
Romain Guy73b979d2009-06-09 12:57:21 -07002142 Bundle bundle = new Bundle();
2143
2144 ArrayList<String> shortcutNames = new ArrayList<String>();
2145 shortcutNames.add(getString(R.string.group_applications));
2146 bundle.putStringArrayList(Intent.EXTRA_SHORTCUT_NAME, shortcutNames);
2147
2148 ArrayList<ShortcutIconResource> shortcutIcons = new ArrayList<ShortcutIconResource>();
2149 shortcutIcons.add(ShortcutIconResource.fromContext(Launcher.this,
2150 R.drawable.ic_launcher_application));
2151 bundle.putParcelableArrayList(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, shortcutIcons);
2152
2153 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
2154 pickIntent.putExtra(Intent.EXTRA_INTENT, new Intent(Intent.ACTION_CREATE_SHORTCUT));
Joe Onoratodeb98af2010-02-19 14:59:39 -08002155 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_shortcut));
Romain Guy73b979d2009-06-09 12:57:21 -07002156 pickIntent.putExtras(bundle);
2157
Joe Onoratodeb98af2010-02-19 14:59:39 -08002158 startActivityForResult(pickIntent, REQUEST_PICK_SHORTCUT);
Romain Guy73b979d2009-06-09 12:57:21 -07002159 }
2160
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002161 private class RenameFolder {
2162 private EditText mInput;
2163
2164 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002165 final View layout = View.inflate(Launcher.this, R.layout.rename_folder, null);
2166 mInput = (EditText) layout.findViewById(R.id.folder_name);
2167
2168 AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
2169 builder.setIcon(0);
2170 builder.setTitle(getString(R.string.rename_folder_title));
2171 builder.setCancelable(true);
2172 builder.setOnCancelListener(new Dialog.OnCancelListener() {
2173 public void onCancel(DialogInterface dialog) {
2174 cleanup();
2175 }
2176 });
2177 builder.setNegativeButton(getString(R.string.cancel_action),
2178 new Dialog.OnClickListener() {
2179 public void onClick(DialogInterface dialog, int which) {
2180 cleanup();
2181 }
2182 }
2183 );
2184 builder.setPositiveButton(getString(R.string.rename_action),
2185 new Dialog.OnClickListener() {
2186 public void onClick(DialogInterface dialog, int which) {
2187 changeFolderName();
2188 }
2189 }
2190 );
2191 builder.setView(layout);
Romain Guy7b4ef332009-07-14 13:58:08 -07002192
2193 final AlertDialog dialog = builder.create();
2194 dialog.setOnShowListener(new DialogInterface.OnShowListener() {
2195 public void onShow(DialogInterface dialog) {
Joe Onorato7018d8e2010-04-13 20:25:47 -07002196 mWaitingForResult = true;
Joe Onoratod753b422009-11-08 13:31:11 -05002197 mInput.requestFocus();
2198 InputMethodManager inputManager = (InputMethodManager)
2199 getSystemService(Context.INPUT_METHOD_SERVICE);
2200 inputManager.showSoftInput(mInput, 0);
Romain Guy7b4ef332009-07-14 13:58:08 -07002201 }
2202 });
2203
2204 return dialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002205 }
2206
2207 private void changeFolderName() {
2208 final String name = mInput.getText().toString();
2209 if (!TextUtils.isEmpty(name)) {
2210 // Make sure we have the right folder info
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002211 mFolderInfo = sFolders.get(mFolderInfo.id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002212 mFolderInfo.title = name;
2213 LauncherModel.updateItemInDatabase(Launcher.this, mFolderInfo);
2214
Joe Onorato9c1289c2009-08-17 11:03:03 -04002215 if (mWorkspaceLoading) {
Joe Onorato7c312c12009-08-13 21:36:53 -07002216 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002217 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002218 } else {
2219 final FolderIcon folderIcon = (FolderIcon)
2220 mWorkspace.getViewForTag(mFolderInfo);
2221 if (folderIcon != null) {
2222 folderIcon.setText(name);
2223 getWorkspace().requestLayout();
2224 } else {
Joe Onorato7c312c12009-08-13 21:36:53 -07002225 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002226 mWorkspaceLoading = true;
2227 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002228 }
2229 }
2230 }
2231 cleanup();
2232 }
2233
2234 private void cleanup() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002235 dismissDialog(DIALOG_RENAME_FOLDER);
2236 mWaitingForResult = false;
2237 mFolderInfo = null;
2238 }
2239 }
2240
Daniel Sandler843e8602010-06-07 14:59:01 -04002241 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2242 public boolean isAllAppsVisible() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002243 return mState == State.ALL_APPS;
Joe Onoratofb0ca672009-09-14 17:55:46 -04002244 }
2245
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002246 // AllAppsView.Watcher
2247 public void zoomed(float zoom) {
Michael Jurka213d9632010-07-28 11:29:25 -07002248 // In XLarge view, we zoom down the workspace below all apps so it's still visible
2249 if (zoom == 1.0f && !LauncherApplication.isScreenXLarge()) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002250 mWorkspace.setVisibility(View.GONE);
2251 }
2252 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002253
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002254 private void showToolbarButton(View button) {
2255 button.setAlpha(1.0f);
2256 button.setVisibility(View.VISIBLE);
2257 button.setFocusable(true);
2258 button.setClickable(true);
2259 }
2260
2261 private void hideToolbarButton(View button) {
2262 button.setAlpha(0.0f);
2263 // We can't set it to GONE, otherwise the RelativeLayout gets screwed up
2264 button.setVisibility(View.INVISIBLE);
2265 button.setFocusable(false);
2266 button.setClickable(false);
2267 }
2268
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002269 /**
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002270 * Helper function for showing or hiding a toolbar button, possibly animated.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002271 *
2272 * @param show If true, create an animation to the show the item. Otherwise, hide it.
2273 * @param view The toolbar button to be animated
Chet Haaseb1254a62010-09-07 13:35:00 -07002274 * @param seq A AnimatorSet that will be used to animate the transition. If null, the
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002275 * transition will not be animated.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002276 */
Chet Haaseb1254a62010-09-07 13:35:00 -07002277 private void hideOrShowToolbarButton(boolean show, final View view, AnimatorSet seq) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002278 final boolean showing = show;
2279 final boolean hiding = !show;
2280
2281 final int duration = show ?
2282 getResources().getInteger(R.integer.config_toolbarButtonFadeInTime) :
2283 getResources().getInteger(R.integer.config_toolbarButtonFadeOutTime);
2284
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002285 if (seq != null) {
Chet Haase472b2812010-10-14 07:02:04 -07002286 Animator anim = ObjectAnimator.ofFloat(view, "alpha", show ? 1.0f : 0.0f);
2287 anim.setDuration(duration);
Chet Haaseb1254a62010-09-07 13:35:00 -07002288 anim.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002289 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002290 public void onAnimationStart(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002291 if (showing) showToolbarButton(view);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002292 }
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002293 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002294 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002295 if (hiding) hideToolbarButton(view);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002296 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002297 });
2298 seq.play(anim);
2299 } else {
2300 if (showing) {
2301 showToolbarButton(view);
2302 } else {
2303 hideToolbarButton(view);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002304 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002305 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002306 }
2307
2308 /**
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002309 * Show/hide the appropriate toolbar buttons for newState.
2310 * If showSeq or hideSeq is null, the transition will be done immediately (not animated).
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002311 *
2312 * @param newState The state that is being switched to
Chet Haaseb1254a62010-09-07 13:35:00 -07002313 * @param showSeq AnimatorSet in which to put "show" animations, or null.
2314 * @param hideSeq AnimatorSet in which to put "hide" animations, or null.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002315 */
Chet Haaseb1254a62010-09-07 13:35:00 -07002316 private void hideAndShowToolbarButtons(State newState, AnimatorSet showSeq, AnimatorSet hideSeq) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002317 final View searchButton = findViewById(R.id.search_button);
2318 final View allAppsButton = findViewById(R.id.all_apps_button);
2319 final View marketButton = findViewById(R.id.market_button);
2320 final View configureButton = findViewById(R.id.configure_button);
2321
2322 switch (newState) {
2323 case WORKSPACE:
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002324 hideOrShowToolbarButton(true, searchButton, showSeq);
2325 hideOrShowToolbarButton(true, allAppsButton, showSeq);
2326 hideOrShowToolbarButton(true, configureButton, showSeq);
2327 hideOrShowToolbarButton(false, marketButton, hideSeq);
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002328 mDeleteZone.setHandle(allAppsButton);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002329 break;
2330 case ALL_APPS:
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002331 hideOrShowToolbarButton(true, configureButton, showSeq);
2332 hideOrShowToolbarButton(true, marketButton, showSeq);
2333 hideOrShowToolbarButton(false, searchButton, hideSeq);
2334 hideOrShowToolbarButton(false, allAppsButton, hideSeq);
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002335 mDeleteZone.setHandle(marketButton);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002336 break;
2337 case CUSTOMIZE:
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002338 hideOrShowToolbarButton(true, allAppsButton, showSeq);
2339 hideOrShowToolbarButton(false, searchButton, hideSeq);
2340 hideOrShowToolbarButton(false, marketButton, hideSeq);
2341 hideOrShowToolbarButton(false, configureButton, hideSeq);
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002342 mDeleteZone.setHandle(allAppsButton);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002343 break;
2344 }
2345 }
2346
2347 /**
2348 * Helper method for the cameraZoomIn/cameraZoomOut animations
2349 * @param view The view being animated
2350 * @param state The state that we are moving in or out of -- either ALL_APPS or CUSTOMIZE
2351 * @param scaleFactor The scale factor used for the zoom
2352 */
2353 private void setPivotsForZoom(View view, State state, float scaleFactor) {
2354 final int height = view.getHeight();
2355 view.setPivotX(view.getWidth() / 2.0f);
2356 // Set pivotY so that at the starting zoom factor, the view is off-screen by a small margin
2357 // Assumes that the view is normally anchored to either the top or bottom of the screen
2358 final int margin = getResources().getInteger(R.integer.config_allAppsVerticalOffset);
2359 if (state == State.ALL_APPS) {
2360 view.setPivotY(height + ((view.getTop() + height) / scaleFactor) + margin);
2361 } else {
2362 view.setPivotY(0.0f - (view.getTop() / scaleFactor) - margin);
2363 }
2364 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002365
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002366 /**
2367 * Zoom the camera out from the workspace to reveal 'toView'.
2368 * Assumes that the view to show is anchored at either the very top or very bottom
2369 * of the screen.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002370 * @param toState The state to zoom out to. Must be ALL_APPS or CUSTOMIZE.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002371 */
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002372 private void cameraZoomOut(State toState, boolean animated) {
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002373 final Resources res = getResources();
2374 final int duration = res.getInteger(R.integer.config_allAppsZoomInTime);
2375 final float scale = (float) res.getInteger(R.integer.config_allAppsZoomScaleFactor);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002376 final boolean toAllApps = (toState == State.ALL_APPS);
2377 final View toView = toAllApps ? (View) mAllAppsGrid : mHomeCustomizationDrawer;
Patrick Dubroy558654c2010-07-23 16:48:11 -07002378
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002379 setPivotsForZoom(toView, toState, scale);
2380
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002381 if (toState == State.ALL_APPS) {
2382 mWorkspace.shrinkToBottom(animated);
2383 } else {
2384 mWorkspace.shrinkToTop(animated);
2385 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002386
2387 if (animated) {
Chet Haase472b2812010-10-14 07:02:04 -07002388 ValueAnimator scaleAnim = ObjectAnimator.ofPropertyValuesHolder(toView,
2389 PropertyValuesHolder.ofFloat("scaleX", scale, 1.0f),
2390 PropertyValuesHolder.ofFloat("scaleY", scale, 1.0f));
2391 scaleAnim.setDuration(duration);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002392 scaleAnim.setInterpolator(new DecelerateInterpolator());
Chet Haaseb1254a62010-09-07 13:35:00 -07002393 scaleAnim.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002394 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002395 public void onAnimationStart(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002396 // Prepare the position
2397 toView.setTranslationX(0.0f);
2398 toView.setTranslationY(0.0f);
2399 toView.setVisibility(View.VISIBLE);
2400 }
2401 });
2402
Chet Haaseb1254a62010-09-07 13:35:00 -07002403 AnimatorSet toolbarHideAnim = new AnimatorSet();
2404 AnimatorSet toolbarShowAnim = new AnimatorSet();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002405 hideAndShowToolbarButtons(toState, toolbarShowAnim, toolbarHideAnim);
2406
2407 // toView should appear right at the end of the workspace shrink animation
2408 final int startDelay = res.getInteger(R.integer.config_workspaceShrinkTime) - duration;
2409
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002410 if (mStateAnimation != null) mStateAnimation.cancel();
2411 mStateAnimation = new AnimatorSet();
2412 mStateAnimation.playTogether(scaleAnim, toolbarHideAnim);
2413 mStateAnimation.play(scaleAnim).after(startDelay);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002414
2415 // Show the new toolbar buttons just as the main animation is ending
2416 final int fadeInTime = res.getInteger(R.integer.config_toolbarButtonFadeInTime);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002417 mStateAnimation.play(toolbarShowAnim).after(duration + startDelay - fadeInTime);
2418 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002419 } else {
2420 toView.setTranslationX(0.0f);
2421 toView.setTranslationY(0.0f);
2422 toView.setScaleX(1.0f);
2423 toView.setScaleY(1.0f);
2424 toView.setVisibility(View.VISIBLE);
2425 hideAndShowToolbarButtons(toState, null, null);
2426 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002427 }
2428
2429 /**
2430 * Zoom the camera back into the workspace, hiding 'fromView'.
2431 * This is the opposite of cameraZoomOut.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002432 * @param fromState The current state (must be ALL_APPS or CUSTOMIZE).
2433 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002434 */
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002435 private void cameraZoomIn(State fromState, boolean animated) {
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002436 Resources res = getResources();
2437 int duration = res.getInteger(R.integer.config_allAppsZoomOutTime);
2438 float scaleFactor = (float) res.getInteger(R.integer.config_allAppsZoomScaleFactor);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002439 final View fromView =
2440 (fromState == State.ALL_APPS) ? (View) mAllAppsGrid : mHomeCustomizationDrawer;
2441
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002442 mCustomizePagedView.endChoiceMode();
2443 mAllAppsPagedView.endChoiceMode();
2444
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002445 setPivotsForZoom(fromView, fromState, scaleFactor);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002446
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002447 mWorkspace.unshrink(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002448
2449 if (animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002450 if (mStateAnimation != null) mStateAnimation.cancel();
2451 mStateAnimation = new AnimatorSet();
Chet Haase472b2812010-10-14 07:02:04 -07002452 ValueAnimator scaleAnim = ObjectAnimator.ofPropertyValuesHolder(fromView,
2453 PropertyValuesHolder.ofFloat("scaleX", scaleFactor),
2454 PropertyValuesHolder.ofFloat("scaleY", scaleFactor));
2455 scaleAnim.setDuration(duration);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002456 scaleAnim.setInterpolator(new AccelerateInterpolator());
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002457 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002458 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002459 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002460 fromView.setVisibility(View.GONE);
2461 fromView.setScaleX(1.0f);
2462 fromView.setScaleY(1.0f);
2463 }
2464 });
2465
Chet Haaseb1254a62010-09-07 13:35:00 -07002466 AnimatorSet toolbarHideAnim = new AnimatorSet();
2467 AnimatorSet toolbarShowAnim = new AnimatorSet();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002468 hideAndShowToolbarButtons(State.WORKSPACE, toolbarShowAnim, toolbarHideAnim);
2469
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002470 mStateAnimation.playTogether(scaleAnim, toolbarHideAnim);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002471
2472 // Show the new toolbar buttons at the very end of the whole animation
2473 final int fadeInTime = res.getInteger(R.integer.config_toolbarButtonFadeInTime);
2474 final int unshrinkTime = res.getInteger(R.integer.config_workspaceUnshrinkTime);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002475 mStateAnimation.play(toolbarShowAnim).after(unshrinkTime - fadeInTime);
2476 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002477 } else {
2478 fromView.setVisibility(View.GONE);
2479 hideAndShowToolbarButtons(State.WORKSPACE, null, null);
2480 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002481 }
2482
2483 /**
2484 * Pan the camera in the vertical plane between 'fromView' and 'toView'.
2485 * This is the transition used on xlarge screens to go between all apps and
2486 * the home customization drawer.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002487 * @param fromState The view to pan away from. Must be ALL_APPS or CUSTOMIZE.
2488 * @param toState The view to pan into the frame. Must be ALL_APPS or CUSTOMIZE.
2489 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002490 */
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002491 private void cameraPan(State fromState, State toState, boolean animated) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002492 final Resources res = getResources();
2493 final int duration = res.getInteger(R.integer.config_allAppsCameraPanTime);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002494 final int workspaceHeight = mWorkspace.getHeight();
2495
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002496 final boolean fromAllApps = (fromState == State.ALL_APPS);
2497 final View fromView = fromAllApps ? (View) mAllAppsGrid : mHomeCustomizationDrawer;
2498 final View toView = fromAllApps ? mHomeCustomizationDrawer : (View) mAllAppsGrid;
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002499
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002500 final float fromViewStartY = fromAllApps ? 0.0f : fromView.getY();
2501 final float fromViewEndY = fromAllApps ? -fromView.getHeight() * 2 : workspaceHeight * 2;
2502 final float toViewStartY = fromAllApps ? workspaceHeight * 2 : -toView.getHeight() * 2;
2503 final float toViewEndY = fromAllApps ? workspaceHeight - toView.getHeight() : 0.0f;
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002504
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002505 mCustomizePagedView.endChoiceMode();
2506 mAllAppsPagedView.endChoiceMode();
2507
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002508 if (toState == State.ALL_APPS) {
2509 mWorkspace.shrinkToBottom(animated);
2510 } else {
2511 mWorkspace.shrinkToTop(animated);
2512 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002513
2514 if (animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002515 if (mStateAnimation != null) mStateAnimation.cancel();
2516 mStateAnimation = new AnimatorSet();
2517 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002518 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002519 public void onAnimationStart(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002520 toView.setVisibility(View.VISIBLE);
2521 toView.setY(toViewStartY);
2522 }
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002523 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002524 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002525 fromView.setVisibility(View.GONE);
2526 }
2527 });
2528
Chet Haaseb1254a62010-09-07 13:35:00 -07002529 AnimatorSet toolbarHideAnim = new AnimatorSet();
2530 AnimatorSet toolbarShowAnim = new AnimatorSet();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002531 hideAndShowToolbarButtons(toState, toolbarShowAnim, toolbarHideAnim);
2532
Chet Haase472b2812010-10-14 07:02:04 -07002533 ObjectAnimator fromAnim = ObjectAnimator.ofFloat(fromView, "y",
2534 fromViewStartY, fromViewEndY);
2535 fromAnim.setDuration(duration);
2536 ObjectAnimator toAnim = ObjectAnimator.ofFloat(toView, "y",
2537 toViewStartY, toViewEndY);
2538 fromAnim.setDuration(duration);
2539 mStateAnimation.playTogether(toolbarHideAnim, fromAnim, toAnim);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002540
2541 // Show the new toolbar buttons just as the main animation is ending
2542 final int fadeInTime = res.getInteger(R.integer.config_toolbarButtonFadeInTime);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002543 mStateAnimation.play(toolbarShowAnim).after(duration - fadeInTime);
2544 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002545 } else {
2546 fromView.setY(fromViewEndY);
2547 fromView.setVisibility(View.GONE);
2548 toView.setY(toViewEndY);
2549 toView.setVisibility(View.VISIBLE);
2550 hideAndShowToolbarButtons(toState, null, null);
2551 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002552 }
2553
2554 void showAllApps(boolean animated) {
Michael Jurka883f55b2010-10-21 15:47:14 -07002555 if (mState == State.ALL_APPS) {
Winson Chung80baf5a2010-08-09 16:03:15 -07002556 return;
Michael Jurka883f55b2010-10-21 15:47:14 -07002557 }
Winson Chung80baf5a2010-08-09 16:03:15 -07002558
Michael Jurka79212d82010-07-30 16:36:20 -07002559 if (LauncherApplication.isScreenXLarge()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002560 if (mState == State.CUSTOMIZE) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002561 cameraPan(State.CUSTOMIZE, State.ALL_APPS, animated);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002562 } else {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002563 cameraZoomOut(State.ALL_APPS, animated);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002564 }
Patrick Dubroy558654c2010-07-23 16:48:11 -07002565 } else {
2566 mAllAppsGrid.zoom(1.0f, animated);
2567 }
Joe Onorato3a8820b2009-11-10 15:06:42 -08002568
Romain Guyc16fea72010-03-12 17:17:56 -08002569 ((View) mAllAppsGrid).setFocusable(true);
2570 ((View) mAllAppsGrid).requestFocus();
Winson Chungaafa03c2010-06-11 17:34:16 -07002571
Joe Onorato7c312c12009-08-13 21:36:53 -07002572 // TODO: fade these two too
2573 mDeleteZone.setVisibility(View.GONE);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002574 // Change the state *after* we've called all the transition code
2575 mState = State.ALL_APPS;
2576 }
2577
2578
2579 void showWorkspace(boolean animated) {
2580 showWorkspace(animated, null);
2581 }
2582
2583 void showWorkspace(boolean animated, CellLayout layout) {
2584 if (layout != null && animated) {
2585 mWorkspace.unshrink(layout);
2586 } else {
2587 mWorkspace.unshrink(animated);
2588 }
2589 if (mState == State.ALL_APPS) {
2590 closeAllApps(animated);
2591 } else if (mState == State.CUSTOMIZE) {
2592 hideCustomizationDrawer(animated);
2593 }
2594 // Change the state *after* we've called all the transition code
2595 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04002596 }
2597
Joe Onoratob2061212009-11-24 16:13:54 -05002598 /**
Joe Onorato7e4ed992009-12-03 13:10:49 -08002599 * Things to test when changing this code.
Joe Onoratob2061212009-11-24 16:13:54 -05002600 * - Home from workspace
2601 * - from center screen
2602 * - from other screens
2603 * - Home from all apps
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002604 * - from center screen
2605 * - from other screens
Joe Onoratob2061212009-11-24 16:13:54 -05002606 * - Back from all apps
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002607 * - from center screen
2608 * - from other screens
Joe Onoratob2061212009-11-24 16:13:54 -05002609 * - Launch app from workspace and quit
2610 * - with back
2611 * - with home
2612 * - Launch app from all apps and quit
2613 * - with back
2614 * - with home
Joe Onorato7e4ed992009-12-03 13:10:49 -08002615 * - Go to a screen that's not the default, then all
2616 * apps, and launch and app, and go back
2617 * - with back
2618 * -with home
Joe Onoratob2061212009-11-24 16:13:54 -05002619 * - On workspace, long press power and go back
2620 * - with back
2621 * - with home
2622 * - On all apps, long press power and go back
2623 * - with back
2624 * - with home
2625 * - On workspace, power off
2626 * - On all apps, power off
Joe Onorato7e4ed992009-12-03 13:10:49 -08002627 * - Launch an app and turn off the screen while in that app
2628 * - Go back with home key
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002629 * - Go back with back key TODO: make this not go to workspace
Joe Onorato7e4ed992009-12-03 13:10:49 -08002630 * - From all apps
2631 * - From workspace
Joe Onoratoeffc4a82010-04-15 11:48:13 -07002632 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2633 * - From all apps
2634 * - From the center workspace
2635 * - From another workspace
Joe Onoratob2061212009-11-24 16:13:54 -05002636 */
Joe Onorato7bb17492009-09-24 17:51:01 -07002637 void closeAllApps(boolean animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002638 if (mState == State.ALL_APPS) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002639 mWorkspace.setVisibility(View.VISIBLE);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002640 if (LauncherApplication.isScreenXLarge()) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002641 cameraZoomIn(State.ALL_APPS, animated);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002642 } else {
2643 mAllAppsGrid.zoom(0.0f, animated);
2644 }
Daniel Sandler388f6792010-03-02 14:08:08 -05002645 ((View)mAllAppsGrid).setFocusable(false);
Michael Jurka0142d492010-08-25 17:46:15 -07002646 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onoratoe77c08d2009-08-01 00:01:20 -07002647 }
Joe Onorato7404ee42009-07-31 11:54:44 -07002648 }
2649
Joe Onorato7c312c12009-08-13 21:36:53 -07002650 void lockAllApps() {
2651 // TODO
2652 }
2653
2654 void unlockAllApps() {
2655 // TODO
2656 }
2657
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002658 // Show the customization drawer (only exists in x-large configuration)
2659 private void showCustomizationDrawer(boolean animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002660 if (mState == State.ALL_APPS) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002661 cameraPan(State.ALL_APPS, State.CUSTOMIZE, animated);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002662 } else {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002663 cameraZoomOut(State.CUSTOMIZE, animated);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002664 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002665 // Change the state *after* we've called all the transition code
2666 mState = State.CUSTOMIZE;
Patrick Dubroy558654c2010-07-23 16:48:11 -07002667 }
2668
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002669 // Hide the customization drawer (only exists in x-large configuration)
2670 void hideCustomizationDrawer(boolean animated) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002671 if (mState == State.CUSTOMIZE) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002672 cameraZoomIn(State.CUSTOMIZE, animated);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002673 }
2674 }
2675
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002676 void addExternalItemToScreen(ItemInfo itemInfo, CellLayout layout) {
2677 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
2678 showOutOfSpaceMessage();
Michael Jurka213d9632010-07-28 11:29:25 -07002679 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002680 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002681
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002682 void onWorkspaceClick(CellLayout layout) {
2683 showWorkspace(true, layout);
Michael Jurka213d9632010-07-28 11:29:25 -07002684 }
2685
Michael Jurka0423dcf2010-10-05 14:56:18 -07002686 private void updateButtonWithIconFromExternalActivity(
2687 int buttonId, ComponentName activityName, int fallbackDrawableId) {
2688 ImageView button = (ImageView) findViewById(buttonId);
2689 Drawable toolbarIcon = null;
2690 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002691 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002692 // Look for the toolbar icon specified in the activity meta-data
2693 Bundle metaData = packageManager.getActivityInfo(
2694 activityName, PackageManager.GET_META_DATA).metaData;
2695 if (metaData != null) {
2696 int iconResId = metaData.getInt(TOOLBAR_ICON_METADATA_NAME);
2697 if (iconResId != 0) {
2698 Resources res = packageManager.getResourcesForActivity(activityName);
2699 toolbarIcon = res.getDrawable(iconResId);
2700 }
2701 }
2702 } catch (NameNotFoundException e) {
2703 // Do nothing
2704 }
2705 // If we were unable to find the icon via the meta-data, use a generic one
2706 if (toolbarIcon == null) {
2707 button.setImageResource(fallbackDrawableId);
2708 } else {
2709 button.setImageDrawable(toolbarIcon);
2710 }
2711 }
2712
2713 private void updateGlobalSearchIcon() {
2714 if (LauncherApplication.isScreenXLarge()) {
2715 final SearchManager searchManager =
2716 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2717 ComponentName activityName = searchManager.getGlobalSearchActivity();
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002718 if (activityName != null) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002719 updateButtonWithIconFromExternalActivity(
2720 R.id.search_button, activityName, R.drawable.search_button_generic);
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002721 }
2722 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002723 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002724
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002725 /**
2726 * Sets the app market icon (shown when all apps is visible on x-large screens)
2727 */
2728 private void updateAppMarketIcon() {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002729 if (LauncherApplication.isScreenXLarge()) {
2730 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
2731 // Find the app market activity by resolving an intent.
2732 // (If multiple app markets are installed, it will return the ResolverActivity.)
2733 ComponentName activityName = intent.resolveActivity(getPackageManager());
2734 if (activityName != null) {
2735 mAppMarketIntent = intent;
2736 updateButtonWithIconFromExternalActivity(
2737 R.id.market_button, activityName, R.drawable.app_market_generic);
2738 }
2739 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002740 }
2741
2742 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002743 * Displays the shortcut creation dialog and launches, if necessary, the
2744 * appropriate activity.
2745 */
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002746 private class CreateShortcut implements DialogInterface.OnClickListener,
Romain Guy7b4ef332009-07-14 13:58:08 -07002747 DialogInterface.OnCancelListener, DialogInterface.OnDismissListener,
2748 DialogInterface.OnShowListener {
2749
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002750 private AddAdapter mAdapter;
Romain Guy9ffb5432009-03-24 21:04:15 -07002751
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002752 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002753 mAdapter = new AddAdapter(Launcher.this);
Romain Guycbb89e42009-06-08 15:52:54 -07002754
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002755 final AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
2756 builder.setTitle(getString(R.string.menu_item_add_item));
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002757 builder.setAdapter(mAdapter, this);
Romain Guycbb89e42009-06-08 15:52:54 -07002758
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002759 builder.setInverseBackgroundForced(true);
2760
2761 AlertDialog dialog = builder.create();
2762 dialog.setOnCancelListener(this);
Romain Guycbb89e42009-06-08 15:52:54 -07002763 dialog.setOnDismissListener(this);
Romain Guy7b4ef332009-07-14 13:58:08 -07002764 dialog.setOnShowListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002765
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002766 return dialog;
2767 }
2768
2769 public void onCancel(DialogInterface dialog) {
2770 mWaitingForResult = false;
2771 cleanup();
2772 }
2773
Romain Guycbb89e42009-06-08 15:52:54 -07002774 public void onDismiss(DialogInterface dialog) {
Romain Guycbb89e42009-06-08 15:52:54 -07002775 }
2776
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002777 private void cleanup() {
Joe Onoratocc19a532009-11-19 14:19:17 -08002778 try {
2779 dismissDialog(DIALOG_CREATE_SHORTCUT);
2780 } catch (Exception e) {
2781 // An exception is thrown if the dialog is not visible, which is fine
2782 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002783 }
2784
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002785 /**
2786 * Handle the action clicked in the "Add to home" dialog.
2787 */
2788 public void onClick(DialogInterface dialog, int which) {
2789 Resources res = getResources();
2790 cleanup();
Romain Guycbb89e42009-06-08 15:52:54 -07002791
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002792 switch (which) {
2793 case AddAdapter.ITEM_SHORTCUT: {
Joe Onoratodeb98af2010-02-19 14:59:39 -08002794 pickShortcut();
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002795 break;
2796 }
Romain Guycbb89e42009-06-08 15:52:54 -07002797
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002798 case AddAdapter.ITEM_APPWIDGET: {
2799 int appWidgetId = Launcher.this.mAppWidgetHost.allocateAppWidgetId();
Romain Guycbb89e42009-06-08 15:52:54 -07002800
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002801 Intent pickIntent = new Intent(AppWidgetManager.ACTION_APPWIDGET_PICK);
2802 pickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002803 // start the pick activity
2804 startActivityForResult(pickIntent, REQUEST_PICK_APPWIDGET);
2805 break;
2806 }
Romain Guycbb89e42009-06-08 15:52:54 -07002807
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002808 case AddAdapter.ITEM_LIVE_FOLDER: {
2809 // Insert extra item to handle inserting folder
2810 Bundle bundle = new Bundle();
Romain Guycbb89e42009-06-08 15:52:54 -07002811
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002812 ArrayList<String> shortcutNames = new ArrayList<String>();
2813 shortcutNames.add(res.getString(R.string.group_folder));
2814 bundle.putStringArrayList(Intent.EXTRA_SHORTCUT_NAME, shortcutNames);
Romain Guycbb89e42009-06-08 15:52:54 -07002815
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002816 ArrayList<ShortcutIconResource> shortcutIcons =
2817 new ArrayList<ShortcutIconResource>();
2818 shortcutIcons.add(ShortcutIconResource.fromContext(Launcher.this,
2819 R.drawable.ic_launcher_folder));
2820 bundle.putParcelableArrayList(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, shortcutIcons);
2821
2822 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
2823 pickIntent.putExtra(Intent.EXTRA_INTENT,
2824 new Intent(LiveFolders.ACTION_CREATE_LIVE_FOLDER));
2825 pickIntent.putExtra(Intent.EXTRA_TITLE,
2826 getText(R.string.title_select_live_folder));
2827 pickIntent.putExtras(bundle);
Romain Guycbb89e42009-06-08 15:52:54 -07002828
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002829 startActivityForResult(pickIntent, REQUEST_PICK_LIVE_FOLDER);
2830 break;
2831 }
2832
2833 case AddAdapter.ITEM_WALLPAPER: {
2834 startWallpaper();
2835 break;
2836 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002837 }
2838 }
Romain Guy7b4ef332009-07-14 13:58:08 -07002839
2840 public void onShow(DialogInterface dialog) {
Winson Chungaafa03c2010-06-11 17:34:16 -07002841 mWaitingForResult = true;
Romain Guy7b4ef332009-07-14 13:58:08 -07002842 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002843 }
2844
2845 /**
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002846 * Receives notifications when applications are added/removed.
2847 */
2848 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
2849 @Override
2850 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002851 closeSystemDialogs();
Joe Onoratob2061212009-11-24 16:13:54 -05002852 String reason = intent.getStringExtra("reason");
2853 if (!"homekey".equals(reason)) {
2854 boolean animate = true;
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002855 if (mPaused || "lock".equals(reason)) {
Joe Onoratob2061212009-11-24 16:13:54 -05002856 animate = false;
2857 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002858 showWorkspace(animate);
Joe Onoratob2061212009-11-24 16:13:54 -05002859 }
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002860 }
2861 }
2862
2863 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002864 * Receives notifications whenever the appwidgets are reset.
2865 */
2866 private class AppWidgetResetObserver extends ContentObserver {
2867 public AppWidgetResetObserver() {
2868 super(new Handler());
2869 }
2870
2871 @Override
2872 public void onChange(boolean selfChange) {
2873 onAppWidgetReset();
2874 }
2875 }
2876
2877 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002878 * If the activity is currently paused, signal that we need to re-run the loader
2879 * in onResume.
2880 *
2881 * This needs to be called from incoming places where resources might have been loaded
2882 * while we are paused. That is becaues the Configuration might be wrong
2883 * when we're not running, and if it comes back to what it was when we
2884 * were paused, we are not restarted.
2885 *
2886 * Implementation of the method from LauncherModel.Callbacks.
2887 *
2888 * @return true if we are currently paused. The caller might be able to
2889 * skip some work in that case since we will come back again.
2890 */
2891 public boolean setLoadOnResume() {
2892 if (mPaused) {
2893 Log.i(TAG, "setLoadOnResume");
2894 mOnResumeNeedsLoad = true;
2895 return true;
2896 } else {
2897 return false;
2898 }
2899 }
2900
2901 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002902 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002903 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04002904 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07002905 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002906 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07002907 } else {
2908 return SCREEN_COUNT / 2;
2909 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002910 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07002911
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002912 void setAllAppsPagedView(PagedView view) {
2913 mAllAppsPagedView = view;
2914 }
2915
Joe Onorato9c1289c2009-08-17 11:03:03 -04002916 /**
2917 * Refreshes the shortcuts shown on the workspace.
2918 *
2919 * Implementation of the method from LauncherModel.Callbacks.
2920 */
2921 public void startBinding() {
2922 final Workspace workspace = mWorkspace;
2923 int count = workspace.getChildCount();
2924 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04002925 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Joe Onorato9c1289c2009-08-17 11:03:03 -04002926 ((ViewGroup) workspace.getChildAt(i)).removeAllViewsInLayout();
2927 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07002928
Joe Onorato9c1289c2009-08-17 11:03:03 -04002929 if (DEBUG_USER_INTERFACE) {
2930 android.widget.Button finishButton = new android.widget.Button(this);
2931 finishButton.setText("Finish");
2932 workspace.addInScreen(finishButton, 1, 0, 0, 1, 1);
2933
2934 finishButton.setOnClickListener(new android.widget.Button.OnClickListener() {
2935 public void onClick(View v) {
2936 finish();
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07002937 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002938 });
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002939 }
2940 }
2941
2942 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002943 * Bind the items start-end from the list.
2944 *
2945 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002946 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04002947 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
2948
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002949 setLoadOnResume();
2950
Joe Onorato9c1289c2009-08-17 11:03:03 -04002951 final Workspace workspace = mWorkspace;
2952
2953 for (int i=start; i<end; i++) {
2954 final ItemInfo item = shortcuts.get(i);
2955 mDesktopItems.add(item);
2956 switch (item.itemType) {
2957 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
2958 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Joe Onorato0589f0f2010-02-08 13:44:00 -08002959 final View shortcut = createShortcut((ShortcutInfo)item);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002960 workspace.addInScreen(shortcut, item.screen, item.cellX, item.cellY, 1, 1,
2961 false);
2962 break;
2963 case LauncherSettings.Favorites.ITEM_TYPE_USER_FOLDER:
2964 final FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07002965 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Joe Onorato9c1289c2009-08-17 11:03:03 -04002966 (UserFolderInfo) item);
2967 workspace.addInScreen(newFolder, item.screen, item.cellX, item.cellY, 1, 1,
2968 false);
2969 break;
2970 case LauncherSettings.Favorites.ITEM_TYPE_LIVE_FOLDER:
2971 final FolderIcon newLiveFolder = LiveFolderIcon.fromXml(
2972 R.layout.live_folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07002973 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Joe Onorato9c1289c2009-08-17 11:03:03 -04002974 (LiveFolderInfo) item);
2975 workspace.addInScreen(newLiveFolder, item.screen, item.cellX, item.cellY, 1, 1,
2976 false);
2977 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04002978 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002979 }
2980
Joe Onorato9c1289c2009-08-17 11:03:03 -04002981 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002982 }
2983
Joe Onorato9c1289c2009-08-17 11:03:03 -04002984 /**
2985 * Implementation of the method from LauncherModel.Callbacks.
2986 */
Joe Onoratoad72e172009-11-06 16:25:04 -05002987 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002988 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002989 sFolders.clear();
2990 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002991 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002992
2993 /**
2994 * Add the views for a widget to the workspace.
2995 *
2996 * Implementation of the method from LauncherModel.Callbacks.
2997 */
2998 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002999 setLoadOnResume();
3000
Daniel Sandler843e8602010-06-07 14:59:01 -04003001 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3002 if (DEBUG_WIDGETS) {
3003 Log.d(TAG, "bindAppWidget: " + item);
3004 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003005 final Workspace workspace = mWorkspace;
3006
3007 final int appWidgetId = item.appWidgetId;
3008 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003009 if (DEBUG_WIDGETS) {
3010 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3011 }
3012
Joe Onorato9c1289c2009-08-17 11:03:03 -04003013 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3014
Joe Onorato9c1289c2009-08-17 11:03:03 -04003015 item.hostView.setAppWidget(appWidgetId, appWidgetInfo);
3016 item.hostView.setTag(item);
3017
3018 workspace.addInScreen(item.hostView, item.screen, item.cellX,
3019 item.cellY, item.spanX, item.spanY, false);
3020
3021 workspace.requestLayout();
3022
3023 mDesktopItems.add(item);
Daniel Sandler843e8602010-06-07 14:59:01 -04003024
3025 if (DEBUG_WIDGETS) {
3026 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3027 + (SystemClock.uptimeMillis()-start) + "ms");
3028 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003029 }
3030
3031 /**
3032 * Callback saying that there aren't any more items to bind.
3033 *
3034 * Implementation of the method from LauncherModel.Callbacks.
3035 */
3036 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003037 setLoadOnResume();
3038
Joe Onorato9c1289c2009-08-17 11:03:03 -04003039 if (mSavedState != null) {
3040 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003041 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003042 }
3043
3044 final long[] userFolders = mSavedState.getLongArray(RUNTIME_STATE_USER_FOLDERS);
3045 if (userFolders != null) {
3046 for (long folderId : userFolders) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003047 final FolderInfo info = sFolders.get(folderId);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003048 if (info != null) {
3049 openFolder(info);
3050 }
3051 }
3052 final Folder openFolder = mWorkspace.getOpenFolder();
3053 if (openFolder != null) {
3054 openFolder.requestFocus();
3055 }
3056 }
3057
Joe Onorato9c1289c2009-08-17 11:03:03 -04003058 mSavedState = null;
3059 }
3060
3061 if (mSavedInstanceState != null) {
3062 super.onRestoreInstanceState(mSavedInstanceState);
3063 mSavedInstanceState = null;
3064 }
3065
Joe Onorato9c1289c2009-08-17 11:03:03 -04003066 mWorkspaceLoading = false;
3067 }
3068
3069 /**
3070 * Add the icons for all apps.
3071 *
3072 * Implementation of the method from LauncherModel.Callbacks.
3073 */
3074 public void bindAllApplications(ArrayList<ApplicationInfo> apps) {
Romain Guy84f296c2009-11-04 15:00:44 -08003075 mAllAppsGrid.setApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003076 if (mCustomizePagedView != null) {
3077 mCustomizePagedView.setApps(apps);
3078 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003079 updateAppMarketIcon();
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003080 updateGlobalSearchIcon();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003081 }
3082
3083 /**
3084 * A package was installed.
3085 *
3086 * Implementation of the method from LauncherModel.Callbacks.
3087 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003088 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003089 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003090 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onoratoa8138d52009-10-06 19:25:30 -07003091 mAllAppsGrid.addApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003092 if (mCustomizePagedView != null) {
3093 mCustomizePagedView.addApps(apps);
3094 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003095 updateAppMarketIcon();
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003096 updateGlobalSearchIcon();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003097 }
3098
3099 /**
3100 * A package was updated.
3101 *
3102 * Implementation of the method from LauncherModel.Callbacks.
3103 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003104 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003105 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003106 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onorato64e6be72010-03-05 15:05:52 -05003107 mWorkspace.updateShortcuts(apps);
3108 mAllAppsGrid.updateApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003109 if (mCustomizePagedView != null) {
3110 mCustomizePagedView.updateApps(apps);
3111 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003112 updateAppMarketIcon();
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003113 updateGlobalSearchIcon();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003114 }
3115
3116 /**
3117 * A package was uninstalled.
3118 *
3119 * Implementation of the method from LauncherModel.Callbacks.
3120 */
Joe Onorato36115782010-06-17 13:28:48 -04003121 public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003122 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onorato36115782010-06-17 13:28:48 -04003123 if (permanent) {
3124 mWorkspace.removeItems(apps);
3125 }
Joe Onoratoa8138d52009-10-06 19:25:30 -07003126 mAllAppsGrid.removeApps(apps);
Andrew Stadler959f6032010-09-27 11:42:53 -07003127 if (mCustomizePagedView != null) {
3128 mCustomizePagedView.removeApps(apps);
3129 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003130 updateAppMarketIcon();
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003131 updateGlobalSearchIcon();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003132 }
Joe Onoratobe386092009-11-17 17:32:16 -08003133
3134 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003135 * A number of packages were updated.
3136 */
3137 public void bindPackagesUpdated() {
3138 // update the customization drawer contents
Winson Chung5f941722010-09-28 16:36:43 -07003139 if (mCustomizePagedView != null) {
Winson Chungb3347bb2010-08-19 14:51:28 -07003140 mCustomizePagedView.update();
Winson Chung5f941722010-09-28 16:36:43 -07003141 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003142 }
3143
3144 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003145 * Prints out out state for debugging.
3146 */
3147 public void dumpState() {
3148 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003149 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003150 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3151 Log.d(TAG, "mRestoring=" + mRestoring);
3152 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3153 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
3154 Log.d(TAG, "mDesktopItems.size=" + mDesktopItems.size());
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003155 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003156 mModel.dumpState();
3157 mAllAppsGrid.dumpState();
3158 Log.d(TAG, "END launcher2 dump state");
3159 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003160}