blob: 0c1b76f8ec16e045d1b1010854dc30e113e44d7b [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
Adam Cohen482ed822012-03-02 14:15:13 -0800915 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -0700916 true, null,null)) {
917 return;
918 }
919 DragObject dragObject = new DragObject();
920 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -0800921 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
922 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -0700923 return;
924 }
Adam Cohenfbba09b2011-07-18 21:43:05 -0700925 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -0800926 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -0700927 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800928 foundCellSpan = (result != null);
929 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -0700930 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800931 }
932
933 if (!foundCellSpan) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700934 showOutOfSpaceMessage();
935 return;
936 }
937
Adam Cohen558baaf2011-08-15 15:22:57 -0700938 LauncherModel.addItemToDatabase(this, info, container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800939
940 if (!mRestoring) {
Winson Chung3d503fb2011-07-13 17:25:49 -0700941 mWorkspace.addInScreen(view, container, screen, cellXY[0], cellXY[1], 1, 1,
942 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800943 }
944 }
945
Adam Cohenf814aa02011-09-01 13:48:05 -0700946 int[] getSpanForWidget(ComponentName component, int minWidth, int minHeight, int[] spanXY) {
947 if (spanXY == null) {
948 spanXY = new int[2];
949 }
950
Adam Cohen0cf2a7c2011-11-08 15:07:01 -0800951 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(this, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -0700952 // We want to account for the extra amount of padding that we are adding to the widget
953 // to ensure that it gets the full amount of space that it has requested
954 int requiredWidth = minWidth + padding.left + padding.right;
955 int requiredHeight = minHeight + padding.top + padding.bottom;
956 return CellLayout.rectToCell(getResources(), requiredWidth, requiredHeight, null);
957 }
958
959 int[] getSpanForWidget(AppWidgetProviderInfo info, int[] spanXY) {
960 return getSpanForWidget(info.provider, info.minWidth, info.minHeight, spanXY);
961 }
962
Adam Cohend41fbf52012-02-16 23:53:59 -0800963 int[] getMinSpanForWidget(AppWidgetProviderInfo info, int[] spanXY) {
Adam Cohencbf47e32011-09-16 17:32:37 -0700964 return getSpanForWidget(info.provider, info.minResizeWidth, info.minResizeHeight, spanXY);
965 }
966
Adam Cohenf814aa02011-09-01 13:48:05 -0700967 int[] getSpanForWidget(PendingAddWidgetInfo info, int[] spanXY) {
968 return getSpanForWidget(info.componentName, info.minWidth, info.minHeight, spanXY);
969 }
970
Adam Cohend41fbf52012-02-16 23:53:59 -0800971 int[] getMinSpanForWidget(PendingAddWidgetInfo info, int[] spanXY) {
972 return getSpanForWidget(info.componentName, info.minResizeWidth,
973 info.minResizeHeight, spanXY);
974 }
975
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800976 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700977 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800978 *
Romain Guy5bbc91b2010-08-18 11:38:46 -0700979 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700980 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800981 */
Adam Cohened66b2b2012-01-23 17:28:51 -0800982 private void completeAddAppWidget(final int appWidgetId, long container, int screen,
983 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
984 if (appWidgetInfo == null) {
985 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
986 }
Romain Guycbb89e42009-06-08 15:52:54 -0700987
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700988 // Calculate the grid spans needed to fit this widget
Winson Chung3d503fb2011-07-13 17:25:49 -0700989 CellLayout layout = getCellLayout(container, screen);
Adam Cohen09353862011-07-14 16:10:03 -0700990
Adam Cohend41fbf52012-02-16 23:53:59 -0800991 int[] minSpanXY = getMinSpanForWidget(appWidgetInfo, null);
Adam Cohenf814aa02011-09-01 13:48:05 -0700992 int[] spanXY = getSpanForWidget(appWidgetInfo, null);
Romain Guycbb89e42009-06-08 15:52:54 -0700993
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800994 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -0700995 // We have saved the position to which the widget was dragged-- this really only matters
996 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -0700997 int[] cellXY = mTmpAddItemCellCoordinates;
998 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -0800999 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001000 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001001 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1002 cellXY[0] = mPendingAddInfo.cellX;
1003 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001004 spanXY[0] = mPendingAddInfo.spanX;
1005 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001006 foundCellSpan = true;
1007 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001008 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001009 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001010 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1011 spanXY[1], cellXY, finalSpan);
1012 spanXY[0] = finalSpan[0];
1013 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001014 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001015 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001016 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001017 }
1018
Michael Jurka0280c3b2010-09-17 15:00:07 -07001019 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001020 if (appWidgetId != -1) {
1021 // Deleting an app widget ID is a void call but writes to disk before returning
1022 // to the caller...
Winson Chungf7640c82011-02-28 13:47:29 -08001023 new Thread("deleteAppWidgetId") {
1024 public void run() {
1025 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
1026 }
1027 }.start();
1028 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001029 showOutOfSpaceMessage();
Romain Guy18042c82009-11-06 11:44:55 -08001030 return;
1031 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001032
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001033 // Build Launcher-specific widget info and save to database
Michael Jurkac9d95c52011-08-29 14:03:34 -07001034 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001035 launcherInfo.spanX = spanXY[0];
1036 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001037 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1038 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001039
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001040 LauncherModel.addItemToDatabase(this, launcherInfo,
Winson Chung3d503fb2011-07-13 17:25:49 -07001041 container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001042
1043 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001044 if (hostView == null) {
1045 // Perform actual inflation because we're live
1046 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1047 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1048 } else {
1049 // The AppWidgetHostView has already been inflated and instantiated
1050 launcherInfo.hostView = hostView;
1051 }
Romain Guycbb89e42009-06-08 15:52:54 -07001052
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001053 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001054 launcherInfo.hostView.setVisibility(View.VISIBLE);
Winson Chung3d503fb2011-07-13 17:25:49 -07001055 mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001056 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001057
1058 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001059 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001060 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001061 }
Romain Guycbb89e42009-06-08 15:52:54 -07001062
Adam Cohended9f8d2010-11-03 13:25:16 -07001063 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1064 @Override
1065 public void onReceive(Context context, Intent intent) {
1066 final String action = intent.getAction();
1067 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1068 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001069 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001070 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001071
Winson Chungc100e8e2011-08-09 16:02:43 -07001072 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001073 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001074 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
1075 mAppsCustomizeTabHost.reset();
1076 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001077 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001078 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1079 mUserPresent = true;
1080 updateRunning();
1081 }
1082 }
1083 };
1084
1085 @Override
1086 public void onAttachedToWindow() {
1087 super.onAttachedToWindow();
1088
1089 // Listen for broadcasts related to user-presence
1090 final IntentFilter filter = new IntentFilter();
1091 filter.addAction(Intent.ACTION_SCREEN_OFF);
1092 filter.addAction(Intent.ACTION_USER_PRESENT);
1093 registerReceiver(mReceiver, filter);
1094
Adam Cohend113e0c2010-11-11 10:48:05 -08001095 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001096 mVisible = true;
1097 }
1098
1099 @Override
1100 public void onDetachedFromWindow() {
1101 super.onDetachedFromWindow();
1102 mVisible = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001103 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001104
Adam Cohend113e0c2010-11-11 10:48:05 -08001105 if (mAttached) {
1106 unregisterReceiver(mReceiver);
1107 mAttached = false;
1108 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001109 updateRunning();
1110 }
1111
1112 public void onWindowVisibilityChanged(int visibility) {
1113 mVisible = visibility == View.VISIBLE;
1114 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001115 // The following code used to be in onResume, but it turns out onResume is called when
1116 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1117 // is a more appropriate event to handle
1118 if (mVisible) {
1119 mAppsCustomizeTabHost.onWindowVisible();
1120 if (!mWorkspaceLoading) {
1121 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001122 // We want to let Launcher draw itself at least once before we force it to build
1123 // layers on all the workspace pages, so that transitioning to Launcher from other
1124 // apps is nice and speedy. Usually the first call to preDraw doesn't correspond to
1125 // a true draw so we wait until the second preDraw call to be safe
1126 observer.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001127 public boolean onPreDraw() {
Michael Jurka6ee21d22012-02-21 18:20:27 -08001128 // We delay the layer building a bit in order to give
1129 // other message processing a time to run. In particular
1130 // this avoids a delay in hiding the IME if it was
1131 // currently shown, because doing that may involve
1132 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001133 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurka6ee21d22012-02-21 18:20:27 -08001134 observer.removeOnPreDrawListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001135 return true;
1136 }
1137 });
1138 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001139 // When Launcher comes back to foreground, a different Activity might be responsible for
1140 // the app market intent, so refresh the icon
1141 updateAppMarketIcon();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001142 clearTypedText();
1143 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001144 }
1145
1146 private void sendAdvanceMessage(long delay) {
1147 mHandler.removeMessages(ADVANCE_MSG);
1148 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1149 mHandler.sendMessageDelayed(msg, delay);
1150 mAutoAdvanceSentTime = System.currentTimeMillis();
1151 }
1152
1153 private void updateRunning() {
1154 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1155 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1156 mAutoAdvanceRunning = autoAdvanceRunning;
1157 if (autoAdvanceRunning) {
1158 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1159 sendAdvanceMessage(delay);
1160 } else {
1161 if (!mWidgetsToAdvance.isEmpty()) {
1162 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1163 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1164 }
1165 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001166 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001167 }
1168 }
1169 }
1170
1171 private final Handler mHandler = new Handler() {
1172 @Override
1173 public void handleMessage(Message msg) {
1174 if (msg.what == ADVANCE_MSG) {
1175 int i = 0;
1176 for (View key: mWidgetsToAdvance.keySet()) {
1177 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1178 final int delay = mAdvanceStagger * i;
1179 if (v instanceof Advanceable) {
1180 postDelayed(new Runnable() {
1181 public void run() {
1182 ((Advanceable) v).advance();
1183 }
1184 }, delay);
1185 }
1186 i++;
1187 }
1188 sendAdvanceMessage(mAdvanceInterval);
1189 }
1190 }
1191 };
1192
1193 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001194 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001195 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1196 if (v instanceof Advanceable) {
1197 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001198 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001199 updateRunning();
1200 }
1201 }
1202
1203 void removeWidgetToAutoAdvance(View hostView) {
1204 if (mWidgetsToAdvance.containsKey(hostView)) {
1205 mWidgetsToAdvance.remove(hostView);
1206 updateRunning();
1207 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001208 }
1209
Joe Onorato9c1289c2009-08-17 11:03:03 -04001210 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001211 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001212 launcherInfo.hostView = null;
1213 }
1214
Adam Cohended9f8d2010-11-03 13:25:16 -07001215 void showOutOfSpaceMessage() {
1216 Toast.makeText(this, getString(R.string.out_of_space), Toast.LENGTH_SHORT).show();
1217 }
1218
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001219 public LauncherAppWidgetHost getAppWidgetHost() {
1220 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001221 }
Romain Guycbb89e42009-06-08 15:52:54 -07001222
Winson Chunga9abd0e2010-10-27 17:18:37 -07001223 public LauncherModel getModel() {
1224 return mModel;
1225 }
1226
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001227 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001228 getWindow().closeAllPanels();
1229
Winson Chung87acb482011-08-23 17:28:05 -07001230 /**
1231 * We should remove this code when we remove all the dialog code.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001232 try {
1233 dismissDialog(DIALOG_CREATE_SHORTCUT);
1234 // Unlock the workspace if the dialog was showing
1235 } catch (Exception e) {
1236 // An exception is thrown if the dialog is not visible, which is fine
1237 }
1238
1239 try {
1240 dismissDialog(DIALOG_RENAME_FOLDER);
1241 // Unlock the workspace if the dialog was showing
1242 } catch (Exception e) {
1243 // An exception is thrown if the dialog is not visible, which is fine
1244 }
Winson Chung87acb482011-08-23 17:28:05 -07001245 */
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001246
1247 // Whatever we were doing is hereby canceled.
1248 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001249 }
1250
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001251 @Override
1252 protected void onNewIntent(Intent intent) {
1253 super.onNewIntent(intent);
1254
1255 // Close the menu
1256 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001257 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001258 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001259
Joe Onorato14f122b2009-11-19 14:06:36 -08001260 boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1261 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001262
Adam Cohenac56cff2011-09-28 20:45:37 -07001263 Folder openFolder = mWorkspace.getOpenFolder();
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001264 // In all these cases, only animate if we're already on home
Patrick Dubroy758a9232011-03-03 19:54:56 -08001265 mWorkspace.exitWidgetResizeMode();
Adam Cohenac56cff2011-09-28 20:45:37 -07001266 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1267 openFolder == null) {
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001268 mWorkspace.moveToDefaultScreen(true);
Joe Onorato3a8820b2009-11-10 15:06:42 -08001269 }
Adam Cohenac56cff2011-09-28 20:45:37 -07001270
1271 closeFolder();
Winson Chungde1af762011-07-21 16:44:07 -07001272 exitSpringLoadedDragMode();
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001273 showWorkspace(alreadyOnHome);
Romain Guy1dd3a072009-07-16 13:21:01 -07001274
Joe Onorato3a8820b2009-11-10 15:06:42 -08001275 final View v = getWindow().peekDecorView();
1276 if (v != null && v.getWindowToken() != null) {
1277 InputMethodManager imm = (InputMethodManager)getSystemService(
1278 INPUT_METHOD_SERVICE);
1279 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001280 }
Winson Chung337cd9d2011-03-30 10:39:30 -07001281
Michael Jurka35aa14d2011-07-07 17:01:08 -07001282 // Reset AllApps to its initial state
Adam Cohenb64d36e2011-10-17 21:48:02 -07001283 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Winson Chungc100e8e2011-08-09 16:02:43 -07001284 mAppsCustomizeTabHost.reset();
Winson Chung785d2eb2011-04-14 16:08:02 -07001285 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001286 }
1287 }
1288
1289 @Override
1290 protected void onRestoreInstanceState(Bundle savedInstanceState) {
1291 // Do not call super here
1292 mSavedInstanceState = savedInstanceState;
1293 }
1294
1295 @Override
1296 protected void onSaveInstanceState(Bundle outState) {
Michael Jurka0142d492010-08-25 17:46:15 -07001297 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getCurrentPage());
Adam Cohen95bb8002011-07-03 23:40:28 -07001298 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001299
Michael Jurka883f55b2010-10-21 15:47:14 -07001300 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001301 // We close any open folder since it will not be re-opened, and we need to make sure
1302 // this state is reflected.
1303 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001304
Winson Chung3d503fb2011-07-13 17:25:49 -07001305 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screen > -1 &&
1306 mWaitingForResult) {
1307 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
1308 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screen);
1309 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1310 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001311 }
1312
1313 if (mFolderInfo != null && mWaitingForResult) {
1314 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1315 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1316 }
Michael Jurka946ad472010-07-09 18:05:18 -07001317
Winson Chung785d2eb2011-04-14 16:08:02 -07001318 // Save the current AppsCustomize tab
1319 if (mAppsCustomizeTabHost != null) {
1320 String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1321 if (currentTabTag != null) {
1322 outState.putString("apps_customize_currentTab", currentTabTag);
1323 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001324 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1325 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001326 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001327 }
1328
1329 @Override
1330 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001331 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001332
Winson Chunge7a03942011-08-05 15:05:12 -07001333 // Remove all pending runnables
1334 mHandler.removeMessages(ADVANCE_MSG);
1335 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001336 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001337
Winson Chungcd2b0142011-06-08 16:02:26 -07001338 // Stop callbacks from LauncherModel
1339 LauncherApplication app = ((LauncherApplication) getApplication());
1340 mModel.stopLoader();
1341 app.setLauncher(null);
1342
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001343 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001344 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001345 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001346 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001347 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001348 mAppWidgetHost = null;
1349
1350 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001351
1352 TextKeyListener.getInstance().release();
1353
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001354
Winson Chung3d503fb2011-07-13 17:25:49 -07001355 unbindWorkspaceAndHotseatItems();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001356
1357 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001358 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001359
1360 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1361 mWorkspace.removeAllViews();
1362 mWorkspace = null;
1363 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001364
1365 ValueAnimator.clearAllAnimations();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001366 }
1367
Adam Cohena9cf38f2011-05-02 15:36:58 -07001368 public DragController getDragController() {
1369 return mDragController;
1370 }
1371
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001372 @Override
1373 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001374 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001375 super.startActivityForResult(intent, requestCode);
1376 }
1377
Winson Chung70d72102011-08-12 11:24:35 -07001378 /**
1379 * Indicates that we want global search for this activity by setting the globalSearch
1380 * argument for {@link #startSearch} to true.
1381 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001382 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001383 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001384 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001385
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001386 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001387
Karl Rosaen138a0412009-04-23 19:00:21 -07001388 if (initialQuery == null) {
1389 // Use any text typed in the launcher as the initial query
1390 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001391 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001392 if (appSearchData == null) {
1393 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001394 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001395 }
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001396 Rect sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
Romain Guycbb89e42009-06-08 15:52:54 -07001397
Karl Rosaen138a0412009-04-23 19:00:21 -07001398 final SearchManager searchManager =
1399 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
Karl Rosaen138a0412009-04-23 19:00:21 -07001400 searchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001401 appSearchData, globalSearch, sourceBounds);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001402 }
1403
Winson Chung70d72102011-08-12 11:24:35 -07001404 @Override
1405 public boolean onCreateOptionsMenu(Menu menu) {
1406 if (isWorkspaceLocked()) {
1407 return false;
1408 }
1409
1410 super.onCreateOptionsMenu(menu);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001411
1412 Intent manageApps = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
1413 manageApps.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1414 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung236d4312011-08-22 15:12:27 -07001415 Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
1416 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1417 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Michael Jurkab964f9c2011-09-27 22:10:05 -07001418 String helpUrl = getString(R.string.help_url);
1419 Intent help = new Intent(Intent.ACTION_VIEW, Uri.parse(helpUrl));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001420 help.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1421 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1422
Winson Chung70d72102011-08-12 11:24:35 -07001423 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1424 .setIcon(android.R.drawable.ic_menu_gallery)
1425 .setAlphabeticShortcut('W');
1426 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1427 .setIcon(android.R.drawable.ic_menu_manage)
Winson Chungdff8ebb2011-09-08 17:25:31 -07001428 .setIntent(manageApps)
Winson Chung70d72102011-08-12 11:24:35 -07001429 .setAlphabeticShortcut('M');
Winson Chung236d4312011-08-22 15:12:27 -07001430 menu.add(0, MENU_SYSTEM_SETTINGS, 0, R.string.menu_settings)
1431 .setIcon(android.R.drawable.ic_menu_preferences)
1432 .setIntent(settings)
1433 .setAlphabeticShortcut('P');
Michael Jurkab964f9c2011-09-27 22:10:05 -07001434 if (!helpUrl.isEmpty()) {
1435 menu.add(0, MENU_HELP, 0, R.string.menu_help)
1436 .setIcon(android.R.drawable.ic_menu_help)
1437 .setIntent(help)
1438 .setAlphabeticShortcut('H');
1439 }
Winson Chung70d72102011-08-12 11:24:35 -07001440 return true;
1441 }
1442
1443 @Override
1444 public boolean onPrepareOptionsMenu(Menu menu) {
1445 super.onPrepareOptionsMenu(menu);
1446
1447 if (mAppsCustomizeTabHost.isTransitioning()) {
1448 return false;
1449 }
1450 boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1451 menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1452
1453 return true;
1454 }
1455
1456 @Override
1457 public boolean onOptionsItemSelected(MenuItem item) {
1458 switch (item.getItemId()) {
1459 case MENU_WALLPAPER_SETTINGS:
1460 startWallpaper();
1461 return true;
Winson Chung70d72102011-08-12 11:24:35 -07001462 }
1463
1464 return super.onOptionsItemSelected(item);
1465 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001466
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001467 @Override
1468 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001469 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001470 // Use a custom animation for launching search
1471 overridePendingTransition(R.anim.fade_in_fast, R.anim.fade_out_fast);
Karl Rosaen138a0412009-04-23 19:00:21 -07001472 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001473 }
1474
Joe Onorato9c1289c2009-08-17 11:03:03 -04001475 public boolean isWorkspaceLocked() {
1476 return mWorkspaceLoading || mWaitingForResult;
1477 }
1478
Michael Jurka0280c3b2010-09-17 15:00:07 -07001479 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07001480 mPendingAddInfo.container = ItemInfo.NO_ID;
1481 mPendingAddInfo.screen = -1;
1482 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1483 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08001484 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07001485 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001486 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001487
Michael Jurkaaf442092010-06-10 17:01:57 -07001488 void addAppWidgetFromPick(Intent data) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001489 // TODO: catch bad widget exception when sent
1490 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Michael Jurkaaf442092010-06-10 17:01:57 -07001491 // TODO: Is this log message meaningful?
1492 if (LOGD) Log.d(TAG, "dumping extras content=" + data.getExtras());
Winson Chung55cef262010-10-28 14:14:18 -07001493 addAppWidgetImpl(appWidgetId, null);
Michael Jurkaaf442092010-06-10 17:01:57 -07001494 }
1495
Adam Cohened66b2b2012-01-23 17:28:51 -08001496 void addAppWidgetImpl(final int appWidgetId, final PendingAddWidgetInfo info) {
1497 final AppWidgetProviderInfo appWidget = info.info;
1498 Runnable configurationActivity = null;
Bjorn Bringert7984c942009-12-09 15:38:25 +00001499 if (appWidget.configure != null) {
1500 // Launch over to configure widget, if needed
1501 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
1502 intent.setComponent(appWidget.configure);
1503 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Winson Chung55cef262010-10-28 14:14:18 -07001504 if (info != null) {
Winson Chung68846fd2010-10-29 11:00:27 -07001505 if (info.mimeType != null && !info.mimeType.isEmpty()) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001506 intent.putExtra(InstallWidgetReceiver.
1507 EXTRA_APPWIDGET_CONFIGURATION_DATA_MIME_TYPE, info.mimeType);
Winson Chung68846fd2010-10-29 11:00:27 -07001508
1509 final String mimeType = info.mimeType;
1510 final ClipData clipData = (ClipData) info.configurationData;
1511 final ClipDescription clipDesc = clipData.getDescription();
1512 for (int i = 0; i < clipDesc.getMimeTypeCount(); ++i) {
1513 if (clipDesc.getMimeType(i).equals(mimeType)) {
Dianne Hackborn0d5aad72011-01-17 15:28:58 -08001514 final ClipData.Item item = clipData.getItemAt(i);
Winson Chung68846fd2010-10-29 11:00:27 -07001515 final CharSequence stringData = item.getText();
1516 final Uri uriData = item.getUri();
1517 final Intent intentData = item.getIntent();
Adam Cohened66b2b2012-01-23 17:28:51 -08001518 final String key = InstallWidgetReceiver.
1519 EXTRA_APPWIDGET_CONFIGURATION_DATA;
Winson Chung68846fd2010-10-29 11:00:27 -07001520 if (uriData != null) {
1521 intent.putExtra(key, uriData);
1522 } else if (intentData != null) {
1523 intent.putExtra(key, intentData);
1524 } else if (stringData != null) {
1525 intent.putExtra(key, stringData);
1526 }
1527 break;
1528 }
1529 }
1530 }
Winson Chung55cef262010-10-28 14:14:18 -07001531 }
Romain Guy8e633c52010-03-04 12:51:36 -08001532 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
Adam Cohened66b2b2012-01-23 17:28:51 -08001533 mWidgetBeingConfigured = info;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001534 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001535 // Otherwise just add it
Adam Cohened66b2b2012-01-23 17:28:51 -08001536 completeAddAppWidget(appWidgetId, info.container, info.screen, info.boundWidget, appWidget);
Winson Chung557d6ed2011-07-08 15:34:52 -07001537 // Exit spring loaded mode if necessary after adding the widget
Adam Cohened66b2b2012-01-23 17:28:51 -08001538 exitSpringLoadedDragModeDelayed(true, false, null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001539 }
1540 }
Romain Guycbb89e42009-06-08 15:52:54 -07001541
Adam Cohenfbba09b2011-07-18 21:43:05 -07001542 /**
1543 * Process a shortcut drop.
1544 *
1545 * @param componentName The name of the component
1546 * @param screen The screen where it should be added
1547 * @param cell The cell it should be added to, optional
1548 * @param position The location on the screen where it was dropped, optional
1549 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001550 void processShortcutFromDrop(ComponentName componentName, long container, int screen,
1551 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001552 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001553 mPendingAddInfo.container = container;
1554 mPendingAddInfo.screen = screen;
1555 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001556
1557 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001558 mPendingAddInfo.cellX = cell[0];
1559 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001560 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001561
1562 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1563 createShortcutIntent.setComponent(componentName);
1564 processShortcut(createShortcutIntent);
1565 }
1566
Adam Cohenfbba09b2011-07-18 21:43:05 -07001567 /**
1568 * Process a widget drop.
1569 *
1570 * @param info The PendingAppWidgetInfo of the widget being added.
1571 * @param screen The screen where it should be added
1572 * @param cell The cell it should be added to, optional
1573 * @param position The location on the screen where it was dropped, optional
1574 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001575 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen,
Adam Cohend41fbf52012-02-16 23:53:59 -08001576 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001577 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001578 mPendingAddInfo.container = info.container = container;
1579 mPendingAddInfo.screen = info.screen = screen;
1580 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08001581 mPendingAddInfo.minSpanX = info.minSpanX;
1582 mPendingAddInfo.minSpanY = info.minSpanY;
1583
Adam Cohenfbba09b2011-07-18 21:43:05 -07001584 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001585 mPendingAddInfo.cellX = cell[0];
1586 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001587 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001588 if (span != null) {
1589 mPendingAddInfo.spanX = span[0];
1590 mPendingAddInfo.spanY = span[1];
1591 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001592
Adam Cohened66b2b2012-01-23 17:28:51 -08001593 AppWidgetHostView hostView = info.boundWidget;
1594 int appWidgetId;
1595 if (hostView != null) {
1596 appWidgetId = hostView.getAppWidgetId();
1597 } else {
1598 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
1599 AppWidgetManager.getInstance(this).bindAppWidgetId(appWidgetId, info.componentName);
1600 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001601 addAppWidgetImpl(appWidgetId, info);
1602 }
1603
Joe Onoratodeb98af2010-02-19 14:59:39 -08001604 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001605 // Handle case where user selected "Applications"
1606 String applicationName = getResources().getString(R.string.group_applications);
1607 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001608
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001609 if (applicationName != null && applicationName.equals(shortcutName)) {
1610 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1611 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001612
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001613 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1614 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001615 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001616 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001617 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001618 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001619 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001620 }
1621
Winson Chung24ab2f12010-09-16 14:10:47 -07001622 void processWallpaper(Intent intent) {
1623 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1624 }
1625
Winson Chung3d503fb2011-07-13 17:25:49 -07001626 FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX,
1627 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001628 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001629 folderInfo.title = getText(R.string.folder_name);
1630
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001631 // Update the model
Winson Chung3d503fb2011-07-13 17:25:49 -07001632 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screen, cellX, cellY,
1633 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001634 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001635
1636 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07001637 FolderIcon newFolder =
1638 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
1639 mWorkspace.addInScreen(newFolder, container, screen, cellX, cellY, 1, 1,
1640 isWorkspaceLocked());
Adam Cohendf035382011-04-11 17:22:04 -07001641 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001642 }
Romain Guycbb89e42009-06-08 15:52:54 -07001643
Joe Onorato9c1289c2009-08-17 11:03:03 -04001644 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001645 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001646 }
1647
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001648 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001649 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001650 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001651 Intent chooser = Intent.createChooser(pickWallpaper,
1652 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001653 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1654 // Removed in Eclair MR1
1655// WallpaperManager wm = (WallpaperManager)
1656// getSystemService(Context.WALLPAPER_SERVICE);
1657// WallpaperInfo wi = wm.getWallpaperInfo();
1658// if (wi != null && wi.getSettingsActivity() != null) {
1659// LabeledIntent li = new LabeledIntent(getPackageName(),
1660// R.string.configure_wallpaper, 0);
1661// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1662// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1663// }
Mike Clerona0618e42009-10-22 13:55:21 -07001664 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001665 }
1666
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001667 /**
1668 * Registers various content observers. The current implementation registers
1669 * only a favorites observer to keep track of the favorites applications.
1670 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001671 private void registerContentObservers() {
1672 ContentResolver resolver = getContentResolver();
1673 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1674 true, mWidgetObserver);
1675 }
1676
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001677 @Override
1678 public boolean dispatchKeyEvent(KeyEvent event) {
1679 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1680 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001681 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001682 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001683 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jason Samseb5615d2009-11-30 11:50:10 -08001684 if (SystemProperties.getInt("debug.launcher2.dumpstate", 0) != 0) {
Joe Onoratobe386092009-11-17 17:32:16 -08001685 dumpState();
1686 return true;
1687 }
1688 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001689 }
1690 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1691 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001692 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001693 return true;
1694 }
1695 }
1696
1697 return super.dispatchKeyEvent(event);
1698 }
1699
Joe Onorato88ec0992009-11-19 13:16:06 -08001700 @Override
1701 public void onBackPressed() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07001702 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001703 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001704 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07001705 Folder openFolder = mWorkspace.getOpenFolder();
1706 if (openFolder.isEditingName()) {
1707 openFolder.dismissEditingName();
1708 } else {
1709 closeFolder();
1710 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001711 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08001712 mWorkspace.exitWidgetResizeMode();
1713
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001714 // Back button is a no-op here, but give at least some feedback for the button press
1715 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07001716 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001717 }
1718
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001719 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001720 * Re-listen when widgets are reset.
1721 */
1722 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08001723 if (mAppWidgetHost != null) {
1724 mAppWidgetHost.startListening();
1725 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001726 }
1727
1728 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001729 * Go through the and disconnect any of the callbacks in the drawables and the views or we
1730 * leak the previous Home screen on orientation change.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001731 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001732 private void unbindWorkspaceAndHotseatItems() {
Winson Chung603bcb92011-09-02 11:45:39 -07001733 if (mModel != null) {
1734 mModel.unbindWorkspaceItems();
1735 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001736 }
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001737
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001738 /**
1739 * Launches the intent referred by the clicked shortcut.
1740 *
1741 * @param v The view representing the clicked shortcut.
1742 */
1743 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001744 // Make sure that rogue clicks don't get through while allapps is launching, or after the
1745 // view has detached (it's possible for this to happen if the view is removed mid touch).
1746 if (v.getWindowToken() == null) {
1747 return;
1748 }
1749
Winson Chung9b0b2fe2012-02-24 13:03:34 -08001750 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001751 return;
1752 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07001753
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001754 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001755 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001756 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08001757 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08001758 int[] pos = new int[2];
1759 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08001760 intent.setSourceBounds(new Rect(pos[0], pos[1],
1761 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Michael Jurkaddd62e92011-02-16 17:49:14 -08001762 boolean success = startActivitySafely(intent, tag);
1763
1764 if (success && v instanceof BubbleTextView) {
1765 mWaitingForResume = (BubbleTextView) v;
1766 mWaitingForResume.setStayPressed(true);
1767 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001768 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07001769 if (v instanceof FolderIcon) {
1770 FolderIcon fi = (FolderIcon) v;
1771 handleFolderClick(fi);
1772 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07001773 } else if (v == mAllAppsButton) {
1774 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001775 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001776 } else {
Michael Jurka2a552322011-10-11 15:22:05 -07001777 onClickAllAppsButton(v);
Joe Onorato7404ee42009-07-31 11:54:44 -07001778 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001779 }
1780 }
1781
Michael Jurka0e260592010-06-30 17:07:39 -07001782 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07001783 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001784 // clicking anywhere on the workspace causes the customization drawer to slide down
1785 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07001786 return false;
1787 }
1788
Michael Jurkaaf442092010-06-10 17:01:57 -07001789 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001790 * Event handler for the search button
1791 *
1792 * @param v The view that was clicked.
1793 */
1794 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001795 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
1796
Amith Yamasania135ba82011-08-09 17:42:01 -07001797 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001798 }
1799
1800 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001801 * Event handler for the voice button
1802 *
1803 * @param v The view that was clicked.
1804 */
1805 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001806 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001807
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001808 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001809 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001810 startActivity(intent);
1811 }
1812
1813 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001814 * Event handler for the "grid" button that appears on the home screen, which
1815 * enters all apps mode.
1816 *
1817 * @param v The view that was clicked.
1818 */
1819 public void onClickAllAppsButton(View v) {
Michael Jurka5130e402011-10-13 04:55:35 -07001820 showAllApps(true);
1821 }
1822
1823 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07001824 // Provide the same haptic feedback that the system offers for virtual keys.
1825 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001826 }
1827
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001828 public void onClickAppMarketButton(View v) {
1829 if (mAppMarketIntent != null) {
1830 startActivitySafely(mAppMarketIntent, "app market");
1831 }
1832 }
1833
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001834 void startApplicationDetailsActivity(ComponentName componentName) {
1835 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001836 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
1837 Uri.fromParts("package", packageName, null));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001838 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001839 startActivity(intent);
1840 }
1841
Patrick Dubroy5539af72010-09-07 15:22:01 -07001842 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
1843 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
1844 // System applications cannot be installed. For now, show a toast explaining that.
1845 // We may give them the option of disabling apps this way.
1846 int messageId = R.string.uninstall_system_app_text;
1847 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
1848 } else {
1849 String packageName = appInfo.componentName.getPackageName();
1850 String className = appInfo.componentName.getClassName();
1851 Intent intent = new Intent(
1852 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001853 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1854 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy5539af72010-09-07 15:22:01 -07001855 startActivity(intent);
1856 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001857 }
1858
Michael Jurkaddd62e92011-02-16 17:49:14 -08001859 boolean startActivitySafely(Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001860 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1861 try {
1862 startActivity(intent);
Michael Jurkaddd62e92011-02-16 17:49:14 -08001863 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001864 } catch (ActivityNotFoundException e) {
1865 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Daniel Sandlerc9b18772010-04-22 14:37:59 -04001866 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001867 } catch (SecurityException e) {
1868 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001869 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001870 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07001871 "or use the exported attribute for this activity. "
1872 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001873 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08001874 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001875 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001876
Romain Guy8e633c52010-03-04 12:51:36 -08001877 void startActivityForResultSafely(Intent intent, int requestCode) {
1878 try {
1879 startActivityForResult(intent, requestCode);
1880 } catch (ActivityNotFoundException e) {
1881 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1882 } catch (SecurityException e) {
1883 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1884 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
1885 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
1886 "or use the exported attribute for this activity.", e);
1887 }
1888 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001889
Adam Cohena9cf38f2011-05-02 15:36:58 -07001890 private void handleFolderClick(FolderIcon folderIcon) {
1891 final FolderInfo info = folderIcon.mInfo;
Adam Cohen3c81a382011-08-31 22:25:51 -07001892 Folder openFolder = mWorkspace.getFolderForTag(info);
1893
1894 // If the folder info reports that the associated folder is open, then verify that
1895 // it is actually opened. There have been a few instances where this gets out of sync.
1896 if (info.opened && openFolder == null) {
1897 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
1898 + info.screen + " (" + info.cellX + ", " + info.cellY + ")");
1899 info.opened = false;
1900 }
1901
Adam Cohena9cf38f2011-05-02 15:36:58 -07001902 if (!info.opened) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001903 // Close any open folder
1904 closeFolder();
1905 // Open the requested folder
Adam Cohena9cf38f2011-05-02 15:36:58 -07001906 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001907 } else {
1908 // Find the open folder...
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001909 int folderScreen;
1910 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07001911 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001912 // .. and close it
1913 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07001914 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001915 // Close any folder open on the current screen
1916 closeFolder();
1917 // Pull the folder onto this screen
Adam Cohena9cf38f2011-05-02 15:36:58 -07001918 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001919 }
1920 }
1921 }
1922 }
1923
Adam Cohen2801caf2011-05-13 20:57:39 -07001924 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001925 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07001926 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
1927 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
1928 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
1929
Adam Cohenc51934b2011-07-26 21:07:43 -07001930 FolderInfo info = (FolderInfo) fi.getTag();
1931 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1932 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07001933 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
1934 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07001935 }
1936
Adam Cohen2801caf2011-05-13 20:57:39 -07001937 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
1938 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
1939 oa.start();
1940 }
1941
1942 private void shrinkAndFadeInFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001943 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07001944 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
1945 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
1946 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
1947
Adam Cohenc51934b2011-07-26 21:07:43 -07001948 FolderInfo info = (FolderInfo) fi.getTag();
1949 CellLayout cl = null;
1950 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1951 cl = (CellLayout) fi.getParent().getParent();
1952 }
1953
1954 final CellLayout layout = cl;
Adam Cohen2801caf2011-05-13 20:57:39 -07001955 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
1956 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07001957 oa.addListener(new AnimatorListenerAdapter() {
1958 @Override
1959 public void onAnimationEnd(Animator animation) {
1960 if (layout != null) {
1961 layout.clearFolderLeaveBehind();
1962 }
1963 }
1964 });
Adam Cohen2801caf2011-05-13 20:57:39 -07001965 oa.start();
1966 }
1967
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001968 /**
Michael Jurka774bd372010-10-22 13:40:50 -07001969 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001970 * is animated relative to the specified View. If the View is null, no animation
1971 * is played.
1972 *
1973 * @param folderInfo The FolderInfo describing the folder to open.
1974 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07001975 public void openFolder(FolderIcon folderIcon) {
1976 Folder folder = folderIcon.mFolder;
1977 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001978
Adam Cohen2801caf2011-05-13 20:57:39 -07001979 growAndFadeOutFolderIcon(folderIcon);
Adam Cohena9cf38f2011-05-02 15:36:58 -07001980 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001981
Adam Cohen4554ee12011-08-03 16:13:21 -07001982 // Just verify that the folder hasn't already been added to the DragLayer.
1983 // There was a one-off crash where the folder had a parent already.
1984 if (folder.getParent() == null) {
1985 mDragLayer.addView(folder);
1986 mDragController.addDropTarget((DropTarget) folder);
1987 } else {
1988 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
1989 folder.getParent() + ").");
1990 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07001991 folder.animateOpen();
Adam Cohen4554ee12011-08-03 16:13:21 -07001992 }
1993
1994 public void closeFolder() {
1995 Folder folder = mWorkspace.getOpenFolder();
1996 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07001997 if (folder.isEditingName()) {
1998 folder.dismissEditingName();
1999 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002000 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002001
2002 // Dismiss the folder cling
2003 dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002004 }
2005 }
2006
2007 void closeFolder(Folder folder) {
2008 folder.getInfo().opened = false;
2009
2010 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2011 if (parent != null) {
2012 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2013 shrinkAndFadeInFolderIcon(fi);
2014 }
2015 folder.animateClosed();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002016 }
2017
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002018 public boolean onLongClick(View v) {
Winson Chungeecf02d2012-03-02 17:14:58 -08002019
Patrick Dubroye708c522011-03-01 16:03:43 -08002020 if (mState != State.WORKSPACE) {
2021 return false;
2022 }
2023
Joe Onorato9c1289c2009-08-17 11:03:03 -04002024 if (isWorkspaceLocked()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002025 return false;
2026 }
2027
2028 if (!(v instanceof CellLayout)) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08002029 v = (View) v.getParent().getParent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002030 }
2031
Michael Jurka0280c3b2010-09-17 15:00:07 -07002032 resetAddInfo();
2033 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002034 // This happens when long clicking an item with the dpad/trackball
Adam Cohenfaea1f82011-07-21 16:23:57 -07002035 if (longClickCellInfo == null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002036 return true;
2037 }
2038
Winson Chung3d503fb2011-07-13 17:25:49 -07002039 // The hotseat touch handling does not go through Workspace, and we always allow long press
2040 // on hotseat items.
Michael Jurka0280c3b2010-09-17 15:00:07 -07002041 final View itemUnderLongClick = longClickCellInfo.cell;
Winson Chung3d503fb2011-07-13 17:25:49 -07002042 boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
2043 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002044 if (itemUnderLongClick == null) {
2045 // User long pressed on empty space
Michael Jurka0280c3b2010-09-17 15:00:07 -07002046 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2047 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002048 startWallpaper();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002049 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002050 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002051 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07002052 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002053 }
2054 }
2055 }
2056 return true;
2057 }
2058
Winson Chung3d503fb2011-07-13 17:25:49 -07002059 boolean isHotseatLayout(View layout) {
2060 return mHotseat != null && layout != null &&
2061 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
2062 }
2063 Hotseat getHotseat() {
2064 return mHotseat;
Romain Guy1fbc1c82009-11-09 20:43:08 -08002065 }
Adam Cohenebea84d2011-11-09 17:20:41 -08002066 SearchDropTargetBar getSearchBar() {
2067 return mSearchDropTargetBar;
2068 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002069
Winson Chung3d503fb2011-07-13 17:25:49 -07002070 /**
2071 * Returns the CellLayout of the specified container at the specified screen.
2072 */
2073 CellLayout getCellLayout(long container, int screen) {
2074 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2075 if (mHotseat != null) {
2076 return mHotseat.getLayout();
2077 } else {
2078 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002079 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002080 } else {
2081 return (CellLayout) mWorkspace.getChildAt(screen);
Romain Guya6abce82009-11-10 02:54:41 -08002082 }
2083 }
2084
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002085 Workspace getWorkspace() {
2086 return mWorkspace;
2087 }
2088
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002089 @Override
2090 protected Dialog onCreateDialog(int id) {
2091 switch (id) {
2092 case DIALOG_CREATE_SHORTCUT:
2093 return new CreateShortcut().createDialog();
2094 case DIALOG_RENAME_FOLDER:
2095 return new RenameFolder().createDialog();
2096 }
2097
2098 return super.onCreateDialog(id);
2099 }
2100
2101 @Override
2102 protected void onPrepareDialog(int id, Dialog dialog) {
2103 switch (id) {
2104 case DIALOG_CREATE_SHORTCUT:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002105 break;
2106 case DIALOG_RENAME_FOLDER:
Romain Guy7b4ef332009-07-14 13:58:08 -07002107 if (mFolderInfo != null) {
2108 EditText input = (EditText) dialog.findViewById(R.id.folder_name);
2109 final CharSequence text = mFolderInfo.title;
2110 input.setText(text);
2111 input.setSelection(0, text.length());
2112 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002113 break;
2114 }
2115 }
2116
2117 void showRenameDialog(FolderInfo info) {
2118 mFolderInfo = info;
2119 mWaitingForResult = true;
2120 showDialog(DIALOG_RENAME_FOLDER);
2121 }
2122
Adam Cohenfbba09b2011-07-18 21:43:05 -07002123 private void showAddDialog() {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002124 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002125 mPendingAddInfo.container = LauncherSettings.Favorites.CONTAINER_DESKTOP;
2126 mPendingAddInfo.screen = mWorkspace.getCurrentPage();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002127 mWaitingForResult = true;
2128 showDialog(DIALOG_CREATE_SHORTCUT);
2129 }
2130
2131 private class RenameFolder {
2132 private EditText mInput;
2133
2134 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002135 final View layout = View.inflate(Launcher.this, R.layout.rename_folder, null);
2136 mInput = (EditText) layout.findViewById(R.id.folder_name);
2137
2138 AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
2139 builder.setIcon(0);
2140 builder.setTitle(getString(R.string.rename_folder_title));
2141 builder.setCancelable(true);
2142 builder.setOnCancelListener(new Dialog.OnCancelListener() {
2143 public void onCancel(DialogInterface dialog) {
2144 cleanup();
2145 }
2146 });
2147 builder.setNegativeButton(getString(R.string.cancel_action),
2148 new Dialog.OnClickListener() {
2149 public void onClick(DialogInterface dialog, int which) {
2150 cleanup();
2151 }
2152 }
2153 );
2154 builder.setPositiveButton(getString(R.string.rename_action),
2155 new Dialog.OnClickListener() {
2156 public void onClick(DialogInterface dialog, int which) {
2157 changeFolderName();
2158 }
2159 }
2160 );
2161 builder.setView(layout);
Romain Guy7b4ef332009-07-14 13:58:08 -07002162
2163 final AlertDialog dialog = builder.create();
2164 dialog.setOnShowListener(new DialogInterface.OnShowListener() {
2165 public void onShow(DialogInterface dialog) {
Joe Onorato7018d8e2010-04-13 20:25:47 -07002166 mWaitingForResult = true;
Joe Onoratod753b422009-11-08 13:31:11 -05002167 mInput.requestFocus();
2168 InputMethodManager inputManager = (InputMethodManager)
2169 getSystemService(Context.INPUT_METHOD_SERVICE);
2170 inputManager.showSoftInput(mInput, 0);
Romain Guy7b4ef332009-07-14 13:58:08 -07002171 }
2172 });
2173
2174 return dialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002175 }
2176
2177 private void changeFolderName() {
2178 final String name = mInput.getText().toString();
2179 if (!TextUtils.isEmpty(name)) {
2180 // Make sure we have the right folder info
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002181 mFolderInfo = sFolders.get(mFolderInfo.id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002182 mFolderInfo.title = name;
2183 LauncherModel.updateItemInDatabase(Launcher.this, mFolderInfo);
2184
Joe Onorato9c1289c2009-08-17 11:03:03 -04002185 if (mWorkspaceLoading) {
Joe Onorato7c312c12009-08-13 21:36:53 -07002186 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002187 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002188 } else {
2189 final FolderIcon folderIcon = (FolderIcon)
2190 mWorkspace.getViewForTag(mFolderInfo);
2191 if (folderIcon != null) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002192 // TODO: At some point we'll probably want some version of setting
2193 // the text for a folder icon.
2194 //folderIcon.setText(name);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002195 getWorkspace().requestLayout();
2196 } else {
Joe Onorato7c312c12009-08-13 21:36:53 -07002197 lockAllApps();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002198 mWorkspaceLoading = true;
2199 mModel.startLoader(Launcher.this, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002200 }
2201 }
2202 }
2203 cleanup();
2204 }
2205
2206 private void cleanup() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002207 dismissDialog(DIALOG_RENAME_FOLDER);
2208 mWaitingForResult = false;
2209 mFolderInfo = null;
2210 }
2211 }
2212
Daniel Sandler843e8602010-06-07 14:59:01 -04002213 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2214 public boolean isAllAppsVisible() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002215 return (mState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04002216 }
2217
Andrew Flynn0dca1ec2012-02-29 13:33:22 -08002218 public boolean isAllAppsButtonRank(int rank) {
2219 return mHotseat.isAllAppsButtonRank(rank);
2220 }
2221
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002222 // AllAppsView.Watcher
2223 public void zoomed(float zoom) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002224 if (zoom == 1.0f) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002225 mWorkspace.setVisibility(View.GONE);
2226 }
2227 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002228
2229 /**
2230 * Helper method for the cameraZoomIn/cameraZoomOut animations
2231 * @param view The view being animated
Winson Chungf0ea4d32011-06-06 14:27:16 -07002232 * @param state The state that we are moving in or out of (eg. APPS_CUSTOMIZE)
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002233 * @param scaleFactor The scale factor used for the zoom
2234 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07002235 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002236 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07002237 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002238 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002239
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002240 void updateWallpaperVisibility(boolean visible) {
2241 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
2242 int curflags = getWindow().getAttributes().flags
2243 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2244 if (wpflags != curflags) {
2245 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
2246 }
2247 }
2248
Michael Jurkabed61d22012-02-14 22:51:29 -08002249 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2250 if (v instanceof LauncherTransitionable) {
2251 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2252 }
Winson Chung70442722012-02-10 15:43:22 -08002253
2254 // Update the workspace transition step as well
2255 dispatchOnLauncherTransitionStep(v, 0f);
2256 }
2257
2258 private void dispatchOnLauncherTransitionStep(View v, float t) {
2259 if (v instanceof LauncherTransitionable) {
2260 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
2261 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002262 }
2263
2264 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2265 if (v instanceof LauncherTransitionable) {
2266 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2267 }
Winson Chung70442722012-02-10 15:43:22 -08002268
2269 // Update the workspace transition step as well
2270 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08002271 }
2272
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002273 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07002274 * Things to test when changing the following seven functions.
2275 * - Home from workspace
2276 * - from center screen
2277 * - from other screens
2278 * - Home from all apps
2279 * - from center screen
2280 * - from other screens
2281 * - Back from all apps
2282 * - from center screen
2283 * - from other screens
2284 * - Launch app from workspace and quit
2285 * - with back
2286 * - with home
2287 * - Launch app from all apps and quit
2288 * - with back
2289 * - with home
2290 * - Go to a screen that's not the default, then all
2291 * apps, and launch and app, and go back
2292 * - with back
2293 * -with home
2294 * - On workspace, long press power and go back
2295 * - with back
2296 * - with home
2297 * - On all apps, long press power and go back
2298 * - with back
2299 * - with home
2300 * - On workspace, power off
2301 * - On all apps, power off
2302 * - Launch an app and turn off the screen while in that app
2303 * - Go back with home key
2304 * - Go back with back key TODO: make this not go to workspace
2305 * - From all apps
2306 * - From workspace
2307 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2308 * - From all apps
2309 * - From the center workspace
2310 * - From another workspace
2311 */
2312
2313 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002314 * Zoom the camera out from the workspace to reveal 'toView'.
2315 * Assumes that the view to show is anchored at either the very top or very bottom
2316 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002317 */
Michael Jurkabed61d22012-02-14 22:51:29 -08002318 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002319 if (mStateAnimation != null) {
2320 mStateAnimation.cancel();
2321 mStateAnimation = null;
2322 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002323 final Resources res = getResources();
Winson Chung7d7541e2011-09-16 20:14:36 -07002324 final Launcher instance = this;
Adam Cohenf16e5712011-01-13 13:31:45 -08002325
Winson Chungf0ea4d32011-06-06 14:27:16 -07002326 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2327 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2328 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08002329 final View fromView = mWorkspace;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002330 final View toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07002331 final int startDelay =
2332 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002333
Michael Jurkab3e22d92011-10-31 15:58:33 -07002334 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002335
Michael Jurkad74c9842011-07-10 12:44:21 -07002336 // Shrink workspaces away if going to AppsCustomize from workspace
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002337 Animator workspaceAnim =
2338 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002339
2340 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002341 toView.setScaleX(scale);
2342 toView.setScaleY(scale);
2343 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2344 scaleAnim.
2345 scaleX(1f).scaleY(1f).
2346 setDuration(duration).
2347 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08002348
Winson Chungf0ea4d32011-06-06 14:27:16 -07002349 toView.setVisibility(View.VISIBLE);
Adam Cohenc00f0b92011-12-06 19:45:06 -08002350 toView.setAlpha(0f);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002351 final ObjectAnimator alphaAnim = ObjectAnimator
2352 .ofFloat(toView, "alpha", 0f, 1f)
2353 .setDuration(fadeDuration);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002354 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung70442722012-02-10 15:43:22 -08002355 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2356 @Override
2357 public void onAnimationUpdate(ValueAnimator animation) {
2358 float t = (Float) animation.getAnimatedValue();
2359 dispatchOnLauncherTransitionStep(fromView, t);
2360 dispatchOnLauncherTransitionStep(toView, t);
2361 }
2362 });
Adam Cohenf16e5712011-01-13 13:31:45 -08002363
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002364 // toView should appear right at the end of the workspace shrink
2365 // animation
2366 mStateAnimation = new AnimatorSet();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002367 mStateAnimation.play(scaleAnim).after(startDelay);
Michael Jurka7407d2a2011-12-12 21:48:38 -08002368 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002369
2370 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Adam Cohenf4ddea32011-09-12 13:46:42 -07002371 boolean animationCancelled = false;
2372
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002373 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002374 public void onAnimationStart(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002375 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002376 // Prepare the position
2377 toView.setTranslationX(0.0f);
2378 toView.setTranslationY(0.0f);
2379 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002380 toView.bringToFront();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002381 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002382 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002383 public void onAnimationEnd(Animator animation) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002384 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2385 dispatchOnLauncherTransitionEnd(toView, animated, false);
Winson Chung32174c82011-07-19 15:47:55 -07002386
2387 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2388 // Hide the workspace scrollbar
2389 mWorkspace.hideScrollingIndicator(true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002390 hideDockDivider();
Winson Chung32174c82011-07-19 15:47:55 -07002391 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002392 if (!animationCancelled) {
2393 updateWallpaperVisibility(false);
2394 }
2395 }
2396
Adam Cohencff6af82011-09-13 14:51:53 -07002397 @Override
Adam Cohenf4ddea32011-09-12 13:46:42 -07002398 public void onAnimationCancel(Animator animation) {
2399 animationCancelled = true;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002400 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002401 });
2402
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002403 if (workspaceAnim != null) {
2404 mStateAnimation.play(workspaceAnim);
2405 }
Michael Jurka1899a362011-11-03 13:50:45 -07002406
2407 boolean delayAnim = false;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002408 final ViewTreeObserver observer;
2409
Michael Jurkabed61d22012-02-14 22:51:29 -08002410 dispatchOnLauncherTransitionStart(fromView, animated, false);
2411 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002412
2413 // If any of the objects being animated haven't been measured/laid out
2414 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08002415 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002416 (mWorkspace.getMeasuredWidth() == 0) ||
2417 (toView.getMeasuredWidth() == 0)) {
2418 observer = mWorkspace.getViewTreeObserver();
2419 delayAnim = true;
2420 } else {
2421 observer = null;
Michael Jurka1899a362011-11-03 13:50:45 -07002422 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002423
2424 if (delayAnim) {
Michael Jurka49779a12012-01-16 04:10:08 -08002425 final AnimatorSet stateAnimation = mStateAnimation;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002426 final OnGlobalLayoutListener delayedStart = new OnGlobalLayoutListener() {
2427 public void onGlobalLayout() {
2428 mWorkspace.post(new Runnable() {
2429 public void run() {
Michael Jurka49779a12012-01-16 04:10:08 -08002430 // Check that mStateAnimation hasn't changed while
2431 // we waited for a layout pass
2432 if (mStateAnimation == stateAnimation) {
2433 // Need to update pivots for zoom if layout changed
2434 setPivotsForZoom(toView, scale);
2435 mStateAnimation.start();
2436 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002437 }
2438 });
2439 observer.removeGlobalOnLayoutListener(this);
2440 }
2441 };
2442 observer.addOnGlobalLayoutListener(delayedStart);
2443 } else {
2444 setPivotsForZoom(toView, scale);
Michael Jurka1899a362011-11-03 13:50:45 -07002445 mStateAnimation.start();
2446 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002447 } else {
2448 toView.setTranslationX(0.0f);
2449 toView.setTranslationY(0.0f);
2450 toView.setScaleX(1.0f);
2451 toView.setScaleY(1.0f);
2452 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002453 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07002454
Michael Jurkabed61d22012-02-14 22:51:29 -08002455 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2456 // Hide the workspace scrollbar
2457 mWorkspace.hideScrollingIndicator(true);
2458 hideDockDivider();
Michael Jurkaabded662011-03-04 12:06:57 -08002459 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002460 dispatchOnLauncherTransitionStart(fromView, animated, false);
2461 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2462 dispatchOnLauncherTransitionStart(toView, animated, false);
2463 dispatchOnLauncherTransitionEnd(toView, animated, false);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002464 updateWallpaperVisibility(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002465 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002466 }
2467
2468 /**
2469 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07002470 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002471 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002472 */
Adam Cohened66b2b2012-01-23 17:28:51 -08002473 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2474 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002475
Michael Jurkab3e22d92011-10-31 15:58:33 -07002476 if (mStateAnimation != null) {
2477 mStateAnimation.cancel();
2478 mStateAnimation = null;
2479 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002480 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002481
Winson Chungf0ea4d32011-06-06 14:27:16 -07002482 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002483 final int fadeOutDuration =
2484 res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002485 final float scaleFactor = (float)
2486 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2487 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08002488 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002489 Animator workspaceAnim = null;
2490
2491 if (toState == State.WORKSPACE) {
2492 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
2493 workspaceAnim = mWorkspace.getChangeStateAnimation(
2494 Workspace.State.NORMAL, animated, stagger);
2495 } else if (toState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2496 workspaceAnim = mWorkspace.getChangeStateAnimation(
2497 Workspace.State.SPRING_LOADED, animated);
2498 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002499
Michael Jurkab3e22d92011-10-31 15:58:33 -07002500 setPivotsForZoom(fromView, scaleFactor);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002501 updateWallpaperVisibility(true);
Winson Chung4afe9b32011-07-27 17:46:20 -07002502 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002503 if (animated) {
Michael Jurka742574b2011-02-02 23:51:01 -08002504 final float oldScaleX = fromView.getScaleX();
2505 final float oldScaleY = fromView.getScaleY();
2506
Michael Jurka159b4cc2012-01-17 03:00:35 -08002507 final LauncherViewPropertyAnimator scaleAnim =
2508 new LauncherViewPropertyAnimator(fromView);
2509 scaleAnim.
2510 scaleX(scaleFactor).scaleY(scaleFactor).
2511 setDuration(duration).
2512 setInterpolator(new Workspace.ZoomInInterpolator());
2513
2514 final ObjectAnimator alphaAnim = ObjectAnimator
2515 .ofFloat(fromView, "alpha", 1f, 0f)
2516 .setDuration(fadeOutDuration);
Adam Cohencff6af82011-09-13 14:51:53 -07002517 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
Winson Chung70442722012-02-10 15:43:22 -08002518 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2519 @Override
2520 public void onAnimationUpdate(ValueAnimator animation) {
2521 float t = 1f - (Float) animation.getAnimatedValue();
2522 dispatchOnLauncherTransitionStep(fromView, t);
2523 dispatchOnLauncherTransitionStep(toView, t);
2524 }
2525 });
Michael Jurka159b4cc2012-01-17 03:00:35 -08002526
Michael Jurkabed61d22012-02-14 22:51:29 -08002527 mStateAnimation = new AnimatorSet();
2528
2529 dispatchOnLauncherTransitionStart(fromView, animated, true);
2530 dispatchOnLauncherTransitionStart(toView, animated, true);
2531
2532 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002533 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002534 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002535 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002536 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002537 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2538 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurka430e8a52011-08-08 15:52:14 -07002539 mWorkspace.hideScrollingIndicator(false);
Adam Cohened66b2b2012-01-23 17:28:51 -08002540 if (onCompleteRunnable != null) {
2541 onCompleteRunnable.run();
2542 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002543 }
2544 });
2545
Winson Chungf0ea4d32011-06-06 14:27:16 -07002546 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002547 if (workspaceAnim != null) {
2548 mStateAnimation.play(workspaceAnim);
2549 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002550 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002551 } else {
2552 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002553 dispatchOnLauncherTransitionStart(fromView, animated, true);
2554 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2555 dispatchOnLauncherTransitionStart(toView, animated, true);
2556 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002557 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002558 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002559 }
2560
Michael Jurkae326f182011-11-21 14:05:46 -08002561 @Override
2562 public void onTrimMemory(int level) {
2563 super.onTrimMemory(level);
Dianne Hackborn4f560ce2012-03-06 19:07:47 -08002564 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
Michael Jurkae326f182011-11-21 14:05:46 -08002565 mAppsCustomizeTabHost.onTrimMemory();
2566 }
2567 }
2568
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002569 void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002570 showWorkspace(animated, null);
2571 }
2572
2573 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002574 if (mState != State.WORKSPACE) {
2575 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002576 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002577
2578 // Show the search bar and hotseat
2579 mSearchDropTargetBar.showSearchBar(animated);
Michael Jurkab737ee62011-11-15 15:57:22 -08002580 // We only need to animate in the dock divider if we're going from spring loaded mode
2581 showDockDivider(animated && mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002582
2583 // Set focus to the AppsCustomize button
2584 if (mAllAppsButton != null) {
2585 mAllAppsButton.requestFocus();
2586 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002587 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002588
Michael Jurkab737ee62011-11-15 15:57:22 -08002589 mWorkspace.flashScrollingIndicator(animated);
Adam Cohen7777d962011-08-18 18:58:38 -07002590
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002591 // Change the state *after* we've called all the transition code
2592 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002593
Winson Chung5fb63472011-02-02 17:03:37 -08002594 // Resume the auto-advance of widgets
2595 mUserPresent = true;
2596 updateRunning();
2597
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002598 // send an accessibility event to announce the context change
2599 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
Joe Onorato00acb122009-08-04 16:04:30 -04002600 }
2601
Michael Jurkab3e22d92011-10-31 15:58:33 -07002602 void showAllApps(boolean animated) {
2603 if (mState != State.WORKSPACE) return;
2604
2605 showAppsCustomizeHelper(animated, false);
2606 mAppsCustomizeTabHost.requestFocus();
2607
2608 // Hide the search bar and hotseat
2609 mSearchDropTargetBar.hideSearchBar(animated);
2610
2611 // Change the state *after* we've called all the transition code
2612 mState = State.APPS_CUSTOMIZE;
2613
2614 // Pause the auto-advance of widgets until we are out of AllApps
2615 mUserPresent = false;
2616 updateRunning();
2617 closeFolder();
2618
2619 // Send an accessibility event to announce the context change
2620 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
2621 }
2622
Adam Cohen7777d962011-08-18 18:58:38 -07002623 void enterSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002624 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002625 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true, null);
Michael Jurkab737ee62011-11-15 15:57:22 -08002626 hideDockDivider();
Winson Chungc07918d2011-07-01 15:35:26 -07002627 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07002628 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002629 }
Adam Cohen7777d962011-08-18 18:58:38 -07002630
Adam Cohened66b2b2012-01-23 17:28:51 -08002631 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay,
2632 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07002633 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
2634
Winson Chunge7a03942011-08-05 15:05:12 -07002635 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002636 @Override
2637 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002638 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07002639 // Before we show workspace, hide all apps again because
2640 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2641 // clean up our state transition functions
2642 mAppsCustomizeTabHost.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002643 mSearchDropTargetBar.showSearchBar(true);
Adam Cohened66b2b2012-01-23 17:28:51 -08002644 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07002645 } else {
2646 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002647 }
Winson Chung557d6ed2011-07-08 15:34:52 -07002648 }
2649 }, (extendedDelay ?
2650 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2651 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2652 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002653
Michael Jurkad3ef3062010-11-23 16:23:58 -08002654 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002655 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002656 final boolean animated = true;
2657 final boolean springLoaded = true;
2658 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07002659 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002660 }
2661 // Otherwise, we are not in spring loaded mode, so don't do anything.
2662 }
2663
Michael Jurkab737ee62011-11-15 15:57:22 -08002664 void hideDockDivider() {
2665 if (mQsbDivider != null && mDockDivider != null) {
2666 mQsbDivider.setVisibility(View.INVISIBLE);
2667 mDockDivider.setVisibility(View.INVISIBLE);
2668 }
2669 }
2670
2671 void showDockDivider(boolean animated) {
2672 if (mQsbDivider != null && mDockDivider != null) {
2673 mQsbDivider.setVisibility(View.VISIBLE);
2674 mDockDivider.setVisibility(View.VISIBLE);
2675 if (mDividerAnimator != null) {
2676 mDividerAnimator.cancel();
2677 mQsbDivider.setAlpha(1f);
2678 mDockDivider.setAlpha(1f);
2679 mDividerAnimator = null;
2680 }
2681 if (animated) {
2682 mDividerAnimator = new AnimatorSet();
2683 mDividerAnimator.playTogether(ObjectAnimator.ofFloat(mQsbDivider, "alpha", 1f),
2684 ObjectAnimator.ofFloat(mDockDivider, "alpha", 1f));
2685 mDividerAnimator.setDuration(mSearchDropTargetBar.getTransitionInDuration());
2686 mDividerAnimator.start();
2687 }
2688 }
2689 }
2690
Michael Jurkab3e22d92011-10-31 15:58:33 -07002691 void lockAllApps() {
2692 // TODO
2693 }
2694
2695 void unlockAllApps() {
2696 // TODO
2697 }
2698
Adam Cohenfc53cd22011-07-20 15:45:11 -07002699 public boolean isAllAppsCustomizeOpen() {
2700 return mState == State.APPS_CUSTOMIZE;
2701 }
2702
Winson Chungf0ea4d32011-06-06 14:27:16 -07002703 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002704 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002705 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002706 void showHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002707 if (!LauncherApplication.isScreenLarge()) {
2708 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002709 if (mHotseat.getAlpha() != 1f) {
2710 int duration = mSearchDropTargetBar.getTransitionInDuration();
2711 mHotseat.animate().alpha(1f).setDuration(duration);
2712 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002713 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002714 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002715 }
2716 }
2717 }
2718
2719 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002720 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002721 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002722 void hideHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002723 if (!LauncherApplication.isScreenLarge()) {
2724 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002725 if (mHotseat.getAlpha() != 0f) {
2726 int duration = mSearchDropTargetBar.getTransitionOutDuration();
2727 mHotseat.animate().alpha(0f).setDuration(duration);
2728 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002729 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002730 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002731 }
Winson Chungb26f3d62011-06-02 10:49:29 -07002732 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002733 }
2734
Patrick Dubroy5f445422011-02-18 14:35:21 -08002735 /**
2736 * Add an item from all apps or customize onto the given workspace screen.
2737 * If layout is null, add to the current screen.
2738 */
2739 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002740 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
2741 showOutOfSpaceMessage();
Michael Jurka213d9632010-07-28 11:29:25 -07002742 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002743 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002744
Winson Chungdff8ebb2011-09-08 17:25:31 -07002745 /** Maps the current orientation to an index for referencing orientation correct global icons */
2746 private int getCurrentOrientationIndexForGlobalIcons() {
2747 // default - 0, landscape - 1
2748 switch (getResources().getConfiguration().orientation) {
2749 case Configuration.ORIENTATION_LANDSCAPE:
2750 return 1;
2751 default:
2752 return 0;
2753 }
2754 }
2755
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002756 private Drawable getExternalPackageToolbarIcon(ComponentName activityName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002757 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002758 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002759 // Look for the toolbar icon specified in the activity meta-data
2760 Bundle metaData = packageManager.getActivityInfo(
2761 activityName, PackageManager.GET_META_DATA).metaData;
2762 if (metaData != null) {
2763 int iconResId = metaData.getInt(TOOLBAR_ICON_METADATA_NAME);
2764 if (iconResId != 0) {
2765 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002766 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002767 }
2768 }
2769 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07002770 // This can happen if the activity defines an invalid drawable
2771 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
2772 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01002773 } catch (Resources.NotFoundException nfe) {
2774 // This can happen if the activity defines an invalid drawable
2775 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
2776 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002777 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002778 return null;
2779 }
2780
2781 // if successful in getting icon, return it; otherwise, set button to use default drawable
2782 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
2783 int buttonId, ComponentName activityName, int fallbackDrawableId) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002784 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName);
Winson Chung128bbcd2011-08-31 16:58:52 -07002785 Resources r = getResources();
2786 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
2787 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002788
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002789 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002790 // If we were unable to find the icon via the meta-data, use a generic one
2791 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07002792 toolbarIcon = r.getDrawable(fallbackDrawableId);
2793 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 null;
2798 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07002799 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002800 if (button != null) {
2801 button.setCompoundDrawables(toolbarIcon, null, null, null);
2802 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002803 return toolbarIcon.getConstantState();
2804 }
2805 }
2806
2807 // if successful in getting icon, return it; otherwise, set button to use default drawable
2808 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
2809 int buttonId, ComponentName activityName, int fallbackDrawableId) {
2810 ImageView button = (ImageView) findViewById(buttonId);
2811 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName);
2812
Michael Jurka19e0fc52011-07-22 18:00:21 -07002813 if (button != null) {
2814 // If we were unable to find the icon via the meta-data, use a
2815 // generic one
2816 if (toolbarIcon == null) {
2817 button.setImageResource(fallbackDrawableId);
2818 } else {
2819 button.setImageDrawable(toolbarIcon);
2820 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002821 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07002822
2823 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
2824
Michael Jurka0423dcf2010-10-05 14:56:18 -07002825 }
2826
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002827 private void updateTextButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
2828 TextView button = (TextView) findViewById(buttonId);
2829 button.setCompoundDrawables(d.newDrawable(getResources()), null, null, null);
2830 }
2831
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002832 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08002833 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002834 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08002835 }
2836
Winson Chungbb185bd2011-11-21 12:31:42 -08002837 private void invalidatePressedFocusedStates(View container, View button) {
2838 if (container instanceof HolographicLinearLayout) {
2839 HolographicLinearLayout layout = (HolographicLinearLayout) container;
2840 layout.invalidatePressedFocusedStates();
2841 } else if (button instanceof HolographicImageView) {
2842 HolographicImageView view = (HolographicImageView) button;
2843 view.invalidatePressedFocusedStates();
2844 }
2845 }
2846
Winson Chungc51db6a2011-10-05 11:44:49 -07002847 private boolean updateGlobalSearchIcon() {
2848 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07002849 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
2850 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07002851 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002852 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07002853
Winson Chung1cad91e2011-05-25 17:41:01 -07002854 final SearchManager searchManager =
2855 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2856 ComponentName activityName = searchManager.getGlobalSearchActivity();
2857 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002858 int coi = getCurrentOrientationIndexForGlobalIcons();
2859 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Winson Chungc7aef8c2011-09-15 18:53:04 -07002860 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo);
Winson Chung649723c2011-07-06 20:41:23 -07002861 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002862 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
2863 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08002864 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07002865 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07002866 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002867 // We disable both search and voice search when there is no global search provider
Winson Chung649723c2011-07-06 20:41:23 -07002868 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002869 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
2870 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
2871 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002872 voiceButton.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002873 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002874 }
2875 }
2876
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002877 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002878 final View searchButtonContainer = findViewById(R.id.search_button_container);
2879 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002880 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08002881 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002882 }
2883
Winson Chungc51db6a2011-10-05 11:44:49 -07002884 private boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chung1cad91e2011-05-25 17:41:01 -07002885 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07002886 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07002887 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07002888
Winson Chungc51db6a2011-10-05 11:44:49 -07002889 // We only show/update the voice search icon if the search icon is enabled as well
Winson Chung1cad91e2011-05-25 17:41:01 -07002890 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2891 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chungc51db6a2011-10-05 11:44:49 -07002892 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002893 int coi = getCurrentOrientationIndexForGlobalIcons();
2894 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Winson Chungc7aef8c2011-09-15 18:53:04 -07002895 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo);
Winson Chung649723c2011-07-06 20:41:23 -07002896 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002897 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07002898 voiceButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08002899 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07002900 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07002901 } else {
Winson Chung649723c2011-07-06 20:41:23 -07002902 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002903 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07002904 voiceButton.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002905 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002906 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002907 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002908
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002909 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002910 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
2911 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002912 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08002913 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002914 }
2915
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002916 /**
Winson Chungeb66b142011-06-16 13:14:22 -07002917 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002918 */
2919 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07002920 final View marketButton = findViewById(R.id.market_button);
2921 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
2922 // Find the app market activity by resolving an intent.
2923 // (If multiple app markets are installed, it will return the ResolverActivity.)
2924 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07002925 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002926 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07002927 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07002928 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Winson Chung967289b2011-06-30 18:09:30 -07002929 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo);
Winson Chung785d2eb2011-04-14 16:08:02 -07002930 marketButton.setVisibility(View.VISIBLE);
2931 } else {
2932 // We should hide and disable the view so that we don't try and restore the visibility
2933 // of it when we swap between drag & normal states from IconDropTarget subclasses.
2934 marketButton.setVisibility(View.GONE);
2935 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002936 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002937 }
2938
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002939 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002940 updateTextButtonWithDrawable(R.id.market_button, d);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002941 }
2942
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002943 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002944 * Displays the shortcut creation dialog and launches, if necessary, the
2945 * appropriate activity.
2946 */
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002947 private class CreateShortcut implements DialogInterface.OnClickListener,
Romain Guy7b4ef332009-07-14 13:58:08 -07002948 DialogInterface.OnCancelListener, DialogInterface.OnDismissListener,
2949 DialogInterface.OnShowListener {
2950
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002951 private AddAdapter mAdapter;
Romain Guy9ffb5432009-03-24 21:04:15 -07002952
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002953 Dialog createDialog() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002954 mAdapter = new AddAdapter(Launcher.this);
Romain Guycbb89e42009-06-08 15:52:54 -07002955
Winson Chung55b65502011-05-26 12:03:43 -07002956 final AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this,
2957 AlertDialog.THEME_HOLO_DARK);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002958 builder.setAdapter(mAdapter, this);
Romain Guycbb89e42009-06-08 15:52:54 -07002959
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002960 AlertDialog dialog = builder.create();
2961 dialog.setOnCancelListener(this);
Romain Guycbb89e42009-06-08 15:52:54 -07002962 dialog.setOnDismissListener(this);
Romain Guy7b4ef332009-07-14 13:58:08 -07002963 dialog.setOnShowListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002964
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002965 return dialog;
2966 }
2967
2968 public void onCancel(DialogInterface dialog) {
2969 mWaitingForResult = false;
2970 cleanup();
2971 }
2972
Romain Guycbb89e42009-06-08 15:52:54 -07002973 public void onDismiss(DialogInterface dialog) {
Winson Chung55b65502011-05-26 12:03:43 -07002974 mWaitingForResult = false;
2975 cleanup();
Romain Guycbb89e42009-06-08 15:52:54 -07002976 }
2977
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002978 private void cleanup() {
Joe Onoratocc19a532009-11-19 14:19:17 -08002979 try {
2980 dismissDialog(DIALOG_CREATE_SHORTCUT);
2981 } catch (Exception e) {
2982 // An exception is thrown if the dialog is not visible, which is fine
2983 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002984 }
2985
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002986 /**
2987 * Handle the action clicked in the "Add to home" dialog.
2988 */
2989 public void onClick(DialogInterface dialog, int which) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002990 cleanup();
Romain Guycbb89e42009-06-08 15:52:54 -07002991
Winson Chung55b65502011-05-26 12:03:43 -07002992 AddAdapter.ListItem item = (AddAdapter.ListItem) mAdapter.getItem(which);
2993 switch (item.actionTag) {
Winson Chung55b65502011-05-26 12:03:43 -07002994 case AddAdapter.ITEM_APPLICATION: {
2995 if (mAppsCustomizeTabHost != null) {
2996 mAppsCustomizeTabHost.selectAppsTab();
2997 }
2998 showAllApps(true);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002999 break;
3000 }
Winson Chung55b65502011-05-26 12:03:43 -07003001 case AddAdapter.ITEM_APPWIDGET: {
3002 if (mAppsCustomizeTabHost != null) {
3003 mAppsCustomizeTabHost.selectWidgetsTab();
3004 }
3005 showAllApps(true);
3006 break;
3007 }
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07003008 case AddAdapter.ITEM_WALLPAPER: {
3009 startWallpaper();
3010 break;
3011 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003012 }
3013 }
Romain Guy7b4ef332009-07-14 13:58:08 -07003014
3015 public void onShow(DialogInterface dialog) {
Winson Chungaafa03c2010-06-11 17:34:16 -07003016 mWaitingForResult = true;
Romain Guy7b4ef332009-07-14 13:58:08 -07003017 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003018 }
3019
3020 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003021 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003022 */
3023 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
3024 @Override
3025 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003026 closeSystemDialogs();
3027 }
3028 }
3029
3030 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003031 * Receives notifications whenever the appwidgets are reset.
3032 */
3033 private class AppWidgetResetObserver extends ContentObserver {
3034 public AppWidgetResetObserver() {
3035 super(new Handler());
3036 }
3037
3038 @Override
3039 public void onChange(boolean selfChange) {
3040 onAppWidgetReset();
3041 }
3042 }
3043
3044 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003045 * If the activity is currently paused, signal that we need to re-run the loader
3046 * in onResume.
3047 *
3048 * This needs to be called from incoming places where resources might have been loaded
3049 * while we are paused. That is becaues the Configuration might be wrong
3050 * when we're not running, and if it comes back to what it was when we
3051 * were paused, we are not restarted.
3052 *
3053 * Implementation of the method from LauncherModel.Callbacks.
3054 *
3055 * @return true if we are currently paused. The caller might be able to
3056 * skip some work in that case since we will come back again.
3057 */
3058 public boolean setLoadOnResume() {
3059 if (mPaused) {
3060 Log.i(TAG, "setLoadOnResume");
3061 mOnResumeNeedsLoad = true;
3062 return true;
3063 } else {
3064 return false;
3065 }
3066 }
3067
3068 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003069 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003070 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003071 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003072 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003073 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003074 } else {
3075 return SCREEN_COUNT / 2;
3076 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003077 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003078
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003079
Joe Onorato9c1289c2009-08-17 11:03:03 -04003080 /**
3081 * Refreshes the shortcuts shown on the workspace.
3082 *
3083 * Implementation of the method from LauncherModel.Callbacks.
3084 */
3085 public void startBinding() {
3086 final Workspace workspace = mWorkspace;
Adam Cohendf035382011-04-11 17:22:04 -07003087
3088 mWorkspace.clearDropTargets();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003089 int count = workspace.getChildCount();
3090 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04003091 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Winson Chung7a25a9e2011-01-30 13:33:56 -08003092 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
3093 layoutParent.removeAllViewsInLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003094 }
Michael Jurka05bf644e2011-11-30 20:28:53 -08003095 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003096 if (mHotseat != null) {
3097 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003098 }
3099 }
3100
3101 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003102 * Bind the items start-end from the list.
3103 *
3104 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003105 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003106 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003107 setLoadOnResume();
3108
Joe Onorato9c1289c2009-08-17 11:03:03 -04003109 final Workspace workspace = mWorkspace;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003110 for (int i=start; i<end; i++) {
3111 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003112
3113 // Short circuit if we are loading dock items for a configuration which has no dock
3114 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3115 mHotseat == null) {
3116 continue;
3117 }
3118
Joe Onorato9c1289c2009-08-17 11:03:03 -04003119 switch (item.itemType) {
3120 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3121 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chung3d503fb2011-07-13 17:25:49 -07003122 View shortcut = createShortcut((ShortcutInfo)item);
3123 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
3124 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003125 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003126 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003127 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003128 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003129 (FolderInfo) item, mIconCache);
Winson Chung3d503fb2011-07-13 17:25:49 -07003130 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
3131 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003132 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003133 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003134 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003135 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003136 }
3137
Joe Onorato9c1289c2009-08-17 11:03:03 -04003138 /**
3139 * Implementation of the method from LauncherModel.Callbacks.
3140 */
Joe Onoratoad72e172009-11-06 16:25:04 -05003141 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003142 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003143 sFolders.clear();
3144 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003145 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003146
3147 /**
3148 * Add the views for a widget to the workspace.
3149 *
3150 * Implementation of the method from LauncherModel.Callbacks.
3151 */
3152 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003153 setLoadOnResume();
3154
Daniel Sandler843e8602010-06-07 14:59:01 -04003155 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3156 if (DEBUG_WIDGETS) {
3157 Log.d(TAG, "bindAppWidget: " + item);
3158 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003159 final Workspace workspace = mWorkspace;
3160
3161 final int appWidgetId = item.appWidgetId;
3162 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003163 if (DEBUG_WIDGETS) {
3164 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3165 }
3166
Joe Onorato9c1289c2009-08-17 11:03:03 -04003167 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3168
Joe Onorato9c1289c2009-08-17 11:03:03 -04003169 item.hostView.setAppWidget(appWidgetId, appWidgetInfo);
3170 item.hostView.setTag(item);
3171
Adam Cohenca83eeb2012-02-29 15:17:57 -08003172 // We need to load the minimum span and embed it into the item info
3173 int[] minSpan = getMinSpanForWidget(appWidgetInfo, null);
3174 item.minSpanX = minSpan[0];
3175 item.minSpanY = minSpan[1];
3176
Winson Chung3d503fb2011-07-13 17:25:49 -07003177 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003178 item.cellY, item.spanX, item.spanY, false);
3179
Adam Cohended9f8d2010-11-03 13:25:16 -07003180 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3181
Joe Onorato9c1289c2009-08-17 11:03:03 -04003182 workspace.requestLayout();
3183
Daniel Sandler843e8602010-06-07 14:59:01 -04003184 if (DEBUG_WIDGETS) {
3185 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3186 + (SystemClock.uptimeMillis()-start) + "ms");
3187 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003188 }
3189
3190 /**
3191 * Callback saying that there aren't any more items to bind.
3192 *
3193 * Implementation of the method from LauncherModel.Callbacks.
3194 */
3195 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003196 setLoadOnResume();
3197
Joe Onorato9c1289c2009-08-17 11:03:03 -04003198 if (mSavedState != null) {
3199 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003200 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003201 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003202 mSavedState = null;
3203 }
3204
3205 if (mSavedInstanceState != null) {
3206 super.onRestoreInstanceState(mSavedInstanceState);
3207 mSavedInstanceState = null;
3208 }
3209
Joe Onorato9c1289c2009-08-17 11:03:03 -04003210 mWorkspaceLoading = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003211
3212 // If we received the result of any pending adds while the loader was running (e.g. the
3213 // widget configuration forced an orientation change), process them now.
3214 for (int i = 0; i < sPendingAddList.size(); i++) {
3215 completeAdd(sPendingAddList.get(i));
3216 }
3217 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003218
Winson Chungc51db6a2011-10-05 11:44:49 -07003219 // Update the market app icon as necessary (the other icons will be managed in response to
3220 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003221 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003222
Michael Jurka6ee21d22012-02-21 18:20:27 -08003223 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003224 }
3225
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003226 @Override
3227 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003228 boolean searchVisible = updateGlobalSearchIcon();
3229 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
3230 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003231 }
3232
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003233 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003234 * Add the icons for all apps.
3235 *
3236 * Implementation of the method from LauncherModel.Callbacks.
3237 */
Michael Jurkac57b7a82011-08-09 22:02:20 -07003238 public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
3239 // Remove the progress bar entirely; we could also make it GONE
3240 // but better to remove it since we know it's not going to be used
3241 View progressBar = mAppsCustomizeTabHost.
3242 findViewById(R.id.apps_customize_progress_bar);
3243 if (progressBar != null) {
3244 ((ViewGroup)progressBar.getParent()).removeView(progressBar);
Winson Chung785d2eb2011-04-14 16:08:02 -07003245 }
Michael Jurkac57b7a82011-08-09 22:02:20 -07003246 // We just post the call to setApps so the user sees the progress bar
3247 // disappear-- otherwise, it just looks like the progress bar froze
3248 // which doesn't look great
3249 mAppsCustomizeTabHost.post(new Runnable() {
3250 public void run() {
3251 if (mAppsCustomizeContent != null) {
3252 mAppsCustomizeContent.setApps(apps);
3253 }
3254 }
3255 });
Joe Onorato9c1289c2009-08-17 11:03:03 -04003256 }
3257
3258 /**
3259 * A package was installed.
3260 *
3261 * Implementation of the method from LauncherModel.Callbacks.
3262 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003263 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003264 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003265 removeDialog(DIALOG_CREATE_SHORTCUT);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003266
Winson Chung785d2eb2011-04-14 16:08:02 -07003267 if (mAppsCustomizeContent != null) {
3268 mAppsCustomizeContent.addApps(apps);
3269 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003270 }
3271
3272 /**
3273 * A package was updated.
3274 *
3275 * Implementation of the method from LauncherModel.Callbacks.
3276 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003277 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003278 setLoadOnResume();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003279 removeDialog(DIALOG_CREATE_SHORTCUT);
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003280 if (mWorkspace != null) {
3281 mWorkspace.updateShortcuts(apps);
3282 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003283
Winson Chung785d2eb2011-04-14 16:08:02 -07003284 if (mAppsCustomizeContent != null) {
3285 mAppsCustomizeContent.updateApps(apps);
3286 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003287 }
3288
3289 /**
3290 * A package was uninstalled.
3291 *
3292 * Implementation of the method from LauncherModel.Callbacks.
3293 */
Joe Onorato36115782010-06-17 13:28:48 -04003294 public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003295 removeDialog(DIALOG_CREATE_SHORTCUT);
Joe Onorato36115782010-06-17 13:28:48 -04003296 if (permanent) {
3297 mWorkspace.removeItems(apps);
3298 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003299
Winson Chung785d2eb2011-04-14 16:08:02 -07003300 if (mAppsCustomizeContent != null) {
3301 mAppsCustomizeContent.removeApps(apps);
3302 }
Winson Chunga1820962011-10-03 16:31:06 -07003303
3304 // Notify the drag controller
3305 mDragController.onAppsRemoved(apps, this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003306 }
Joe Onoratobe386092009-11-17 17:32:16 -08003307
3308 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003309 * A number of packages were updated.
3310 */
3311 public void bindPackagesUpdated() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003312 if (mAppsCustomizeContent != null) {
3313 mAppsCustomizeContent.onPackagesUpdated();
3314 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003315 }
3316
Winson Chung400438b2011-01-16 17:53:48 -08003317 private int mapConfigurationOriActivityInfoOri(int configOri) {
3318 final Display d = getWindowManager().getDefaultDisplay();
3319 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3320 switch (d.getRotation()) {
3321 case Surface.ROTATION_0:
3322 case Surface.ROTATION_180:
3323 // We are currently in the same basic orientation as the natural orientation
3324 naturalOri = configOri;
3325 break;
3326 case Surface.ROTATION_90:
3327 case Surface.ROTATION_270:
3328 // We are currently in the other basic orientation to the natural orientation
3329 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3330 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3331 break;
3332 }
3333
3334 int[] oriMap = {
3335 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3336 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3337 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3338 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3339 };
3340 // Since the map starts at portrait, we need to offset if this device's natural orientation
3341 // is landscape.
3342 int indexOffset = 0;
3343 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3344 indexOffset = 1;
3345 }
3346 return oriMap[(d.getRotation() + indexOffset) % 4];
3347 }
Adam Cohen446e9402011-09-15 18:21:21 -07003348
3349 public void lockScreenOrientationOnLargeUI() {
3350 if (LauncherApplication.isScreenLarge()) {
3351 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3352 .getConfiguration().orientation));
3353 }
Winson Chung400438b2011-01-16 17:53:48 -08003354 }
Adam Cohen446e9402011-09-15 18:21:21 -07003355 public void unlockScreenOrientationOnLargeUI() {
3356 if (LauncherApplication.isScreenLarge()) {
3357 mHandler.postDelayed(new Runnable() {
3358 public void run() {
3359 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3360 }
3361 }, mRestoreScreenOrientationDelay);
3362 }
Winson Chung400438b2011-01-16 17:53:48 -08003363 }
3364
Winson Chung82f55532011-08-09 14:14:23 -07003365 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07003366 private static final String PREFS_KEY = "com.android.launcher2.prefs";
3367 private boolean isClingsEnabled() {
Brett Chabot2a9e2282011-08-23 15:03:13 -07003368 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07003369 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07003370
Winson Chung7d7541e2011-09-16 20:14:36 -07003371 return true;
Winson Chung82f55532011-08-09 14:14:23 -07003372 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003373 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
3374 Cling cling = (Cling) findViewById(clingId);
3375 if (cling != null) {
3376 cling.init(this, positionData);
3377 cling.setVisibility(View.VISIBLE);
3378 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3379 if (animate) {
3380 cling.buildLayer();
3381 cling.setAlpha(0f);
3382 cling.animate()
3383 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07003384 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07003385 .setDuration(SHOW_CLING_DURATION)
3386 .setStartDelay(delay)
3387 .start();
3388 } else {
3389 cling.setAlpha(1f);
3390 }
3391 }
3392 return cling;
3393 }
3394 private void dismissCling(final Cling cling, final String flag, int duration) {
Winson Chung82f55532011-08-09 14:14:23 -07003395 if (cling != null) {
3396 ObjectAnimator anim = ObjectAnimator.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07003397 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07003398 anim.addListener(new AnimatorListenerAdapter() {
3399 public void onAnimationEnd(Animator animation) {
3400 cling.setVisibility(View.GONE);
3401 cling.cleanup();
Winson Chung46353de2012-02-16 14:05:10 -08003402 // We should update the shared preferences on a background thread
3403 new Thread("dismissClingThread") {
3404 public void run() {
3405 SharedPreferences.Editor editor = mSharedPrefs.edit();
3406 editor.putBoolean(flag, true);
3407 editor.commit();
3408 }
3409 }.start();
Winson Chung82f55532011-08-09 14:14:23 -07003410 };
3411 });
3412 anim.start();
3413 }
3414 }
Winson Chung9d9d74f2011-09-19 11:49:12 -07003415 private void removeCling(int id) {
3416 final View cling = findViewById(id);
3417 if (cling != null) {
3418 final ViewGroup parent = (ViewGroup) cling.getParent();
3419 parent.post(new Runnable() {
3420 @Override
3421 public void run() {
3422 parent.removeView(cling);
3423 }
3424 });
3425 }
3426 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003427 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003428 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003429 if (isClingsEnabled() &&
3430 !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003431 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003432 } else {
3433 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003434 }
3435 }
3436 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003437 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003438 if (isClingsEnabled() &&
3439 !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003440 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003441 } else {
3442 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003443 }
3444 }
3445 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003446 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003447 if (isClingsEnabled() &&
3448 !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
3449 return initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003450 } else {
3451 removeCling(R.id.folder_cling);
Winson Chung46353de2012-02-16 14:05:10 -08003452 return null;
Winson Chung7d7541e2011-09-16 20:14:36 -07003453 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003454 }
3455 public boolean isFolderClingVisible() {
3456 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003457 if (cling != null) {
3458 return cling.getVisibility() == View.VISIBLE;
3459 }
3460 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07003461 }
Winson Chung82f55532011-08-09 14:14:23 -07003462 public void dismissWorkspaceCling(View v) {
3463 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003464 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003465 }
3466 public void dismissAllAppsCling(View v) {
3467 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003468 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
3469 }
3470 public void dismissFolderCling(View v) {
3471 Cling cling = (Cling) findViewById(R.id.folder_cling);
3472 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003473 }
3474
Winson Chung80baf5a2010-08-09 16:03:15 -07003475 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003476 * Prints out out state for debugging.
3477 */
3478 public void dumpState() {
3479 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003480 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003481 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3482 Log.d(TAG, "mRestoring=" + mRestoring);
3483 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3484 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003485 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003486 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003487
Winson Chung785d2eb2011-04-14 16:08:02 -07003488 if (mAppsCustomizeContent != null) {
3489 mAppsCustomizeContent.dumpState();
3490 }
Joe Onoratobe386092009-11-17 17:32:16 -08003491 Log.d(TAG, "END launcher2 dump state");
3492 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003493
3494 @Override
3495 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
3496 super.dump(prefix, fd, writer, args);
3497 writer.println(" ");
3498 writer.println("Debug logs: ");
3499 for (int i = 0; i < sDumpLogs.size(); i++) {
3500 writer.println(" " + sDumpLogs.get(i));
3501 }
3502 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003503}
Michael Jurka2763be32011-02-24 11:19:57 -08003504
Michael Jurkaabded662011-03-04 12:06:57 -08003505interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003506 View getContent();
Michael Jurkabed61d22012-02-14 22:51:29 -08003507 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08003508 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08003509 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08003510}