blob: d670463f398254ee21436d56162b534253f14d56 [file] [log] [blame]
Michael Jurka01f0ed42010-08-20 00:41:17 -07001
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002/*
3 * Copyright (C) 2008 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
Joe Onoratoa5902522009-07-30 13:37:37 -070018package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019
Gilles Debunnedd6c9922010-10-25 11:23:41 -070020import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080021import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070022import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070023import android.animation.ObjectAnimator;
24import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070025import android.animation.ValueAnimator;
Winson Chung70442722012-02-10 15:43:22 -080026import android.animation.ValueAnimator.AnimatorUpdateListener;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.app.Dialog;
31import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080032import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070033import android.appwidget.AppWidgetManager;
34import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080036import android.content.BroadcastReceiver;
Winson Chung68846fd2010-10-29 11:00:27 -070037import android.content.ClipData;
38import android.content.ClipDescription;
Michael Jurkae326f182011-11-21 14:05:46 -080039import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040040import android.content.ComponentName;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080041import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.content.Context;
43import android.content.DialogInterface;
44import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070045import android.content.IntentFilter;
Winson Chung82f55532011-08-09 14:14:23 -070046import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070047import android.content.pm.ActivityInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070049import android.content.pm.PackageManager.NameNotFoundException;
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;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080052import android.database.ContentObserver;
Michael Jurkaaf442092010-06-10 17:01:57 -070053import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070054import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040055import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070056import android.os.AsyncTask;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080057import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020058import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080059import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070060import android.os.Message;
Daniel Sandler843e8602010-06-07 14:59:01 -040061import android.os.SystemClock;
Joe Onoratobe386092009-11-17 17:32:16 -080062import android.os.SystemProperties;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070063import android.provider.Settings;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080064import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080065import android.text.Selection;
66import android.text.SpannableStringBuilder;
67import android.text.TextUtils;
68import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070069import android.util.Log;
Winson Chung400438b2011-01-16 17:53:48 -080070import android.view.Display;
Joe Onorato0d44e942009-11-16 18:20:51 -080071import android.view.HapticFeedbackConstants;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072import android.view.KeyEvent;
73import android.view.LayoutInflater;
74import android.view.Menu;
75import android.view.MenuItem;
Michael Jurka0e260592010-06-30 17:07:39 -070076import android.view.MotionEvent;
Winson Chung400438b2011-01-16 17:53:48 -080077import android.view.Surface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080078import android.view.View;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080079import android.view.View.OnLongClickListener;
Winson Chung82f55532011-08-09 14:14:23 -070080import android.view.ViewGroup;
Michael Jurkab737ee62011-11-15 15:57:22 -080081import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080082import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Dianne Hackbornbb003a52011-08-30 14:40:07 -070083import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080084import android.view.accessibility.AccessibilityEvent;
Adam Cohencff6af82011-09-13 14:51:53 -070085import android.view.animation.AccelerateDecelerateInterpolator;
Winson Chung7a74ac92011-09-20 17:43:51 -070086import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080087import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080088import android.view.inputmethod.InputMethodManager;
Adam Cohended9f8d2010-11-03 13:25:16 -070089import android.widget.Advanceable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090import android.widget.EditText;
Michael Jurkaaf442092010-06-10 17:01:57 -070091import android.widget.ImageView;
Winson Chung68846fd2010-10-29 11:00:27 -070092import android.widget.TextView;
93import android.widget.Toast;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070094
Adam Cohendf2cc412011-04-27 16:56:57 -070095import com.android.common.Search;
96import com.android.launcher.R;
Adam Cohen558baaf2011-08-15 15:22:57 -070097import com.android.launcher2.DropTarget.DragObject;
Romain Guyedcce092010-03-04 13:03:17 -080098
Adam Cohenc0dcf592011-06-01 15:30:43 -070099import java.io.DataInputStream;
100import java.io.DataOutputStream;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700101import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700102import java.io.FileNotFoundException;
103import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700104import java.io.PrintWriter;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700105import java.util.ArrayList;
106import java.util.HashMap;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700107
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800108/**
109 * Default launcher application.
110 */
Michael Jurka946ad472010-07-09 18:05:18 -0700111public final class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700112 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
113 AllAppsView.Watcher, View.OnTouchListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800114 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700115 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800116
Joe Onorato9c1289c2009-08-17 11:03:03 -0400117 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400118 static final boolean DEBUG_WIDGETS = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700119
Winson Chung70d72102011-08-12 11:24:35 -0700120 private static final int MENU_GROUP_WALLPAPER = 1;
121 private static final int MENU_WALLPAPER_SETTINGS = Menu.FIRST + 1;
122 private static final int MENU_MANAGE_APPS = MENU_WALLPAPER_SETTINGS + 1;
Winson Chung236d4312011-08-22 15:12:27 -0700123 private static final int MENU_SYSTEM_SETTINGS = MENU_MANAGE_APPS + 1;
124 private static final int MENU_HELP = MENU_SYSTEM_SETTINGS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800125
126 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700127 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800128 private static final int REQUEST_PICK_APPLICATION = 6;
129 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700130 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700131 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800132
133 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
134
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800135 static final int SCREEN_COUNT = 5;
136 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800137
Joe Onorato7c312c12009-08-13 21:36:53 -0700138 static final int DIALOG_CREATE_SHORTCUT = 1;
139 static final int DIALOG_RENAME_FOLDER = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800140
Romain Guy98d01652009-06-30 16:21:04 -0700141 private static final String PREFERENCES = "launcher.preferences";
Adam Cohen23a4d302011-12-01 17:26:44 -0800142 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher.force_enable_rotation";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800143
144 // Type: int
145 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700146 // Type: int
147 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800148 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700149 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
150 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
152 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700153 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800154 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700155 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800156 // Type: boolean
157 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
158 // Type: long
159 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
160
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700161 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
162
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700163 /** The different states that Launcher can be in. */
Winson Chungf0ea4d32011-06-06 14:27:16 -0700164 private enum State { WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700165 private State mState = State.WORKSPACE;
166 private AnimatorSet mStateAnimation;
Michael Jurkab737ee62011-11-15 15:57:22 -0800167 private AnimatorSet mDividerAnimator;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700168
Joe Onorato9c1289c2009-08-17 11:03:03 -0400169 static final int APPWIDGET_HOST_ID = 1024;
Winson Chung557d6ed2011-07-08 15:34:52 -0700170 private static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
171 private static final int EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT = 600;
Winson Chung7a74ac92011-09-20 17:43:51 -0700172 private static final int SHOW_CLING_DURATION = 550;
Winson Chung7d7541e2011-09-16 20:14:36 -0700173 private static final int DISMISS_CLING_DURATION = 250;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800174
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800175 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800176 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800178 private final BroadcastReceiver mCloseSystemDialogsReceiver
179 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800180 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
181
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 private LayoutInflater mInflater;
183
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 private Workspace mWorkspace;
Michael Jurkab737ee62011-11-15 15:57:22 -0800185 private View mQsbDivider;
186 private View mDockDivider;
187 private DragLayer mDragLayer;
188 private DragController mDragController;
Romain Guycbb89e42009-06-08 15:52:54 -0700189
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700190 private AppWidgetManager mAppWidgetManager;
191 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700192
Michael Jurkac9d95c52011-08-29 14:03:34 -0700193 private ItemInfo mPendingAddInfo = new ItemInfo();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700194 private int[] mTmpAddItemCellCoordinates = new int[2];
195
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800196 private FolderInfo mFolderInfo;
197
Winson Chung3d503fb2011-07-13 17:25:49 -0700198 private Hotseat mHotseat;
Michael Jurka838a4ca2011-02-07 13:33:06 -0800199 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700200
Winson Chungc51db6a2011-10-05 11:44:49 -0700201 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700202 private AppsCustomizeTabHost mAppsCustomizeTabHost;
203 private AppsCustomizePagedView mAppsCustomizeContent;
204 private boolean mAutoAdvanceRunning = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800205
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800206 private Bundle mSavedState;
207
208 private SpannableStringBuilder mDefaultKeySsb = null;
209
Joe Onorato9c1289c2009-08-17 11:03:03 -0400210 private boolean mWorkspaceLoading = true;
211
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800212 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800213 private boolean mRestoring;
214 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700215 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800216
217 private Bundle mSavedInstanceState;
218
Joe Onorato9c1289c2009-08-17 11:03:03 -0400219 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800220 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800221 private boolean mUserPresent = true;
222 private boolean mVisible = false;
223 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400224
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700225 private static LocaleConfiguration sLocaleConfiguration = null;
226
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700227 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700228
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700229 private Intent mAppMarketIntent = null;
230
Adam Cohended9f8d2010-11-03 13:25:16 -0700231 // Related to the auto-advancing of widgets
232 private final int ADVANCE_MSG = 1;
233 private final int mAdvanceInterval = 20000;
234 private final int mAdvanceStagger = 250;
235 private long mAutoAdvanceSentTime;
236 private long mAutoAdvanceTimeLeft = -1;
237 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
238 new HashMap<View, AppWidgetProviderInfo>();
239
Winson Chung400438b2011-01-16 17:53:48 -0800240 // Determines how long to wait after a rotation before restoring the screen orientation to
241 // match the sensor state.
242 private final int mRestoreScreenOrientationDelay = 500;
243
Michael Jurka4ef207b2010-11-29 17:05:45 -0800244 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700245 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
246 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
247 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800248
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700249 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohened66b2b2012-01-23 17:28:51 -0800250 PendingAddWidgetInfo mWidgetBeingConfigured = null;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700251
Winson Chung46353de2012-02-16 14:05:10 -0800252 // We only want to get the SharedPreferences once since it does an FS stat each time we get
253 // it from the context.
254 private SharedPreferences mSharedPrefs;
255
Adam Cohen2801caf2011-05-13 20:57:39 -0700256
Michael Jurkaddd62e92011-02-16 17:49:14 -0800257 private BubbleTextView mWaitingForResume;
258
Michael Jurkac1f5d262011-09-30 19:32:27 -0700259 private Runnable mBuildLayersRunnable = new Runnable() {
260 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700261 if (mWorkspace != null) {
262 mWorkspace.buildPageHardwareLayers();
263 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700264 }
265 };
266
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800267 private static ArrayList<PendingAddArguments> sPendingAddList
268 = new ArrayList<PendingAddArguments>();
269
270 private static class PendingAddArguments {
271 int requestCode;
272 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700273 long container;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800274 int screen;
275 int cellX;
276 int cellY;
277 }
278
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800279 @Override
280 protected void onCreate(Bundle savedInstanceState) {
281 super.onCreate(savedInstanceState);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800282 LauncherApplication app = ((LauncherApplication)getApplication());
Winson Chung46353de2012-02-16 14:05:10 -0800283 mSharedPrefs = getSharedPreferences(PREFS_KEY, Context.MODE_PRIVATE);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800284 mModel = app.setLauncher(this);
285 mIconCache = app.getIconCache();
Joe Onorato41a12d22009-10-31 18:30:00 -0400286 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800287 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700288
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700289 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700290 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
291 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700292
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800293 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200294 android.os.Debug.startMethodTracing(
295 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800296 }
297
298 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800299 setContentView(R.layout.launcher);
300 setupViews();
Winson Chung7d7541e2011-09-16 20:14:36 -0700301 showFirstRunWorkspaceCling();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800302
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800303 registerContentObservers();
304
Joe Onorato7c312c12009-08-13 21:36:53 -0700305 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700306
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800307 mSavedState = savedInstanceState;
308 restoreState(mSavedState);
309
Winson Chunga12a2502010-12-20 14:41:35 -0800310 // Update customization drawer _after_ restoring the states
Winson Chung785d2eb2011-04-14 16:08:02 -0700311 if (mAppsCustomizeContent != null) {
312 mAppsCustomizeContent.onPackagesUpdated();
313 }
Winson Chunga12a2502010-12-20 14:41:35 -0800314
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800315 if (PROFILE_STARTUP) {
316 android.os.Debug.stopMethodTracing();
317 }
318
319 if (!mRestoring) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400320 mModel.startLoader(this, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800321 }
322
Michael Jurkac57b7a82011-08-09 22:02:20 -0700323 if (!mModel.isAllAppsLoaded()) {
324 ViewGroup appsCustomizeContentParent = (ViewGroup) mAppsCustomizeContent.getParent();
325 mInflater.inflate(R.layout.apps_customize_progressbar, appsCustomizeContentParent);
326 }
327
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800328 // For handling default keys
329 mDefaultKeySsb = new SpannableStringBuilder();
330 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800331
332 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
333 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800334
Winson Chungc51db6a2011-10-05 11:44:49 -0700335 boolean searchVisible = false;
336 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800337 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700338 int coi = getCurrentOrientationIndexForGlobalIcons();
339 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
340 sAppMarketIcon[coi] == null) {
Winson Chungc51db6a2011-10-05 11:44:49 -0700341 updateAppMarketIcon();
342 searchVisible = updateGlobalSearchIcon();
343 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700344 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700345 if (sGlobalSearchIcon[coi] != null) {
346 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700347 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700348 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700349 if (sVoiceSearchIcon[coi] != null) {
350 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700351 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700352 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700353 if (sAppMarketIcon[coi] != null) {
354 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800355 }
Winson Chungc51db6a2011-10-05 11:44:49 -0700356 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
Adam Cohen446e9402011-09-15 18:21:21 -0700357
Adam Cohen23a4d302011-12-01 17:26:44 -0800358 final String forceEnableRotation =
359 SystemProperties.get(FORCE_ENABLE_ROTATION_PROPERTY, "false");
360
Adam Cohen446e9402011-09-15 18:21:21 -0700361 // On large interfaces, we want the screen to auto-rotate based on the current orientation
Adam Cohen23a4d302011-12-01 17:26:44 -0800362 if (LauncherApplication.isScreenLarge() || "true".equalsIgnoreCase(forceEnableRotation)) {
Adam Cohen446e9402011-09-15 18:21:21 -0700363 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
364 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800365 }
Romain Guycbb89e42009-06-08 15:52:54 -0700366
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800367 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700368 if (sLocaleConfiguration == null) {
369 new AsyncTask<Void, Void, LocaleConfiguration>() {
370 @Override
371 protected LocaleConfiguration doInBackground(Void... unused) {
372 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
373 readConfiguration(Launcher.this, localeConfiguration);
374 return localeConfiguration;
375 }
376
377 @Override
378 protected void onPostExecute(LocaleConfiguration result) {
379 sLocaleConfiguration = result;
380 checkForLocaleChange(); // recursive, but now with a locale configuration
381 }
382 }.execute();
383 return;
384 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700385
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800386 final Configuration configuration = getResources().getConfiguration();
387
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700388 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800389 final String locale = configuration.locale.toString();
390
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700391 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800392 final int mcc = configuration.mcc;
393
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700394 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800395 final int mnc = configuration.mnc;
396
Romain Guy84f296c2009-11-04 15:00:44 -0800397 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800398
Romain Guy84f296c2009-11-04 15:00:44 -0800399 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700400 sLocaleConfiguration.locale = locale;
401 sLocaleConfiguration.mcc = mcc;
402 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700403
Joe Onorato0589f0f2010-02-08 13:44:00 -0800404 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700405
406 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
407 new Thread("WriteLocaleConfiguration") {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700408 @Override
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700409 public void run() {
410 writeConfiguration(Launcher.this, localeConfiguration);
411 }
412 }.start();
Romain Guy98d01652009-06-30 16:21:04 -0700413 }
414 }
415
416 private static class LocaleConfiguration {
417 public String locale;
418 public int mcc = -1;
419 public int mnc = -1;
420 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700421
Romain Guy98d01652009-06-30 16:21:04 -0700422 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
423 DataInputStream in = null;
424 try {
425 in = new DataInputStream(context.openFileInput(PREFERENCES));
426 configuration.locale = in.readUTF();
427 configuration.mcc = in.readInt();
428 configuration.mnc = in.readInt();
429 } catch (FileNotFoundException e) {
430 // Ignore
431 } catch (IOException e) {
432 // Ignore
433 } finally {
434 if (in != null) {
435 try {
436 in.close();
437 } catch (IOException e) {
438 // Ignore
439 }
440 }
441 }
442 }
443
444 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
445 DataOutputStream out = null;
446 try {
447 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
448 out.writeUTF(configuration.locale);
449 out.writeInt(configuration.mcc);
450 out.writeInt(configuration.mnc);
451 out.flush();
452 } catch (FileNotFoundException e) {
453 // Ignore
454 } catch (IOException e) {
455 //noinspection ResultOfMethodCallIgnored
456 context.getFileStreamPath(PREFERENCES).delete();
457 } finally {
458 if (out != null) {
459 try {
460 out.close();
461 } catch (IOException e) {
462 // Ignore
463 }
464 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465 }
466 }
467
Adam Cohen716b51e2011-06-30 12:09:54 -0700468 public DragLayer getDragLayer() {
469 return mDragLayer;
470 }
471
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800472 static int getScreen() {
473 synchronized (sLock) {
474 return sScreen;
475 }
476 }
477
478 static void setScreen(int screen) {
479 synchronized (sLock) {
480 sScreen = screen;
481 }
482 }
483
Winson Chung557d6ed2011-07-08 15:34:52 -0700484 /**
485 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
486 * a configuration step, this allows the proper animations to run after other transitions.
487 */
488 private boolean completeAdd(PendingAddArguments args) {
Winson Chungb8472bb2011-08-05 13:49:21 -0700489 boolean result = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800490 switch (args.requestCode) {
491 case REQUEST_PICK_APPLICATION:
Winson Chung3d503fb2011-07-13 17:25:49 -0700492 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
493 args.cellY);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800494 break;
495 case REQUEST_PICK_SHORTCUT:
496 processShortcut(args.intent);
497 break;
498 case REQUEST_CREATE_SHORTCUT:
Winson Chung3d503fb2011-07-13 17:25:49 -0700499 completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
500 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700501 result = true;
502 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800503 case REQUEST_PICK_APPWIDGET:
504 addAppWidgetFromPick(args.intent);
505 break;
506 case REQUEST_CREATE_APPWIDGET:
507 int appWidgetId = args.intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Adam Cohened66b2b2012-01-23 17:28:51 -0800508 completeAddAppWidget(appWidgetId, args.container, args.screen, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700509 result = true;
510 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800511 case REQUEST_PICK_WALLPAPER:
512 // We just wanted the activity result here so we can clear mWaitingForResult
513 break;
514 }
Winson Chungb8472bb2011-08-05 13:49:21 -0700515 return result;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800516 }
517
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800518 @Override
Adam Cohened66b2b2012-01-23 17:28:51 -0800519 protected void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
Winson Chung557d6ed2011-07-08 15:34:52 -0700520 boolean delayExitSpringLoadedMode = false;
Adam Cohened66b2b2012-01-23 17:28:51 -0800521 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
522 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700523 mWaitingForResult = false;
524
Adam Cohened66b2b2012-01-23 17:28:51 -0800525 // We have special handling for widgets
526 if (isWidgetDrop) {
527 int appWidgetId = data != null ?
528 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
529 completeTwoStageWidgetDrop(resultCode, appWidgetId);
530 return;
531 }
532
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800533 // The pattern used here is that a user PICKs a specific application,
534 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700535
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800536 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
537 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700538 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800539 final PendingAddArguments args = new PendingAddArguments();
540 args.requestCode = requestCode;
541 args.intent = data;
Winson Chung3d503fb2011-07-13 17:25:49 -0700542 args.container = mPendingAddInfo.container;
543 args.screen = mPendingAddInfo.screen;
544 args.cellX = mPendingAddInfo.cellX;
545 args.cellY = mPendingAddInfo.cellY;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800546 if (isWorkspaceLocked()) {
547 sPendingAddList.add(args);
548 } else {
Winson Chung557d6ed2011-07-08 15:34:52 -0700549 delayExitSpringLoadedMode = completeAdd(args);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800550 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800551 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800552 mDragLayer.clearAnimatedView();
Winson Chung557d6ed2011-07-08 15:34:52 -0700553 // Exit spring loaded mode if necessary after cancelling the configuration of a widget
Adam Cohened66b2b2012-01-23 17:28:51 -0800554 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), delayExitSpringLoadedMode,
555 null);
556 }
557
558 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
559 CellLayout cellLayout = (CellLayout) mWorkspace.getChildAt(mWidgetBeingConfigured.screen);
560 Runnable onCompleteRunnable = null;
561 int animationType = 0;
562
563 if (resultCode == RESULT_OK) {
564 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
565 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
566 mWidgetBeingConfigured.info);
567 mWidgetBeingConfigured.boundWidget = layout;
568 onCompleteRunnable = new Runnable() {
569 @Override
570 public void run() {
571 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
572 mPendingAddInfo.screen, layout, null);
573 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
574 null);
575 }
576 };
577 } else if (resultCode == RESULT_CANCELED) {
578 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
579 onCompleteRunnable = new Runnable() {
580 @Override
581 public void run() {
582 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
583 null);
584 }
585 };
586 }
Adam Cohend41fbf52012-02-16 23:53:59 -0800587 mWorkspace.animateWidgetDrop(mWidgetBeingConfigured, cellLayout,
Adam Cohened66b2b2012-01-23 17:28:51 -0800588 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
Adam Cohend41fbf52012-02-16 23:53:59 -0800589 animationType, mWidgetBeingConfigured.boundWidget, true);
Adam Cohen1b36dc32012-02-13 19:27:37 -0800590 mWidgetBeingConfigured = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800591 }
592
593 @Override
594 protected void onResume() {
595 super.onResume();
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800596 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700597 if (mRestoring || mOnResumeNeedsLoad) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400598 mWorkspaceLoading = true;
599 mModel.startLoader(this, true);
600 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700601 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800602 }
Winson Chunge4e50662012-01-23 14:45:13 -0800603
604 // Reset the pressed state of icons that were locked in the press state while activities
605 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800606 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800607 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -0800608 mWaitingForResume.setStayPressed(false);
609 }
Winson Chunge4e50662012-01-23 14:45:13 -0800610 if (mAppsCustomizeContent != null) {
611 // Resets the previous all apps icon press state
612 mAppsCustomizeContent.resetDrawableState();
613 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800614 }
615
616 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700617 protected void onPause() {
618 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700619 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800620 mDragController.cancelDrag();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700621 }
Romain Guycbb89e42009-06-08 15:52:54 -0700622
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700623 @Override
624 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400625 // Flag the loader to stop early before switching
626 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -0700627 if (mAppsCustomizeContent != null) {
628 mAppsCustomizeContent.surrender();
629 }
Romain Guy13c2e7b2010-03-10 19:45:00 -0800630 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700631 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700632
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800633 // We can't hide the IME if it was forced open. So don't bother
634 /*
635 @Override
636 public void onWindowFocusChanged(boolean hasFocus) {
637 super.onWindowFocusChanged(hasFocus);
638
639 if (hasFocus) {
640 final InputMethodManager inputManager = (InputMethodManager)
641 getSystemService(Context.INPUT_METHOD_SERVICE);
642 WindowManager.LayoutParams lp = getWindow().getAttributes();
643 inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
644 android.os.Handler()) {
645 protected void onReceiveResult(int resultCode, Bundle resultData) {
646 Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
647 }
648 });
649 Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
650 }
651 }
652 */
653
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800654 private boolean acceptFilter() {
655 final InputMethodManager inputManager = (InputMethodManager)
656 getSystemService(Context.INPUT_METHOD_SERVICE);
657 return !inputManager.isFullscreenMode();
658 }
659
660 @Override
661 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -0700662 final int uniChar = event.getUnicodeChar();
663 final boolean handled = super.onKeyDown(keyCode, event);
664 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
665 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800666 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
667 keyCode, event);
668 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700669 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700670 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700671 // showSearchDialog()
672 // If there are multiple keystrokes before the search dialog takes focus,
673 // onSearchRequested() will be called for every keystroke,
674 // but it is idempotent, so it's fine.
675 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800676 }
677 }
678
Joe Onorato8a9625e2010-01-28 15:55:35 -0800679 // Eat the long press event so the keyboard doesn't come up.
680 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
681 return true;
682 }
683
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800684 return handled;
685 }
686
Karl Rosaen138a0412009-04-23 19:00:21 -0700687 private String getTypedText() {
688 return mDefaultKeySsb.toString();
689 }
690
691 private void clearTypedText() {
692 mDefaultKeySsb.clear();
693 mDefaultKeySsb.clearSpans();
694 Selection.setSelection(mDefaultKeySsb, 0);
695 }
696
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800697 /**
Michael Jurka883f55b2010-10-21 15:47:14 -0700698 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
699 * State
700 */
701 private static State intToState(int stateOrdinal) {
702 State state = State.WORKSPACE;
703 final State[] stateValues = State.values();
704 for (int i = 0; i < stateValues.length; i++) {
705 if (stateValues[i].ordinal() == stateOrdinal) {
706 state = stateValues[i];
707 break;
708 }
709 }
710 return state;
711 }
712
713 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800714 * Restores the previous state, if it exists.
715 *
716 * @param savedState The previous state.
717 */
718 private void restoreState(Bundle savedState) {
719 if (savedState == null) {
720 return;
721 }
722
Michael Jurka883f55b2010-10-21 15:47:14 -0700723 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -0700724 if (state == State.APPS_CUSTOMIZE) {
Joe Onorato3a8820b2009-11-10 15:06:42 -0800725 showAllApps(false);
726 }
727
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800728 final int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
729 if (currentScreen > -1) {
Michael Jurka0142d492010-08-25 17:46:15 -0700730 mWorkspace.setCurrentPage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800731 }
732
Winson Chung3d503fb2011-07-13 17:25:49 -0700733 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
734 final int pendingAddScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700735
Winson Chung3d503fb2011-07-13 17:25:49 -0700736 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
737 mPendingAddInfo.container = pendingAddContainer;
738 mPendingAddInfo.screen = pendingAddScreen;
739 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
740 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800741 mRestoring = true;
742 }
743
744 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
745 if (renameFolder) {
746 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700747 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800748 mRestoring = true;
749 }
Winson Chunga12a2502010-12-20 14:41:35 -0800750
Winson Chung785d2eb2011-04-14 16:08:02 -0700751
752 // Restore the AppsCustomize tab
753 if (mAppsCustomizeTabHost != null) {
754 String curTab = savedState.getString("apps_customize_currentTab");
755 if (curTab != null) {
Winson Chungf0ea4d32011-06-06 14:27:16 -0700756 // We set this directly so that there is no delay before the tab is set
Winson Chung785d2eb2011-04-14 16:08:02 -0700757 mAppsCustomizeContent.setContentType(
758 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
759 mAppsCustomizeTabHost.setCurrentTabByTag(curTab);
Winson Chungf314b0e2011-08-16 11:54:27 -0700760 mAppsCustomizeContent.loadAssociatedPages(
761 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -0700762 }
763
Winson Chung5afbf7b2011-07-25 11:53:08 -0700764 int currentIndex = savedState.getInt("apps_customize_currentIndex");
765 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -0700766 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800767 }
768
769 /**
770 * Finds all the views we need and configure them properly.
771 */
772 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -0700773 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -0400774
Winson Chung4c98d922011-05-31 16:50:48 -0700775 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
776 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Michael Jurkab737ee62011-11-15 15:57:22 -0800777 mQsbDivider = (ImageView) findViewById(R.id.qsb_divider);
778 mDockDivider = (ImageView) findViewById(R.id.dock_divider);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800779
Winson Chung4c98d922011-05-31 16:50:48 -0700780 // Setup the drag layer
781 mDragLayer.setup(this, dragController);
782
Winson Chung3d503fb2011-07-13 17:25:49 -0700783 // Setup the hotseat
784 mHotseat = (Hotseat) findViewById(R.id.hotseat);
785 if (mHotseat != null) {
786 mHotseat.setup(this);
787 }
788
Winson Chung4c98d922011-05-31 16:50:48 -0700789 // Setup the workspace
790 mWorkspace.setHapticFeedbackEnabled(false);
791 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -0700792 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -0700793 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -0700794
Winson Chungf0ea4d32011-06-06 14:27:16 -0700795 // Get the search/delete bar
Winson Chungc51db6a2011-10-05 11:44:49 -0700796 mSearchDropTargetBar = (SearchDropTargetBar) mDragLayer.findViewById(R.id.qsb_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -0700797
Winson Chungf0ea4d32011-06-06 14:27:16 -0700798 // Setup AppsCustomize
799 mAppsCustomizeTabHost = (AppsCustomizeTabHost)
800 findViewById(R.id.apps_customize_pane);
801 mAppsCustomizeContent = (AppsCustomizePagedView)
802 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
803 mAppsCustomizeContent.setup(this, dragController);
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400804
Michael Jurka5130e402011-10-13 04:55:35 -0700805 // Get the all apps button
806 mAllAppsButton = findViewById(R.id.all_apps_button);
807 if (mAllAppsButton != null) {
808 mAllAppsButton.setOnTouchListener(new View.OnTouchListener() {
809 @Override
810 public boolean onTouch(View v, MotionEvent event) {
811 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
812 onTouchDownAllAppsButton(v);
813 }
814 return false;
815 }
816 });
817 }
Winson Chung3d503fb2011-07-13 17:25:49 -0700818 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -0700819 dragController.setDragScoller(mWorkspace);
820 dragController.setScrollView(mDragLayer);
821 dragController.setMoveTarget(mWorkspace);
822 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -0700823 if (mSearchDropTargetBar != null) {
824 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -0800825 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800826 }
827
828 /**
829 * Creates a view representing a shortcut.
830 *
831 * @param info The data structure describing the shortcut.
832 *
833 * @return A View inflated from R.layout.application.
834 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800835 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800836 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -0700837 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800838 }
839
840 /**
841 * Creates a view representing a shortcut inflated from the specified resource.
842 *
843 * @param layoutResId The id of the XML layout used to create the shortcut.
844 * @param parent The group the shortcut belongs to.
845 * @param info The data structure describing the shortcut.
846 *
847 * @return A View inflated from layoutResId.
848 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800849 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800850 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
851 favorite.applyFromShortcutInfo(info, mIconCache);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800852 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800853 return favorite;
854 }
855
856 /**
857 * Add an application shortcut to the workspace.
858 *
859 * @param data The intent describing the application.
860 * @param cellInfo The position on screen where to create the shortcut.
861 */
Winson Chung3d503fb2011-07-13 17:25:49 -0700862 void completeAddApplication(Intent data, long container, int screen, int cellX, int cellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700863 final int[] cellXY = mTmpAddItemCellCoordinates;
Winson Chung3d503fb2011-07-13 17:25:49 -0700864 final CellLayout layout = getCellLayout(container, screen);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700865
Adam Cohenfbba09b2011-07-18 21:43:05 -0700866 // First we check if we already know the exact location where we want to add this item.
867 if (cellX >= 0 && cellY >= 0) {
868 cellXY[0] = cellX;
869 cellXY[1] = cellY;
870 } else if (!layout.findCellForSpan(cellXY, 1, 1)) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700871 showOutOfSpaceMessage();
872 return;
873 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800874
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800875 final ShortcutInfo info = mModel.getShortcutInfo(getPackageManager(), data, this);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800876
Romain Guy73b979d2009-06-09 12:57:21 -0700877 if (info != null) {
Joe Onorato0589f0f2010-02-08 13:44:00 -0800878 info.setActivity(data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800879 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800880 info.container = ItemInfo.NO_ID;
Winson Chung3d503fb2011-07-13 17:25:49 -0700881 mWorkspace.addApplicationShortcut(info, layout, container, screen, cellXY[0], cellXY[1],
Adam Cohenfbba09b2011-07-18 21:43:05 -0700882 isWorkspaceLocked(), cellX, cellY);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800883 } else {
884 Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800885 }
886 }
Romain Guycbb89e42009-06-08 15:52:54 -0700887
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800888 /**
889 * Add a shortcut to the workspace.
890 *
891 * @param data The intent describing the shortcut.
892 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800893 */
Winson Chung3d503fb2011-07-13 17:25:49 -0700894 private void completeAddShortcut(Intent data, long container, int screen, int cellX,
895 int cellY) {
896 int[] cellXY = mTmpAddItemCellCoordinates;
897 int[] touchXY = mPendingAddInfo.dropPos;
898 CellLayout layout = getCellLayout(container, screen);
Romain Guycbb89e42009-06-08 15:52:54 -0700899
Michael Jurkad3ef3062010-11-23 16:23:58 -0800900 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -0700901
Adam Cohen558baaf2011-08-15 15:22:57 -0700902 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -0800903 if (info == null) {
904 return;
905 }
Adam Cohen558baaf2011-08-15 15:22:57 -0700906 final View view = createShortcut(info);
907
Adam Cohenfbba09b2011-07-18 21:43:05 -0700908 // First we check if we already know the exact location where we want to add this item.
909 if (cellX >= 0 && cellY >= 0) {
910 cellXY[0] = cellX;
911 cellXY[1] = cellY;
912 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -0700913
914 // If appropriate, either create a folder or add to an existing folder
915 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY,
916 true, null,null)) {
917 return;
918 }
919 DragObject dragObject = new DragObject();
920 dragObject.dragInfo = info;
921 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, dragObject, true)) {
922 return;
923 }
Adam Cohenfbba09b2011-07-18 21:43:05 -0700924 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -0800925 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -0700926 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800927 foundCellSpan = (result != null);
928 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -0700929 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800930 }
931
932 if (!foundCellSpan) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700933 showOutOfSpaceMessage();
934 return;
935 }
936
Adam Cohen558baaf2011-08-15 15:22:57 -0700937 LauncherModel.addItemToDatabase(this, info, container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800938
939 if (!mRestoring) {
Winson Chung3d503fb2011-07-13 17:25:49 -0700940 mWorkspace.addInScreen(view, container, screen, cellXY[0], cellXY[1], 1, 1,
941 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800942 }
943 }
944
Adam Cohenf814aa02011-09-01 13:48:05 -0700945 int[] getSpanForWidget(ComponentName component, int minWidth, int minHeight, int[] spanXY) {
946 if (spanXY == null) {
947 spanXY = new int[2];
948 }
949
Adam Cohen0cf2a7c2011-11-08 15:07:01 -0800950 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(this, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -0700951 // We want to account for the extra amount of padding that we are adding to the widget
952 // to ensure that it gets the full amount of space that it has requested
953 int requiredWidth = minWidth + padding.left + padding.right;
954 int requiredHeight = minHeight + padding.top + padding.bottom;
955 return CellLayout.rectToCell(getResources(), requiredWidth, requiredHeight, null);
956 }
957
958 int[] getSpanForWidget(AppWidgetProviderInfo info, int[] spanXY) {
959 return getSpanForWidget(info.provider, info.minWidth, info.minHeight, spanXY);
960 }
961
Adam Cohend41fbf52012-02-16 23:53:59 -0800962 int[] getMinSpanForWidget(AppWidgetProviderInfo info, int[] spanXY) {
Adam Cohencbf47e32011-09-16 17:32:37 -0700963 return getSpanForWidget(info.provider, info.minResizeWidth, info.minResizeHeight, spanXY);
964 }
965
Adam Cohenf814aa02011-09-01 13:48:05 -0700966 int[] getSpanForWidget(PendingAddWidgetInfo info, int[] spanXY) {
967 return getSpanForWidget(info.componentName, info.minWidth, info.minHeight, spanXY);
968 }
969
Adam Cohend41fbf52012-02-16 23:53:59 -0800970 int[] getMinSpanForWidget(PendingAddWidgetInfo info, int[] spanXY) {
971 return getSpanForWidget(info.componentName, info.minResizeWidth,
972 info.minResizeHeight, spanXY);
973 }
974
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800975 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700976 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800977 *
Romain Guy5bbc91b2010-08-18 11:38:46 -0700978 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700979 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800980 */
Adam Cohened66b2b2012-01-23 17:28:51 -0800981 private void completeAddAppWidget(final int appWidgetId, long container, int screen,
982 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
983 if (appWidgetInfo == null) {
984 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
985 }
Romain Guycbb89e42009-06-08 15:52:54 -0700986
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700987 // Calculate the grid spans needed to fit this widget
Winson Chung3d503fb2011-07-13 17:25:49 -0700988 CellLayout layout = getCellLayout(container, screen);
Adam Cohen09353862011-07-14 16:10:03 -0700989
Adam Cohend41fbf52012-02-16 23:53:59 -0800990 int[] minSpanXY = getMinSpanForWidget(appWidgetInfo, null);
Adam Cohenf814aa02011-09-01 13:48:05 -0700991 int[] spanXY = getSpanForWidget(appWidgetInfo, null);
Romain Guycbb89e42009-06-08 15:52:54 -0700992
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800993 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -0700994 // We have saved the position to which the widget was dragged-- this really only matters
995 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -0700996 int[] cellXY = mTmpAddItemCellCoordinates;
997 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -0800998 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -0700999 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001000 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1001 cellXY[0] = mPendingAddInfo.cellX;
1002 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001003 spanXY[0] = mPendingAddInfo.spanX;
1004 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001005 foundCellSpan = true;
1006 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001007 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001008 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001009 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1010 spanXY[1], cellXY, finalSpan);
1011 spanXY[0] = finalSpan[0];
1012 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001013 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001014 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001015 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001016 }
1017
Michael Jurka0280c3b2010-09-17 15:00:07 -07001018 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001019 if (appWidgetId != -1) {
1020 // Deleting an app widget ID is a void call but writes to disk before returning
1021 // to the caller...
Winson Chungf7640c82011-02-28 13:47:29 -08001022 new Thread("deleteAppWidgetId") {
1023 public void run() {
1024 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
1025 }
1026 }.start();
1027 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001028 showOutOfSpaceMessage();
Romain Guy18042c82009-11-06 11:44:55 -08001029 return;
1030 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001031
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001032 // Build Launcher-specific widget info and save to database
Michael Jurkac9d95c52011-08-29 14:03:34 -07001033 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001034 launcherInfo.spanX = spanXY[0];
1035 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001036 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1037 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001038
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001039 LauncherModel.addItemToDatabase(this, launcherInfo,
Winson Chung3d503fb2011-07-13 17:25:49 -07001040 container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001041
1042 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001043 if (hostView == null) {
1044 // Perform actual inflation because we're live
1045 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1046 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1047 } else {
1048 // The AppWidgetHostView has already been inflated and instantiated
1049 launcherInfo.hostView = hostView;
1050 }
Romain Guycbb89e42009-06-08 15:52:54 -07001051
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001052 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001053 launcherInfo.hostView.setVisibility(View.VISIBLE);
Winson Chung3d503fb2011-07-13 17:25:49 -07001054 mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001055 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001056
1057 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001058 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001059 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001060 }
Romain Guycbb89e42009-06-08 15:52:54 -07001061
Adam Cohended9f8d2010-11-03 13:25:16 -07001062 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1063 @Override
1064 public void onReceive(Context context, Intent intent) {
1065 final String action = intent.getAction();
1066 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1067 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001068 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001069 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001070
Winson Chungc100e8e2011-08-09 16:02:43 -07001071 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001072 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001073 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
1074 mAppsCustomizeTabHost.reset();
1075 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001076 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001077 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1078 mUserPresent = true;
1079 updateRunning();
1080 }
1081 }
1082 };
1083
1084 @Override
1085 public void onAttachedToWindow() {
1086 super.onAttachedToWindow();
1087
1088 // Listen for broadcasts related to user-presence
1089 final IntentFilter filter = new IntentFilter();
1090 filter.addAction(Intent.ACTION_SCREEN_OFF);
1091 filter.addAction(Intent.ACTION_USER_PRESENT);
1092 registerReceiver(mReceiver, filter);
1093
Adam Cohend113e0c2010-11-11 10:48:05 -08001094 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001095 mVisible = true;
1096 }
1097
1098 @Override
1099 public void onDetachedFromWindow() {
1100 super.onDetachedFromWindow();
1101 mVisible = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001102 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001103
Adam Cohend113e0c2010-11-11 10:48:05 -08001104 if (mAttached) {
1105 unregisterReceiver(mReceiver);
1106 mAttached = false;
1107 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001108 updateRunning();
1109 }
1110
1111 public void onWindowVisibilityChanged(int visibility) {
1112 mVisible = visibility == View.VISIBLE;
1113 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001114 // The following code used to be in onResume, but it turns out onResume is called when
1115 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1116 // is a more appropriate event to handle
1117 if (mVisible) {
1118 mAppsCustomizeTabHost.onWindowVisible();
1119 if (!mWorkspaceLoading) {
1120 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001121 // We want to let Launcher draw itself at least once before we force it to build
1122 // layers on all the workspace pages, so that transitioning to Launcher from other
1123 // apps is nice and speedy. Usually the first call to preDraw doesn't correspond to
1124 // a true draw so we wait until the second preDraw call to be safe
1125 observer.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001126 public boolean onPreDraw() {
Michael Jurka6ee21d22012-02-21 18:20:27 -08001127 // We delay the layer building a bit in order to give
1128 // other message processing a time to run. In particular
1129 // this avoids a delay in hiding the IME if it was
1130 // currently shown, because doing that may involve
1131 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001132 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurka6ee21d22012-02-21 18:20:27 -08001133 observer.removeOnPreDrawListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001134 return true;
1135 }
1136 });
1137 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001138 // When Launcher comes back to foreground, a different Activity might be responsible for
1139 // the app market intent, so refresh the icon
1140 updateAppMarketIcon();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001141 clearTypedText();
1142 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001143 }
1144
1145 private void sendAdvanceMessage(long delay) {
1146 mHandler.removeMessages(ADVANCE_MSG);
1147 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1148 mHandler.sendMessageDelayed(msg, delay);
1149 mAutoAdvanceSentTime = System.currentTimeMillis();
1150 }
1151
1152 private void updateRunning() {
1153 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1154 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1155 mAutoAdvanceRunning = autoAdvanceRunning;
1156 if (autoAdvanceRunning) {
1157 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1158 sendAdvanceMessage(delay);
1159 } else {
1160 if (!mWidgetsToAdvance.isEmpty()) {
1161 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1162 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1163 }
1164 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001165 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001166 }
1167 }
1168 }
1169
1170 private final Handler mHandler = new Handler() {
1171 @Override
1172 public void handleMessage(Message msg) {
1173 if (msg.what == ADVANCE_MSG) {
1174 int i = 0;
1175 for (View key: mWidgetsToAdvance.keySet()) {
1176 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1177 final int delay = mAdvanceStagger * i;
1178 if (v instanceof Advanceable) {
1179 postDelayed(new Runnable() {
1180 public void run() {
1181 ((Advanceable) v).advance();
1182 }
1183 }, delay);
1184 }
1185 i++;
1186 }
1187 sendAdvanceMessage(mAdvanceInterval);
1188 }
1189 }
1190 };
1191
1192 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001193 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001194 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1195 if (v instanceof Advanceable) {
1196 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001197 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001198 updateRunning();
1199 }
1200 }
1201
1202 void removeWidgetToAutoAdvance(View hostView) {
1203 if (mWidgetsToAdvance.containsKey(hostView)) {
1204 mWidgetsToAdvance.remove(hostView);
1205 updateRunning();
1206 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001207 }
1208
Joe Onorato9c1289c2009-08-17 11:03:03 -04001209 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001210 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001211 launcherInfo.hostView = null;
1212 }
1213
Adam Cohended9f8d2010-11-03 13:25:16 -07001214 void showOutOfSpaceMessage() {
1215 Toast.makeText(this, getString(R.string.out_of_space), Toast.LENGTH_SHORT).show();
1216 }
1217
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001218 public LauncherAppWidgetHost getAppWidgetHost() {
1219 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001220 }
Romain Guycbb89e42009-06-08 15:52:54 -07001221
Winson Chunga9abd0e2010-10-27 17:18:37 -07001222 public LauncherModel getModel() {
1223 return mModel;
1224 }
1225
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001226 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001227 getWindow().closeAllPanels();
1228
Winson Chung87acb482011-08-23 17:28:05 -07001229 /**
1230 * We should remove this code when we remove all the dialog code.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001231 try {
1232 dismissDialog(DIALOG_CREATE_SHORTCUT);
1233 // Unlock the workspace if the dialog was showing
1234 } catch (Exception e) {
1235 // An exception is thrown if the dialog is not visible, which is fine
1236 }
1237
1238 try {
1239 dismissDialog(DIALOG_RENAME_FOLDER);
1240 // Unlock the workspace if the dialog was showing
1241 } catch (Exception e) {
1242 // An exception is thrown if the dialog is not visible, which is fine
1243 }
Winson Chung87acb482011-08-23 17:28:05 -07001244 */
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001245
1246 // Whatever we were doing is hereby canceled.
1247 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001248 }
1249
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001250 @Override
1251 protected void onNewIntent(Intent intent) {
1252 super.onNewIntent(intent);
1253
1254 // Close the menu
1255 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001256 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001257 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001258
Joe Onorato14f122b2009-11-19 14:06:36 -08001259 boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1260 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001261
Adam Cohenac56cff2011-09-28 20:45:37 -07001262 Folder openFolder = mWorkspace.getOpenFolder();
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001263 // In all these cases, only animate if we're already on home
Patrick Dubroy758a9232011-03-03 19:54:56 -08001264 mWorkspace.exitWidgetResizeMode();
Adam Cohenac56cff2011-09-28 20:45:37 -07001265 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1266 openFolder == null) {
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001267 mWorkspace.moveToDefaultScreen(true);
Joe Onorato3a8820b2009-11-10 15:06:42 -08001268 }
Adam Cohenac56cff2011-09-28 20:45:37 -07001269
1270 closeFolder();
Winson Chungde1af762011-07-21 16:44:07 -07001271 exitSpringLoadedDragMode();
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001272 showWorkspace(alreadyOnHome);
Romain Guy1dd3a072009-07-16 13:21:01 -07001273
Joe Onorato3a8820b2009-11-10 15:06:42 -08001274 final View v = getWindow().peekDecorView();
1275 if (v != null && v.getWindowToken() != null) {
1276 InputMethodManager imm = (InputMethodManager)getSystemService(
1277 INPUT_METHOD_SERVICE);
1278 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001279 }
Winson Chung337cd9d2011-03-30 10:39:30 -07001280
Michael Jurka35aa14d2011-07-07 17:01:08 -07001281 // Reset AllApps to its initial state
Adam Cohenb64d36e2011-10-17 21:48:02 -07001282 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Winson Chungc100e8e2011-08-09 16:02:43 -07001283 mAppsCustomizeTabHost.reset();
Winson Chung785d2eb2011-04-14 16:08:02 -07001284 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001285 }
1286 }
1287
1288 @Override
1289 protected void onRestoreInstanceState(Bundle savedInstanceState) {
1290 // Do not call super here
1291 mSavedInstanceState = savedInstanceState;
1292 }
1293
1294 @Override
1295 protected void onSaveInstanceState(Bundle outState) {
Michael Jurka0142d492010-08-25 17:46:15 -07001296 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getCurrentPage());
Adam Cohen95bb8002011-07-03 23:40:28 -07001297 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001298
Michael Jurka883f55b2010-10-21 15:47:14 -07001299 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001300 // We close any open folder since it will not be re-opened, and we need to make sure
1301 // this state is reflected.
1302 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001303
Winson Chung3d503fb2011-07-13 17:25:49 -07001304 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screen > -1 &&
1305 mWaitingForResult) {
1306 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
1307 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screen);
1308 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1309 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001310 }
1311
1312 if (mFolderInfo != null && mWaitingForResult) {
1313 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1314 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1315 }
Michael Jurka946ad472010-07-09 18:05:18 -07001316
Winson Chung785d2eb2011-04-14 16:08:02 -07001317 // Save the current AppsCustomize tab
1318 if (mAppsCustomizeTabHost != null) {
1319 String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1320 if (currentTabTag != null) {
1321 outState.putString("apps_customize_currentTab", currentTabTag);
1322 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001323 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1324 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001325 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001326 }
1327
1328 @Override
1329 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001330 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001331
Winson Chunge7a03942011-08-05 15:05:12 -07001332 // Remove all pending runnables
1333 mHandler.removeMessages(ADVANCE_MSG);
1334 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001335 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001336
Winson Chungcd2b0142011-06-08 16:02:26 -07001337 // Stop callbacks from LauncherModel
1338 LauncherApplication app = ((LauncherApplication) getApplication());
1339 mModel.stopLoader();
1340 app.setLauncher(null);
1341
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001342 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001343 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001344 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001345 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001346 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001347 mAppWidgetHost = null;
1348
1349 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001350
1351 TextKeyListener.getInstance().release();
1352
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001353
Winson Chung3d503fb2011-07-13 17:25:49 -07001354 unbindWorkspaceAndHotseatItems();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001355
1356 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001357 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001358
1359 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1360 mWorkspace.removeAllViews();
1361 mWorkspace = null;
1362 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001363
1364 ValueAnimator.clearAllAnimations();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001365 }
1366
Adam Cohena9cf38f2011-05-02 15:36:58 -07001367 public DragController getDragController() {
1368 return mDragController;
1369 }
1370
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001371 @Override
1372 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001373 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001374 super.startActivityForResult(intent, requestCode);
1375 }
1376
Winson Chung70d72102011-08-12 11:24:35 -07001377 /**
1378 * Indicates that we want global search for this activity by setting the globalSearch
1379 * argument for {@link #startSearch} to true.
1380 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001381 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001382 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001383 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001384
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001385 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001386
Karl Rosaen138a0412009-04-23 19:00:21 -07001387 if (initialQuery == null) {
1388 // Use any text typed in the launcher as the initial query
1389 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001390 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001391 if (appSearchData == null) {
1392 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001393 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001394 }
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001395 Rect sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
Romain Guycbb89e42009-06-08 15:52:54 -07001396
Karl Rosaen138a0412009-04-23 19:00:21 -07001397 final SearchManager searchManager =
1398 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
Karl Rosaen138a0412009-04-23 19:00:21 -07001399 searchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001400 appSearchData, globalSearch, sourceBounds);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001401 }
1402
Winson Chung70d72102011-08-12 11:24:35 -07001403 @Override
1404 public boolean onCreateOptionsMenu(Menu menu) {
1405 if (isWorkspaceLocked()) {
1406 return false;
1407 }
1408
1409 super.onCreateOptionsMenu(menu);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001410
1411 Intent manageApps = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
1412 manageApps.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1413 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung236d4312011-08-22 15:12:27 -07001414 Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
1415 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1416 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Michael Jurkab964f9c2011-09-27 22:10:05 -07001417 String helpUrl = getString(R.string.help_url);
1418 Intent help = new Intent(Intent.ACTION_VIEW, Uri.parse(helpUrl));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001419 help.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1420 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1421
Winson Chung70d72102011-08-12 11:24:35 -07001422 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1423 .setIcon(android.R.drawable.ic_menu_gallery)
1424 .setAlphabeticShortcut('W');
1425 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1426 .setIcon(android.R.drawable.ic_menu_manage)
Winson Chungdff8ebb2011-09-08 17:25:31 -07001427 .setIntent(manageApps)
Winson Chung70d72102011-08-12 11:24:35 -07001428 .setAlphabeticShortcut('M');
Winson Chung236d4312011-08-22 15:12:27 -07001429 menu.add(0, MENU_SYSTEM_SETTINGS, 0, R.string.menu_settings)
1430 .setIcon(android.R.drawable.ic_menu_preferences)
1431 .setIntent(settings)
1432 .setAlphabeticShortcut('P');
Michael Jurkab964f9c2011-09-27 22:10:05 -07001433 if (!helpUrl.isEmpty()) {
1434 menu.add(0, MENU_HELP, 0, R.string.menu_help)
1435 .setIcon(android.R.drawable.ic_menu_help)
1436 .setIntent(help)
1437 .setAlphabeticShortcut('H');
1438 }
Winson Chung70d72102011-08-12 11:24:35 -07001439 return true;
1440 }
1441
1442 @Override
1443 public boolean onPrepareOptionsMenu(Menu menu) {
1444 super.onPrepareOptionsMenu(menu);
1445
1446 if (mAppsCustomizeTabHost.isTransitioning()) {
1447 return false;
1448 }
1449 boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1450 menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1451
1452 return true;
1453 }
1454
1455 @Override
1456 public boolean onOptionsItemSelected(MenuItem item) {
1457 switch (item.getItemId()) {
1458 case MENU_WALLPAPER_SETTINGS:
1459 startWallpaper();
1460 return true;
Winson Chung70d72102011-08-12 11:24:35 -07001461 }
1462
1463 return super.onOptionsItemSelected(item);
1464 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001465
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001466 @Override
1467 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001468 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001469 // Use a custom animation for launching search
1470 overridePendingTransition(R.anim.fade_in_fast, R.anim.fade_out_fast);
Karl Rosaen138a0412009-04-23 19:00:21 -07001471 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001472 }
1473
Joe Onorato9c1289c2009-08-17 11:03:03 -04001474 public boolean isWorkspaceLocked() {
1475 return mWorkspaceLoading || mWaitingForResult;
1476 }
1477
Michael Jurka0280c3b2010-09-17 15:00:07 -07001478 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07001479 mPendingAddInfo.container = ItemInfo.NO_ID;
1480 mPendingAddInfo.screen = -1;
1481 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1482 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08001483 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07001484 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001485 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001486
Michael Jurkaaf442092010-06-10 17:01:57 -07001487 void addAppWidgetFromPick(Intent data) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001488 // TODO: catch bad widget exception when sent
1489 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Michael Jurkaaf442092010-06-10 17:01:57 -07001490 // TODO: Is this log message meaningful?
1491 if (LOGD) Log.d(TAG, "dumping extras content=" + data.getExtras());
Winson Chung55cef262010-10-28 14:14:18 -07001492 addAppWidgetImpl(appWidgetId, null);
Michael Jurkaaf442092010-06-10 17:01:57 -07001493 }
1494
Adam Cohened66b2b2012-01-23 17:28:51 -08001495 void addAppWidgetImpl(final int appWidgetId, final PendingAddWidgetInfo info) {
1496 final AppWidgetProviderInfo appWidget = info.info;
1497 Runnable configurationActivity = null;
Bjorn Bringert7984c942009-12-09 15:38:25 +00001498 if (appWidget.configure != null) {
1499 // Launch over to configure widget, if needed
1500 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
1501 intent.setComponent(appWidget.configure);
1502 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Winson Chung55cef262010-10-28 14:14:18 -07001503 if (info != null) {
Winson Chung68846fd2010-10-29 11:00:27 -07001504 if (info.mimeType != null && !info.mimeType.isEmpty()) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001505 intent.putExtra(InstallWidgetReceiver.
1506 EXTRA_APPWIDGET_CONFIGURATION_DATA_MIME_TYPE, info.mimeType);
Winson Chung68846fd2010-10-29 11:00:27 -07001507
1508 final String mimeType = info.mimeType;
1509 final ClipData clipData = (ClipData) info.configurationData;
1510 final ClipDescription clipDesc = clipData.getDescription();
1511 for (int i = 0; i < clipDesc.getMimeTypeCount(); ++i) {
1512 if (clipDesc.getMimeType(i).equals(mimeType)) {
Dianne Hackborn0d5aad72011-01-17 15:28:58 -08001513 final ClipData.Item item = clipData.getItemAt(i);
Winson Chung68846fd2010-10-29 11:00:27 -07001514 final CharSequence stringData = item.getText();
1515 final Uri uriData = item.getUri();
1516 final Intent intentData = item.getIntent();
Adam Cohened66b2b2012-01-23 17:28:51 -08001517 final String key = InstallWidgetReceiver.
1518 EXTRA_APPWIDGET_CONFIGURATION_DATA;
Winson Chung68846fd2010-10-29 11:00:27 -07001519 if (uriData != null) {
1520 intent.putExtra(key, uriData);
1521 } else if (intentData != null) {
1522 intent.putExtra(key, intentData);
1523 } else if (stringData != null) {
1524 intent.putExtra(key, stringData);
1525 }
1526 break;
1527 }
1528 }
1529 }
Winson Chung55cef262010-10-28 14:14:18 -07001530 }
Romain Guy8e633c52010-03-04 12:51:36 -08001531 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
Adam Cohened66b2b2012-01-23 17:28:51 -08001532 mWidgetBeingConfigured = info;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001533 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001534 // Otherwise just add it
Adam Cohened66b2b2012-01-23 17:28:51 -08001535 completeAddAppWidget(appWidgetId, info.container, info.screen, info.boundWidget, appWidget);
Winson Chung557d6ed2011-07-08 15:34:52 -07001536 // Exit spring loaded mode if necessary after adding the widget
Adam Cohened66b2b2012-01-23 17:28:51 -08001537 exitSpringLoadedDragModeDelayed(true, false, null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001538 }
1539 }
Romain Guycbb89e42009-06-08 15:52:54 -07001540
Adam Cohenfbba09b2011-07-18 21:43:05 -07001541 /**
1542 * Process a shortcut drop.
1543 *
1544 * @param componentName The name of the component
1545 * @param screen The screen where it should be added
1546 * @param cell The cell it should be added to, optional
1547 * @param position The location on the screen where it was dropped, optional
1548 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001549 void processShortcutFromDrop(ComponentName componentName, long container, int screen,
1550 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001551 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001552 mPendingAddInfo.container = container;
1553 mPendingAddInfo.screen = screen;
1554 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001555
1556 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001557 mPendingAddInfo.cellX = cell[0];
1558 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001559 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001560
1561 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1562 createShortcutIntent.setComponent(componentName);
1563 processShortcut(createShortcutIntent);
1564 }
1565
Adam Cohenfbba09b2011-07-18 21:43:05 -07001566 /**
1567 * Process a widget drop.
1568 *
1569 * @param info The PendingAppWidgetInfo of the widget being added.
1570 * @param screen The screen where it should be added
1571 * @param cell The cell it should be added to, optional
1572 * @param position The location on the screen where it was dropped, optional
1573 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001574 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen,
Adam Cohend41fbf52012-02-16 23:53:59 -08001575 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001576 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001577 mPendingAddInfo.container = info.container = container;
1578 mPendingAddInfo.screen = info.screen = screen;
1579 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08001580 mPendingAddInfo.minSpanX = info.minSpanX;
1581 mPendingAddInfo.minSpanY = info.minSpanY;
1582
Adam Cohenfbba09b2011-07-18 21:43:05 -07001583 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001584 mPendingAddInfo.cellX = cell[0];
1585 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001586 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001587 if (span != null) {
1588 mPendingAddInfo.spanX = span[0];
1589 mPendingAddInfo.spanY = span[1];
1590 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001591
Adam Cohened66b2b2012-01-23 17:28:51 -08001592 AppWidgetHostView hostView = info.boundWidget;
1593 int appWidgetId;
1594 if (hostView != null) {
1595 appWidgetId = hostView.getAppWidgetId();
1596 } else {
1597 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
1598 AppWidgetManager.getInstance(this).bindAppWidgetId(appWidgetId, info.componentName);
1599 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001600 addAppWidgetImpl(appWidgetId, info);
1601 }
1602
Joe Onoratodeb98af2010-02-19 14:59:39 -08001603 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001604 // Handle case where user selected "Applications"
1605 String applicationName = getResources().getString(R.string.group_applications);
1606 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001607
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001608 if (applicationName != null && applicationName.equals(shortcutName)) {
1609 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1610 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001611
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001612 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1613 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001614 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001615 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001616 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001617 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001618 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001619 }
1620
Winson Chung24ab2f12010-09-16 14:10:47 -07001621 void processWallpaper(Intent intent) {
1622 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1623 }
1624
Winson Chung3d503fb2011-07-13 17:25:49 -07001625 FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX,
1626 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001627 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001628 folderInfo.title = getText(R.string.folder_name);
1629
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001630 // Update the model
Winson Chung3d503fb2011-07-13 17:25:49 -07001631 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screen, cellX, cellY,
1632 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001633 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001634
1635 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07001636 FolderIcon newFolder =
1637 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
1638 mWorkspace.addInScreen(newFolder, container, screen, cellX, cellY, 1, 1,
1639 isWorkspaceLocked());
Adam Cohendf035382011-04-11 17:22:04 -07001640 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001641 }
Romain Guycbb89e42009-06-08 15:52:54 -07001642
Joe Onorato9c1289c2009-08-17 11:03:03 -04001643 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001644 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001645 }
1646
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001647 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001648 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001649 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001650 Intent chooser = Intent.createChooser(pickWallpaper,
1651 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001652 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1653 // Removed in Eclair MR1
1654// WallpaperManager wm = (WallpaperManager)
1655// getSystemService(Context.WALLPAPER_SERVICE);
1656// WallpaperInfo wi = wm.getWallpaperInfo();
1657// if (wi != null && wi.getSettingsActivity() != null) {
1658// LabeledIntent li = new LabeledIntent(getPackageName(),
1659// R.string.configure_wallpaper, 0);
1660// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1661// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1662// }
Mike Clerona0618e42009-10-22 13:55:21 -07001663 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001664 }
1665
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001666 /**
1667 * Registers various content observers. The current implementation registers
1668 * only a favorites observer to keep track of the favorites applications.
1669 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001670 private void registerContentObservers() {
1671 ContentResolver resolver = getContentResolver();
1672 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1673 true, mWidgetObserver);
1674 }
1675
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001676 @Override
1677 public boolean dispatchKeyEvent(KeyEvent event) {
1678 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1679 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001680 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001681 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001682 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jason Samseb5615d2009-11-30 11:50:10 -08001683 if (SystemProperties.getInt("debug.launcher2.dumpstate", 0) != 0) {
Joe Onoratobe386092009-11-17 17:32:16 -08001684 dumpState();
1685 return true;
1686 }
1687 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001688 }
1689 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1690 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001691 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001692 return true;
1693 }
1694 }
1695
1696 return super.dispatchKeyEvent(event);
1697 }
1698
Joe Onorato88ec0992009-11-19 13:16:06 -08001699 @Override
1700 public void onBackPressed() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07001701 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001702 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001703 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07001704 Folder openFolder = mWorkspace.getOpenFolder();
1705 if (openFolder.isEditingName()) {
1706 openFolder.dismissEditingName();
1707 } else {
1708 closeFolder();
1709 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001710 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08001711 mWorkspace.exitWidgetResizeMode();
1712
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001713 // Back button is a no-op here, but give at least some feedback for the button press
1714 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07001715 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001716 }
1717
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001718 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001719 * Re-listen when widgets are reset.
1720 */
1721 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08001722 if (mAppWidgetHost != null) {
1723 mAppWidgetHost.startListening();
1724 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001725 }
1726
1727 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001728 * Go through the and disconnect any of the callbacks in the drawables and the views or we
1729 * leak the previous Home screen on orientation change.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001730 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001731 private void unbindWorkspaceAndHotseatItems() {
Winson Chung603bcb92011-09-02 11:45:39 -07001732 if (mModel != null) {
1733 mModel.unbindWorkspaceItems();
1734 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001735 }
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001736
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001737 /**
1738 * Launches the intent referred by the clicked shortcut.
1739 *
1740 * @param v The view representing the clicked shortcut.
1741 */
1742 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001743 // Make sure that rogue clicks don't get through while allapps is launching, or after the
1744 // view has detached (it's possible for this to happen if the view is removed mid touch).
1745 if (v.getWindowToken() == null) {
1746 return;
1747 }
1748
Winson Chung9b0b2fe2012-02-24 13:03:34 -08001749 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001750 return;
1751 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07001752
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001753 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001754 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001755 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08001756 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08001757 int[] pos = new int[2];
1758 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08001759 intent.setSourceBounds(new Rect(pos[0], pos[1],
1760 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Michael Jurkaddd62e92011-02-16 17:49:14 -08001761 boolean success = startActivitySafely(intent, tag);
1762
1763 if (success && v instanceof BubbleTextView) {
1764 mWaitingForResume = (BubbleTextView) v;
1765 mWaitingForResume.setStayPressed(true);
1766 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001767 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07001768 if (v instanceof FolderIcon) {
1769 FolderIcon fi = (FolderIcon) v;
1770 handleFolderClick(fi);
1771 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07001772 } else if (v == mAllAppsButton) {
1773 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001774 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001775 } else {
Michael Jurka2a552322011-10-11 15:22:05 -07001776 onClickAllAppsButton(v);
Joe Onorato7404ee42009-07-31 11:54:44 -07001777 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001778 }
1779 }
1780
Michael Jurka0e260592010-06-30 17:07:39 -07001781 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07001782 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001783 // clicking anywhere on the workspace causes the customization drawer to slide down
1784 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07001785 return false;
1786 }
1787
Michael Jurkaaf442092010-06-10 17:01:57 -07001788 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001789 * Event handler for the search button
1790 *
1791 * @param v The view that was clicked.
1792 */
1793 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001794 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
1795
Amith Yamasania135ba82011-08-09 17:42:01 -07001796 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001797 }
1798
1799 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001800 * Event handler for the voice button
1801 *
1802 * @param v The view that was clicked.
1803 */
1804 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001805 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001806
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001807 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001808 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001809 startActivity(intent);
1810 }
1811
1812 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001813 * Event handler for the "grid" button that appears on the home screen, which
1814 * enters all apps mode.
1815 *
1816 * @param v The view that was clicked.
1817 */
1818 public void onClickAllAppsButton(View v) {
Michael Jurka5130e402011-10-13 04:55:35 -07001819 showAllApps(true);
1820 }
1821
1822 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07001823 // Provide the same haptic feedback that the system offers for virtual keys.
1824 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001825 }
1826
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001827 public void onClickAppMarketButton(View v) {
1828 if (mAppMarketIntent != null) {
1829 startActivitySafely(mAppMarketIntent, "app market");
1830 }
1831 }
1832
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001833 void startApplicationDetailsActivity(ComponentName componentName) {
1834 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001835 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
1836 Uri.fromParts("package", packageName, null));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001837 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001838 startActivity(intent);
1839 }
1840
Patrick Dubroy5539af72010-09-07 15:22:01 -07001841 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
1842 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
1843 // System applications cannot be installed. For now, show a toast explaining that.
1844 // We may give them the option of disabling apps this way.
1845 int messageId = R.string.uninstall_system_app_text;
1846 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
1847 } else {
1848 String packageName = appInfo.componentName.getPackageName();
1849 String className = appInfo.componentName.getClassName();
1850 Intent intent = new Intent(
1851 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001852 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1853 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy5539af72010-09-07 15:22:01 -07001854 startActivity(intent);
1855 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001856 }
1857
Michael Jurkaddd62e92011-02-16 17:49:14 -08001858 boolean startActivitySafely(Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001859 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1860 try {
1861 startActivity(intent);
Michael Jurkaddd62e92011-02-16 17:49:14 -08001862 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001863 } catch (ActivityNotFoundException e) {
1864 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Daniel Sandlerc9b18772010-04-22 14:37:59 -04001865 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001866 } catch (SecurityException e) {
1867 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001868 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001869 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07001870 "or use the exported attribute for this activity. "
1871 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001872 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08001873 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001874 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001875
Romain Guy8e633c52010-03-04 12:51:36 -08001876 void startActivityForResultSafely(Intent intent, int requestCode) {
1877 try {
1878 startActivityForResult(intent, requestCode);
1879 } catch (ActivityNotFoundException e) {
1880 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1881 } catch (SecurityException e) {
1882 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1883 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
1884 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
1885 "or use the exported attribute for this activity.", e);
1886 }
1887 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001888
Adam Cohena9cf38f2011-05-02 15:36:58 -07001889 private void handleFolderClick(FolderIcon folderIcon) {
1890 final FolderInfo info = folderIcon.mInfo;
Adam Cohen3c81a382011-08-31 22:25:51 -07001891 Folder openFolder = mWorkspace.getFolderForTag(info);
1892
1893 // If the folder info reports that the associated folder is open, then verify that
1894 // it is actually opened. There have been a few instances where this gets out of sync.
1895 if (info.opened && openFolder == null) {
1896 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
1897 + info.screen + " (" + info.cellX + ", " + info.cellY + ")");
1898 info.opened = false;
1899 }
1900
Adam Cohena9cf38f2011-05-02 15:36:58 -07001901 if (!info.opened) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001902 // Close any open folder
1903 closeFolder();
1904 // Open the requested folder
Adam Cohena9cf38f2011-05-02 15:36:58 -07001905 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001906 } else {
1907 // Find the open folder...
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001908 int folderScreen;
1909 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07001910 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001911 // .. and close it
1912 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07001913 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001914 // Close any folder open on the current screen
1915 closeFolder();
1916 // Pull the folder onto this screen
Adam Cohena9cf38f2011-05-02 15:36:58 -07001917 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001918 }
1919 }
1920 }
1921 }
1922
Adam Cohen2801caf2011-05-13 20:57:39 -07001923 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001924 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07001925 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
1926 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
1927 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
1928
Adam Cohenc51934b2011-07-26 21:07:43 -07001929 FolderInfo info = (FolderInfo) fi.getTag();
1930 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1931 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07001932 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
1933 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07001934 }
1935
Adam Cohen2801caf2011-05-13 20:57:39 -07001936 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
1937 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
1938 oa.start();
1939 }
1940
1941 private void shrinkAndFadeInFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001942 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07001943 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
1944 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
1945 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
1946
Adam Cohenc51934b2011-07-26 21:07:43 -07001947 FolderInfo info = (FolderInfo) fi.getTag();
1948 CellLayout cl = null;
1949 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1950 cl = (CellLayout) fi.getParent().getParent();
1951 }
1952
1953 final CellLayout layout = cl;
Adam Cohen2801caf2011-05-13 20:57:39 -07001954 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
1955 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07001956 oa.addListener(new AnimatorListenerAdapter() {
1957 @Override
1958 public void onAnimationEnd(Animator animation) {
1959 if (layout != null) {
1960 layout.clearFolderLeaveBehind();
1961 }
1962 }
1963 });
Adam Cohen2801caf2011-05-13 20:57:39 -07001964 oa.start();
1965 }
1966
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001967 /**
Michael Jurka774bd372010-10-22 13:40:50 -07001968 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001969 * is animated relative to the specified View. If the View is null, no animation
1970 * is played.
1971 *
1972 * @param folderInfo The FolderInfo describing the folder to open.
1973 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07001974 public void openFolder(FolderIcon folderIcon) {
1975 Folder folder = folderIcon.mFolder;
1976 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001977
Adam Cohen2801caf2011-05-13 20:57:39 -07001978 growAndFadeOutFolderIcon(folderIcon);
Adam Cohena9cf38f2011-05-02 15:36:58 -07001979 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001980
Adam Cohen4554ee12011-08-03 16:13:21 -07001981 // Just verify that the folder hasn't already been added to the DragLayer.
1982 // There was a one-off crash where the folder had a parent already.
1983 if (folder.getParent() == null) {
1984 mDragLayer.addView(folder);
1985 mDragController.addDropTarget((DropTarget) folder);
1986 } else {
1987 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
1988 folder.getParent() + ").");
1989 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07001990 folder.animateOpen();
Adam Cohen4554ee12011-08-03 16:13:21 -07001991 }
1992
1993 public void closeFolder() {
1994 Folder folder = mWorkspace.getOpenFolder();
1995 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07001996 if (folder.isEditingName()) {
1997 folder.dismissEditingName();
1998 }
Adam Cohen4554ee12011-08-03 16:13:21 -07001999 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002000
2001 // Dismiss the folder cling
2002 dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002003 }
2004 }
2005
2006 void closeFolder(Folder folder) {
2007 folder.getInfo().opened = false;
2008
2009 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2010 if (parent != null) {
2011 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2012 shrinkAndFadeInFolderIcon(fi);
2013 }
2014 folder.animateClosed();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002015 }
2016
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002017 public boolean onLongClick(View v) {
Patrick Dubroye708c522011-03-01 16:03:43 -08002018 if (mState != State.WORKSPACE) {
2019 return false;
2020 }
2021
Joe Onorato9c1289c2009-08-17 11:03:03 -04002022 if (isWorkspaceLocked()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002023 return false;
2024 }
2025
2026 if (!(v instanceof CellLayout)) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08002027 v = (View) v.getParent().getParent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002028 }
2029
Michael Jurka0280c3b2010-09-17 15:00:07 -07002030 resetAddInfo();
2031 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002032 // This happens when long clicking an item with the dpad/trackball
Adam Cohenfaea1f82011-07-21 16:23:57 -07002033 if (longClickCellInfo == null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002034 return true;
2035 }
2036
Winson Chung3d503fb2011-07-13 17:25:49 -07002037 // The hotseat touch handling does not go through Workspace, and we always allow long press
2038 // on hotseat items.
Michael Jurka0280c3b2010-09-17 15:00:07 -07002039 final View itemUnderLongClick = longClickCellInfo.cell;
Winson Chung3d503fb2011-07-13 17:25:49 -07002040 boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
2041 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002042 if (itemUnderLongClick == null) {
2043 // User long pressed on empty space
Michael Jurka0280c3b2010-09-17 15:00:07 -07002044 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2045 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002046 startWallpaper();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002047 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002048 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002049 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07002050 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002051 }
2052 }
2053 }
2054 return true;
2055 }
2056
Winson Chung3d503fb2011-07-13 17:25:49 -07002057 boolean isHotseatLayout(View layout) {
2058 return mHotseat != null && layout != null &&
2059 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
2060 }
2061 Hotseat getHotseat() {
2062 return mHotseat;
Romain Guy1fbc1c82009-11-09 20:43:08 -08002063 }
Adam Cohenebea84d2011-11-09 17:20:41 -08002064 SearchDropTargetBar getSearchBar() {
2065 return mSearchDropTargetBar;
2066 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002067
Winson Chung3d503fb2011-07-13 17:25:49 -07002068 /**
2069 * Returns the CellLayout of the specified container at the specified screen.
2070 */
2071 CellLayout getCellLayout(long container, int screen) {
2072 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2073 if (mHotseat != null) {
2074 return mHotseat.getLayout();
2075 } else {
2076 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002077 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002078 } else {
2079 return (CellLayout) mWorkspace.getChildAt(screen);
Romain Guya6abce82009-11-10 02:54:41 -08002080 }
2081 }
2082
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002083 Workspace getWorkspace() {
2084 return mWorkspace;
2085 }
2086
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002087 @Override
2088 protected Dialog onCreateDialog(int id) {
2089 switch (id) {
2090 case DIALOG_CREATE_SHORTCUT:
2091 return new CreateShortcut().createDialog();
2092 case DIALOG_RENAME_FOLDER:
2093 return new RenameFolder().createDialog();
2094 }
2095
2096 return super.onCreateDialog(id);
2097 }
2098
2099 @Override
2100 protected void onPrepareDialog(int id, Dialog dialog) {
2101 switch (id) {
2102 case DIALOG_CREATE_SHORTCUT:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002103 break;
2104 case DIALOG_RENAME_FOLDER:
Romain Guy7b4ef332009-07-14 13:58:08 -07002105 if (mFolderInfo != null) {
2106 EditText input = (EditText) dialog.findViewById(R.id.folder_name);
2107 final CharSequence text = mFolderInfo.title;
2108 input.setText(text);
2109 input.setSelection(0, text.length());
2110 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002111 break;
2112 }
2113 }
2114
2115 void showRenameDialog(FolderInfo info) {
2116 mFolderInfo = info;
2117 mWaitingForResult = true;
2118 showDialog(DIALOG_RENAME_FOLDER);
2119 }
2120
Adam Cohenfbba09b2011-07-18 21:43:05 -07002121 private void showAddDialog() {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002122 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002123 mPendingAddInfo.container = LauncherSettings.Favorites.CONTAINER_DESKTOP;
2124 mPendingAddInfo.screen = mWorkspace.getCurrentPage();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002125 mWaitingForResult = true;
2126 showDialog(DIALOG_CREATE_SHORTCUT);
2127 }
2128
2129 private class RenameFolder {
2130 private EditText mInput;
2131
2132 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002133 final View layout = View.inflate(Launcher.this, R.layout.rename_folder, null);
2134 mInput = (EditText) layout.findViewById(R.id.folder_name);
2135
2136 AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
2137 builder.setIcon(0);
2138 builder.setTitle(getString(R.string.rename_folder_title));
2139 builder.setCancelable(true);
2140 builder.setOnCancelListener(new Dialog.OnCancelListener() {
2141 public void onCancel(DialogInterface dialog) {
2142 cleanup();
2143 }
2144 });
2145 builder.setNegativeButton(getString(R.string.cancel_action),
2146 new Dialog.OnClickListener() {
2147 public void onClick(DialogInterface dialog, int which) {
2148 cleanup();
2149 }
2150 }
2151 );
2152 builder.setPositiveButton(getString(R.string.rename_action),
2153 new Dialog.OnClickListener() {
2154 public void onClick(DialogInterface dialog, int which) {
2155 changeFolderName();
2156 }
2157 }
2158 );
2159 builder.setView(layout);
Romain Guy7b4ef332009-07-14 13:58:08 -07002160
2161 final AlertDialog dialog = builder.create();
2162 dialog.setOnShowListener(new DialogInterface.OnShowListener() {
2163 public void onShow(DialogInterface dialog) {
Joe Onorato7018d8e2010-04-13 20:25:47 -07002164 mWaitingForResult = true;
Joe Onoratod753b422009-11-08 13:31:11 -05002165 mInput.requestFocus();
2166 InputMethodManager inputManager = (InputMethodManager)
2167 getSystemService(Context.INPUT_METHOD_SERVICE);
2168 inputManager.showSoftInput(mInput, 0);
Romain Guy7b4ef332009-07-14 13:58:08 -07002169 }
2170 });
2171
2172 return dialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002173 }
2174
2175 private void changeFolderName() {
2176 final String name = mInput.getText().toString();
2177 if (!TextUtils.isEmpty(name)) {
2178 // Make sure we have the right folder info
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002179 mFolderInfo = sFolders.get(mFolderInfo.id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002180 mFolderInfo.title = name;
2181 LauncherModel.updateItemInDatabase(Launcher.this, mFolderInfo);
2182
Joe Onorato9c1289c2009-08-17 11:03:03 -04002183 if (mWorkspaceLoading) {
Joe Onorato7c312c12009-08-13 21:36:53 -07002184 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002185 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002186 } else {
2187 final FolderIcon folderIcon = (FolderIcon)
2188 mWorkspace.getViewForTag(mFolderInfo);
2189 if (folderIcon != null) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002190 // TODO: At some point we'll probably want some version of setting
2191 // the text for a folder icon.
2192 //folderIcon.setText(name);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002193 getWorkspace().requestLayout();
2194 } else {
Joe Onorato7c312c12009-08-13 21:36:53 -07002195 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002196 mWorkspaceLoading = true;
2197 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002198 }
2199 }
2200 }
2201 cleanup();
2202 }
2203
2204 private void cleanup() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002205 dismissDialog(DIALOG_RENAME_FOLDER);
2206 mWaitingForResult = false;
2207 mFolderInfo = null;
2208 }
2209 }
2210
Daniel Sandler843e8602010-06-07 14:59:01 -04002211 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2212 public boolean isAllAppsVisible() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002213 return (mState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04002214 }
2215
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002216 // AllAppsView.Watcher
2217 public void zoomed(float zoom) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002218 if (zoom == 1.0f) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002219 mWorkspace.setVisibility(View.GONE);
2220 }
2221 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002222
2223 /**
2224 * Helper method for the cameraZoomIn/cameraZoomOut animations
2225 * @param view The view being animated
Winson Chungf0ea4d32011-06-06 14:27:16 -07002226 * @param state The state that we are moving in or out of (eg. APPS_CUSTOMIZE)
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002227 * @param scaleFactor The scale factor used for the zoom
2228 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07002229 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002230 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07002231 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002232 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002233
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002234 void updateWallpaperVisibility(boolean visible) {
2235 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
2236 int curflags = getWindow().getAttributes().flags
2237 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2238 if (wpflags != curflags) {
2239 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
2240 }
2241 }
2242
Michael Jurkabed61d22012-02-14 22:51:29 -08002243 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2244 if (v instanceof LauncherTransitionable) {
2245 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2246 }
Winson Chung70442722012-02-10 15:43:22 -08002247
2248 // Update the workspace transition step as well
2249 dispatchOnLauncherTransitionStep(v, 0f);
2250 }
2251
2252 private void dispatchOnLauncherTransitionStep(View v, float t) {
2253 if (v instanceof LauncherTransitionable) {
2254 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
2255 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002256 }
2257
2258 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2259 if (v instanceof LauncherTransitionable) {
2260 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2261 }
Winson Chung70442722012-02-10 15:43:22 -08002262
2263 // Update the workspace transition step as well
2264 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08002265 }
2266
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002267 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07002268 * Things to test when changing the following seven functions.
2269 * - Home from workspace
2270 * - from center screen
2271 * - from other screens
2272 * - Home from all apps
2273 * - from center screen
2274 * - from other screens
2275 * - Back from all apps
2276 * - from center screen
2277 * - from other screens
2278 * - Launch app from workspace and quit
2279 * - with back
2280 * - with home
2281 * - Launch app from all apps and quit
2282 * - with back
2283 * - with home
2284 * - Go to a screen that's not the default, then all
2285 * apps, and launch and app, and go back
2286 * - with back
2287 * -with home
2288 * - On workspace, long press power and go back
2289 * - with back
2290 * - with home
2291 * - On all apps, long press power and go back
2292 * - with back
2293 * - with home
2294 * - On workspace, power off
2295 * - On all apps, power off
2296 * - Launch an app and turn off the screen while in that app
2297 * - Go back with home key
2298 * - Go back with back key TODO: make this not go to workspace
2299 * - From all apps
2300 * - From workspace
2301 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2302 * - From all apps
2303 * - From the center workspace
2304 * - From another workspace
2305 */
2306
2307 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002308 * Zoom the camera out from the workspace to reveal 'toView'.
2309 * Assumes that the view to show is anchored at either the very top or very bottom
2310 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002311 */
Michael Jurkabed61d22012-02-14 22:51:29 -08002312 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002313 if (mStateAnimation != null) {
2314 mStateAnimation.cancel();
2315 mStateAnimation = null;
2316 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002317 final Resources res = getResources();
Winson Chung7d7541e2011-09-16 20:14:36 -07002318 final Launcher instance = this;
Adam Cohenf16e5712011-01-13 13:31:45 -08002319
Winson Chungf0ea4d32011-06-06 14:27:16 -07002320 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2321 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2322 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08002323 final View fromView = mWorkspace;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002324 final View toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07002325 final int startDelay =
2326 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002327
Michael Jurkab3e22d92011-10-31 15:58:33 -07002328 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002329
Michael Jurkad74c9842011-07-10 12:44:21 -07002330 // Shrink workspaces away if going to AppsCustomize from workspace
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002331 Animator workspaceAnim =
2332 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002333
2334 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002335 toView.setScaleX(scale);
2336 toView.setScaleY(scale);
2337 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2338 scaleAnim.
2339 scaleX(1f).scaleY(1f).
2340 setDuration(duration).
2341 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08002342
Winson Chungf0ea4d32011-06-06 14:27:16 -07002343 toView.setVisibility(View.VISIBLE);
Adam Cohenc00f0b92011-12-06 19:45:06 -08002344 toView.setAlpha(0f);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002345 final ObjectAnimator alphaAnim = ObjectAnimator
2346 .ofFloat(toView, "alpha", 0f, 1f)
2347 .setDuration(fadeDuration);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002348 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung70442722012-02-10 15:43:22 -08002349 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2350 @Override
2351 public void onAnimationUpdate(ValueAnimator animation) {
2352 float t = (Float) animation.getAnimatedValue();
2353 dispatchOnLauncherTransitionStep(fromView, t);
2354 dispatchOnLauncherTransitionStep(toView, t);
2355 }
2356 });
Adam Cohenf16e5712011-01-13 13:31:45 -08002357
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002358 // toView should appear right at the end of the workspace shrink
2359 // animation
2360 mStateAnimation = new AnimatorSet();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002361 mStateAnimation.play(scaleAnim).after(startDelay);
Michael Jurka7407d2a2011-12-12 21:48:38 -08002362 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002363
2364 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Adam Cohenf4ddea32011-09-12 13:46:42 -07002365 boolean animationCancelled = false;
2366
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002367 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002368 public void onAnimationStart(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002369 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002370 // Prepare the position
2371 toView.setTranslationX(0.0f);
2372 toView.setTranslationY(0.0f);
2373 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002374 toView.bringToFront();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002375 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002376 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002377 public void onAnimationEnd(Animator animation) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002378 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2379 dispatchOnLauncherTransitionEnd(toView, animated, false);
Winson Chung32174c82011-07-19 15:47:55 -07002380
2381 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2382 // Hide the workspace scrollbar
2383 mWorkspace.hideScrollingIndicator(true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002384 hideDockDivider();
Winson Chung32174c82011-07-19 15:47:55 -07002385 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002386 if (!animationCancelled) {
2387 updateWallpaperVisibility(false);
2388 }
2389 }
2390
Adam Cohencff6af82011-09-13 14:51:53 -07002391 @Override
Adam Cohenf4ddea32011-09-12 13:46:42 -07002392 public void onAnimationCancel(Animator animation) {
2393 animationCancelled = true;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002394 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002395 });
2396
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002397 if (workspaceAnim != null) {
2398 mStateAnimation.play(workspaceAnim);
2399 }
Michael Jurka1899a362011-11-03 13:50:45 -07002400
2401 boolean delayAnim = false;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002402 final ViewTreeObserver observer;
2403
Michael Jurkabed61d22012-02-14 22:51:29 -08002404 dispatchOnLauncherTransitionStart(fromView, animated, false);
2405 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002406
2407 // If any of the objects being animated haven't been measured/laid out
2408 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08002409 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002410 (mWorkspace.getMeasuredWidth() == 0) ||
2411 (toView.getMeasuredWidth() == 0)) {
2412 observer = mWorkspace.getViewTreeObserver();
2413 delayAnim = true;
2414 } else {
2415 observer = null;
Michael Jurka1899a362011-11-03 13:50:45 -07002416 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002417
2418 if (delayAnim) {
Michael Jurka49779a12012-01-16 04:10:08 -08002419 final AnimatorSet stateAnimation = mStateAnimation;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002420 final OnGlobalLayoutListener delayedStart = new OnGlobalLayoutListener() {
2421 public void onGlobalLayout() {
2422 mWorkspace.post(new Runnable() {
2423 public void run() {
Michael Jurka49779a12012-01-16 04:10:08 -08002424 // Check that mStateAnimation hasn't changed while
2425 // we waited for a layout pass
2426 if (mStateAnimation == stateAnimation) {
2427 // Need to update pivots for zoom if layout changed
2428 setPivotsForZoom(toView, scale);
2429 mStateAnimation.start();
2430 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002431 }
2432 });
2433 observer.removeGlobalOnLayoutListener(this);
2434 }
2435 };
2436 observer.addOnGlobalLayoutListener(delayedStart);
2437 } else {
2438 setPivotsForZoom(toView, scale);
Michael Jurka1899a362011-11-03 13:50:45 -07002439 mStateAnimation.start();
2440 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002441 } else {
2442 toView.setTranslationX(0.0f);
2443 toView.setTranslationY(0.0f);
2444 toView.setScaleX(1.0f);
2445 toView.setScaleY(1.0f);
2446 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002447 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07002448
Michael Jurkabed61d22012-02-14 22:51:29 -08002449 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2450 // Hide the workspace scrollbar
2451 mWorkspace.hideScrollingIndicator(true);
2452 hideDockDivider();
Michael Jurkaabded662011-03-04 12:06:57 -08002453 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002454 dispatchOnLauncherTransitionStart(fromView, animated, false);
2455 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2456 dispatchOnLauncherTransitionStart(toView, animated, false);
2457 dispatchOnLauncherTransitionEnd(toView, animated, false);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002458 updateWallpaperVisibility(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002459 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002460 }
2461
2462 /**
2463 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07002464 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002465 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002466 */
Adam Cohened66b2b2012-01-23 17:28:51 -08002467 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2468 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002469
Michael Jurkab3e22d92011-10-31 15:58:33 -07002470 if (mStateAnimation != null) {
2471 mStateAnimation.cancel();
2472 mStateAnimation = null;
2473 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002474 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002475
Winson Chungf0ea4d32011-06-06 14:27:16 -07002476 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002477 final int fadeOutDuration =
2478 res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002479 final float scaleFactor = (float)
2480 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2481 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08002482 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002483 Animator workspaceAnim = null;
2484
2485 if (toState == State.WORKSPACE) {
2486 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
2487 workspaceAnim = mWorkspace.getChangeStateAnimation(
2488 Workspace.State.NORMAL, animated, stagger);
2489 } else if (toState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2490 workspaceAnim = mWorkspace.getChangeStateAnimation(
2491 Workspace.State.SPRING_LOADED, animated);
2492 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002493
Michael Jurkab3e22d92011-10-31 15:58:33 -07002494 setPivotsForZoom(fromView, scaleFactor);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002495 updateWallpaperVisibility(true);
Winson Chung4afe9b32011-07-27 17:46:20 -07002496 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002497 if (animated) {
Michael Jurka742574b2011-02-02 23:51:01 -08002498 final float oldScaleX = fromView.getScaleX();
2499 final float oldScaleY = fromView.getScaleY();
2500
Michael Jurka159b4cc2012-01-17 03:00:35 -08002501 final LauncherViewPropertyAnimator scaleAnim =
2502 new LauncherViewPropertyAnimator(fromView);
2503 scaleAnim.
2504 scaleX(scaleFactor).scaleY(scaleFactor).
2505 setDuration(duration).
2506 setInterpolator(new Workspace.ZoomInInterpolator());
2507
2508 final ObjectAnimator alphaAnim = ObjectAnimator
2509 .ofFloat(fromView, "alpha", 1f, 0f)
2510 .setDuration(fadeOutDuration);
Adam Cohencff6af82011-09-13 14:51:53 -07002511 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
Winson Chung70442722012-02-10 15:43:22 -08002512 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2513 @Override
2514 public void onAnimationUpdate(ValueAnimator animation) {
2515 float t = 1f - (Float) animation.getAnimatedValue();
2516 dispatchOnLauncherTransitionStep(fromView, t);
2517 dispatchOnLauncherTransitionStep(toView, t);
2518 }
2519 });
Michael Jurka159b4cc2012-01-17 03:00:35 -08002520
Michael Jurkabed61d22012-02-14 22:51:29 -08002521 mStateAnimation = new AnimatorSet();
2522
2523 dispatchOnLauncherTransitionStart(fromView, animated, true);
2524 dispatchOnLauncherTransitionStart(toView, animated, true);
2525
2526 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002527 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002528 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002529 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002530 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002531 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2532 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurka430e8a52011-08-08 15:52:14 -07002533 mWorkspace.hideScrollingIndicator(false);
Adam Cohened66b2b2012-01-23 17:28:51 -08002534 if (onCompleteRunnable != null) {
2535 onCompleteRunnable.run();
2536 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002537 }
2538 });
2539
Winson Chungf0ea4d32011-06-06 14:27:16 -07002540 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002541 if (workspaceAnim != null) {
2542 mStateAnimation.play(workspaceAnim);
2543 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002544 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002545 } else {
2546 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002547 dispatchOnLauncherTransitionStart(fromView, animated, true);
2548 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2549 dispatchOnLauncherTransitionStart(toView, animated, true);
2550 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002551 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002552 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002553 }
2554
Michael Jurkae326f182011-11-21 14:05:46 -08002555 @Override
2556 public void onTrimMemory(int level) {
2557 super.onTrimMemory(level);
2558 if (level == ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
2559 mAppsCustomizeTabHost.onTrimMemory();
2560 }
2561 }
2562
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002563 void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002564 showWorkspace(animated, null);
2565 }
2566
2567 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002568 if (mState != State.WORKSPACE) {
2569 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002570 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002571
2572 // Show the search bar and hotseat
2573 mSearchDropTargetBar.showSearchBar(animated);
Michael Jurkab737ee62011-11-15 15:57:22 -08002574 // We only need to animate in the dock divider if we're going from spring loaded mode
2575 showDockDivider(animated && mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002576
2577 // Set focus to the AppsCustomize button
2578 if (mAllAppsButton != null) {
2579 mAllAppsButton.requestFocus();
2580 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002581 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002582
Michael Jurkab737ee62011-11-15 15:57:22 -08002583 mWorkspace.flashScrollingIndicator(animated);
Adam Cohen7777d962011-08-18 18:58:38 -07002584
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002585 // Change the state *after* we've called all the transition code
2586 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002587
Winson Chung5fb63472011-02-02 17:03:37 -08002588 // Resume the auto-advance of widgets
2589 mUserPresent = true;
2590 updateRunning();
2591
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002592 // send an accessibility event to announce the context change
2593 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
Joe Onorato00acb122009-08-04 16:04:30 -04002594 }
2595
Michael Jurkab3e22d92011-10-31 15:58:33 -07002596 void showAllApps(boolean animated) {
2597 if (mState != State.WORKSPACE) return;
2598
2599 showAppsCustomizeHelper(animated, false);
2600 mAppsCustomizeTabHost.requestFocus();
2601
2602 // Hide the search bar and hotseat
2603 mSearchDropTargetBar.hideSearchBar(animated);
2604
2605 // Change the state *after* we've called all the transition code
2606 mState = State.APPS_CUSTOMIZE;
2607
2608 // Pause the auto-advance of widgets until we are out of AllApps
2609 mUserPresent = false;
2610 updateRunning();
2611 closeFolder();
2612
2613 // Send an accessibility event to announce the context change
2614 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
2615 }
2616
Adam Cohen7777d962011-08-18 18:58:38 -07002617 void enterSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002618 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002619 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true, null);
Michael Jurkab737ee62011-11-15 15:57:22 -08002620 hideDockDivider();
Winson Chungc07918d2011-07-01 15:35:26 -07002621 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07002622 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002623 }
Adam Cohen7777d962011-08-18 18:58:38 -07002624
Adam Cohened66b2b2012-01-23 17:28:51 -08002625 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay,
2626 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07002627 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
2628
Winson Chunge7a03942011-08-05 15:05:12 -07002629 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002630 @Override
2631 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002632 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07002633 // Before we show workspace, hide all apps again because
2634 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2635 // clean up our state transition functions
2636 mAppsCustomizeTabHost.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002637 mSearchDropTargetBar.showSearchBar(true);
Adam Cohened66b2b2012-01-23 17:28:51 -08002638 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07002639 } else {
2640 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002641 }
Winson Chung557d6ed2011-07-08 15:34:52 -07002642 }
2643 }, (extendedDelay ?
2644 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2645 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2646 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002647
Michael Jurkad3ef3062010-11-23 16:23:58 -08002648 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002649 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002650 final boolean animated = true;
2651 final boolean springLoaded = true;
2652 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07002653 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002654 }
2655 // Otherwise, we are not in spring loaded mode, so don't do anything.
2656 }
2657
Michael Jurkab737ee62011-11-15 15:57:22 -08002658 void hideDockDivider() {
2659 if (mQsbDivider != null && mDockDivider != null) {
2660 mQsbDivider.setVisibility(View.INVISIBLE);
2661 mDockDivider.setVisibility(View.INVISIBLE);
2662 }
2663 }
2664
2665 void showDockDivider(boolean animated) {
2666 if (mQsbDivider != null && mDockDivider != null) {
2667 mQsbDivider.setVisibility(View.VISIBLE);
2668 mDockDivider.setVisibility(View.VISIBLE);
2669 if (mDividerAnimator != null) {
2670 mDividerAnimator.cancel();
2671 mQsbDivider.setAlpha(1f);
2672 mDockDivider.setAlpha(1f);
2673 mDividerAnimator = null;
2674 }
2675 if (animated) {
2676 mDividerAnimator = new AnimatorSet();
2677 mDividerAnimator.playTogether(ObjectAnimator.ofFloat(mQsbDivider, "alpha", 1f),
2678 ObjectAnimator.ofFloat(mDockDivider, "alpha", 1f));
2679 mDividerAnimator.setDuration(mSearchDropTargetBar.getTransitionInDuration());
2680 mDividerAnimator.start();
2681 }
2682 }
2683 }
2684
Michael Jurkab3e22d92011-10-31 15:58:33 -07002685 void lockAllApps() {
2686 // TODO
2687 }
2688
2689 void unlockAllApps() {
2690 // TODO
2691 }
2692
Adam Cohenfc53cd22011-07-20 15:45:11 -07002693 public boolean isAllAppsCustomizeOpen() {
2694 return mState == State.APPS_CUSTOMIZE;
2695 }
2696
Winson Chungf0ea4d32011-06-06 14:27:16 -07002697 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002698 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002699 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002700 void showHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002701 if (!LauncherApplication.isScreenLarge()) {
2702 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002703 if (mHotseat.getAlpha() != 1f) {
2704 int duration = mSearchDropTargetBar.getTransitionInDuration();
2705 mHotseat.animate().alpha(1f).setDuration(duration);
2706 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002707 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002708 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002709 }
2710 }
2711 }
2712
2713 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002714 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002715 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002716 void hideHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002717 if (!LauncherApplication.isScreenLarge()) {
2718 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002719 if (mHotseat.getAlpha() != 0f) {
2720 int duration = mSearchDropTargetBar.getTransitionOutDuration();
2721 mHotseat.animate().alpha(0f).setDuration(duration);
2722 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002723 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002724 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002725 }
Winson Chungb26f3d62011-06-02 10:49:29 -07002726 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002727 }
2728
Patrick Dubroy5f445422011-02-18 14:35:21 -08002729 /**
2730 * Add an item from all apps or customize onto the given workspace screen.
2731 * If layout is null, add to the current screen.
2732 */
2733 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002734 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
2735 showOutOfSpaceMessage();
Michael Jurka213d9632010-07-28 11:29:25 -07002736 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002737 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002738
Winson Chungdff8ebb2011-09-08 17:25:31 -07002739 /** Maps the current orientation to an index for referencing orientation correct global icons */
2740 private int getCurrentOrientationIndexForGlobalIcons() {
2741 // default - 0, landscape - 1
2742 switch (getResources().getConfiguration().orientation) {
2743 case Configuration.ORIENTATION_LANDSCAPE:
2744 return 1;
2745 default:
2746 return 0;
2747 }
2748 }
2749
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002750 private Drawable getExternalPackageToolbarIcon(ComponentName activityName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002751 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002752 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002753 // Look for the toolbar icon specified in the activity meta-data
2754 Bundle metaData = packageManager.getActivityInfo(
2755 activityName, PackageManager.GET_META_DATA).metaData;
2756 if (metaData != null) {
2757 int iconResId = metaData.getInt(TOOLBAR_ICON_METADATA_NAME);
2758 if (iconResId != 0) {
2759 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002760 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002761 }
2762 }
2763 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07002764 // This can happen if the activity defines an invalid drawable
2765 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
2766 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01002767 } catch (Resources.NotFoundException nfe) {
2768 // This can happen if the activity defines an invalid drawable
2769 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
2770 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002771 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002772 return null;
2773 }
2774
2775 // if successful in getting icon, return it; otherwise, set button to use default drawable
2776 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
2777 int buttonId, ComponentName activityName, int fallbackDrawableId) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002778 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName);
Winson Chung128bbcd2011-08-31 16:58:52 -07002779 Resources r = getResources();
2780 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
2781 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002782
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002783 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002784 // If we were unable to find the icon via the meta-data, use a generic one
2785 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07002786 toolbarIcon = r.getDrawable(fallbackDrawableId);
2787 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002788 if (button != null) {
2789 button.setCompoundDrawables(toolbarIcon, null, null, null);
2790 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002791 return null;
2792 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07002793 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002794 if (button != null) {
2795 button.setCompoundDrawables(toolbarIcon, null, null, null);
2796 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002797 return toolbarIcon.getConstantState();
2798 }
2799 }
2800
2801 // if successful in getting icon, return it; otherwise, set button to use default drawable
2802 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
2803 int buttonId, ComponentName activityName, int fallbackDrawableId) {
2804 ImageView button = (ImageView) findViewById(buttonId);
2805 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName);
2806
Michael Jurka19e0fc52011-07-22 18:00:21 -07002807 if (button != null) {
2808 // If we were unable to find the icon via the meta-data, use a
2809 // generic one
2810 if (toolbarIcon == null) {
2811 button.setImageResource(fallbackDrawableId);
2812 } else {
2813 button.setImageDrawable(toolbarIcon);
2814 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002815 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07002816
2817 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
2818
Michael Jurka0423dcf2010-10-05 14:56:18 -07002819 }
2820
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002821 private void updateTextButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
2822 TextView button = (TextView) findViewById(buttonId);
2823 button.setCompoundDrawables(d.newDrawable(getResources()), null, null, null);
2824 }
2825
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002826 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08002827 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002828 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08002829 }
2830
Winson Chungbb185bd2011-11-21 12:31:42 -08002831 private void invalidatePressedFocusedStates(View container, View button) {
2832 if (container instanceof HolographicLinearLayout) {
2833 HolographicLinearLayout layout = (HolographicLinearLayout) container;
2834 layout.invalidatePressedFocusedStates();
2835 } else if (button instanceof HolographicImageView) {
2836 HolographicImageView view = (HolographicImageView) button;
2837 view.invalidatePressedFocusedStates();
2838 }
2839 }
2840
Winson Chungc51db6a2011-10-05 11:44:49 -07002841 private boolean updateGlobalSearchIcon() {
2842 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07002843 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
2844 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07002845 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002846 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07002847
Winson Chung1cad91e2011-05-25 17:41:01 -07002848 final SearchManager searchManager =
2849 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2850 ComponentName activityName = searchManager.getGlobalSearchActivity();
2851 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002852 int coi = getCurrentOrientationIndexForGlobalIcons();
2853 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Winson Chungc7aef8c2011-09-15 18:53:04 -07002854 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo);
Winson Chung649723c2011-07-06 20:41:23 -07002855 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002856 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
2857 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08002858 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07002859 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07002860 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002861 // We disable both search and voice search when there is no global search provider
Winson Chung649723c2011-07-06 20:41:23 -07002862 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002863 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
2864 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
2865 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002866 voiceButton.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002867 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002868 }
2869 }
2870
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002871 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002872 final View searchButtonContainer = findViewById(R.id.search_button_container);
2873 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002874 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08002875 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002876 }
2877
Winson Chungc51db6a2011-10-05 11:44:49 -07002878 private boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chung1cad91e2011-05-25 17:41:01 -07002879 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07002880 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07002881 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07002882
Winson Chungc51db6a2011-10-05 11:44:49 -07002883 // We only show/update the voice search icon if the search icon is enabled as well
Winson Chung1cad91e2011-05-25 17:41:01 -07002884 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2885 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chungc51db6a2011-10-05 11:44:49 -07002886 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002887 int coi = getCurrentOrientationIndexForGlobalIcons();
2888 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Winson Chungc7aef8c2011-09-15 18:53:04 -07002889 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo);
Winson Chung649723c2011-07-06 20:41:23 -07002890 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002891 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07002892 voiceButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08002893 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07002894 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07002895 } else {
Winson Chung649723c2011-07-06 20:41:23 -07002896 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002897 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07002898 voiceButton.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002899 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002900 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002901 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002902
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002903 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002904 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
2905 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002906 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08002907 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002908 }
2909
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002910 /**
Winson Chungeb66b142011-06-16 13:14:22 -07002911 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002912 */
2913 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07002914 final View marketButton = findViewById(R.id.market_button);
2915 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
2916 // Find the app market activity by resolving an intent.
2917 // (If multiple app markets are installed, it will return the ResolverActivity.)
2918 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07002919 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002920 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07002921 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07002922 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Winson Chung967289b2011-06-30 18:09:30 -07002923 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo);
Winson Chung785d2eb2011-04-14 16:08:02 -07002924 marketButton.setVisibility(View.VISIBLE);
2925 } else {
2926 // We should hide and disable the view so that we don't try and restore the visibility
2927 // of it when we swap between drag & normal states from IconDropTarget subclasses.
2928 marketButton.setVisibility(View.GONE);
2929 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002930 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002931 }
2932
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002933 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002934 updateTextButtonWithDrawable(R.id.market_button, d);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002935 }
2936
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002937 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002938 * Displays the shortcut creation dialog and launches, if necessary, the
2939 * appropriate activity.
2940 */
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002941 private class CreateShortcut implements DialogInterface.OnClickListener,
Romain Guy7b4ef332009-07-14 13:58:08 -07002942 DialogInterface.OnCancelListener, DialogInterface.OnDismissListener,
2943 DialogInterface.OnShowListener {
2944
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002945 private AddAdapter mAdapter;
Romain Guy9ffb5432009-03-24 21:04:15 -07002946
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002947 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002948 mAdapter = new AddAdapter(Launcher.this);
Romain Guycbb89e42009-06-08 15:52:54 -07002949
Winson Chung55b65502011-05-26 12:03:43 -07002950 final AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this,
2951 AlertDialog.THEME_HOLO_DARK);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002952 builder.setAdapter(mAdapter, this);
Romain Guycbb89e42009-06-08 15:52:54 -07002953
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002954 AlertDialog dialog = builder.create();
2955 dialog.setOnCancelListener(this);
Romain Guycbb89e42009-06-08 15:52:54 -07002956 dialog.setOnDismissListener(this);
Romain Guy7b4ef332009-07-14 13:58:08 -07002957 dialog.setOnShowListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002958
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002959 return dialog;
2960 }
2961
2962 public void onCancel(DialogInterface dialog) {
2963 mWaitingForResult = false;
2964 cleanup();
2965 }
2966
Romain Guycbb89e42009-06-08 15:52:54 -07002967 public void onDismiss(DialogInterface dialog) {
Winson Chung55b65502011-05-26 12:03:43 -07002968 mWaitingForResult = false;
2969 cleanup();
Romain Guycbb89e42009-06-08 15:52:54 -07002970 }
2971
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002972 private void cleanup() {
Joe Onoratocc19a532009-11-19 14:19:17 -08002973 try {
2974 dismissDialog(DIALOG_CREATE_SHORTCUT);
2975 } catch (Exception e) {
2976 // An exception is thrown if the dialog is not visible, which is fine
2977 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002978 }
2979
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002980 /**
2981 * Handle the action clicked in the "Add to home" dialog.
2982 */
2983 public void onClick(DialogInterface dialog, int which) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002984 cleanup();
Romain Guycbb89e42009-06-08 15:52:54 -07002985
Winson Chung55b65502011-05-26 12:03:43 -07002986 AddAdapter.ListItem item = (AddAdapter.ListItem) mAdapter.getItem(which);
2987 switch (item.actionTag) {
Winson Chung55b65502011-05-26 12:03:43 -07002988 case AddAdapter.ITEM_APPLICATION: {
2989 if (mAppsCustomizeTabHost != null) {
2990 mAppsCustomizeTabHost.selectAppsTab();
2991 }
2992 showAllApps(true);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002993 break;
2994 }
Winson Chung55b65502011-05-26 12:03:43 -07002995 case AddAdapter.ITEM_APPWIDGET: {
2996 if (mAppsCustomizeTabHost != null) {
2997 mAppsCustomizeTabHost.selectWidgetsTab();
2998 }
2999 showAllApps(true);
3000 break;
3001 }
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003002 case AddAdapter.ITEM_WALLPAPER: {
3003 startWallpaper();
3004 break;
3005 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003006 }
3007 }
Romain Guy7b4ef332009-07-14 13:58:08 -07003008
3009 public void onShow(DialogInterface dialog) {
Winson Chungaafa03c2010-06-11 17:34:16 -07003010 mWaitingForResult = true;
Romain Guy7b4ef332009-07-14 13:58:08 -07003011 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003012 }
3013
3014 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003015 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003016 */
3017 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
3018 @Override
3019 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003020 closeSystemDialogs();
3021 }
3022 }
3023
3024 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003025 * Receives notifications whenever the appwidgets are reset.
3026 */
3027 private class AppWidgetResetObserver extends ContentObserver {
3028 public AppWidgetResetObserver() {
3029 super(new Handler());
3030 }
3031
3032 @Override
3033 public void onChange(boolean selfChange) {
3034 onAppWidgetReset();
3035 }
3036 }
3037
3038 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003039 * If the activity is currently paused, signal that we need to re-run the loader
3040 * in onResume.
3041 *
3042 * This needs to be called from incoming places where resources might have been loaded
3043 * while we are paused. That is becaues the Configuration might be wrong
3044 * when we're not running, and if it comes back to what it was when we
3045 * were paused, we are not restarted.
3046 *
3047 * Implementation of the method from LauncherModel.Callbacks.
3048 *
3049 * @return true if we are currently paused. The caller might be able to
3050 * skip some work in that case since we will come back again.
3051 */
3052 public boolean setLoadOnResume() {
3053 if (mPaused) {
3054 Log.i(TAG, "setLoadOnResume");
3055 mOnResumeNeedsLoad = true;
3056 return true;
3057 } else {
3058 return false;
3059 }
3060 }
3061
3062 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003063 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003064 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003065 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003066 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003067 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003068 } else {
3069 return SCREEN_COUNT / 2;
3070 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003071 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003072
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003073
Joe Onorato9c1289c2009-08-17 11:03:03 -04003074 /**
3075 * Refreshes the shortcuts shown on the workspace.
3076 *
3077 * Implementation of the method from LauncherModel.Callbacks.
3078 */
3079 public void startBinding() {
3080 final Workspace workspace = mWorkspace;
Adam Cohendf035382011-04-11 17:22:04 -07003081
3082 mWorkspace.clearDropTargets();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003083 int count = workspace.getChildCount();
3084 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04003085 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Winson Chung7a25a9e2011-01-30 13:33:56 -08003086 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
3087 layoutParent.removeAllViewsInLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003088 }
Michael Jurka05bf644e2011-11-30 20:28:53 -08003089 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003090 if (mHotseat != null) {
3091 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003092 }
3093 }
3094
3095 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003096 * Bind the items start-end from the list.
3097 *
3098 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003099 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003100 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003101 setLoadOnResume();
3102
Joe Onorato9c1289c2009-08-17 11:03:03 -04003103 final Workspace workspace = mWorkspace;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003104 for (int i=start; i<end; i++) {
3105 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003106
3107 // Short circuit if we are loading dock items for a configuration which has no dock
3108 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3109 mHotseat == null) {
3110 continue;
3111 }
3112
Joe Onorato9c1289c2009-08-17 11:03:03 -04003113 switch (item.itemType) {
3114 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3115 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chung3d503fb2011-07-13 17:25:49 -07003116 View shortcut = createShortcut((ShortcutInfo)item);
3117 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
3118 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003119 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003120 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003121 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003122 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003123 (FolderInfo) item, mIconCache);
Winson Chung3d503fb2011-07-13 17:25:49 -07003124 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
3125 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003126 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003127 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003128 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003129 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003130 }
3131
Joe Onorato9c1289c2009-08-17 11:03:03 -04003132 /**
3133 * Implementation of the method from LauncherModel.Callbacks.
3134 */
Joe Onoratoad72e172009-11-06 16:25:04 -05003135 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003136 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003137 sFolders.clear();
3138 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003139 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003140
3141 /**
3142 * Add the views for a widget to the workspace.
3143 *
3144 * Implementation of the method from LauncherModel.Callbacks.
3145 */
3146 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003147 setLoadOnResume();
3148
Daniel Sandler843e8602010-06-07 14:59:01 -04003149 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3150 if (DEBUG_WIDGETS) {
3151 Log.d(TAG, "bindAppWidget: " + item);
3152 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003153 final Workspace workspace = mWorkspace;
3154
3155 final int appWidgetId = item.appWidgetId;
3156 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003157 if (DEBUG_WIDGETS) {
3158 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3159 }
3160
Joe Onorato9c1289c2009-08-17 11:03:03 -04003161 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3162
Joe Onorato9c1289c2009-08-17 11:03:03 -04003163 item.hostView.setAppWidget(appWidgetId, appWidgetInfo);
3164 item.hostView.setTag(item);
3165
Winson Chung3d503fb2011-07-13 17:25:49 -07003166 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003167 item.cellY, item.spanX, item.spanY, false);
3168
Adam Cohended9f8d2010-11-03 13:25:16 -07003169 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3170
Joe Onorato9c1289c2009-08-17 11:03:03 -04003171 workspace.requestLayout();
3172
Daniel Sandler843e8602010-06-07 14:59:01 -04003173 if (DEBUG_WIDGETS) {
3174 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3175 + (SystemClock.uptimeMillis()-start) + "ms");
3176 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003177 }
3178
3179 /**
3180 * Callback saying that there aren't any more items to bind.
3181 *
3182 * Implementation of the method from LauncherModel.Callbacks.
3183 */
3184 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003185 setLoadOnResume();
3186
Joe Onorato9c1289c2009-08-17 11:03:03 -04003187 if (mSavedState != null) {
3188 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003189 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003190 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003191 mSavedState = null;
3192 }
3193
3194 if (mSavedInstanceState != null) {
3195 super.onRestoreInstanceState(mSavedInstanceState);
3196 mSavedInstanceState = null;
3197 }
3198
Joe Onorato9c1289c2009-08-17 11:03:03 -04003199 mWorkspaceLoading = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003200
3201 // If we received the result of any pending adds while the loader was running (e.g. the
3202 // widget configuration forced an orientation change), process them now.
3203 for (int i = 0; i < sPendingAddList.size(); i++) {
3204 completeAdd(sPendingAddList.get(i));
3205 }
3206 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003207
Winson Chungc51db6a2011-10-05 11:44:49 -07003208 // Update the market app icon as necessary (the other icons will be managed in response to
3209 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003210 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003211
Michael Jurka6ee21d22012-02-21 18:20:27 -08003212 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003213 }
3214
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003215 @Override
3216 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003217 boolean searchVisible = updateGlobalSearchIcon();
3218 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
3219 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003220 }
3221
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003222 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003223 * Add the icons for all apps.
3224 *
3225 * Implementation of the method from LauncherModel.Callbacks.
3226 */
Michael Jurkac57b7a82011-08-09 22:02:20 -07003227 public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
3228 // Remove the progress bar entirely; we could also make it GONE
3229 // but better to remove it since we know it's not going to be used
3230 View progressBar = mAppsCustomizeTabHost.
3231 findViewById(R.id.apps_customize_progress_bar);
3232 if (progressBar != null) {
3233 ((ViewGroup)progressBar.getParent()).removeView(progressBar);
Winson Chung785d2eb2011-04-14 16:08:02 -07003234 }
Michael Jurkac57b7a82011-08-09 22:02:20 -07003235 // We just post the call to setApps so the user sees the progress bar
3236 // disappear-- otherwise, it just looks like the progress bar froze
3237 // which doesn't look great
3238 mAppsCustomizeTabHost.post(new Runnable() {
3239 public void run() {
3240 if (mAppsCustomizeContent != null) {
3241 mAppsCustomizeContent.setApps(apps);
3242 }
3243 }
3244 });
Joe Onorato9c1289c2009-08-17 11:03:03 -04003245 }
3246
3247 /**
3248 * A package was installed.
3249 *
3250 * Implementation of the method from LauncherModel.Callbacks.
3251 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003252 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003253 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003254 removeDialog(DIALOG_CREATE_SHORTCUT);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003255
Winson Chung785d2eb2011-04-14 16:08:02 -07003256 if (mAppsCustomizeContent != null) {
3257 mAppsCustomizeContent.addApps(apps);
3258 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003259 }
3260
3261 /**
3262 * A package was updated.
3263 *
3264 * Implementation of the method from LauncherModel.Callbacks.
3265 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003266 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003267 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003268 removeDialog(DIALOG_CREATE_SHORTCUT);
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003269 if (mWorkspace != null) {
3270 mWorkspace.updateShortcuts(apps);
3271 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003272
Winson Chung785d2eb2011-04-14 16:08:02 -07003273 if (mAppsCustomizeContent != null) {
3274 mAppsCustomizeContent.updateApps(apps);
3275 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003276 }
3277
3278 /**
3279 * A package was uninstalled.
3280 *
3281 * Implementation of the method from LauncherModel.Callbacks.
3282 */
Joe Onorato36115782010-06-17 13:28:48 -04003283 public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003284 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onorato36115782010-06-17 13:28:48 -04003285 if (permanent) {
3286 mWorkspace.removeItems(apps);
3287 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003288
Winson Chung785d2eb2011-04-14 16:08:02 -07003289 if (mAppsCustomizeContent != null) {
3290 mAppsCustomizeContent.removeApps(apps);
3291 }
Winson Chunga1820962011-10-03 16:31:06 -07003292
3293 // Notify the drag controller
3294 mDragController.onAppsRemoved(apps, this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003295 }
Joe Onoratobe386092009-11-17 17:32:16 -08003296
3297 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003298 * A number of packages were updated.
3299 */
3300 public void bindPackagesUpdated() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003301 if (mAppsCustomizeContent != null) {
3302 mAppsCustomizeContent.onPackagesUpdated();
3303 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003304 }
3305
Winson Chung400438b2011-01-16 17:53:48 -08003306 private int mapConfigurationOriActivityInfoOri(int configOri) {
3307 final Display d = getWindowManager().getDefaultDisplay();
3308 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3309 switch (d.getRotation()) {
3310 case Surface.ROTATION_0:
3311 case Surface.ROTATION_180:
3312 // We are currently in the same basic orientation as the natural orientation
3313 naturalOri = configOri;
3314 break;
3315 case Surface.ROTATION_90:
3316 case Surface.ROTATION_270:
3317 // We are currently in the other basic orientation to the natural orientation
3318 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3319 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3320 break;
3321 }
3322
3323 int[] oriMap = {
3324 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3325 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3326 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3327 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3328 };
3329 // Since the map starts at portrait, we need to offset if this device's natural orientation
3330 // is landscape.
3331 int indexOffset = 0;
3332 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3333 indexOffset = 1;
3334 }
3335 return oriMap[(d.getRotation() + indexOffset) % 4];
3336 }
Adam Cohen446e9402011-09-15 18:21:21 -07003337
3338 public void lockScreenOrientationOnLargeUI() {
3339 if (LauncherApplication.isScreenLarge()) {
3340 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3341 .getConfiguration().orientation));
3342 }
Winson Chung400438b2011-01-16 17:53:48 -08003343 }
Adam Cohen446e9402011-09-15 18:21:21 -07003344 public void unlockScreenOrientationOnLargeUI() {
3345 if (LauncherApplication.isScreenLarge()) {
3346 mHandler.postDelayed(new Runnable() {
3347 public void run() {
3348 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3349 }
3350 }, mRestoreScreenOrientationDelay);
3351 }
Winson Chung400438b2011-01-16 17:53:48 -08003352 }
3353
Winson Chung82f55532011-08-09 14:14:23 -07003354 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07003355 private static final String PREFS_KEY = "com.android.launcher2.prefs";
3356 private boolean isClingsEnabled() {
Brett Chabot2a9e2282011-08-23 15:03:13 -07003357 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07003358 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07003359
Winson Chung7d7541e2011-09-16 20:14:36 -07003360 return true;
Winson Chung82f55532011-08-09 14:14:23 -07003361 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003362 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
3363 Cling cling = (Cling) findViewById(clingId);
3364 if (cling != null) {
3365 cling.init(this, positionData);
3366 cling.setVisibility(View.VISIBLE);
3367 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3368 if (animate) {
3369 cling.buildLayer();
3370 cling.setAlpha(0f);
3371 cling.animate()
3372 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07003373 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07003374 .setDuration(SHOW_CLING_DURATION)
3375 .setStartDelay(delay)
3376 .start();
3377 } else {
3378 cling.setAlpha(1f);
3379 }
3380 }
3381 return cling;
3382 }
3383 private void dismissCling(final Cling cling, final String flag, int duration) {
Winson Chung82f55532011-08-09 14:14:23 -07003384 if (cling != null) {
3385 ObjectAnimator anim = ObjectAnimator.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07003386 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07003387 anim.addListener(new AnimatorListenerAdapter() {
3388 public void onAnimationEnd(Animator animation) {
3389 cling.setVisibility(View.GONE);
3390 cling.cleanup();
Winson Chung46353de2012-02-16 14:05:10 -08003391 // We should update the shared preferences on a background thread
3392 new Thread("dismissClingThread") {
3393 public void run() {
3394 SharedPreferences.Editor editor = mSharedPrefs.edit();
3395 editor.putBoolean(flag, true);
3396 editor.commit();
3397 }
3398 }.start();
Winson Chung82f55532011-08-09 14:14:23 -07003399 };
3400 });
3401 anim.start();
3402 }
3403 }
Winson Chung9d9d74f2011-09-19 11:49:12 -07003404 private void removeCling(int id) {
3405 final View cling = findViewById(id);
3406 if (cling != null) {
3407 final ViewGroup parent = (ViewGroup) cling.getParent();
3408 parent.post(new Runnable() {
3409 @Override
3410 public void run() {
3411 parent.removeView(cling);
3412 }
3413 });
3414 }
3415 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003416 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003417 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003418 if (isClingsEnabled() &&
3419 !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003420 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003421 } else {
3422 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003423 }
3424 }
3425 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003426 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003427 if (isClingsEnabled() &&
3428 !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003429 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003430 } else {
3431 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003432 }
3433 }
3434 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003435 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003436 if (isClingsEnabled() &&
3437 !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
3438 return initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003439 } else {
3440 removeCling(R.id.folder_cling);
Winson Chung46353de2012-02-16 14:05:10 -08003441 return null;
Winson Chung7d7541e2011-09-16 20:14:36 -07003442 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003443 }
3444 public boolean isFolderClingVisible() {
3445 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003446 if (cling != null) {
3447 return cling.getVisibility() == View.VISIBLE;
3448 }
3449 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07003450 }
Winson Chung82f55532011-08-09 14:14:23 -07003451 public void dismissWorkspaceCling(View v) {
3452 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003453 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003454 }
3455 public void dismissAllAppsCling(View v) {
3456 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003457 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
3458 }
3459 public void dismissFolderCling(View v) {
3460 Cling cling = (Cling) findViewById(R.id.folder_cling);
3461 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003462 }
3463
Winson Chung80baf5a2010-08-09 16:03:15 -07003464 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003465 * Prints out out state for debugging.
3466 */
3467 public void dumpState() {
3468 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003469 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003470 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3471 Log.d(TAG, "mRestoring=" + mRestoring);
3472 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3473 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003474 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003475 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003476
Winson Chung785d2eb2011-04-14 16:08:02 -07003477 if (mAppsCustomizeContent != null) {
3478 mAppsCustomizeContent.dumpState();
3479 }
Joe Onoratobe386092009-11-17 17:32:16 -08003480 Log.d(TAG, "END launcher2 dump state");
3481 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003482
3483 @Override
3484 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
3485 super.dump(prefix, fd, writer, args);
3486 writer.println(" ");
3487 writer.println("Debug logs: ");
3488 for (int i = 0; i < sDumpLogs.size(); i++) {
3489 writer.println(" " + sDumpLogs.get(i));
3490 }
3491 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003492}
Michael Jurka2763be32011-02-24 11:19:57 -08003493
Michael Jurkaabded662011-03-04 12:06:57 -08003494interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003495 View getContent();
Michael Jurkabed61d22012-02-14 22:51:29 -08003496 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08003497 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08003498 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08003499}