Launcher.java revision 70d721061536e0634f6cfa8cd219759a83befcee
1
2/*
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
18package com.android.launcher2;
19
20import android.animation.Animator;
21import android.animation.AnimatorListenerAdapter;
22import android.animation.AnimatorSet;
23import android.animation.ObjectAnimator;
24import android.animation.PropertyValuesHolder;
25import android.animation.ValueAnimator;
26import android.app.Activity;
27import android.app.AlertDialog;
28import android.app.Dialog;
29import android.app.SearchManager;
30import android.app.StatusBarManager;
31import android.appwidget.AppWidgetManager;
32import android.appwidget.AppWidgetProviderInfo;
33import android.content.ActivityNotFoundException;
34import android.content.BroadcastReceiver;
35import android.content.ClipData;
36import android.content.ClipDescription;
37import android.content.ComponentName;
38import android.content.ContentResolver;
39import android.content.Context;
40import android.content.DialogInterface;
41import android.content.Intent;
42import android.content.IntentFilter;
43import android.content.Intent.ShortcutIconResource;
44import android.content.pm.ActivityInfo;
45import android.content.pm.PackageManager;
46import android.content.pm.PackageManager.NameNotFoundException;
47import android.content.res.Configuration;
48import android.content.res.Resources;
49import android.database.ContentObserver;
50import android.graphics.Rect;
51import android.graphics.drawable.Drawable;
52import android.net.Uri;
53import android.os.AsyncTask;
54import android.os.Build;
55import android.os.Bundle;
56import android.os.Environment;
57import android.os.Handler;
58import android.os.Message;
59import android.os.SystemClock;
60import android.os.SystemProperties;
61import android.provider.Settings;
62import android.speech.RecognizerIntent;
63import android.text.Selection;
64import android.text.SpannableStringBuilder;
65import android.text.TextUtils;
66import android.text.method.TextKeyListener;
67import android.util.Log;
68import android.view.Display;
69import android.view.HapticFeedbackConstants;
70import android.view.KeyEvent;
71import android.view.LayoutInflater;
72import android.view.Menu;
73import android.view.MenuItem;
74import android.view.MotionEvent;
75import android.view.Surface;
76import android.view.View;
77import android.view.ViewGroup;
78import android.view.View.OnLongClickListener;
79import android.view.accessibility.AccessibilityEvent;
80import android.view.animation.DecelerateInterpolator;
81import android.view.inputmethod.InputMethodManager;
82import android.widget.Advanceable;
83import android.widget.EditText;
84import android.widget.ImageView;
85import android.widget.TextView;
86import android.widget.Toast;
87
88import com.android.common.Search;
89import com.android.launcher.R;
90
91import java.io.DataInputStream;
92import java.io.DataOutputStream;
93import java.io.FileNotFoundException;
94import java.io.IOException;
95import java.util.ArrayList;
96import java.util.HashMap;
97
98/**
99 * Default launcher application.
100 */
101public final class Launcher extends Activity
102        implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
103                   AllAppsView.Watcher, View.OnTouchListener {
104    static final String TAG = "Launcher";
105    static final boolean LOGD = false;
106
107    static final boolean PROFILE_STARTUP = false;
108    static final boolean DEBUG_WIDGETS = false;
109
110    private static final int MENU_GROUP_WALLPAPER = 1;
111    private static final int MENU_WALLPAPER_SETTINGS = Menu.FIRST + 1;
112    private static final int MENU_MANAGE_APPS = MENU_WALLPAPER_SETTINGS + 1;
113    private static final int MENU_HELP = MENU_MANAGE_APPS + 1;
114
115    private static final int REQUEST_CREATE_SHORTCUT = 1;
116    private static final int REQUEST_CREATE_APPWIDGET = 5;
117    private static final int REQUEST_PICK_APPLICATION = 6;
118    private static final int REQUEST_PICK_SHORTCUT = 7;
119    private static final int REQUEST_PICK_APPWIDGET = 9;
120    private static final int REQUEST_PICK_WALLPAPER = 10;
121
122    static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
123
124    static final int SCREEN_COUNT = 5;
125    static final int DEFAULT_SCREEN = 2;
126
127    static final int DIALOG_CREATE_SHORTCUT = 1;
128    static final int DIALOG_RENAME_FOLDER = 2;
129
130    private static final String PREFERENCES = "launcher.preferences";
131
132    // Type: int
133    private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
134    // Type: int
135    private static final String RUNTIME_STATE = "launcher.state";
136    // Type: int
137    private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
138    // Type: int
139    private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
140    // Type: int
141    private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
142    // Type: int
143    private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
144    // Type: boolean
145    private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
146    // Type: long
147    private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
148
149    private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
150
151    /** The different states that Launcher can be in. */
152    private enum State { WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
153    private State mState = State.WORKSPACE;
154    private AnimatorSet mStateAnimation;
155
156    static final int APPWIDGET_HOST_ID = 1024;
157    private static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
158    private static final int EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT = 600;
159
160    private static final Object sLock = new Object();
161    private static int sScreen = DEFAULT_SCREEN;
162
163    private final BroadcastReceiver mCloseSystemDialogsReceiver
164            = new CloseSystemDialogsIntentReceiver();
165    private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
166
167    private LayoutInflater mInflater;
168
169    private DragController mDragController;
170    private Workspace mWorkspace;
171
172    private AppWidgetManager mAppWidgetManager;
173    private LauncherAppWidgetHost mAppWidgetHost;
174
175    private ItemInfo mPendingAddInfo = new ItemInfo();
176    private int[] mTmpAddItemCellCoordinates = new int[2];
177
178    private FolderInfo mFolderInfo;
179
180    private Hotseat mHotseat;
181    private View mAllAppsButton;
182
183    private SearchDropTargetBar mSearchDeleteBar;
184    private AppsCustomizeTabHost mAppsCustomizeTabHost;
185    private AppsCustomizePagedView mAppsCustomizeContent;
186    private boolean mAutoAdvanceRunning = false;
187
188    private Bundle mSavedState;
189
190    private SpannableStringBuilder mDefaultKeySsb = null;
191
192    private boolean mWorkspaceLoading = true;
193
194    private boolean mPaused = true;
195    private boolean mRestoring;
196    private boolean mWaitingForResult;
197    private boolean mOnResumeNeedsLoad;
198
199    private Bundle mSavedInstanceState;
200
201    private LauncherModel mModel;
202    private IconCache mIconCache;
203    private boolean mUserPresent = true;
204    private boolean mVisible = false;
205    private boolean mAttached = false;
206
207    private static LocaleConfiguration sLocaleConfiguration = null;
208
209    private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
210
211    private Intent mAppMarketIntent = null;
212
213    // Related to the auto-advancing of widgets
214    private final int ADVANCE_MSG = 1;
215    private final int mAdvanceInterval = 20000;
216    private final int mAdvanceStagger = 250;
217    private long mAutoAdvanceSentTime;
218    private long mAutoAdvanceTimeLeft = -1;
219    private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
220        new HashMap<View, AppWidgetProviderInfo>();
221
222    // Determines how long to wait after a rotation before restoring the screen orientation to
223    // match the sensor state.
224    private final int mRestoreScreenOrientationDelay = 500;
225
226    // External icons saved in case of resource changes, orientation, etc.
227    private static Drawable.ConstantState sGlobalSearchIcon;
228    private static Drawable.ConstantState sVoiceSearchIcon;
229    private static Drawable.ConstantState sAppMarketIcon;
230
231    private DragLayer mDragLayer;
232
233    private BubbleTextView mWaitingForResume;
234
235    private static ArrayList<PendingAddArguments> sPendingAddList
236            = new ArrayList<PendingAddArguments>();
237
238    private static class PendingAddArguments {
239        int requestCode;
240        Intent intent;
241        long container;
242        int screen;
243        int cellX;
244        int cellY;
245    }
246
247    @Override
248    protected void onCreate(Bundle savedInstanceState) {
249        super.onCreate(savedInstanceState);
250        LauncherApplication app = ((LauncherApplication)getApplication());
251        mModel = app.setLauncher(this);
252        mIconCache = app.getIconCache();
253        mDragController = new DragController(this);
254        mInflater = getLayoutInflater();
255
256        mAppWidgetManager = AppWidgetManager.getInstance(this);
257        mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
258        mAppWidgetHost.startListening();
259
260        if (PROFILE_STARTUP) {
261            android.os.Debug.startMethodTracing(
262                    Environment.getExternalStorageDirectory() + "/launcher");
263        }
264
265        checkForLocaleChange();
266        setContentView(R.layout.launcher);
267        setupViews();
268
269        registerContentObservers();
270
271        lockAllApps();
272
273        mSavedState = savedInstanceState;
274        restoreState(mSavedState);
275
276        // Update customization drawer _after_ restoring the states
277        if (mAppsCustomizeContent != null) {
278            mAppsCustomizeContent.onPackagesUpdated();
279        }
280
281        if (PROFILE_STARTUP) {
282            android.os.Debug.stopMethodTracing();
283        }
284
285        if (!mRestoring) {
286            mModel.startLoader(this, true);
287        }
288
289        if (!mModel.isAllAppsLoaded()) {
290            ViewGroup appsCustomizeContentParent = (ViewGroup) mAppsCustomizeContent.getParent();
291            mInflater.inflate(R.layout.apps_customize_progressbar, appsCustomizeContentParent);
292        }
293
294        // For handling default keys
295        mDefaultKeySsb = new SpannableStringBuilder();
296        Selection.setSelection(mDefaultKeySsb, 0);
297
298        IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
299        registerReceiver(mCloseSystemDialogsReceiver, filter);
300
301        // If we have a saved version of these external icons, we load them up immediately
302        if (sGlobalSearchIcon == null || sVoiceSearchIcon == null || sAppMarketIcon == null) {
303            updateIconsAffectedByPackageManagerChanges();
304            updateGlobalSearchIcon();
305        }
306        if (sGlobalSearchIcon != null) {
307             updateGlobalSearchIcon(sGlobalSearchIcon);
308        }
309        if (sVoiceSearchIcon != null) {
310            updateVoiceSearchIcon(sVoiceSearchIcon);
311        }
312        if (sAppMarketIcon != null) {
313            updateAppMarketIcon(sAppMarketIcon);
314        }
315    }
316
317    private void checkForLocaleChange() {
318        if (sLocaleConfiguration == null) {
319            new AsyncTask<Void, Void, LocaleConfiguration>() {
320                @Override
321                protected LocaleConfiguration doInBackground(Void... unused) {
322                    LocaleConfiguration localeConfiguration = new LocaleConfiguration();
323                    readConfiguration(Launcher.this, localeConfiguration);
324                    return localeConfiguration;
325                }
326
327                @Override
328                protected void onPostExecute(LocaleConfiguration result) {
329                    sLocaleConfiguration = result;
330                    checkForLocaleChange();  // recursive, but now with a locale configuration
331                }
332            }.execute();
333            return;
334        }
335
336        final Configuration configuration = getResources().getConfiguration();
337
338        final String previousLocale = sLocaleConfiguration.locale;
339        final String locale = configuration.locale.toString();
340
341        final int previousMcc = sLocaleConfiguration.mcc;
342        final int mcc = configuration.mcc;
343
344        final int previousMnc = sLocaleConfiguration.mnc;
345        final int mnc = configuration.mnc;
346
347        boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
348
349        if (localeChanged) {
350            sLocaleConfiguration.locale = locale;
351            sLocaleConfiguration.mcc = mcc;
352            sLocaleConfiguration.mnc = mnc;
353
354            mIconCache.flush();
355
356            final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
357            new Thread("WriteLocaleConfiguration") {
358                @Override
359                public void run() {
360                    writeConfiguration(Launcher.this, localeConfiguration);
361                }
362            }.start();
363        }
364    }
365
366    private static class LocaleConfiguration {
367        public String locale;
368        public int mcc = -1;
369        public int mnc = -1;
370    }
371
372    private static void readConfiguration(Context context, LocaleConfiguration configuration) {
373        DataInputStream in = null;
374        try {
375            in = new DataInputStream(context.openFileInput(PREFERENCES));
376            configuration.locale = in.readUTF();
377            configuration.mcc = in.readInt();
378            configuration.mnc = in.readInt();
379        } catch (FileNotFoundException e) {
380            // Ignore
381        } catch (IOException e) {
382            // Ignore
383        } finally {
384            if (in != null) {
385                try {
386                    in.close();
387                } catch (IOException e) {
388                    // Ignore
389                }
390            }
391        }
392    }
393
394    private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
395        DataOutputStream out = null;
396        try {
397            out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
398            out.writeUTF(configuration.locale);
399            out.writeInt(configuration.mcc);
400            out.writeInt(configuration.mnc);
401            out.flush();
402        } catch (FileNotFoundException e) {
403            // Ignore
404        } catch (IOException e) {
405            //noinspection ResultOfMethodCallIgnored
406            context.getFileStreamPath(PREFERENCES).delete();
407        } finally {
408            if (out != null) {
409                try {
410                    out.close();
411                } catch (IOException e) {
412                    // Ignore
413                }
414            }
415        }
416    }
417
418    public DragLayer getDragLayer() {
419        return mDragLayer;
420    }
421
422    static int getScreen() {
423        synchronized (sLock) {
424            return sScreen;
425        }
426    }
427
428    static void setScreen(int screen) {
429        synchronized (sLock) {
430            sScreen = screen;
431        }
432    }
433
434    /**
435     * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
436     * a configuration step, this allows the proper animations to run after other transitions.
437     */
438    private boolean completeAdd(PendingAddArguments args) {
439        boolean result = false;
440        switch (args.requestCode) {
441            case REQUEST_PICK_APPLICATION:
442                completeAddApplication(args.intent, args.container, args.screen, args.cellX,
443                        args.cellY);
444                break;
445            case REQUEST_PICK_SHORTCUT:
446                processShortcut(args.intent);
447                break;
448            case REQUEST_CREATE_SHORTCUT:
449                completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
450                        args.cellY);
451                result = true;
452                break;
453            case REQUEST_PICK_APPWIDGET:
454                addAppWidgetFromPick(args.intent);
455                break;
456            case REQUEST_CREATE_APPWIDGET:
457                int appWidgetId = args.intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
458                completeAddAppWidget(appWidgetId, args.container, args.screen);
459                result = true;
460                break;
461            case REQUEST_PICK_WALLPAPER:
462                // We just wanted the activity result here so we can clear mWaitingForResult
463                break;
464        }
465        // In any situation where we have a multi-step drop, we should reset the add info only after
466        // we complete the drop
467        resetAddInfo();
468        return result;
469    }
470
471    @Override
472    protected void onActivityResult(final int requestCode, int resultCode, final Intent data) {
473        boolean delayExitSpringLoadedMode = false;
474        mWaitingForResult = false;
475
476        // The pattern used here is that a user PICKs a specific application,
477        // which, depending on the target, might need to CREATE the actual target.
478
479        // For example, the user would PICK_SHORTCUT for "Music playlist", and we
480        // launch over to the Music app to actually CREATE_SHORTCUT.
481        if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
482            final PendingAddArguments args = new PendingAddArguments();
483            args.requestCode = requestCode;
484            args.intent = data;
485            args.container = mPendingAddInfo.container;
486            args.screen = mPendingAddInfo.screen;
487            args.cellX = mPendingAddInfo.cellX;
488            args.cellY = mPendingAddInfo.cellY;
489
490            // If the loader is still running, defer the add until it is done.
491            if (isWorkspaceLocked()) {
492                sPendingAddList.add(args);
493            } else {
494                delayExitSpringLoadedMode = completeAdd(args);
495            }
496        } else if ((requestCode == REQUEST_PICK_APPWIDGET ||
497                requestCode == REQUEST_CREATE_APPWIDGET) && resultCode == RESULT_CANCELED) {
498            if (data != null) {
499                // Clean up the appWidgetId if we canceled
500                int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
501                if (appWidgetId != -1) {
502                    mAppWidgetHost.deleteAppWidgetId(appWidgetId);
503                }
504            }
505        }
506
507        // Exit spring loaded mode if necessary after cancelling the configuration of a widget
508        exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), delayExitSpringLoadedMode);
509    }
510
511    @Override
512    protected void onResume() {
513        super.onResume();
514        mPaused = false;
515        if (mRestoring || mOnResumeNeedsLoad) {
516            mWorkspaceLoading = true;
517            mModel.startLoader(this, true);
518            mRestoring = false;
519            mOnResumeNeedsLoad = false;
520        }
521        if (mWaitingForResume != null) {
522            mWaitingForResume.setStayPressed(false);
523        }
524        // When we resume Launcher, a different Activity might be responsible for the app
525        // market intent, so refresh the icon
526        updateAppMarketIcon();
527    }
528
529    @Override
530    protected void onPause() {
531        super.onPause();
532        mPaused = true;
533        mDragController.cancelDrag();
534    }
535
536    @Override
537    public Object onRetainNonConfigurationInstance() {
538        // Flag the loader to stop early before switching
539        mModel.stopLoader();
540        if (mAppsCustomizeContent != null) {
541            mAppsCustomizeContent.surrender();
542        }
543        return Boolean.TRUE;
544    }
545
546    // We can't hide the IME if it was forced open.  So don't bother
547    /*
548    @Override
549    public void onWindowFocusChanged(boolean hasFocus) {
550        super.onWindowFocusChanged(hasFocus);
551
552        if (hasFocus) {
553            final InputMethodManager inputManager = (InputMethodManager)
554                    getSystemService(Context.INPUT_METHOD_SERVICE);
555            WindowManager.LayoutParams lp = getWindow().getAttributes();
556            inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
557                        android.os.Handler()) {
558                        protected void onReceiveResult(int resultCode, Bundle resultData) {
559                            Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
560                        }
561                    });
562            Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
563        }
564    }
565    */
566
567    private boolean acceptFilter() {
568        final InputMethodManager inputManager = (InputMethodManager)
569                getSystemService(Context.INPUT_METHOD_SERVICE);
570        return !inputManager.isFullscreenMode();
571    }
572
573    @Override
574    public boolean onKeyDown(int keyCode, KeyEvent event) {
575        final int uniChar = event.getUnicodeChar();
576        final boolean handled = super.onKeyDown(keyCode, event);
577        final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
578        if (!handled && acceptFilter() && isKeyNotWhitespace) {
579            boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
580                    keyCode, event);
581            if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
582                // something usable has been typed - start a search
583                // the typed text will be retrieved and cleared by
584                // showSearchDialog()
585                // If there are multiple keystrokes before the search dialog takes focus,
586                // onSearchRequested() will be called for every keystroke,
587                // but it is idempotent, so it's fine.
588                return onSearchRequested();
589            }
590        }
591
592        // Eat the long press event so the keyboard doesn't come up.
593        if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
594            return true;
595        }
596
597        return handled;
598    }
599
600    private String getTypedText() {
601        return mDefaultKeySsb.toString();
602    }
603
604    private void clearTypedText() {
605        mDefaultKeySsb.clear();
606        mDefaultKeySsb.clearSpans();
607        Selection.setSelection(mDefaultKeySsb, 0);
608    }
609
610    /**
611     * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
612     * State
613     */
614    private static State intToState(int stateOrdinal) {
615        State state = State.WORKSPACE;
616        final State[] stateValues = State.values();
617        for (int i = 0; i < stateValues.length; i++) {
618            if (stateValues[i].ordinal() == stateOrdinal) {
619                state = stateValues[i];
620                break;
621            }
622        }
623        return state;
624    }
625
626    /**
627     * Restores the previous state, if it exists.
628     *
629     * @param savedState The previous state.
630     */
631    private void restoreState(Bundle savedState) {
632        if (savedState == null) {
633            return;
634        }
635
636        State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
637        if (state == State.APPS_CUSTOMIZE) {
638            showAllApps(false);
639        }
640
641        final int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
642        if (currentScreen > -1) {
643            mWorkspace.setCurrentPage(currentScreen);
644        }
645
646        final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
647        final int pendingAddScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
648
649        if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
650            mPendingAddInfo.container = pendingAddContainer;
651            mPendingAddInfo.screen = pendingAddScreen;
652            mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
653            mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
654            mRestoring = true;
655        }
656
657        boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
658        if (renameFolder) {
659            long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
660            mFolderInfo = mModel.getFolderById(this, sFolders, id);
661            mRestoring = true;
662        }
663
664
665        // Restore the AppsCustomize tab
666        if (mAppsCustomizeTabHost != null) {
667            String curTab = savedState.getString("apps_customize_currentTab");
668            if (curTab != null) {
669                // We set this directly so that there is no delay before the tab is set
670                mAppsCustomizeContent.setContentType(
671                        mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
672                mAppsCustomizeTabHost.setCurrentTabByTag(curTab);
673            }
674
675            // Note: currently we do not restore the page for the AppsCustomize pane because the
676            // change in layout can drastically affect the saved page index
677        }
678    }
679
680    /**
681     * Finds all the views we need and configure them properly.
682     */
683    private void setupViews() {
684        final DragController dragController = mDragController;
685
686        mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
687        mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
688
689        // Setup the drag layer
690        mDragLayer.setup(this, dragController);
691
692        // Setup the hotseat
693        mHotseat = (Hotseat) findViewById(R.id.hotseat);
694        if (mHotseat != null) {
695            mHotseat.setup(this);
696        }
697
698        // Setup the workspace
699        mWorkspace.setHapticFeedbackEnabled(false);
700        mWorkspace.setOnLongClickListener(this);
701        mWorkspace.setup(this, dragController);
702        dragController.addDragListener(mWorkspace);
703
704        // Get the search/delete bar
705        mSearchDeleteBar = (SearchDropTargetBar) mDragLayer.findViewById(R.id.qsb_bar);
706
707        // Setup AppsCustomize
708        mAppsCustomizeTabHost = (AppsCustomizeTabHost)
709                findViewById(R.id.apps_customize_pane);
710        mAppsCustomizeContent = (AppsCustomizePagedView)
711                mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
712        mAppsCustomizeContent.setup(this, dragController);
713
714
715
716        // Setup the drag controller (drop targets have to be added in reverse order in priority)
717        dragController.setDragScoller(mWorkspace);
718        dragController.setScrollView(mDragLayer);
719        dragController.setMoveTarget(mWorkspace);
720        dragController.addDropTarget(mWorkspace);
721        if (mSearchDeleteBar != null) {
722            mSearchDeleteBar.setup(this, dragController);
723        }
724    }
725
726
727
728    /**
729     * Creates a view representing a shortcut.
730     *
731     * @param info The data structure describing the shortcut.
732     *
733     * @return A View inflated from R.layout.application.
734     */
735    View createShortcut(ShortcutInfo info) {
736        return createShortcut(R.layout.application,
737                (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
738    }
739
740    /**
741     * Creates a view representing a shortcut inflated from the specified resource.
742     *
743     * @param layoutResId The id of the XML layout used to create the shortcut.
744     * @param parent The group the shortcut belongs to.
745     * @param info The data structure describing the shortcut.
746     *
747     * @return A View inflated from layoutResId.
748     */
749    View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
750        BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
751        favorite.applyFromShortcutInfo(info, mIconCache);
752        favorite.setOnClickListener(this);
753        return favorite;
754    }
755
756    /**
757     * Add an application shortcut to the workspace.
758     *
759     * @param data The intent describing the application.
760     * @param cellInfo The position on screen where to create the shortcut.
761     */
762    void completeAddApplication(Intent data, long container, int screen, int cellX, int cellY) {
763        final int[] cellXY = mTmpAddItemCellCoordinates;
764        final CellLayout layout = getCellLayout(container, screen);
765
766        // First we check if we already know the exact location where we want to add this item.
767        if (cellX >= 0 && cellY >= 0) {
768            cellXY[0] = cellX;
769            cellXY[1] = cellY;
770        } else if (!layout.findCellForSpan(cellXY, 1, 1)) {
771            showOutOfSpaceMessage();
772            return;
773        }
774
775        final ShortcutInfo info = mModel.getShortcutInfo(getPackageManager(), data, this);
776
777        if (info != null) {
778            info.setActivity(data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
779                    Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
780            info.container = ItemInfo.NO_ID;
781            mWorkspace.addApplicationShortcut(info, layout, container, screen, cellXY[0], cellXY[1],
782                    isWorkspaceLocked(), cellX, cellY);
783        } else {
784            Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
785        }
786    }
787
788    /**
789     * Add a shortcut to the workspace.
790     *
791     * @param data The intent describing the shortcut.
792     * @param cellInfo The position on screen where to create the shortcut.
793     */
794    private void completeAddShortcut(Intent data, long container, int screen, int cellX,
795            int cellY) {
796        int[] cellXY = mTmpAddItemCellCoordinates;
797        int[] touchXY = mPendingAddInfo.dropPos;
798        CellLayout layout = getCellLayout(container, screen);
799
800        boolean foundCellSpan = false;
801
802        // First we check if we already know the exact location where we want to add this item.
803        if (cellX >= 0 && cellY >= 0) {
804            cellXY[0] = cellX;
805            cellXY[1] = cellY;
806            foundCellSpan = true;
807        } else if (touchXY != null) {
808            // when dragging and dropping, just find the closest free spot
809            int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
810            foundCellSpan = (result != null);
811        } else {
812            foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
813        }
814
815        if (!foundCellSpan) {
816            showOutOfSpaceMessage();
817            return;
818        }
819
820        final ShortcutInfo info = mModel.addShortcut(
821                this, data, container, screen, cellXY[0], cellXY[1], false);
822
823        if (!mRestoring) {
824            final View view = createShortcut(info);
825            mWorkspace.addInScreen(view, container, screen, cellXY[0], cellXY[1], 1, 1,
826                    isWorkspaceLocked());
827        }
828    }
829
830    /**
831     * Add a widget to the workspace.
832     *
833     * @param appWidgetId The app widget id
834     * @param cellInfo The position on screen where to create the widget.
835     */
836    private void completeAddAppWidget(final int appWidgetId, long container, int screen) {
837        AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
838
839        // Calculate the grid spans needed to fit this widget
840        CellLayout layout = getCellLayout(container, screen);
841
842        // We want to account for the extra amount of padding that we are adding to the widget
843        // to ensure that it gets the full amount of space that it has requested
844        Resources r = getResources();
845        int requiredWidth = appWidgetInfo.minWidth +
846                r.getDimensionPixelSize(R.dimen.app_widget_padding_left) +
847                r.getDimensionPixelSize(R.dimen.app_widget_padding_right);
848        int requiredHeight = appWidgetInfo.minHeight +
849                r.getDimensionPixelSize(R.dimen.app_widget_padding_top) +
850                r.getDimensionPixelSize(R.dimen.app_widget_padding_bottom);
851        int[] spanXY = layout.rectToCell(requiredWidth, requiredHeight, null);
852
853        // Try finding open space on Launcher screen
854        // We have saved the position to which the widget was dragged-- this really only matters
855        // if we are placing widgets on a "spring-loaded" screen
856        int[] cellXY = mTmpAddItemCellCoordinates;
857        int[] touchXY = mPendingAddInfo.dropPos;
858        boolean foundCellSpan = false;
859        if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
860            cellXY[0] = mPendingAddInfo.cellX;
861            cellXY[1] = mPendingAddInfo.cellY;
862            foundCellSpan = true;
863        } else if (touchXY != null) {
864            // when dragging and dropping, just find the closest free spot
865            int[] result = layout.findNearestVacantArea(
866                    touchXY[0], touchXY[1], spanXY[0], spanXY[1], cellXY);
867            foundCellSpan = (result != null);
868        } else {
869            foundCellSpan = layout.findCellForSpan(cellXY, spanXY[0], spanXY[1]);
870        }
871
872        if (!foundCellSpan) {
873            if (appWidgetId != -1) {
874                // Deleting an app widget ID is a void call but writes to disk before returning
875                // to the caller...
876                new Thread("deleteAppWidgetId") {
877                    public void run() {
878                        mAppWidgetHost.deleteAppWidgetId(appWidgetId);
879                    }
880                }.start();
881            }
882            showOutOfSpaceMessage();
883            return;
884        }
885
886        // Build Launcher-specific widget info and save to database
887        LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId);
888        launcherInfo.spanX = spanXY[0];
889        launcherInfo.spanY = spanXY[1];
890
891        LauncherModel.addItemToDatabase(this, launcherInfo,
892                container, screen, cellXY[0], cellXY[1], false);
893
894        if (!mRestoring) {
895            // Perform actual inflation because we're live
896            launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
897
898            launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
899            launcherInfo.hostView.setTag(launcherInfo);
900
901            mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1],
902                    launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
903
904            addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
905        }
906    }
907
908    private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
909        @Override
910        public void onReceive(Context context, Intent intent) {
911            final String action = intent.getAction();
912            if (Intent.ACTION_SCREEN_OFF.equals(action)) {
913                mUserPresent = false;
914                mDragLayer.clearAllResizeFrames();
915                updateRunning();
916
917                // Reset AllApps to its initial state only if we are not in the middle of
918                // processing a multi-step drop
919                if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
920                    mAppsCustomizeTabHost.reset();
921                    showWorkspace(false);
922                }
923            } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
924                mUserPresent = true;
925                updateRunning();
926            }
927        }
928    };
929
930    @Override
931    public void onAttachedToWindow() {
932        super.onAttachedToWindow();
933
934        // Listen for broadcasts related to user-presence
935        final IntentFilter filter = new IntentFilter();
936        filter.addAction(Intent.ACTION_SCREEN_OFF);
937        filter.addAction(Intent.ACTION_USER_PRESENT);
938        registerReceiver(mReceiver, filter);
939
940        mAttached = true;
941        mVisible = true;
942    }
943
944    @Override
945    public void onDetachedFromWindow() {
946        super.onDetachedFromWindow();
947        mVisible = false;
948        mDragLayer.clearAllResizeFrames();
949
950        if (mAttached) {
951            unregisterReceiver(mReceiver);
952            mAttached = false;
953        }
954        updateRunning();
955    }
956
957    public void onWindowVisibilityChanged(int visibility) {
958        mVisible = visibility == View.VISIBLE;
959        updateRunning();
960    }
961
962    private void sendAdvanceMessage(long delay) {
963        mHandler.removeMessages(ADVANCE_MSG);
964        Message msg = mHandler.obtainMessage(ADVANCE_MSG);
965        mHandler.sendMessageDelayed(msg, delay);
966        mAutoAdvanceSentTime = System.currentTimeMillis();
967    }
968
969    private void updateRunning() {
970        boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
971        if (autoAdvanceRunning != mAutoAdvanceRunning) {
972            mAutoAdvanceRunning = autoAdvanceRunning;
973            if (autoAdvanceRunning) {
974                long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
975                sendAdvanceMessage(delay);
976            } else {
977                if (!mWidgetsToAdvance.isEmpty()) {
978                    mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
979                            (System.currentTimeMillis() - mAutoAdvanceSentTime));
980                }
981                mHandler.removeMessages(ADVANCE_MSG);
982                mHandler.removeMessages(0); // Remove messages sent using postDelayed()
983            }
984        }
985    }
986
987    private final Handler mHandler = new Handler() {
988        @Override
989        public void handleMessage(Message msg) {
990            if (msg.what == ADVANCE_MSG) {
991                int i = 0;
992                for (View key: mWidgetsToAdvance.keySet()) {
993                    final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
994                    final int delay = mAdvanceStagger * i;
995                    if (v instanceof Advanceable) {
996                       postDelayed(new Runnable() {
997                           public void run() {
998                               ((Advanceable) v).advance();
999                           }
1000                       }, delay);
1001                    }
1002                    i++;
1003                }
1004                sendAdvanceMessage(mAdvanceInterval);
1005            }
1006        }
1007    };
1008
1009    void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
1010        if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
1011        View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1012        if (v instanceof Advanceable) {
1013            mWidgetsToAdvance.put(hostView, appWidgetInfo);
1014            ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
1015            updateRunning();
1016        }
1017    }
1018
1019    void removeWidgetToAutoAdvance(View hostView) {
1020        if (mWidgetsToAdvance.containsKey(hostView)) {
1021            mWidgetsToAdvance.remove(hostView);
1022            updateRunning();
1023        }
1024    }
1025
1026    public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
1027        removeWidgetToAutoAdvance(launcherInfo.hostView);
1028        launcherInfo.hostView = null;
1029    }
1030
1031    void showOutOfSpaceMessage() {
1032        Toast.makeText(this, getString(R.string.out_of_space), Toast.LENGTH_SHORT).show();
1033    }
1034
1035    public LauncherAppWidgetHost getAppWidgetHost() {
1036        return mAppWidgetHost;
1037    }
1038
1039    public LauncherModel getModel() {
1040        return mModel;
1041    }
1042
1043    void closeSystemDialogs() {
1044        getWindow().closeAllPanels();
1045
1046        try {
1047            dismissDialog(DIALOG_CREATE_SHORTCUT);
1048            // Unlock the workspace if the dialog was showing
1049        } catch (Exception e) {
1050            // An exception is thrown if the dialog is not visible, which is fine
1051        }
1052
1053        try {
1054            dismissDialog(DIALOG_RENAME_FOLDER);
1055            // Unlock the workspace if the dialog was showing
1056        } catch (Exception e) {
1057            // An exception is thrown if the dialog is not visible, which is fine
1058        }
1059
1060        // Whatever we were doing is hereby canceled.
1061        mWaitingForResult = false;
1062    }
1063
1064    @Override
1065    protected void onNewIntent(Intent intent) {
1066        super.onNewIntent(intent);
1067
1068        // Close the menu
1069        if (Intent.ACTION_MAIN.equals(intent.getAction())) {
1070            // also will cancel mWaitingForResult.
1071            closeSystemDialogs();
1072
1073            closeFolder();
1074
1075            boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1076                        != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1077
1078            // In all these cases, only animate if we're already on home
1079            mWorkspace.exitWidgetResizeMode();
1080            if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive()) {
1081                mWorkspace.moveToDefaultScreen(true);
1082            }
1083            exitSpringLoadedDragMode();
1084            showWorkspace(alreadyOnHome);
1085
1086            final View v = getWindow().peekDecorView();
1087            if (v != null && v.getWindowToken() != null) {
1088                InputMethodManager imm = (InputMethodManager)getSystemService(
1089                        INPUT_METHOD_SERVICE);
1090                imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1091            }
1092
1093            // Reset AllApps to its initial state
1094            if (mAppsCustomizeTabHost != null) {
1095                mAppsCustomizeTabHost.reset();
1096            }
1097        }
1098    }
1099
1100    @Override
1101    protected void onRestoreInstanceState(Bundle savedInstanceState) {
1102        // Do not call super here
1103        mSavedInstanceState = savedInstanceState;
1104    }
1105
1106    @Override
1107    protected void onSaveInstanceState(Bundle outState) {
1108        outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getCurrentPage());
1109        super.onSaveInstanceState(outState);
1110
1111        outState.putInt(RUNTIME_STATE, mState.ordinal());
1112        // We close any open folder since it will not be re-opened, and we need to make sure
1113        // this state is reflected.
1114        closeFolder();
1115
1116        if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screen > -1 &&
1117                mWaitingForResult) {
1118            outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
1119            outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screen);
1120            outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1121            outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
1122        }
1123
1124        if (mFolderInfo != null && mWaitingForResult) {
1125            outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1126            outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1127        }
1128
1129        // Save the current AppsCustomize tab
1130        if (mAppsCustomizeTabHost != null) {
1131            String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1132            if (currentTabTag != null) {
1133                outState.putString("apps_customize_currentTab", currentTabTag);
1134            }
1135        }
1136    }
1137
1138    @Override
1139    public void onDestroy() {
1140        super.onDestroy();
1141
1142        // Remove all pending runnables
1143        mHandler.removeMessages(ADVANCE_MSG);
1144        mHandler.removeMessages(0);
1145
1146        // Stop callbacks from LauncherModel
1147        LauncherApplication app = ((LauncherApplication) getApplication());
1148        mModel.stopLoader();
1149        app.setLauncher(null);
1150
1151        try {
1152            mAppWidgetHost.stopListening();
1153        } catch (NullPointerException ex) {
1154            Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
1155        }
1156        mAppWidgetHost = null;
1157
1158        mWidgetsToAdvance.clear();
1159
1160        TextKeyListener.getInstance().release();
1161
1162
1163        unbindWorkspaceAndHotseatItems();
1164
1165        getContentResolver().unregisterContentObserver(mWidgetObserver);
1166        unregisterReceiver(mCloseSystemDialogsReceiver);
1167
1168        ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1169        mWorkspace.removeAllViews();
1170        mWorkspace = null;
1171        mDragController = null;
1172
1173        ValueAnimator.clearAllAnimations();
1174    }
1175
1176    public DragController getDragController() {
1177        return mDragController;
1178    }
1179
1180    @Override
1181    public void startActivityForResult(Intent intent, int requestCode) {
1182        if (requestCode >= 0) mWaitingForResult = true;
1183        super.startActivityForResult(intent, requestCode);
1184    }
1185
1186    /**
1187     * Indicates that we want global search for this activity by setting the globalSearch
1188     * argument for {@link #startSearch} to true.
1189     */
1190    @Override
1191    public void startSearch(String initialQuery, boolean selectInitialQuery,
1192            Bundle appSearchData, boolean globalSearch) {
1193
1194        showWorkspace(true);
1195
1196        if (initialQuery == null) {
1197            // Use any text typed in the launcher as the initial query
1198            initialQuery = getTypedText();
1199            clearTypedText();
1200        }
1201        if (appSearchData == null) {
1202            appSearchData = new Bundle();
1203            appSearchData.putString(Search.SOURCE, "launcher-search");
1204        }
1205
1206        final SearchManager searchManager =
1207                (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1208        searchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
1209            appSearchData, globalSearch);
1210    }
1211
1212    @Override
1213    public boolean onCreateOptionsMenu(Menu menu) {
1214        if (isWorkspaceLocked()) {
1215            return false;
1216        }
1217
1218        super.onCreateOptionsMenu(menu);
1219        menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1220            .setIcon(android.R.drawable.ic_menu_gallery)
1221            .setAlphabeticShortcut('W');
1222        menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1223            .setIcon(android.R.drawable.ic_menu_manage)
1224            .setAlphabeticShortcut('M');
1225        menu.add(0, MENU_HELP, 0, R.string.menu_help)
1226            .setIcon(android.R.drawable.ic_menu_help)
1227            .setAlphabeticShortcut('H');
1228        return true;
1229    }
1230
1231    @Override
1232    public boolean onPrepareOptionsMenu(Menu menu) {
1233        super.onPrepareOptionsMenu(menu);
1234
1235        if (mAppsCustomizeTabHost.isTransitioning()) {
1236            return false;
1237        }
1238        boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1239        menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1240
1241        return true;
1242    }
1243
1244    @Override
1245    public boolean onOptionsItemSelected(MenuItem item) {
1246        switch (item.getItemId()) {
1247        case MENU_WALLPAPER_SETTINGS:
1248            startWallpaper();
1249            return true;
1250        case MENU_MANAGE_APPS:
1251            manageApps();
1252            return true;
1253        case MENU_HELP:
1254            startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(getString(R.string.help_url))));
1255            return true;
1256        }
1257
1258        return super.onOptionsItemSelected(item);
1259    }
1260
1261    @Override
1262    public boolean onSearchRequested() {
1263        startSearch(null, false, null, true);
1264        // Use a custom animation for launching search
1265        overridePendingTransition(R.anim.fade_in_fast, R.anim.fade_out_fast);
1266        return true;
1267    }
1268
1269    public boolean isWorkspaceLocked() {
1270        return mWorkspaceLoading || mWaitingForResult;
1271    }
1272
1273    private void addItems() {
1274        showWorkspace(true);
1275        showAddDialog();
1276    }
1277
1278    private void resetAddInfo() {
1279        mPendingAddInfo.container = ItemInfo.NO_ID;
1280        mPendingAddInfo.screen = -1;
1281        mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1282        mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
1283        mPendingAddInfo.dropPos = null;
1284    }
1285
1286    private void manageApps() {
1287        startActivity(new Intent(android.provider.Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS));
1288    }
1289
1290    void addAppWidgetFromPick(Intent data) {
1291        // TODO: catch bad widget exception when sent
1292        int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
1293        // TODO: Is this log message meaningful?
1294        if (LOGD) Log.d(TAG, "dumping extras content=" + data.getExtras());
1295        addAppWidgetImpl(appWidgetId, null);
1296    }
1297
1298    void addAppWidgetImpl(int appWidgetId, PendingAddWidgetInfo info) {
1299        AppWidgetProviderInfo appWidget = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1300
1301        if (appWidget.configure != null) {
1302            // Launch over to configure widget, if needed
1303            Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
1304            intent.setComponent(appWidget.configure);
1305            intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1306            if (info != null) {
1307                if (info.mimeType != null && !info.mimeType.isEmpty()) {
1308                    intent.putExtra(
1309                            InstallWidgetReceiver.EXTRA_APPWIDGET_CONFIGURATION_DATA_MIME_TYPE,
1310                            info.mimeType);
1311
1312                    final String mimeType = info.mimeType;
1313                    final ClipData clipData = (ClipData) info.configurationData;
1314                    final ClipDescription clipDesc = clipData.getDescription();
1315                    for (int i = 0; i < clipDesc.getMimeTypeCount(); ++i) {
1316                        if (clipDesc.getMimeType(i).equals(mimeType)) {
1317                            final ClipData.Item item = clipData.getItemAt(i);
1318                            final CharSequence stringData = item.getText();
1319                            final Uri uriData = item.getUri();
1320                            final Intent intentData = item.getIntent();
1321                            final String key =
1322                                InstallWidgetReceiver.EXTRA_APPWIDGET_CONFIGURATION_DATA;
1323                            if (uriData != null) {
1324                                intent.putExtra(key, uriData);
1325                            } else if (intentData != null) {
1326                                intent.putExtra(key, intentData);
1327                            } else if (stringData != null) {
1328                                intent.putExtra(key, stringData);
1329                            }
1330                            break;
1331                        }
1332                    }
1333                }
1334            }
1335
1336            startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
1337        } else {
1338            // Otherwise just add it
1339            completeAddAppWidget(appWidgetId, info.container, info.screen);
1340
1341            // Exit spring loaded mode if necessary after adding the widget
1342            exitSpringLoadedDragModeDelayed(true, false);
1343        }
1344    }
1345
1346    /**
1347     * Process a shortcut drop.
1348     *
1349     * @param componentName The name of the component
1350     * @param screen The screen where it should be added
1351     * @param cell The cell it should be added to, optional
1352     * @param position The location on the screen where it was dropped, optional
1353     */
1354    void processShortcutFromDrop(ComponentName componentName, long container, int screen,
1355            int[] cell, int[] loc) {
1356        resetAddInfo();
1357        mPendingAddInfo.container = container;
1358        mPendingAddInfo.screen = screen;
1359        mPendingAddInfo.dropPos = loc;
1360
1361        if (cell != null) {
1362            mPendingAddInfo.cellX = cell[0];
1363            mPendingAddInfo.cellY = cell[1];
1364        }
1365
1366        Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1367        createShortcutIntent.setComponent(componentName);
1368        processShortcut(createShortcutIntent);
1369    }
1370
1371    /**
1372     * Process a widget drop.
1373     *
1374     * @param info The PendingAppWidgetInfo of the widget being added.
1375     * @param screen The screen where it should be added
1376     * @param cell The cell it should be added to, optional
1377     * @param position The location on the screen where it was dropped, optional
1378     */
1379    void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen,
1380            int[] cell, int[] loc) {
1381        resetAddInfo();
1382        mPendingAddInfo.container = info.container = container;
1383        mPendingAddInfo.screen = info.screen = screen;
1384        mPendingAddInfo.dropPos = loc;
1385        if (cell != null) {
1386            mPendingAddInfo.cellX = cell[0];
1387            mPendingAddInfo.cellY = cell[1];
1388        }
1389
1390        int appWidgetId = getAppWidgetHost().allocateAppWidgetId();
1391        AppWidgetManager.getInstance(this).bindAppWidgetId(appWidgetId, info.componentName);
1392        addAppWidgetImpl(appWidgetId, info);
1393    }
1394
1395    void processShortcut(Intent intent) {
1396        // Handle case where user selected "Applications"
1397        String applicationName = getResources().getString(R.string.group_applications);
1398        String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
1399
1400        if (applicationName != null && applicationName.equals(shortcutName)) {
1401            Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1402            mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
1403
1404            Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1405            pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
1406            pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
1407            startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
1408        } else {
1409            startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
1410        }
1411    }
1412
1413    void processWallpaper(Intent intent) {
1414        startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1415    }
1416
1417    FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX,
1418            int cellY) {
1419        final FolderInfo folderInfo = new FolderInfo();
1420        folderInfo.title = getText(R.string.folder_name);
1421
1422        // Update the model
1423        LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screen, cellX, cellY,
1424                false);
1425        sFolders.put(folderInfo.id, folderInfo);
1426
1427        // Create the view
1428        FolderIcon newFolder =
1429            FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
1430        mWorkspace.addInScreen(newFolder, container, screen, cellX, cellY, 1, 1,
1431                isWorkspaceLocked());
1432        return newFolder;
1433    }
1434
1435    void removeFolder(FolderInfo folder) {
1436        sFolders.remove(folder.id);
1437    }
1438
1439    private void showNotifications() {
1440        final StatusBarManager statusBar = (StatusBarManager) getSystemService(STATUS_BAR_SERVICE);
1441        if (statusBar != null) {
1442            statusBar.expand();
1443        }
1444    }
1445
1446    private void startWallpaper() {
1447        showWorkspace(true);
1448        final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
1449        Intent chooser = Intent.createChooser(pickWallpaper,
1450                getText(R.string.chooser_wallpaper));
1451        // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1452        //       Removed in Eclair MR1
1453//        WallpaperManager wm = (WallpaperManager)
1454//                getSystemService(Context.WALLPAPER_SERVICE);
1455//        WallpaperInfo wi = wm.getWallpaperInfo();
1456//        if (wi != null && wi.getSettingsActivity() != null) {
1457//            LabeledIntent li = new LabeledIntent(getPackageName(),
1458//                    R.string.configure_wallpaper, 0);
1459//            li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1460//            chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1461//        }
1462        startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
1463    }
1464
1465    /**
1466     * Registers various content observers. The current implementation registers
1467     * only a favorites observer to keep track of the favorites applications.
1468     */
1469    private void registerContentObservers() {
1470        ContentResolver resolver = getContentResolver();
1471        resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1472                true, mWidgetObserver);
1473    }
1474
1475    @Override
1476    public boolean dispatchKeyEvent(KeyEvent event) {
1477        if (event.getAction() == KeyEvent.ACTION_DOWN) {
1478            switch (event.getKeyCode()) {
1479                case KeyEvent.KEYCODE_HOME:
1480                    return true;
1481                case KeyEvent.KEYCODE_VOLUME_DOWN:
1482                    if (SystemProperties.getInt("debug.launcher2.dumpstate", 0) != 0) {
1483                        dumpState();
1484                        return true;
1485                    }
1486                    break;
1487            }
1488        } else if (event.getAction() == KeyEvent.ACTION_UP) {
1489            switch (event.getKeyCode()) {
1490                case KeyEvent.KEYCODE_HOME:
1491                    return true;
1492            }
1493        }
1494
1495        return super.dispatchKeyEvent(event);
1496    }
1497
1498    @Override
1499    public void onBackPressed() {
1500        if (mState == State.APPS_CUSTOMIZE) {
1501            showWorkspace(true);
1502        } else if (mWorkspace.getOpenFolder() != null) {
1503            Folder openFolder = mWorkspace.getOpenFolder();
1504            if (openFolder.isEditingName()) {
1505                openFolder.dismissEditingName();
1506            } else {
1507                closeFolder();
1508            }
1509        } else {
1510            mWorkspace.exitWidgetResizeMode();
1511
1512            // Back button is a no-op here, but give at least some feedback for the button press
1513            mWorkspace.showOutlinesTemporarily();
1514        }
1515    }
1516
1517    /**
1518     * Re-listen when widgets are reset.
1519     */
1520    private void onAppWidgetReset() {
1521        if (mAppWidgetHost != null) {
1522            mAppWidgetHost.startListening();
1523        }
1524    }
1525
1526    /**
1527     * Go through the and disconnect any of the callbacks in the drawables and the views or we
1528     * leak the previous Home screen on orientation change.
1529     */
1530    private void unbindWorkspaceAndHotseatItems() {
1531        LauncherModel.unbindWorkspaceItems();
1532    }
1533
1534    /**
1535     * Launches the intent referred by the clicked shortcut.
1536     *
1537     * @param v The view representing the clicked shortcut.
1538     */
1539    public void onClick(View v) {
1540        // Make sure that rogue clicks don't get through while allapps is launching, or after the
1541        // view has detached (it's possible for this to happen if the view is removed mid touch).
1542        if (v.getWindowToken() == null) {
1543            return;
1544        }
1545
1546        if (mWorkspace.isSwitchingState()) {
1547            return;
1548        }
1549
1550        Object tag = v.getTag();
1551        if (tag instanceof ShortcutInfo) {
1552            // Open shortcut
1553            final Intent intent = ((ShortcutInfo) tag).intent;
1554            int[] pos = new int[2];
1555            v.getLocationOnScreen(pos);
1556            intent.setSourceBounds(new Rect(pos[0], pos[1],
1557                    pos[0] + v.getWidth(), pos[1] + v.getHeight()));
1558            boolean success = startActivitySafely(intent, tag);
1559
1560            if (success && v instanceof BubbleTextView) {
1561                mWaitingForResume = (BubbleTextView) v;
1562                mWaitingForResume.setStayPressed(true);
1563            }
1564        } else if (tag instanceof FolderInfo) {
1565            if (v instanceof FolderIcon) {
1566                FolderIcon fi = (FolderIcon) v;
1567                handleFolderClick(fi);
1568            }
1569        } else if (v == mAllAppsButton) {
1570            if (mState == State.APPS_CUSTOMIZE) {
1571                showWorkspace(true);
1572            } else {
1573                showAllApps(true);
1574            }
1575        }
1576    }
1577
1578    public boolean onTouch(View v, MotionEvent event) {
1579        // this is an intercepted event being forwarded from mWorkspace;
1580        // clicking anywhere on the workspace causes the customization drawer to slide down
1581        showWorkspace(true);
1582        return false;
1583    }
1584
1585    /**
1586     * Event handler for the search button
1587     *
1588     * @param v The view that was clicked.
1589     */
1590    public void onClickSearchButton(View v) {
1591        onSearchRequested();
1592    }
1593
1594    /**
1595     * Event handler for the voice button
1596     *
1597     * @param v The view that was clicked.
1598     */
1599    public void onClickVoiceButton(View v) {
1600        startVoiceSearch();
1601    }
1602
1603    private void startVoiceSearch() {
1604        Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
1605        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1606        startActivity(intent);
1607    }
1608
1609    /**
1610     * Event handler for the "grid" button that appears on the home screen, which
1611     * enters all apps mode.
1612     *
1613     * @param v The view that was clicked.
1614     */
1615    public void onClickAllAppsButton(View v) {
1616        showAllApps(true);
1617    }
1618
1619    public void onClickAppMarketButton(View v) {
1620        if (mAppMarketIntent != null) {
1621            startActivitySafely(mAppMarketIntent, "app market");
1622        }
1623    }
1624
1625    void startApplicationDetailsActivity(ComponentName componentName) {
1626        String packageName = componentName.getPackageName();
1627        Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
1628                Uri.fromParts("package", packageName, null));
1629        startActivity(intent);
1630    }
1631
1632    void startApplicationUninstallActivity(ApplicationInfo appInfo) {
1633        if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
1634            // System applications cannot be installed. For now, show a toast explaining that.
1635            // We may give them the option of disabling apps this way.
1636            int messageId = R.string.uninstall_system_app_text;
1637            Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
1638        } else {
1639            String packageName = appInfo.componentName.getPackageName();
1640            String className = appInfo.componentName.getClassName();
1641            Intent intent = new Intent(
1642                    Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
1643            startActivity(intent);
1644        }
1645    }
1646
1647    boolean startActivitySafely(Intent intent, Object tag) {
1648        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1649        try {
1650            startActivity(intent);
1651            return true;
1652        } catch (ActivityNotFoundException e) {
1653            Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1654            Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
1655        } catch (SecurityException e) {
1656            Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1657            Log.e(TAG, "Launcher does not have the permission to launch " + intent +
1658                    ". Make sure to create a MAIN intent-filter for the corresponding activity " +
1659                    "or use the exported attribute for this activity. "
1660                    + "tag="+ tag + " intent=" + intent, e);
1661        }
1662        return false;
1663    }
1664
1665    void startActivityForResultSafely(Intent intent, int requestCode) {
1666        try {
1667            startActivityForResult(intent, requestCode);
1668        } catch (ActivityNotFoundException e) {
1669            Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1670        } catch (SecurityException e) {
1671            Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1672            Log.e(TAG, "Launcher does not have the permission to launch " + intent +
1673                    ". Make sure to create a MAIN intent-filter for the corresponding activity " +
1674                    "or use the exported attribute for this activity.", e);
1675        }
1676    }
1677
1678    private void handleFolderClick(FolderIcon folderIcon) {
1679        final FolderInfo info = folderIcon.mInfo;
1680        if (!info.opened) {
1681            // Close any open folder
1682            closeFolder();
1683            // Open the requested folder
1684            openFolder(folderIcon);
1685        } else {
1686            // Find the open folder...
1687            Folder openFolder = mWorkspace.getFolderForTag(info);
1688            int folderScreen;
1689            if (openFolder != null) {
1690                folderScreen = mWorkspace.getPageForView(openFolder);
1691                // .. and close it
1692                closeFolder(openFolder);
1693                if (folderScreen != mWorkspace.getCurrentPage()) {
1694                    // Close any folder open on the current screen
1695                    closeFolder();
1696                    // Pull the folder onto this screen
1697                    openFolder(folderIcon);
1698                }
1699            }
1700        }
1701    }
1702
1703    private void growAndFadeOutFolderIcon(FolderIcon fi) {
1704        if (fi == null) return;
1705        PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
1706        PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
1707        PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
1708
1709        FolderInfo info = (FolderInfo) fi.getTag();
1710        if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1711            CellLayout cl = (CellLayout) fi.getParent().getParent();
1712            cl.setFolderLeaveBehindCell(info.cellX, info.cellY);
1713        }
1714
1715        ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
1716        oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
1717        oa.start();
1718    }
1719
1720    private void shrinkAndFadeInFolderIcon(FolderIcon fi) {
1721        if (fi == null) return;
1722        PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
1723        PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
1724        PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
1725
1726        FolderInfo info = (FolderInfo) fi.getTag();
1727        CellLayout cl = null;
1728        if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1729            cl = (CellLayout) fi.getParent().getParent();
1730        }
1731
1732        final CellLayout layout = cl;
1733        ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
1734        oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
1735        oa.addListener(new AnimatorListenerAdapter() {
1736            @Override
1737            public void onAnimationEnd(Animator animation) {
1738                if (layout != null) {
1739                    layout.clearFolderLeaveBehind();
1740                }
1741            }
1742        });
1743        oa.start();
1744    }
1745
1746    /**
1747     * Opens the user folder described by the specified tag. The opening of the folder
1748     * is animated relative to the specified View. If the View is null, no animation
1749     * is played.
1750     *
1751     * @param folderInfo The FolderInfo describing the folder to open.
1752     */
1753    public void openFolder(FolderIcon folderIcon) {
1754        Folder folder = folderIcon.mFolder;
1755        FolderInfo info = folder.mInfo;
1756
1757        growAndFadeOutFolderIcon(folderIcon);
1758        info.opened = true;
1759
1760        // Just verify that the folder hasn't already been added to the DragLayer.
1761        // There was a one-off crash where the folder had a parent already.
1762        if (folder.getParent() == null) {
1763            mDragLayer.addView(folder);
1764            mDragController.addDropTarget((DropTarget) folder);
1765        } else {
1766            Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
1767                    folder.getParent() + ").");
1768        }
1769        folder.animateOpen();
1770    }
1771
1772    public void closeFolder() {
1773        Folder folder = mWorkspace.getOpenFolder();
1774        if (folder != null) {
1775            closeFolder(folder);
1776        }
1777    }
1778
1779    void closeFolder(Folder folder) {
1780        folder.getInfo().opened = false;
1781
1782        ViewGroup parent = (ViewGroup) folder.getParent().getParent();
1783        if (parent != null) {
1784            FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
1785            shrinkAndFadeInFolderIcon(fi);
1786        }
1787        folder.animateClosed();
1788    }
1789
1790    public boolean onLongClick(View v) {
1791        if (mState != State.WORKSPACE) {
1792            return false;
1793        }
1794
1795        if (isWorkspaceLocked()) {
1796            return false;
1797        }
1798
1799        if (!(v instanceof CellLayout)) {
1800            v = (View) v.getParent().getParent();
1801        }
1802
1803        resetAddInfo();
1804        CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
1805        // This happens when long clicking an item with the dpad/trackball
1806        if (longClickCellInfo == null) {
1807            return true;
1808        }
1809
1810        // The hotseat touch handling does not go through Workspace, and we always allow long press
1811        // on hotseat items.
1812        final View itemUnderLongClick = longClickCellInfo.cell;
1813        boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
1814        if (allowLongPress && !mDragController.isDragging()) {
1815            if (itemUnderLongClick == null) {
1816                // User long pressed on empty space
1817                mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
1818                        HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
1819                startWallpaper();
1820            } else {
1821                if (!(itemUnderLongClick instanceof Folder)) {
1822                    // User long pressed on an item
1823                    mWorkspace.startDrag(longClickCellInfo);
1824                }
1825            }
1826        }
1827        return true;
1828    }
1829
1830    boolean isHotseatLayout(View layout) {
1831        return mHotseat != null && layout != null &&
1832                (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
1833    }
1834    Hotseat getHotseat() {
1835        return mHotseat;
1836    }
1837
1838    /**
1839     * Returns the CellLayout of the specified container at the specified screen.
1840     */
1841    CellLayout getCellLayout(long container, int screen) {
1842        if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1843            if (mHotseat != null) {
1844                return mHotseat.getLayout();
1845            } else {
1846                return null;
1847            }
1848        } else {
1849            return (CellLayout) mWorkspace.getChildAt(screen);
1850        }
1851    }
1852
1853    Workspace getWorkspace() {
1854        return mWorkspace;
1855    }
1856
1857    @Override
1858    protected Dialog onCreateDialog(int id) {
1859        switch (id) {
1860            case DIALOG_CREATE_SHORTCUT:
1861                return new CreateShortcut().createDialog();
1862            case DIALOG_RENAME_FOLDER:
1863                return new RenameFolder().createDialog();
1864        }
1865
1866        return super.onCreateDialog(id);
1867    }
1868
1869    @Override
1870    protected void onPrepareDialog(int id, Dialog dialog) {
1871        switch (id) {
1872            case DIALOG_CREATE_SHORTCUT:
1873                break;
1874            case DIALOG_RENAME_FOLDER:
1875                if (mFolderInfo != null) {
1876                    EditText input = (EditText) dialog.findViewById(R.id.folder_name);
1877                    final CharSequence text = mFolderInfo.title;
1878                    input.setText(text);
1879                    input.setSelection(0, text.length());
1880                }
1881                break;
1882        }
1883    }
1884
1885    void showRenameDialog(FolderInfo info) {
1886        mFolderInfo = info;
1887        mWaitingForResult = true;
1888        showDialog(DIALOG_RENAME_FOLDER);
1889    }
1890
1891    private void showAddDialog() {
1892        resetAddInfo();
1893        mPendingAddInfo.container = LauncherSettings.Favorites.CONTAINER_DESKTOP;
1894        mPendingAddInfo.screen = mWorkspace.getCurrentPage();
1895        mWaitingForResult = true;
1896        showDialog(DIALOG_CREATE_SHORTCUT);
1897    }
1898
1899    private class RenameFolder {
1900        private EditText mInput;
1901
1902        Dialog createDialog() {
1903            final View layout = View.inflate(Launcher.this, R.layout.rename_folder, null);
1904            mInput = (EditText) layout.findViewById(R.id.folder_name);
1905
1906            AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this);
1907            builder.setIcon(0);
1908            builder.setTitle(getString(R.string.rename_folder_title));
1909            builder.setCancelable(true);
1910            builder.setOnCancelListener(new Dialog.OnCancelListener() {
1911                public void onCancel(DialogInterface dialog) {
1912                    cleanup();
1913                }
1914            });
1915            builder.setNegativeButton(getString(R.string.cancel_action),
1916                new Dialog.OnClickListener() {
1917                    public void onClick(DialogInterface dialog, int which) {
1918                        cleanup();
1919                    }
1920                }
1921            );
1922            builder.setPositiveButton(getString(R.string.rename_action),
1923                new Dialog.OnClickListener() {
1924                    public void onClick(DialogInterface dialog, int which) {
1925                        changeFolderName();
1926                    }
1927                }
1928            );
1929            builder.setView(layout);
1930
1931            final AlertDialog dialog = builder.create();
1932            dialog.setOnShowListener(new DialogInterface.OnShowListener() {
1933                public void onShow(DialogInterface dialog) {
1934                    mWaitingForResult = true;
1935                    mInput.requestFocus();
1936                    InputMethodManager inputManager = (InputMethodManager)
1937                            getSystemService(Context.INPUT_METHOD_SERVICE);
1938                    inputManager.showSoftInput(mInput, 0);
1939                }
1940            });
1941
1942            return dialog;
1943        }
1944
1945        private void changeFolderName() {
1946            final String name = mInput.getText().toString();
1947            if (!TextUtils.isEmpty(name)) {
1948                // Make sure we have the right folder info
1949                mFolderInfo = sFolders.get(mFolderInfo.id);
1950                mFolderInfo.title = name;
1951                LauncherModel.updateItemInDatabase(Launcher.this, mFolderInfo);
1952
1953                if (mWorkspaceLoading) {
1954                    lockAllApps();
1955                    mModel.startLoader(Launcher.this, false);
1956                } else {
1957                    final FolderIcon folderIcon = (FolderIcon)
1958                            mWorkspace.getViewForTag(mFolderInfo);
1959                    if (folderIcon != null) {
1960                        // TODO: At some point we'll probably want some version of setting
1961                        // the text for a folder icon.
1962                        //folderIcon.setText(name);
1963                        getWorkspace().requestLayout();
1964                    } else {
1965                        lockAllApps();
1966                        mWorkspaceLoading = true;
1967                        mModel.startLoader(Launcher.this, false);
1968                    }
1969                }
1970            }
1971            cleanup();
1972        }
1973
1974        private void cleanup() {
1975            dismissDialog(DIALOG_RENAME_FOLDER);
1976            mWaitingForResult = false;
1977            mFolderInfo = null;
1978        }
1979    }
1980
1981    // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
1982    public boolean isAllAppsVisible() {
1983        return (mState == State.APPS_CUSTOMIZE);
1984    }
1985
1986    // AllAppsView.Watcher
1987    public void zoomed(float zoom) {
1988        if (zoom == 1.0f) {
1989            mWorkspace.setVisibility(View.GONE);
1990        }
1991    }
1992
1993    /**
1994     * Helper method for the cameraZoomIn/cameraZoomOut animations
1995     * @param view The view being animated
1996     * @param state The state that we are moving in or out of (eg. APPS_CUSTOMIZE)
1997     * @param scaleFactor The scale factor used for the zoom
1998     */
1999    private void setPivotsForZoom(View view, State state, float scaleFactor) {
2000        final int height = view.getHeight();
2001
2002        view.setPivotX(view.getWidth() / 2.0f);
2003        // Set pivotY so that at the starting zoom factor, the view is partially
2004        // visible. Modifying initialHeightFactor changes how much of the view is
2005        // initially showing, and hence the perceived angle from which the view enters.
2006        if (state == State.APPS_CUSTOMIZE) {
2007            final float initialHeightFactor = 0.175f;
2008            view.setPivotY((1 - initialHeightFactor) * height);
2009        } else {
2010            final float initialHeightFactor = 0.2f;
2011            view.setPivotY(-initialHeightFactor * height);
2012        }
2013    }
2014
2015    /**
2016     * Zoom the camera out from the workspace to reveal 'toView'.
2017     * Assumes that the view to show is anchored at either the very top or very bottom
2018     * of the screen.
2019     * @param toState The state to zoom out to. Must be APPS_CUSTOMIZE.
2020     */
2021    private void cameraZoomOut(State toState, boolean animated, final boolean springLoaded) {
2022        final Resources res = getResources();
2023
2024        final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2025        final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2026        final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2027        final View toView = mAppsCustomizeTabHost;
2028
2029        setPivotsForZoom(toView, toState, scale);
2030
2031        // Shrink workspaces away if going to AppsCustomize from workspace
2032        mWorkspace.shrink(Workspace.State.SMALL, animated);
2033        hideHotseat(animated);
2034
2035        if (animated) {
2036            final ValueAnimator scaleAnim = ValueAnimator.ofFloat(0f, 1f).setDuration(duration);
2037            scaleAnim.setInterpolator(new Workspace.ZoomOutInterpolator());
2038            scaleAnim.addUpdateListener(new LauncherAnimatorUpdateListener() {
2039                public void onAnimationUpdate(float a, float b) {
2040                    ((View) toView.getParent()).fastInvalidate();
2041                    toView.setFastScaleX(a * scale + b * 1f);
2042                    toView.setFastScaleY(a * scale + b * 1f);
2043                }
2044            });
2045
2046            toView.setVisibility(View.VISIBLE);
2047            toView.setFastAlpha(0f);
2048            ValueAnimator alphaAnim = ValueAnimator.ofFloat(0f, 1f).setDuration(fadeDuration);
2049            alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
2050            alphaAnim.addUpdateListener(new LauncherAnimatorUpdateListener() {
2051                public void onAnimationUpdate(float a, float b) {
2052                    // don't need to invalidate because we do so above
2053                    toView.setFastAlpha(a * 0f + b * 1f);
2054                }
2055            });
2056            alphaAnim.start();
2057
2058            if (toView instanceof LauncherTransitionable) {
2059                ((LauncherTransitionable) toView).onLauncherTransitionStart(scaleAnim, false);
2060            }
2061            scaleAnim.addListener(new AnimatorListenerAdapter() {
2062                @Override
2063                public void onAnimationStart(Animator animation) {
2064                    // Prepare the position
2065                    toView.setTranslationX(0.0f);
2066                    toView.setTranslationY(0.0f);
2067                    toView.setVisibility(View.VISIBLE);
2068                    toView.bringToFront();
2069                }
2070                @Override
2071                public void onAnimationEnd(Animator animation) {
2072                    // If we don't set the final scale values here, if this animation is cancelled
2073                    // it will have the wrong scale value and subsequent cameraPan animations will
2074                    // not fix that
2075                    toView.setScaleX(1.0f);
2076                    toView.setScaleY(1.0f);
2077                    if (toView instanceof LauncherTransitionable) {
2078                        ((LauncherTransitionable) toView).onLauncherTransitionEnd(scaleAnim, false);
2079                    }
2080
2081                    if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2082                        // Hide the workspace scrollbar
2083                        mWorkspace.hideScrollingIndicator(true);
2084                        mWorkspace.hideDockDivider(true);
2085                    }
2086                }
2087            });
2088
2089            // toView should appear right at the end of the workspace shrink animation
2090            final int startDelay = 0;
2091
2092            if (mStateAnimation != null) mStateAnimation.cancel();
2093            mStateAnimation = new AnimatorSet();
2094            mStateAnimation.play(scaleAnim).after(startDelay);
2095            mStateAnimation.start();
2096        } else {
2097            toView.setTranslationX(0.0f);
2098            toView.setTranslationY(0.0f);
2099            toView.setScaleX(1.0f);
2100            toView.setScaleY(1.0f);
2101            toView.setVisibility(View.VISIBLE);
2102            toView.bringToFront();
2103            if (toView instanceof LauncherTransitionable) {
2104                ((LauncherTransitionable) toView).onLauncherTransitionStart(null, false);
2105                ((LauncherTransitionable) toView).onLauncherTransitionEnd(null, false);
2106
2107                if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2108                    // Hide the workspace scrollbar
2109                    mWorkspace.hideScrollingIndicator(true);
2110                    mWorkspace.hideDockDivider(true);
2111                }
2112            }
2113        }
2114    }
2115
2116    /**
2117     * Zoom the camera back into the workspace, hiding 'fromView'.
2118     * This is the opposite of cameraZoomOut.
2119     * @param fromState The current state (must be APPS_CUSTOMIZE).
2120     * @param animated If true, the transition will be animated.
2121     */
2122    private void cameraZoomIn(State fromState, boolean animated, final boolean springLoaded) {
2123        Resources res = getResources();
2124
2125        final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
2126        final float scaleFactor = (float)
2127                res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2128        final View fromView = mAppsCustomizeTabHost;
2129
2130        setPivotsForZoom(fromView, fromState, scaleFactor);
2131
2132        if (!springLoaded) {
2133            mWorkspace.unshrink(animated);
2134        }
2135        showHotseat(animated);
2136        if (animated) {
2137            if (mStateAnimation != null) mStateAnimation.cancel();
2138            mStateAnimation = new AnimatorSet();
2139
2140            final float oldScaleX = fromView.getScaleX();
2141            final float oldScaleY = fromView.getScaleY();
2142
2143            ValueAnimator scaleAnim = ValueAnimator.ofFloat(0f, 1f).setDuration(duration);
2144            scaleAnim.setInterpolator(new Workspace.ZoomInInterpolator());
2145            scaleAnim.addUpdateListener(new LauncherAnimatorUpdateListener() {
2146                public void onAnimationUpdate(float a, float b) {
2147                    ((View)fromView.getParent()).fastInvalidate();
2148                    fromView.setFastScaleX(a * oldScaleX + b * scaleFactor);
2149                    fromView.setFastScaleY(a * oldScaleY + b * scaleFactor);
2150                }
2151            });
2152            final ValueAnimator alphaAnim = ValueAnimator.ofFloat(0f, 1f);
2153            alphaAnim.setDuration(res.getInteger(R.integer.config_appsCustomizeFadeOutTime));
2154            alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
2155            alphaAnim.addUpdateListener(new LauncherAnimatorUpdateListener() {
2156                public void onAnimationUpdate(float a, float b) {
2157                    // don't need to invalidate because we do so above
2158                    fromView.setFastAlpha(a * 1f + b * 0f);
2159                }
2160            });
2161            if (fromView instanceof LauncherTransitionable) {
2162                ((LauncherTransitionable) fromView).onLauncherTransitionStart(alphaAnim, true);
2163            }
2164            alphaAnim.addListener(new AnimatorListenerAdapter() {
2165                @Override
2166                public void onAnimationStart(android.animation.Animator animation) {
2167                    if (!springLoaded) {
2168                        mWorkspace.showDockDivider(false);
2169                    }
2170                    mWorkspace.showScrollingIndicator(false);
2171                }
2172                @Override
2173                public void onAnimationEnd(Animator animation) {
2174                    fromView.setVisibility(View.GONE);
2175                    if (fromView instanceof LauncherTransitionable) {
2176                        ((LauncherTransitionable) fromView).onLauncherTransitionEnd(alphaAnim,true);
2177                    }
2178                    mWorkspace.hideScrollingIndicator(false);
2179                }
2180            });
2181
2182            mStateAnimation.playTogether(scaleAnim, alphaAnim);
2183            mStateAnimation.start();
2184        } else {
2185            fromView.setVisibility(View.GONE);
2186            if (fromView instanceof LauncherTransitionable) {
2187                ((LauncherTransitionable) fromView).onLauncherTransitionStart(null, true);
2188                ((LauncherTransitionable) fromView).onLauncherTransitionEnd(null, true);
2189
2190                if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2191                    // Flash the workspace scrollbar
2192                    mWorkspace.showDockDivider(true);
2193                    mWorkspace.flashScrollingIndicator();
2194                }
2195            }
2196        }
2197    }
2198
2199    void showWorkspace(boolean animated) {
2200        showWorkspace(animated, null);
2201    }
2202
2203    void showWorkspace(boolean animated, CellLayout layout) {
2204        if (layout != null) {
2205            // always animated, but that's ok since we never specify a layout and
2206            // want no animation
2207            mWorkspace.unshrink(layout);
2208        } else {
2209            mWorkspace.unshrink(animated);
2210        }
2211        if (mState == State.APPS_CUSTOMIZE) {
2212            closeAllApps(animated);
2213        }
2214
2215        // Change the state *after* we've called all the transition code
2216        mState = State.WORKSPACE;
2217
2218        // Resume the auto-advance of widgets
2219        mUserPresent = true;
2220        updateRunning();
2221
2222        // send an accessibility event to announce the context change
2223        getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
2224    }
2225
2226    void enterSpringLoadedDragMode(CellLayout layout) {
2227        if (mState == State.APPS_CUSTOMIZE) {
2228            mWorkspace.enterSpringLoadedDragMode(layout);
2229            cameraZoomIn(State.APPS_CUSTOMIZE, true, true);
2230            mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
2231        }
2232        // Otherwise, we are not in spring loaded mode, so don't do anything.
2233    }
2234    void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay) {
2235        mHandler.postDelayed(new Runnable() {
2236            @Override
2237            public void run() {
2238                exitSpringLoadedDragMode();
2239
2240                if (successfulDrop) {
2241                    // Before we show workspace, hide all apps again because
2242                    // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2243                    // clean up our state transition functions
2244                    mAppsCustomizeTabHost.setVisibility(View.GONE);
2245                    showWorkspace(true);
2246                }
2247            }
2248        }, (extendedDelay ?
2249                EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2250                EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2251    }
2252    void exitSpringLoadedDragMode() {
2253        if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2254            mWorkspace.exitSpringLoadedDragMode(Workspace.State.SMALL);
2255            cameraZoomOut(State.APPS_CUSTOMIZE, true, true);
2256            mState = State.APPS_CUSTOMIZE;
2257        }
2258        // Otherwise, we are not in spring loaded mode, so don't do anything.
2259    }
2260
2261    public boolean isAllAppsCustomizeOpen() {
2262        return mState == State.APPS_CUSTOMIZE;
2263    }
2264
2265    /**
2266     * Shows the hotseat area.
2267     */
2268    void showHotseat(boolean animated) {
2269        if (!LauncherApplication.isScreenLarge()) {
2270            if (animated) {
2271                int duration = mSearchDeleteBar.getTransitionInDuration();
2272                mHotseat.animate().alpha(1f).setDuration(duration);
2273            } else {
2274                mHotseat.setAlpha(1f);
2275            }
2276        }
2277    }
2278
2279    /**
2280     * Hides the hotseat area.
2281     */
2282    void hideHotseat(boolean animated) {
2283        if (!LauncherApplication.isScreenLarge()) {
2284            if (animated) {
2285                int duration = mSearchDeleteBar.getTransitionOutDuration();
2286                mHotseat.animate().alpha(0f).setDuration(duration);
2287            } else {
2288                mHotseat.setAlpha(0f);
2289            }
2290        }
2291    }
2292
2293    void showAllApps(boolean animated) {
2294        if (mState != State.WORKSPACE) return;
2295
2296        cameraZoomOut(State.APPS_CUSTOMIZE, animated, false);
2297        mAppsCustomizeTabHost.requestFocus();
2298
2299        // Hide the search bar and hotseat
2300        mSearchDeleteBar.hideSearchBar(animated);
2301
2302        // Change the state *after* we've called all the transition code
2303        mState = State.APPS_CUSTOMIZE;
2304
2305        // Pause the auto-advance of widgets until we are out of AllApps
2306        mUserPresent = false;
2307        updateRunning();
2308        closeFolder();
2309
2310        // Send an accessibility event to announce the context change
2311        getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
2312    }
2313
2314    /**
2315     * Things to test when changing this code.
2316     *   - Home from workspace
2317     *          - from center screen
2318     *          - from other screens
2319     *   - Home from all apps
2320     *          - from center screen
2321     *          - from other screens
2322     *   - Back from all apps
2323     *          - from center screen
2324     *          - from other screens
2325     *   - Launch app from workspace and quit
2326     *          - with back
2327     *          - with home
2328     *   - Launch app from all apps and quit
2329     *          - with back
2330     *          - with home
2331     *   - Go to a screen that's not the default, then all
2332     *     apps, and launch and app, and go back
2333     *          - with back
2334     *          -with home
2335     *   - On workspace, long press power and go back
2336     *          - with back
2337     *          - with home
2338     *   - On all apps, long press power and go back
2339     *          - with back
2340     *          - with home
2341     *   - On workspace, power off
2342     *   - On all apps, power off
2343     *   - Launch an app and turn off the screen while in that app
2344     *          - Go back with home key
2345     *          - Go back with back key  TODO: make this not go to workspace
2346     *          - From all apps
2347     *          - From workspace
2348     *   - Enter and exit car mode (becuase it causes an extra configuration changed)
2349     *          - From all apps
2350     *          - From the center workspace
2351     *          - From another workspace
2352     */
2353    void closeAllApps(boolean animated) {
2354        if (mState == State.APPS_CUSTOMIZE || mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2355            mWorkspace.setVisibility(View.VISIBLE);
2356            cameraZoomIn(State.APPS_CUSTOMIZE, animated, false);
2357
2358            // Show the search bar and hotseat
2359            mSearchDeleteBar.showSearchBar(animated);
2360
2361            // Set focus to the AppsCustomize button
2362            if (mAllAppsButton != null) {
2363                mAllAppsButton.requestFocus();
2364            }
2365        }
2366    }
2367
2368    void lockAllApps() {
2369        // TODO
2370    }
2371
2372    void unlockAllApps() {
2373        // TODO
2374    }
2375
2376    /**
2377     * Add an item from all apps or customize onto the given workspace screen.
2378     * If layout is null, add to the current screen.
2379     */
2380    void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
2381        if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
2382            showOutOfSpaceMessage();
2383        } else {
2384            layout.animateDrop();
2385        }
2386    }
2387
2388    private Drawable getExternalPackageToolbarIcon(ComponentName activityName) {
2389        try {
2390            PackageManager packageManager = getPackageManager();
2391            // Look for the toolbar icon specified in the activity meta-data
2392            Bundle metaData = packageManager.getActivityInfo(
2393                    activityName, PackageManager.GET_META_DATA).metaData;
2394            if (metaData != null) {
2395                int iconResId = metaData.getInt(TOOLBAR_ICON_METADATA_NAME);
2396                if (iconResId != 0) {
2397                    Resources res = packageManager.getResourcesForActivity(activityName);
2398                    return res.getDrawable(iconResId);
2399                }
2400            }
2401        } catch (NameNotFoundException e) {
2402            // This can happen if the activity defines an invalid drawable
2403            Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
2404                    " not found", e);
2405        } catch (Resources.NotFoundException nfe) {
2406            // This can happen if the activity defines an invalid drawable
2407            Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
2408                    nfe);
2409        }
2410        return null;
2411    }
2412
2413    // if successful in getting icon, return it; otherwise, set button to use default drawable
2414    private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
2415            int buttonId, ComponentName activityName, int fallbackDrawableId) {
2416        TextView button = (TextView) findViewById(buttonId);
2417        Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName);
2418
2419        // If we were unable to find the icon via the meta-data, use a generic one
2420        if (toolbarIcon == null) {
2421            button.setCompoundDrawablesWithIntrinsicBounds(fallbackDrawableId, 0, 0, 0);
2422            return null;
2423        } else {
2424            button.setCompoundDrawablesWithIntrinsicBounds(toolbarIcon, null, null, null);
2425            return toolbarIcon.getConstantState();
2426        }
2427    }
2428
2429    // if successful in getting icon, return it; otherwise, set button to use default drawable
2430    private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
2431            int buttonId, ComponentName activityName, int fallbackDrawableId) {
2432        ImageView button = (ImageView) findViewById(buttonId);
2433        Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName);
2434
2435        if (button != null) {
2436            // If we were unable to find the icon via the meta-data, use a
2437            // generic one
2438            if (toolbarIcon == null) {
2439                button.setImageResource(fallbackDrawableId);
2440            } else {
2441                button.setImageDrawable(toolbarIcon);
2442            }
2443        }
2444
2445        return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
2446
2447    }
2448
2449    private void updateTextButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
2450        TextView button = (TextView) findViewById(buttonId);
2451        button.setCompoundDrawables(d.newDrawable(getResources()), null, null, null);
2452    }
2453
2454    private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
2455        ImageView button = (ImageView) findViewById(buttonId);
2456        button.setImageDrawable(d.newDrawable(getResources()));
2457    }
2458
2459    private void updateGlobalSearchIcon() {
2460        final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
2461        final View searchDivider = findViewById(R.id.search_divider);
2462
2463        final SearchManager searchManager =
2464                (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2465        ComponentName activityName = searchManager.getGlobalSearchActivity();
2466        if (activityName != null) {
2467            sGlobalSearchIcon = updateButtonWithIconFromExternalActivity(
2468                    R.id.search_button, activityName, R.drawable.ic_search_normal_holo);
2469            searchButton.setVisibility(View.VISIBLE);
2470            if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
2471        } else {
2472            searchButton.setVisibility(View.GONE);
2473            if (searchDivider != null) searchDivider.setVisibility(View.GONE);
2474        }
2475    }
2476
2477    private void updateGlobalSearchIcon(Drawable.ConstantState d) {
2478        updateButtonWithDrawable(R.id.search_button, d);
2479    }
2480
2481    private void updateVoiceSearchIcon() {
2482        final View searchDivider = findViewById(R.id.search_divider);
2483        final View voiceButton = findViewById(R.id.voice_button);
2484
2485        Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2486        ComponentName activityName = intent.resolveActivity(getPackageManager());
2487        if (activityName != null) {
2488            sVoiceSearchIcon = updateButtonWithIconFromExternalActivity(
2489                    R.id.voice_button, activityName, R.drawable.ic_voice_search_holo);
2490            if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
2491            voiceButton.setVisibility(View.VISIBLE);
2492        } else {
2493            if (searchDivider != null) searchDivider.setVisibility(View.GONE);
2494            voiceButton.setVisibility(View.GONE);
2495        }
2496    }
2497
2498    private void updateVoiceSearchIcon(Drawable.ConstantState d) {
2499        updateButtonWithDrawable(R.id.voice_button, d);
2500    }
2501
2502    /**
2503     * Sets the app market icon
2504     */
2505    private void updateAppMarketIcon() {
2506        final View marketButton = findViewById(R.id.market_button);
2507        Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
2508        // Find the app market activity by resolving an intent.
2509        // (If multiple app markets are installed, it will return the ResolverActivity.)
2510        ComponentName activityName = intent.resolveActivity(getPackageManager());
2511        if (activityName != null) {
2512            mAppMarketIntent = intent;
2513            sAppMarketIcon = updateTextButtonWithIconFromExternalActivity(
2514                    R.id.market_button, activityName, R.drawable.ic_launcher_market_holo);
2515            marketButton.setVisibility(View.VISIBLE);
2516        } else {
2517            // We should hide and disable the view so that we don't try and restore the visibility
2518            // of it when we swap between drag & normal states from IconDropTarget subclasses.
2519            marketButton.setVisibility(View.GONE);
2520            marketButton.setEnabled(false);
2521        }
2522    }
2523
2524    private void updateAppMarketIcon(Drawable.ConstantState d) {
2525        updateTextButtonWithDrawable(R.id.market_button, d);
2526    }
2527
2528    /**
2529     * Displays the shortcut creation dialog and launches, if necessary, the
2530     * appropriate activity.
2531     */
2532    private class CreateShortcut implements DialogInterface.OnClickListener,
2533            DialogInterface.OnCancelListener, DialogInterface.OnDismissListener,
2534            DialogInterface.OnShowListener {
2535
2536        private AddAdapter mAdapter;
2537
2538        Dialog createDialog() {
2539            mAdapter = new AddAdapter(Launcher.this);
2540
2541            final AlertDialog.Builder builder = new AlertDialog.Builder(Launcher.this,
2542                    AlertDialog.THEME_HOLO_DARK);
2543            builder.setAdapter(mAdapter, this);
2544
2545            AlertDialog dialog = builder.create();
2546            dialog.setOnCancelListener(this);
2547            dialog.setOnDismissListener(this);
2548            dialog.setOnShowListener(this);
2549
2550            return dialog;
2551        }
2552
2553        public void onCancel(DialogInterface dialog) {
2554            mWaitingForResult = false;
2555            cleanup();
2556        }
2557
2558        public void onDismiss(DialogInterface dialog) {
2559            mWaitingForResult = false;
2560            cleanup();
2561        }
2562
2563        private void cleanup() {
2564            try {
2565                dismissDialog(DIALOG_CREATE_SHORTCUT);
2566            } catch (Exception e) {
2567                // An exception is thrown if the dialog is not visible, which is fine
2568            }
2569        }
2570
2571        /**
2572         * Handle the action clicked in the "Add to home" dialog.
2573         */
2574        public void onClick(DialogInterface dialog, int which) {
2575            cleanup();
2576
2577            AddAdapter.ListItem item = (AddAdapter.ListItem) mAdapter.getItem(which);
2578            switch (item.actionTag) {
2579                case AddAdapter.ITEM_APPLICATION: {
2580                    if (mAppsCustomizeTabHost != null) {
2581                        mAppsCustomizeTabHost.selectAppsTab();
2582                    }
2583                    showAllApps(true);
2584                    break;
2585                }
2586                case AddAdapter.ITEM_APPWIDGET: {
2587                    if (mAppsCustomizeTabHost != null) {
2588                        mAppsCustomizeTabHost.selectWidgetsTab();
2589                    }
2590                    showAllApps(true);
2591                    break;
2592                }
2593                case AddAdapter.ITEM_WALLPAPER: {
2594                    startWallpaper();
2595                    break;
2596                }
2597            }
2598        }
2599
2600        public void onShow(DialogInterface dialog) {
2601            mWaitingForResult = true;
2602        }
2603    }
2604
2605    /**
2606     * Receives notifications when system dialogs are to be closed.
2607     */
2608    private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
2609        @Override
2610        public void onReceive(Context context, Intent intent) {
2611            closeSystemDialogs();
2612        }
2613    }
2614
2615    /**
2616     * Receives notifications whenever the appwidgets are reset.
2617     */
2618    private class AppWidgetResetObserver extends ContentObserver {
2619        public AppWidgetResetObserver() {
2620            super(new Handler());
2621        }
2622
2623        @Override
2624        public void onChange(boolean selfChange) {
2625            onAppWidgetReset();
2626        }
2627    }
2628
2629    /**
2630     * If the activity is currently paused, signal that we need to re-run the loader
2631     * in onResume.
2632     *
2633     * This needs to be called from incoming places where resources might have been loaded
2634     * while we are paused.  That is becaues the Configuration might be wrong
2635     * when we're not running, and if it comes back to what it was when we
2636     * were paused, we are not restarted.
2637     *
2638     * Implementation of the method from LauncherModel.Callbacks.
2639     *
2640     * @return true if we are currently paused.  The caller might be able to
2641     * skip some work in that case since we will come back again.
2642     */
2643    public boolean setLoadOnResume() {
2644        if (mPaused) {
2645            Log.i(TAG, "setLoadOnResume");
2646            mOnResumeNeedsLoad = true;
2647            return true;
2648        } else {
2649            return false;
2650        }
2651    }
2652
2653    /**
2654     * Implementation of the method from LauncherModel.Callbacks.
2655     */
2656    public int getCurrentWorkspaceScreen() {
2657        if (mWorkspace != null) {
2658            return mWorkspace.getCurrentPage();
2659        } else {
2660            return SCREEN_COUNT / 2;
2661        }
2662    }
2663
2664
2665    /**
2666     * Refreshes the shortcuts shown on the workspace.
2667     *
2668     * Implementation of the method from LauncherModel.Callbacks.
2669     */
2670    public void startBinding() {
2671        final Workspace workspace = mWorkspace;
2672
2673        mWorkspace.clearDropTargets();
2674        int count = workspace.getChildCount();
2675        for (int i = 0; i < count; i++) {
2676            // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
2677            final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
2678            layoutParent.removeAllViewsInLayout();
2679        }
2680        if (mHotseat != null) {
2681            mHotseat.resetLayout();
2682        }
2683
2684        // This wasn't being called before which resulted in a leak of AppWidgetHostViews
2685        unbindWorkspaceAndHotseatItems();
2686    }
2687
2688    /**
2689     * Bind the items start-end from the list.
2690     *
2691     * Implementation of the method from LauncherModel.Callbacks.
2692     */
2693    public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
2694        setLoadOnResume();
2695
2696        final Workspace workspace = mWorkspace;
2697        for (int i=start; i<end; i++) {
2698            final ItemInfo item = shortcuts.get(i);
2699
2700            // Short circuit if we are loading dock items for a configuration which has no dock
2701            if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
2702                    mHotseat == null) {
2703                continue;
2704            }
2705
2706            switch (item.itemType) {
2707                case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
2708                case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2709                    View shortcut = createShortcut((ShortcutInfo)item);
2710                    workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
2711                            item.cellY, 1, 1, false);
2712                    break;
2713                case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
2714                    FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
2715                            (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
2716                            (FolderInfo) item, mIconCache);
2717                    workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
2718                            item.cellY, 1, 1, false);
2719                    break;
2720            }
2721        }
2722        workspace.requestLayout();
2723    }
2724
2725    /**
2726     * Implementation of the method from LauncherModel.Callbacks.
2727     */
2728    public void bindFolders(HashMap<Long, FolderInfo> folders) {
2729        setLoadOnResume();
2730        sFolders.clear();
2731        sFolders.putAll(folders);
2732    }
2733
2734    /**
2735     * Add the views for a widget to the workspace.
2736     *
2737     * Implementation of the method from LauncherModel.Callbacks.
2738     */
2739    public void bindAppWidget(LauncherAppWidgetInfo item) {
2740        setLoadOnResume();
2741
2742        final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
2743        if (DEBUG_WIDGETS) {
2744            Log.d(TAG, "bindAppWidget: " + item);
2745        }
2746        final Workspace workspace = mWorkspace;
2747
2748        final int appWidgetId = item.appWidgetId;
2749        final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
2750        if (DEBUG_WIDGETS) {
2751            Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
2752        }
2753
2754        item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
2755
2756        item.hostView.setAppWidget(appWidgetId, appWidgetInfo);
2757        item.hostView.setTag(item);
2758
2759        workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
2760                item.cellY, item.spanX, item.spanY, false);
2761
2762        addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
2763
2764        workspace.requestLayout();
2765
2766        if (DEBUG_WIDGETS) {
2767            Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
2768                    + (SystemClock.uptimeMillis()-start) + "ms");
2769        }
2770    }
2771
2772    /**
2773     * Callback saying that there aren't any more items to bind.
2774     *
2775     * Implementation of the method from LauncherModel.Callbacks.
2776     */
2777    public void finishBindingItems() {
2778        setLoadOnResume();
2779
2780        if (mSavedState != null) {
2781            if (!mWorkspace.hasFocus()) {
2782                mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
2783            }
2784            mSavedState = null;
2785        }
2786
2787        if (mSavedInstanceState != null) {
2788            super.onRestoreInstanceState(mSavedInstanceState);
2789            mSavedInstanceState = null;
2790        }
2791
2792        mWorkspaceLoading = false;
2793
2794        // If we received the result of any pending adds while the loader was running (e.g. the
2795        // widget configuration forced an orientation change), process them now.
2796        for (int i = 0; i < sPendingAddList.size(); i++) {
2797            completeAdd(sPendingAddList.get(i));
2798        }
2799        sPendingAddList.clear();
2800    }
2801
2802    /**
2803     * Updates the icons on the launcher that are affected by changes to the package list
2804     * on the device.
2805     */
2806    private void updateIconsAffectedByPackageManagerChanges() {
2807        updateAppMarketIcon();
2808        updateVoiceSearchIcon();
2809    }
2810
2811    @Override
2812    public void bindSearchablesChanged() {
2813        updateGlobalSearchIcon();
2814    }
2815
2816    /**
2817     * Add the icons for all apps.
2818     *
2819     * Implementation of the method from LauncherModel.Callbacks.
2820     */
2821    public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
2822        // Remove the progress bar entirely; we could also make it GONE
2823        // but better to remove it since we know it's not going to be used
2824        View progressBar = mAppsCustomizeTabHost.
2825            findViewById(R.id.apps_customize_progress_bar);
2826        if (progressBar != null) {
2827            ((ViewGroup)progressBar.getParent()).removeView(progressBar);
2828        }
2829        // We just post the call to setApps so the user sees the progress bar
2830        // disappear-- otherwise, it just looks like the progress bar froze
2831        // which doesn't look great
2832        mAppsCustomizeTabHost.post(new Runnable() {
2833            public void run() {
2834                if (mAppsCustomizeContent != null) {
2835                    mAppsCustomizeContent.setApps(apps);
2836                }
2837            }
2838        });
2839
2840        updateIconsAffectedByPackageManagerChanges();
2841        updateGlobalSearchIcon();
2842    }
2843
2844    /**
2845     * A package was installed.
2846     *
2847     * Implementation of the method from LauncherModel.Callbacks.
2848     */
2849    public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
2850        setLoadOnResume();
2851        removeDialog(DIALOG_CREATE_SHORTCUT);
2852
2853        if (mAppsCustomizeContent != null) {
2854            mAppsCustomizeContent.addApps(apps);
2855        }
2856        updateIconsAffectedByPackageManagerChanges();
2857    }
2858
2859    /**
2860     * A package was updated.
2861     *
2862     * Implementation of the method from LauncherModel.Callbacks.
2863     */
2864    public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
2865        setLoadOnResume();
2866        removeDialog(DIALOG_CREATE_SHORTCUT);
2867        if (mWorkspace != null) {
2868            mWorkspace.updateShortcuts(apps);
2869        }
2870
2871        if (mAppsCustomizeContent != null) {
2872            mAppsCustomizeContent.updateApps(apps);
2873        }
2874        updateIconsAffectedByPackageManagerChanges();
2875    }
2876
2877    /**
2878     * A package was uninstalled.
2879     *
2880     * Implementation of the method from LauncherModel.Callbacks.
2881     */
2882    public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
2883        removeDialog(DIALOG_CREATE_SHORTCUT);
2884        if (permanent) {
2885            mWorkspace.removeItems(apps);
2886        }
2887
2888        if (mAppsCustomizeContent != null) {
2889            mAppsCustomizeContent.removeApps(apps);
2890        }
2891        updateIconsAffectedByPackageManagerChanges();
2892    }
2893
2894    /**
2895     * A number of packages were updated.
2896     */
2897    public void bindPackagesUpdated() {
2898
2899        if (mAppsCustomizeContent != null) {
2900            mAppsCustomizeContent.onPackagesUpdated();
2901        }
2902    }
2903
2904    private int mapConfigurationOriActivityInfoOri(int configOri) {
2905        final Display d = getWindowManager().getDefaultDisplay();
2906        int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
2907        switch (d.getRotation()) {
2908        case Surface.ROTATION_0:
2909        case Surface.ROTATION_180:
2910            // We are currently in the same basic orientation as the natural orientation
2911            naturalOri = configOri;
2912            break;
2913        case Surface.ROTATION_90:
2914        case Surface.ROTATION_270:
2915            // We are currently in the other basic orientation to the natural orientation
2916            naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
2917                    Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
2918            break;
2919        }
2920
2921        int[] oriMap = {
2922                ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
2923                ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
2924                ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
2925                ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
2926        };
2927        // Since the map starts at portrait, we need to offset if this device's natural orientation
2928        // is landscape.
2929        int indexOffset = 0;
2930        if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
2931            indexOffset = 1;
2932        }
2933        return oriMap[(d.getRotation() + indexOffset) % 4];
2934    }
2935    public void lockScreenOrientation() {
2936        setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
2937                .getConfiguration().orientation));
2938    }
2939    public void unlockScreenOrientation() {
2940        mHandler.postDelayed(new Runnable() {
2941            public void run() {
2942                setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
2943            }
2944        }, mRestoreScreenOrientationDelay);
2945    }
2946
2947    /**
2948     * Prints out out state for debugging.
2949     */
2950    public void dumpState() {
2951        Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
2952        Log.d(TAG, "mSavedState=" + mSavedState);
2953        Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
2954        Log.d(TAG, "mRestoring=" + mRestoring);
2955        Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
2956        Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
2957        Log.d(TAG, "sFolders.size=" + sFolders.size());
2958        mModel.dumpState();
2959
2960        if (mAppsCustomizeContent != null) {
2961            mAppsCustomizeContent.dumpState();
2962        }
2963        Log.d(TAG, "END launcher2 dump state");
2964    }
2965}
2966
2967interface LauncherTransitionable {
2968    void onLauncherTransitionStart(Animator animation, boolean toWorkspace);
2969    void onLauncherTransitionEnd(Animator animation, boolean toWorkspace);
2970}
2971