summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher/Launcher.java
Commit message (Collapse)AuthorAgeFilesLines
* Move com/android/launcher -> com/android/launcher2Joe Onorato2009-07-301-2247/+0
|
* Deal with canceled keys.Dianne Hackborn2009-07-241-5/+29
|
* Remove gestures from Home.Romain Guy2009-07-211-430/+4
|
* Prevents BadTokenException on rotation of the gestures window.Romain Guy2009-07-171-2/+2
|
* Fixes #1930069. Prevents NPE in GesturesActivity. Ensures the store is ↵Romain Guy2009-07-171-6/+6
| | | | always != null.
* Remove dead code from Home.Romain Guy2009-07-171-8/+1
|
* Fixes #1987902. Do not show the + button when not needed.Romain Guy2009-07-171-7/+9
|
* More new gestures UI. Adds a back button at the bottom of the settings activity.Romain Guy2009-07-161-2/+2
|
* New gestures UI.Romain Guy2009-07-161-71/+72
|
* Fix the lock issue on Home. This was caused by onPrepareDialog().Romain Guy2009-07-141-8/+23
| | | | | | | onPrepareDialog() is called after a dialog was created/shown at least once. But onPrepareDialog() does not mean the dialog will be shown. Thus Home would sometimes lock itself without showing the dialog the user would normally use to unlock the workspace.
* Don't call SearchManager.isVisible() in Launcher.Bjorn Bringert2009-07-081-3/+1
| | | | | | | SearchManager.isVisible() is a hidden method that should not be used by applications. Also, SearchManager.stopSearch() already checks whether the search dialog is visible before tryinf to dimiss it, so the check in Launcher was redundant.
* Close the search dialog when user gets to Home by pressing home button,Mike LeBeau2009-07-021-3/+29
| | | | but still keep it up if the user pressed e.g. back button.
* Fixes #1956185. Restores the gesture when changing orientation when creating ↵Romain Guy2009-07-011-1/+4
| | | | a shortcut.
* Use a plain DataOutputStream instead of SharedPreferences in Home.Romain Guy2009-06-301-14/+68
|
* Fixes #1949637. Home was setting waitingForResult=true whenever an app was ↵Romain Guy2009-06-291-1/+1
| | | | | | | launched. Home was incorrectly treating apps launches as subactivties launched to obtain results. This resulted in a protective flag being set when it should not have been.
* Fixes #1945905. Prevents the user from clicking the same button mutiple times.Romain Guy2009-06-261-3/+5
|
* Fixes #1937447. Home was not saving the appropriate state when losing focus.Romain Guy2009-06-231-7/+18
|
* Fixes #1919280. Home was leaking the gestures window on configuration change.Romain Guy2009-06-171-9/+78
| | | | | | | | Dismisses the popup window upon configuration change and correctly restores the window after the new activity is created. This change also saves/restores the current gesture and its match. This change also fixes the handling of the back key when creating a new gesture-based shortcut: the gestures pad is not dismissed anymore when pressing back in one of the shortcuts dialogs.
* Close the gestures pad when pressing Home. A regression was recently ↵Romain Guy2009-06-171-1/+4
| | | | | | introduced when ignoring the Home key press when Home's window does not have focus.
* Fixes #1921372. Pressing Home with the window shade down would show gestures ↵Romain Guy2009-06-161-1/+2
| | | | | | | pad. This change checks for the window focus before taking action. If the Home's window does not have focus, then the gestures pad is not shown.
* Change recognition matchin in Home to immediate mode.Romain Guy2009-06-111-10/+31
| | | | | Instead of waiting for Xms after a finger up event to start the recognition process, do it right away on a finger up event. This provides immediate feedback.
* Fixes 1909513.Romain Guy2009-06-101-3/+7
| | | | Do not show the gestures pad when the user is in the search dialog.
* Fix issues with how the gestures pad was hidden when leaving Home.Romain Guy2009-06-101-2/+8
|
* Add gestures to Home.Romain Guy2009-06-101-41/+368
| | | | Press the Home key while in Home to enable the gestures pad.
* Fix locked workspace in Home.Romain Guy2009-06-081-97/+102
| | | | | | A dialog can be dismissed without being cancelled. This change simply adds a dismiss listener to the Add dialog in Home to make sure the workspace is properly unlocked when the dialog is dismissed.
* Fixes #1780990. Do not save the open state of the drawer when the user ↵Romain Guy2009-04-281-13/+12
| | | | leaves Home by launching an application.
* AI 147564: Merge back from search branch to donut. Notes:Karl Rosaen2009-04-231-89/+129
| | | | | | | | | - all public apis and framework changes have been reviewed by relevant folks in our branch (e.g romainguy) - all new public apis are @hidden; they will still get reviewed by api council once we're in git - other than that, it's mostly GlobalSearch and search dialog stuff, a new apps provider, and some tweaks to the contacts provider that was reviewed by jham Automated import of CL 147564
* AI 143776: am: CL 143622 Correctly startListening() for widget updates when ↵Jeffrey Sharkey2009-03-311-0/+28
| | | | | | | | | | | | first boot completes. During the first boot upgrade, LauncherProvider will deleteHost() to clear out any old appWidgetId bindings. During the first boot, Launcher calls AppWidgetHost.startListening() to watch for widget updates. It also calls loadUserItems(), which loads data from LauncherProvider, triggering the database creation and deleteHost() call. Because deleteHost() removes any existing callbacks, any future widget updates are dropped on the floor. (This can currently be solved by rebooting, because there isn't an upgrade on subsequent boots.) This bug was particularly evident on vfpioneer-userdebug builds, as there aren't any configuration changes that cause Launcher to be destroyed and recreated. (When destroyed and recreated, we startListening() again, and LauncherProvider doesn't call deleteHost().) To handle this special case, Launcher creates a ContentObserver pointing at a specific URI, which the LauncherProvider notifies when the AppWidgetHost is reset through deleteHost(), allowing Launcher to correctly startListening() again. Original author: jsharkey Merged from: //branches/cupcake/... Automated import of CL 143776
* AI 143187: am: CL 142933 Fixes #1725672. Rebind the drawer's content early ↵Romain Guy2009-03-271-24/+12
| | | | | | | | | to avoid the dreaded "blank drawer" bug. Original author: romainguy Merged from: //branches/cupcake/... Automated import of CL 143187
* Automated import from //branches/donutburger/...@142474,142474Jeffrey Sharkey2009-03-241-1/+1
|
* Automated import from //branches/donutburger/...@142038,142038Jeffrey Sharkey2009-03-241-12/+12
|
* Automated import from //branches/donutburger/...@141885,141885Romain Guy2009-03-241-10/+1
|
* Automated import from //branches/donutburger/...@141844,141844Dianne Hackborn2009-03-241-1/+2
|
* Automated import from //branches/donutburger/...@141651,141651Jeffrey Sharkey2009-03-241-93/+113
|
* Automated import from //branches/donutburger/...@140670,140670Jeffrey Sharkey2009-03-241-16/+18
|
* Automated import from //branches/donutburger/...@140592,140592Jeffrey Sharkey2009-03-241-44/+106
|
* auto import from //branches/cupcake_rel/...@140373The Android Open Source Project2009-03-181-32/+95
|
* auto import from //branches/cupcake_rel/...@138607The Android Open Source Project2009-03-131-20/+21
|
* auto import from //branches/cupcake/...@137873The Android Open Source Project2009-03-111-94/+122
|
* auto import from //branches/cupcake/...@137197The Android Open Source Project2009-03-091-5/+2
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-031-0/+1888
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-031-1814/+0
|
* auto import from //depot/cupcake/@132589The Android Open Source Project2009-03-031-122/+48
|
* auto import from //depot/cupcake/@137055The Android Open Source Project2009-03-021-48/+122
|
* auto import from //branches/cupcake/...@132276The Android Open Source Project2009-02-191-3/+15
|
* auto import from //branches/cupcake/...@131421The Android Open Source Project2009-02-131-67/+48
|
* auto import from //branches/cupcake/...@130745The Android Open Source Project2009-02-101-211/+347
|
* auto import from //branches/cupcake/...@127101The Android Open Source Project2009-01-201-1/+1
|
* auto import from //branches/cupcake/...@126645The Android Open Source Project2009-01-151-1/+1
|
* auto import from //branches/cupcake/...@125939The Android Open Source Project2009-01-091-58/+105
|