summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixing proguard stripping animation method.Winson Chung2015-06-121-1/+1
|
* Merge "Tying accessibility drag lifecycle to that of dragController" into ↵Sunny Goyal2015-06-112-16/+14
|\ | | | | | | ub-launcher3-burnaby
| * Tying accessibility drag lifecycle to that of dragControllerSunny Goyal2015-06-082-16/+14
| | | | | | | | | | Bug: 20865291 Change-Id: I1e0aceb20efcf4c32d76a656c499a1a4a5a32a65
* | Fix a small UI nit with screen reorderingAdam Cohen2015-06-101-0/+7
| | | | | | | | | | | | | | | | | | | | | | -> When in overview mode, flinging the pages can leave the scroller running (invisibly) for much additional time, since the scroller fling bounds far exceed the alloawble scroll bounds (in order to achieve a hard wall type effect) -> When this is happening, user couldn't pick up a page for reordering -> Ended the scroller early in this case to avoid the problem Change-Id: I8b6f140d9a87bb742e57625e90ca7d76a2158e28
* | am 0c979d1f: Catch TransactionTooLargeException when loading widget provider ↵Hyunyoung Song2015-06-100-0/+0
|\ \ | | | | | | | | | | | | | | | | | | list b/19904873 * commit '0c979d1f2fda45b9d098f9399e1079e6bc22c2b0': Catch TransactionTooLargeException when loading widget provider list b/19904873
| * | Catch TransactionTooLargeException when loading widget provider listHyunyoung Song2015-06-091-17/+42
| | | | | | | | | | | | | | | | | | | | | | | | b/19904873 Change-Id: Ic0d13ee7513731706bc0f9fde8502acba0899cb3 Note: fix for almonte will be separate due to diff btw the branches.. (cherry picked from commit 3abd5488cca5b06c97251db453a5a6ed61e33ce8)
* | | Merge "Fixing crash in restore" into ub-launcher3-burnabySunny Goyal2015-06-102-42/+20
|\ \ \
| * | | Fixing crash in restoreSunny Goyal2015-06-052-42/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > LauncherAppState cannot be initialized during restore, as it is not called from a looper thread. Bug: 21275736 Change-Id: Ifdb3f9913fa2ee63a7e1566d0c5cfc6f72b4f41e
* | | | Merge "Catch TransactionTooLargeException when loading widget provider list ↵Hyunyoung Song2015-06-091-19/+44
|\ \ \ \ | | | | | | | | | | | | | | | b/19904873" into ub-launcher3-burnaby
| * | | | Catch TransactionTooLargeException when loading widget provider listHyunyoung Song2015-06-081-19/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b/19904873 Change-Id: Ic0d13ee7513731706bc0f9fde8502acba0899cb3 Note: fix for almonte will be separate due to diff btw the branches..
* | | | | Merge "Make WidgetsRecyclerView not crash on MNC support lib" into ↵Hyunyoung Song2015-06-091-2/+6
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | ub-launcher3-burnaby
| * | | | Make WidgetsRecyclerView not crash on MNC support libHyunyoung Song2015-06-081-2/+6
| |/ / / | | | | | | | | | | | | Change-Id: Ia7bee39752ad0c0b58e74df4507caaf7a3cd8c29
* | | | Merge "Removing LauncherApplication to enable us to easily catch ↵Sunny Goyal2015-06-083-36/+0
|\ \ \ \ | | | | | | | | | | | | | | | LauncherAppState errors" into ub-launcher3-burnaby
| * | | | Removing LauncherApplication to enable us to easily catch LauncherAppState ↵Sunny Goyal2015-06-043-36/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | errors Change-Id: I56e956067692e5b9c4719c5e08b8f558e6011a60
* | | | | Merge "Fixing preloaded widget not getting used for animation" into ↵Sunny Goyal2015-06-084-127/+67
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | ub-launcher3-burnaby
| * | | | | Fixing preloaded widget not getting used for animationSunny Goyal2015-06-024-128/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > The preloaded widget was being set in a different instance of PendingAddWidgetInfo and was never getting used for animation. bug: 20699153 Change-Id: Iaec13640e49c66993b4695e4a52dc3a3a2133fb2
* | | | | | Merge "Fixing touch feedback clipped on SetWallpaper button" into ↵Sunny Goyal2015-06-081-0/+31
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | ub-launcher3-burnaby
| * | | | | Fixing touch feedback clipped on SetWallpaper buttonSunny Goyal2015-06-051-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 19534312 Change-Id: I97dfd92c560caaf83e525f7e94286a7a77d2ba0b
* | | | | | Merge "Improve AyncTask throughput inside WidgetPreviewLoader" into ↵Hyunyoung Song2015-06-053-11/+21
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | ub-launcher3-burnaby
| * | | | | Improve AyncTask throughput inside WidgetPreviewLoaderHyunyoung Song2015-06-053-11/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b/21133230 > Synchronized block was creating a bottleneck for the AsyncTasks. > Remove calls that doesn't need to be synchronized outside synchronized block. > Also removed setAlpha call as after the bottleneck was removed, Inefficient alpha view usage alert started popping up in traceview. Due to less jankness, removing the fadein animation doesn't have any visible effect. Link to lock congestion visualization: https://x20web.corp.google.com/~hyunyoungs/no_crawl/traceview/traceview_lockcontention.html Result: gfx-avg-jank delta = "-1" Change-Id: If12817df0730f346cdba7e2f38f232eb9a4336c0
* | | | | | Merge "Ensuring that we use the screen width more optimally in AllApps." ↵Winson Chung2015-06-0511-36/+58
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | into ub-launcher3-burnaby
| * | | | | | Ensuring that we use the screen width more optimally in AllApps.Winson Chung2015-06-0511-36/+58
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixing issue with prediction bar height being calculated incorrectly - Fixing issue where the prediction bar divider was not drawn exactly between the bar and the first row of apps - Removing padding to allow scrollbars to reach full height Bug: 20222023 Bug: 21335377 Change-Id: I2c0614a36e2294d0d6184a6bff4847876ffe971e
* | | | / / Ensure that we use the system long press duration when dragging from AllApps.Winson Chung2015-06-056-27/+28
| |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Removing some old code out of LauncherAppState Bug: 21559400 Change-Id: I3c586094efb7ad8a17d2169bc8aaccf6b0df40a2
* | | | | Merge "Code cleanup" into ub-launcher3-burnabySunny Goyal2015-06-059-116/+23
|\ \ \ \ \
| * | | | | Code cleanupSunny Goyal2015-06-059-116/+23
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Removing obsolete logging > Removing unused methods > Removing resource leak warning due to non-static handler class in launcher Change-Id: Ic38cc8aea82899b0b5ee3235f04e5964e49245fb
* | | | | Merge "Updating assets" into ub-launcher3-burnabySunny Goyal2015-06-0575-6/+6
|\ \ \ \ \
| * | | | | Updating assetsSunny Goyal2015-06-0575-6/+6
| |/ / / / | | | | | | | | | | | | | | | | | | | | Bug: 21304080 Change-Id: I26cf435779b477f0961d8e0d56dd6b86b418a3be
* | | | | Merge "Removing unused animation style" into ub-launcher3-burnabySunny Goyal2015-06-051-31/+0
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Removing unused animation styleSunny Goyal2015-06-011-31/+0
| | | | | | | | | | | | | | | | | | | | Change-Id: Ib8031eb9604cb2c10d4ac07e22b94772f7967a89
* | | | | Merge "Preventing overdraw in custom content screen" into ub-launcher3-burnabySunny Goyal2015-06-041-1/+1
|\ \ \ \ \
| * | | | | Preventing overdraw in custom content screenSunny Goyal2015-06-041-1/+1
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Assuming customcontent screen is opaque, setting scrim alpha to 0 when the screen is fully visible Bug: 21584384 Change-Id: Ifa95a10d880532f59573090673e90a87c7edba9b
* | | | | Use a broadcast receiver instead of a settings observer.Rahul Chaturvedi2015-06-045-29/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Settings observer doesn't work if a setting is modified in another process, hence we instead register a receiver which listens for a signal from the settings process that the rotation preference has changed. Change-Id: I570e3c67bb64a32347e84ca00a8ac31d9010eac3
* | | | | Updating widget list when iconCache updatesSunny Goyal2015-06-043-2/+7
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Fixing bug where items were not getting removed from the memcache > Fixing bug where package entries were not getting removing because of component mismatch. Bug: 21612532 Change-Id: Ie56f3272f7fb7e1a37c5ff9bfa523d814edc1a02
* | | | Merge "Adding back icon size dimen" into ub-launcher3-burnabySunny Goyal2015-06-041-0/+2
|\ \ \ \
| * | | | Adding back icon size dimenSunny Goyal2015-06-041-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Bug: 21638256 Change-Id: I522a8e59e63e4a49a087e4fb3aac102595ea6818
* | | | | Merge "Consistent scrolling experience for All apps and widget tray" into ↵Hyunyoung Song2015-06-047-22/+86
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | ub-launcher3-burnaby
| * | | | Consistent scrolling experience for All apps and widget trayHyunyoung Song2015-06-047-22/+86
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b/21375339 Change-Id: I8362b3ca94b7c4e75932d42cd09a989e0e3919c0
* | | | | Fixing different bitmap sizes in different orientationsSunny Goyal2015-06-0314-86/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Using a single bitmap icon size > Picking up appropriate density for satisfy the required icon size > Fixing some icon size assumptions during icon animations Bug: 19514688 Change-Id: Ia7a1d0d2c03a9d39ccc241fa4ae3eb8a0f374585
* | | | | Merge "Fixing issue with hotseat being on the wrong side of the screen in ↵Winson Chung2015-06-032-4/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | RTL." into ub-launcher3-burnaby
| * | | | | Fixing issue with hotseat being on the wrong side of the screen in RTL.Winson Chung2015-06-032-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 21499466 Change-Id: I566cd89dfb855f89f4e68bf56e48bf99204b11ab
* | | | | | Merge "Stylus support: handling drag n drop for widgets" into ↵Mady Mellor2015-06-031-3/+11
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | ub-launcher3-burnaby
| * | | | | | Stylus support: handling drag n drop for widgetsMady Mellor2015-06-021-3/+11
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This alters the widget host view code to consider stylus button presses allowing the user to pick up widgets with a stylus button press, and drop them by releasing the button. Bug: 20430722 Change-Id: I359f72bd80016f4b313aab1325cc92d7c6fd2a8c
* | | | | | Merge "Stylus support: creating and setting listeners for stylus button ↵Mady Mellor2015-06-036-1/+144
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | press" into ub-launcher3-burnaby
| * | | | | Stylus support: creating and setting listeners for stylus button pressMady Mellor2015-06-026-1/+144
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This updates almost(*) all locations that use a long press listener to also set a custom touch listener that recognizes the stylus button press action. The stylus button press action is: when a stylus touches a view while the primary stylus button is pressed which may occur on a DOWN or MOVE event. *The location this is *not* enabled for is: Longpress to enter "overview" mode -- this isn't really a selection or drag n drop action; it is also easy to accidentally do this while using the stylus gesture to drag n drop items which is not an ideal interaction. Also not set for the "cling" that demonstrates this. Bug: 20430722 Change-Id: I9343f143261a7b4fada9afca28b8a11a60dbecca
* | | | | Merge "Adding context for app launches." into ub-launcher3-burnabyWinson Chung2015-06-0210-26/+147
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | Adding context for app launches.Winson Chung2015-06-0210-26/+147
| | | | | | | | | | | | | | | | | | | | | | | | | Bug: 21492784 Change-Id: I1b28ac8f44498e1d9770e770b074f19c721c3f10
* | | | | Remove use of API level 19 classes.Winson Chung2015-06-021-2/+2
|/ / / / | | | | | | | | Bug: 21583308
* | / / Removing some synthetic method creationSunny Goyal2015-06-0220-59/+62
| |/ / |/| | | | | | | | | | | | | | > Make package-private and @Thunk all private methods and constructors accessed from inner classes. Change-Id: Ie5913860a0c33e48e9bf68f9b5b1699f64c2f174
* | | Build fix: Removing FastOutSlowIn interpolatorSunny Goyal2015-06-011-3/+5
| | | | | | | | | | | | Change-Id: Ia84445285d013fe8da3c895f5264f329f2403890
* | | Folder UI fixesSunny Goyal2015-06-014-13/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Fixing top padding (b/21304523) > Alinging the label and page indicators to the icons > Fixing folder label alingment in RTL (b/21445821) > Updating footer animation (b/21336853) Bug: 21304523, 21445821, 21336853 Change-Id: I2cf3a48c76653b19437b31252d6ee559ce798094