summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Fixing minor memory leak with name comparator." into ub-launcher3-burnabyWinson Chung2015-07-312-30/+60
|\
| * Fixing minor memory leak with name comparator.Winson Chung2015-07-272-30/+60
| | | | | | | | | | | | | | | | | | | | | | | | - WidgetsAndShortcutNameComparator was using the actual widget and shortcut resolve infos as the key to the label cache. Neither of these classes override hashCode() and we were retrieving a new set of widgets and shortcuts whenever packages changed so we would end up creating more and more entries in the cache. This isn't a huge leak, but could lead to problems if Launcher is used for long periods without being killed. - Now, we use a ComponentKey as the key, so that we don't keep a reference to the widget/shortcut infos and also ensures that they should hash to the same labels. Change-Id: I91347ee72363adbc2b075b67dba331e35ab1fe34
* | Merge "Fixing issue with flash during overview transition." into ↵Winson Chung2015-07-311-1/+6
|\ \ | | | | | | | | | ub-launcher3-burnaby
| * | Fixing issue with flash during overview transition.Winson Chung2015-07-311-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - This is due to the TransitionDrawable which does not actually start an animation until it is first drawn. This workaround will just immediately reset the transition if it is not currently visible instead of animating (which is actually deferred until the next animation into overview mode). Bug: 22414257 Change-Id: Id481303d0c99a20c1d16396c024ab50303f45576
* | | Homescreen migration from a larger grid to a smaller grid.Sunny Goyal2015-07-318-21/+848
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adding support for restoring from a larger device, if the grid size difference is not more that 1. During restore add all the items in the DB, and run a one-time migration the next time launcher starts. The migration strategy is defined in ShrinkWorkspaceTask.java which involves resizing, moving and removing some items. Change-Id: I6ee411f6db5bf0152b527e16146a88c56dec2d97
* | | am cb767411: Add proto flag "javanano_use_deprecated_package" to avoid build ↵Adam Cohen2015-07-311-0/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | breakage * commit 'cb7674118c6fa6849e657fb8fea25c8fd93477cc': Add proto flag "javanano_use_deprecated_package" to avoid build breakage
| * | | Add proto flag "javanano_use_deprecated_package" to avoid build breakageAdam Cohen2015-07-311-0/+1
| | | | | | | | | | | | | | | | Change-Id: Iea8a7bc2bb385e066b3f972105224fee3eb7c894
* | | | am 0ff535ea: (-s ours) Remove references to FloatMath, deprecated in MAdam Cohen2015-07-310-0/+0
|\| | | | | | | | | | | | | | | | | | | * commit '0ff535eabbdf27ec5a790adbc64f27f8c63e7399': Remove references to FloatMath, deprecated in M
| * | | Remove references to FloatMath, deprecated in MAdam Cohen2015-07-303-10/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -> Allows us to build against M SDK issue 22822360 Change-Id: I1178eb6bafc348699c5be8c29858eb3dff093e11
* | | | Merge "Fixing issue with accessibility falsely reporting app count when ↵Winson Chung2015-07-301-1/+36
|\ \ \ \ | | |/ / | |/| | | | | | there are no search results." into ub-launcher3-burnaby
| * | | Fixing issue with accessibility falsely reporting app count when there are ↵Winson Chung2015-07-301-1/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | no search results. Bug: 22672783 Change-Id: Ie40acc592e59699eac2a4ff2045a7f8ba029d33a
* | | | Merge "Prevent crash when flattening ComponentKey to string with invalid ↵Winson Chung2015-07-301-2/+5
|\| | | | | | | | | | | | | | | user." into ub-launcher3-burnaby
| * | | Prevent crash when flattening ComponentKey to string with invalid user.Winson Chung2015-07-301-2/+5
| | | | | | | | | | | | | | | | | | | | Bug: 22658306 Change-Id: I213d44e0bb22ac0617d46c80ab8cfec8f750a2cc
* | | | Merge "Prevent from widget cell preview image from being cut off." into ↵Hyunyoung Song2015-07-301-2/+2
|\ \ \ \ | |/ / / |/| | | | | | | ub-launcher3-burnaby
| * | | Prevent from widget cell preview image from being cut off.Hyunyoung Song2015-07-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b/22541466 >TL;DR;; when introducing mProfileBadgeMargin to correctly place > work profile badge. Drawing origin of the preview image resulted > to the left of (0, 0). Change-Id: Ic52fc2e17c55c76f4f57aa833451ffa19bbbeb09
* | | | Merge "Adding rank column in backup" into ub-launcher3-burnabySunny Goyal2015-07-303-5/+19
|\ \ \ \ | |/ / / |/| | |
| * | | Adding rank column in backupSunny Goyal2015-07-223-5/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > targetType was only added for M builds, so it can also be considered as v4 change. V3 which introduced minSpanX and minSpanY didn't contain targetType Bug: 22417713 Change-Id: I5c353674f7e0c2b5b4ab46e574fdb347d82028cd
* | | | Merge "Fixing overview mode scale calculations." into ub-launcher3-burnabyWinson Chung2015-07-284-26/+21
|\ \ \ \
| * | | | Fixing overview mode scale calculations.Winson Chung2015-07-104-26/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Making the overview scale apply just like the spring loaded scale factor - Tweaking overview scale to make it not so small Change-Id: If93bac08609b0cfd9c9d9f8f6057498957378b56
* | | | | Overlay support lib RV resources in Android.mkHyunyoung Song2015-07-271-3/+12
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Note: after this change, ag/735298 can be reverted. b/22719084 Change-Id: I83caf8832790b1df0a90a1339f6b24f481c51661
* | | | Remove NPE inside WidgetsListAdapter during monkey actor testHyunyoung Song2015-07-271-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | b/22518383 Change-Id: I1a683c49be93af150f7873390b723cee0d4ac5df
* | | | Merge "Don't obfuscate Launcher3" into ub-launcher3-burnabyAdam Cohen2015-07-251-1/+5
|\ \ \ \ | |_|/ / |/| | |
| * | | Don't obfuscate Launcher3Adam Cohen2015-07-241-1/+5
| |/ / | | | | | | | | | Change-Id: I86ac745602c0d3c09842ed9553f7589c232f5d23
* | | Merge "Shifting hotseat icons to aling with all-apps icon, if the hotseat ↵Sunny Goyal2015-07-211-2/+16
|\ \ \ | | | | | | | | | | | | size is different from the source device" into ub-launcher3-burnaby
| * | | Shifting hotseat icons to aling with all-apps icon, if the hotseatSunny Goyal2015-07-201-2/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | size is different from the source device Bug: 19074056 Change-Id: I8d8517971a3cde0dc38f653d151daeba90fa38a0
* | | | Merge "Fixing widget restore" into ub-launcher3-burnabySunny Goyal2015-07-212-14/+31
|\ \ \ \
| * | | | Fixing widget restoreSunny Goyal2015-07-202-14/+31
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Widget restore active flag was not cleared when the app was downloaded > Icon from session info was not getting cached Bug: 22413379 Change-Id: Ie096b929252200675a76dadd8c25cc3aa433671b
* | | | Merge "Resizing the bitmap before caching it in the DB" into ↵Sunny Goyal2015-07-212-6/+9
|\ \ \ \ | | | | | | | | | | | | | | | ub-launcher3-burnaby
| * | | | Resizing the bitmap before caching it in the DBSunny Goyal2015-07-202-6/+9
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > The icon size in the backup can be different that what is required by the device. We should resize the icon, before caching it. Bug: 22413328 Change-Id: Id77c53edf8ea5e95a2d32dbe22be553120279ebd
* / / / Enable Launcher3 as default Home appbohu2015-07-201-1/+1
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | The default Home app launcher2 is deprecated and cannot launch Nexus 6 or any other high resolution devices in emulator. This CL enables launcher3 as the default Home app, since it can handle Nexus 6 and is well maintained. Bug: 22609402 Change-Id: Iaba545fec218f79e40e0f72de5236ddadfabaa14
* | | am 249a510a: (-s ours) [DO NOT MERGE] Adding minSpanX and minSpanY for all ↵Sunny Goyal2015-07-170-0/+0
|\ \ \ | | |/ | |/| | | | | | | | | | | | | the launcher widgets * commit '249a510ab318db461ce1ac86baca01021fe41a2c': [DO NOT MERGE] Adding minSpanX and minSpanY for all the launcher widgets
| * | [DO NOT MERGE] Adding minSpanX and minSpanY for all the launcher widgetsSunny Goyal2015-07-163-10/+17
| | | | | | | | | | | | | | | Bug: 22353460 Change-Id: Id4450dee42a83e4603dcd56e1c4dec2b0e405858
* | | Merge "Adding minSpanX and minSpanY for all the launcher widgets" into ↵Sunny Goyal2015-07-174-14/+34
|\ \ \ | | | | | | | | | | | | ub-launcher3-burnaby
| * | | Adding minSpanX and minSpanY for all the launcher widgetsSunny Goyal2015-07-174-14/+34
| | | | | | | | | | | | | | | | | | | | Bug: 22353460 Change-Id: Id4450dee42a83e4603dcd56e1c4dec2b0e405858
* | | | Query the title and icon for app using correct user handle.Hyunyoung Song2015-07-161-5/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Note: when there are corp and regular user profile widget providers, it is guaranteed that regular user profile widget provider is always queried first. Thsi is guaranteed because inside AppWidgetManagerCompat.getProviders(), regular user always takes prescedence when iterating thru different providers associated to different users. Change-Id: I5e38e1fb30925ccba7e1e2925fd3e77c44a14901
* | | | Merge "Fix issue where corp app widget doesn't show correctly on drop ↵Hyunyoung Song2015-07-161-0/+2
|\ \ \ \ | |/ / / |/| | | | | | | targets." into ub-launcher3-burnaby
| * | | Fix issue where corp app widget doesn't show correctly on drop targets.Hyunyoung Song2015-07-161-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | b/22535234 Change-Id: I6e57c7728704ad0f99df25257211243a23d26acd
* | | | Merge "Fixing AppWidgetInfo not initialized with proper user" into ↵Sunny Goyal2015-07-161-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | ub-launcher3-burnaby
| * | | | Fixing AppWidgetInfo not initialized with proper userSunny Goyal2015-07-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Bug: 21673750 Change-Id: I1e03c3cb10a87e394e963cc2001c9c1c293eb2ca
* | | | | am 3fec14be: (-s ours) Merge "[DO NOT MERGE] fixing build break" into ↵Sunny Goyal2015-07-160-0/+0
|\ \ \ \ \ | | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | ub-launcher3-almonte * commit '3fec14bedc03d77aa7a066a8053c6068dddda192': [DO NOT MERGE] fixing build break
| * | | | Merge "[DO NOT MERGE] fixing build break" into ub-launcher3-almonteSunny Goyal2015-07-161-1/+1
| |\ \ \ \
| | * | | | [DO NOT MERGE] fixing build breakSunny Goyal2015-07-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ief14e03874626d4f6fdf403d98950d9d64b66160
* | | | | | am e48e570a: (-s ours) Merge "[Do NOT MERGE] Fixing AppWidgetInfo not ↵Sunny Goyal2015-07-160-0/+0
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | initialized with proper user" into ub-launcher3-almonte * commit 'e48e570a82293d34e955b966c7821770600ec7bf': [Do NOT MERGE] Fixing AppWidgetInfo not initialized with proper user
| * | | | | Merge "[Do NOT MERGE] Fixing AppWidgetInfo not initialized with proper user" ↵Sunny Goyal2015-07-161-1/+8
| |\| | | | | | | | | | | | | | | | | | | | | | into ub-launcher3-almonte
| | * | | | [Do NOT MERGE] Fixing AppWidgetInfo not initialized with proper userSunny Goyal2015-07-151-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 21673750 Change-Id: I1e03c3cb10a87e394e963cc2001c9c1c293eb2ca
* | | | | | Merge "Fix issue with UiThreadReveal on L devices" into ub-launcher3-burnabyAdam Cohen2015-07-161-4/+2
|\ \ \ \ \ \
| * | | | | | Fix issue with UiThreadReveal on L devicesAdam Cohen2015-07-151-4/+2
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | issue 22507784 Change-Id: If75292b21a1b572903099ab0682d5c7f69a960f4
* | | | | | am eb01b967: (-s ours) Import translations. DO NOT MERGEGeoff Mendal2015-07-150-0/+0
|\ \ \ \ \ \ | | |/ / / / | |/| | / / | |_|_|/ / |/| | | | * commit 'eb01b967460d0d8287042e5f6dd16578f3f59eb6': Import translations. DO NOT MERGE
| * | | | Import translations. DO NOT MERGEGeoff Mendal2015-07-153-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I025eedc9fa35a6ba583f8d3e215dd066ddb634b3 Auto-generated-cl: translation import
* | | | | Merge "Using highres icons for backup" into ub-launcher3-burnabySunny Goyal2015-07-151-1/+1
|\ \ \ \ \