summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Launcher changes to handle UTS test mode." into eclairWink Saville2010-02-121-0/+56
|\
| * Launcher changes to handle UTS test mode.Wink Saville2010-02-121-0/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When in UTS test mode keys received need to be handled by the Phone application or Contacts application to operate properly in the test mode. When not in test mode the search widget will handle the keys as it was before this change. The UTS test mode is enabled when presist.sys.uts-test-mode is 1. bug: 2402366 Change-Id: I58e68830f9ce6905e189ecba1c04b1076799a0a0 Signed-off-by: Wink Saville <wink@google.com>
* | DO NOT MERGE. Update for new RS library with ES 2.0 support.Jason Sams2010-02-111-3/+3
|/
* Put the label into the same texture as the icon.Joe Onorato2010-01-144-124/+125
|
* Fix 2325492 - No icons in launcher after pressing home from within an appJoe Onorato2010-01-111-7/+7
| | | | | | | | It looks like the evil hack in 14f122bf847e50a3e7730ccbe57abc25d086a01b to make the workspace not animate didn't completely work. The key to reproducing this bug is to make sure the activity is destroyed and to have last gone to an app from a screen other than the center screen, because that causes it to get reloaded from the icicle, which makes the timing more amenable to missing the animation, because the view isn't attached yet.
* fix bug 2326478Joe Onorato2009-12-141-9/+13
|
* Still trying to fix 2320348 - Launcher2 crashed: AIOOBE at ↵Joe Onorato2009-12-111-6/+8
| | | | com.android.launcher2.AllAppsView$RolloRS.removeApp
* Launcher2 - This might fix the missing app problem and the crash in removeApp.Joe Onorato2009-12-111-2/+2
| | | | | | | | | This marks the apps list as dirty by default. Usually, because of how long it takes the loader thread to run, the apps list comes in after the surface has been initialized. However, if the surface isn't around yet when setApps is called, then setApps won't set mRollo.mAppsDirty because mRollo is null. The extra null check is necessary for the normal case when mAllAppsList isn't ready yet when the surface comes in.
* fix 2315821 and 2315729 - problems caused because the apps list could becomeJoe Onorato2009-12-091-24/+34
| | | | unsynchronized with the list of icons.
* Fix 2305903 Scrolling trackball upwards at the top of the app menu selects ↵Joe Onorato2009-12-081-2/+2
| | | | app at the bottom left
* Fix 2306862 - Launcher2 crashed: in libs/rs. Uploading texture without a ↵Joe Onorato2009-12-082-11/+16
| | | | | | | context. turns off some logging and fixes latent bugs that this uncovered where we were accessing renderscript while there was no context.
* Fix 2304151 - crash while installing appsJoe Onorato2009-12-081-1/+1
| | | | It was happening if you had previously uninstalled an app.
* Fix 2300792 - All apps zooming when you come back from an app.Joe Onorato2009-12-031-6/+14
| | | | | This makes it so we're only listening for the CLOSE_SYSTEM_DIALOGS broadcast while we're between onResume and onPause.
* Make the launcher send the position of the icon that's launching an intent.Joe Onorato2009-12-021-0/+4
|
* Upgrade Home db to upgrade contacts shortcut to the quick contact actionRomain Guy2009-12-022-74/+77
| | | | Change-Id: Icb5606e340a6eafc06ffd1be4bbe3d4f988376d1
* Bug 2290800 - Use a collator to sort the app labels.Joe Onorato2009-12-012-14/+5
| | | | SHAME ON ME for using String.compareTo().
* Rename special dump properity so we can set it on user builds.Jason Sams2009-11-301-1/+1
|
* Fix 2275513 - Icons don't update on package updateJoe Onorato2009-11-243-3/+5
| | | | Also reuses the BubbleText object, which was being recreated for no reason.
* Fix bug 2248173 - all apps animates out when you return home.Joe Onorato2009-11-241-1/+34
|
* Clear search widget animation in Launcher.onResume()Bjorn Bringert2009-11-211-7/+1
| | | | | | | | Before, Launcher relied on a callback to a SearchManager.OnCancelListener to clear the search widget animation. However, that doesn't get called if some other app opens the search dialog before the Launcher is reopened. This change clears the animation in onResume(). Should fix http://b/issue?id=2246760
* Guard against null parent in Launcher2.Search.clearAnimation()Bjorn Bringert2009-11-211-1/+2
| | | | | | | | | Sometimes clearAnimation() is called on the search widget when it has no parent, e.g. when it being removed from the home screen. This caused an NPE, because clearAnimation() called invalidate() on the parent. This is a partial fix for: http://b/issue?id=2246760
* Fix bug 2223769 - Uninstalling app causes NPE.Joe Onorato2009-11-191-7/+2
| | | | | The check for whether there is anything in these lists should be sufficient. The other variables don't need to also be checked.
* Fix 2271080 - .lang.IllegalArgumentException: no dialog with id 1 was ever ↵Joe Onorato2009-11-191-1/+5
| | | | | | | | | shown via Activity#showDialog on CreateShortcut I'm not sure how this can happen, but I think it's okay to just drop the exception. It's all just trying to clean up anyway.
* Fix bug 2271894 - Odd animation when press home button from app that wasn't ↵Joe Onorato2009-11-192-7/+14
| | | | | | | | | | | | | in center home screen Now: - When you're on the workspace and you press home, it animates back to the middle - When you're in all apps and you press home, all apps animates out and the workspace doesn't animate to the middle (it just jumps there) - When you're in an app and you press home, it doesn't animate to the middle - When you're in an app and you press back, it still goes to the page you were on. Don't look at the evil hack to make it move without animating.
* Fix 2274291 - back key doesn't go from all apps to workspaceJoe Onorato2009-11-191-14/+11
|
* Fix 2271141 - Pressing the bottom corner of the screen when the applications ↵Joe Onorato2009-11-191-2/+6
| | | | | | menu is visible will switch the home screen
* This might fix bug 2262272 - Apps list emptyJoe Onorato2009-11-191-1/+3
| | | | | | I'm not sure how .added is empty, but the only way I see for this to happen is if it is, so use .data instead, which ought to be the same.
* Fix bugs 226264 and 2265943 - Home stopped responding to touch, but all-apps ↵Joe Onorato2009-11-191-3/+4
| | | | | | | | | | | | | | | | & notification panel still work I knew it was a problem with mWaitingForResult, which I'm still not convinced we need, but Jeff Sharkey was able to find repro steps, so he's my new hero. The steps were: 1. Open add menu (long pressing or menu > add) 2. Turn off the screen 3. Turn back on & unlock 4. Poof. The problem was that when we get ACTION_CLOSE_SYSTEM_DIALOGS intents, we're dismissing the dialogs, not canceling them. I think we actually want to cancel them, but there's no easy way to do that with the Activity class, so just clear mWaitingForResult by hand in closeSystemDialogs().
* Fix bug 2266095 - all apps animates out when you return home by hitting backJoe Onorato2009-11-181-1/+1
| | | | We needed to check that they haven't exited on the down event.
* Add more logging for bugs 2262649, 2262272 and 2265943.Joe Onorato2009-11-181-0/+8
|
* Add a lot of logging that can be seen by doing adb shell setprop ↵Joe Onorato2009-11-175-0/+127
| | | | launcher2.dumpstate 1 and presssing volume down
* fix 2261526 - Trackball doesn't work in 3D all-apps if you opened it using ↵Joe Onorato2009-11-161-7/+8
| | | | trackball
* Fix 2260199 - App icons placed in folder widget are doubled after rebooting ↵Joe Onorato2009-11-161-0/+1
| | | | | | | phone. I don't know why I did this piecemeal instead of just fixing it for widgets items and folders all at once.
* Fix bug 2261637 - Workspace previews home screens on long pressingJoe Onorato2009-11-162-5/+19
| | | | | | | | | | at the bottom of app drawer This includes some contortions to get it not to perform the vibrate haptic feedback then. (By the way, it appears that we're vibrating on the add context menu long press, so also do it when when we show the previews.
* Fix duplicated text when returning home from an app that hid the status bar ↵Jason Sams2009-11-161-3/+11
| | | | and launcher2 was killed.
* Use the appropriate flat icon for the folder menu in the Add dialog.Romain Guy2009-11-131-1/+1
| | | | Change-Id: Idb7ae2a50338f56317dd9f57c96129904b241e3a
* Merge change I464c055a into eclairAndroid (Google) Code Review2009-11-121-0/+2
|\ | | | | | | | | * changes: Bug 2244530 - Disable the attempt at not flickering. It's interfering with the frame rate while rollo animates in.
| * Bug 2244530 - Disable the attempt at not flickering. It's interfering with ↵Joe Onorato2009-11-121-0/+2
| | | | | | | | the frame rate while rollo animates in.
* | Remove "Configure..." option from wallpaper chooser.Romain Guy2009-11-121-11/+11
| | | | | | | | Change-Id: Iae9719dc3197ea0ee8e7637456b9d76d9ce8622b
* | Update AllApps to defered surface attachment for RS.Jason Sams2009-11-121-5/+10
|/
* Keep banging on the launcher locks up bug. This moves theJoe Onorato2009-11-122-44/+33
| | | | | delayed zoom stuff into one place, so it should be out of sync less.
* Fix 2257802 - Screen unresponsive when you get a call while moving the ↵Joe Onorato2009-11-122-1/+9
| | | | shortcuts or widgets on home screen
* Fix bug 2258128 - homescreen on Passion unresponsive while still not leaking ↵Joe Onorato2009-11-121-24/+24
| | | | the contexts.
* Improve desktop scrolling from the previews switcher.Romain Guy2009-11-112-7/+6
| | | | Change-Id: Iee05120b4363c07294f665f45f561e9d9361ccaa
* Shows all screens in the previews.Romain Guy2009-11-111-38/+44
| | | | Change-Id: Ib8b19492ccb07a135ba95ab75ae03f034275c572
* Fix bug 2249797 - Launcher2 leaking textures on locale changeJoe Onorato2009-11-111-0/+2
|
* Fix 2241848 - 3D apps folder does not send accessibility eventsJoe Onorato2009-11-112-2/+57
| | | | | | It's now sending them. The beeping and vibrating accessibility things work, but we only have prebuilts for the speech one and it's not saying anything and I can't debug it, so this will have to do.
* Bug 2231692 - Turn off launcher2 logging.Joe Onorato2009-11-118-106/+78
|
* Stop crashing on invalid wallpaper thumbnail images.Daniel Sandler2009-11-101-3/+11
| | | | | | | | | | We still won't be able to show a thumbnail, of course, but now instead of crashing the picker we leave an empty box and write out a helpful Log.e such as: 09-21 15:11:45.624: ERROR/Launcher(1539): Error decoding thumbnail resId=2130837544 for wallpaper #14 (Related to http://b/2113687.)
* Fix 2226221 - home screen app names do not reflect on locale changeJoe Onorato2009-11-101-1/+4
|