OSDN Git Service

android-x86/packages-apps-Trebuchet.git
8 years agoMerge "Fixing minor memory leak with name comparator." into ub-launcher3-burnaby
Winson Chung [Fri, 31 Jul 2015 20:08:57 +0000 (20:08 +0000)]
Merge "Fixing minor memory leak with name comparator." into ub-launcher3-burnaby

8 years agoMerge "Fixing issue with flash during overview transition." into ub-launcher3-burnaby
Winson Chung [Fri, 31 Jul 2015 20:04:08 +0000 (20:04 +0000)]
Merge "Fixing issue with flash during overview transition." into ub-launcher3-burnaby

8 years agoFixing issue with flash during overview transition.
Winson Chung [Fri, 31 Jul 2015 19:39:57 +0000 (12:39 -0700)]
Fixing issue with flash during overview transition.

- 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

8 years agoHomescreen migration from a larger grid to a smaller grid.
Sunny Goyal [Mon, 27 Jul 2015 21:36:07 +0000 (14:36 -0700)]
Homescreen migration from a larger grid to a smaller grid.

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

8 years agoam cb767411: Add proto flag "javanano_use_deprecated_package" to avoid build breakage
Adam Cohen [Fri, 31 Jul 2015 18:49:57 +0000 (18:49 +0000)]
am cb767411: Add proto flag "javanano_use_deprecated_package" to avoid build breakage

* commit 'cb7674118c6fa6849e657fb8fea25c8fd93477cc':
  Add proto flag "javanano_use_deprecated_package" to avoid build breakage

8 years agoam 0ff535ea: (-s ours) Remove references to FloatMath, deprecated in M
Adam Cohen [Fri, 31 Jul 2015 18:49:57 +0000 (18:49 +0000)]
am 0ff535ea: (-s ours) Remove references to FloatMath, deprecated in M

* commit '0ff535eabbdf27ec5a790adbc64f27f8c63e7399':
  Remove references to FloatMath, deprecated in M

8 years agoAdd proto flag "javanano_use_deprecated_package" to avoid build breakage
Adam Cohen [Fri, 31 Jul 2015 17:58:44 +0000 (10:58 -0700)]
Add proto flag "javanano_use_deprecated_package" to avoid build breakage

Change-Id: Iea8a7bc2bb385e066b3f972105224fee3eb7c894

8 years agoMerge "Fixing issue with accessibility falsely reporting app count when there are...
Winson Chung [Thu, 30 Jul 2015 23:57:08 +0000 (23:57 +0000)]
Merge "Fixing issue with accessibility falsely reporting app count when there are no search results." into ub-launcher3-burnaby

8 years agoMerge "Prevent crash when flattening ComponentKey to string with invalid user." into...
Winson Chung [Thu, 30 Jul 2015 23:46:11 +0000 (23:46 +0000)]
Merge "Prevent crash when flattening ComponentKey to string with invalid user." into ub-launcher3-burnaby

8 years agoMerge "Prevent from widget cell preview image from being cut off." into ub-launcher3...
Hyunyoung Song [Thu, 30 Jul 2015 22:19:49 +0000 (22:19 +0000)]
Merge "Prevent from widget cell preview image from being cut off." into ub-launcher3-burnaby

8 years agoPrevent from widget cell preview image from being cut off.
Hyunyoung Song [Thu, 30 Jul 2015 22:04:59 +0000 (15:04 -0700)]
Prevent from widget cell preview image from being cut off.

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

8 years agoRemove references to FloatMath, deprecated in M
Adam Cohen [Thu, 30 Jul 2015 20:03:56 +0000 (13:03 -0700)]
Remove references to FloatMath, deprecated in M

-> Allows us to build against M SDK

issue 22822360

Change-Id: I1178eb6bafc348699c5be8c29858eb3dff093e11

8 years agoFixing issue with accessibility falsely reporting app count when there are no search...
Winson Chung [Thu, 30 Jul 2015 19:53:33 +0000 (12:53 -0700)]
Fixing issue with accessibility falsely reporting app count when there are no search results.

Bug: 22672783
Change-Id: Ie40acc592e59699eac2a4ff2045a7f8ba029d33a

8 years agoPrevent crash when flattening ComponentKey to string with invalid user.
Winson Chung [Thu, 30 Jul 2015 19:03:28 +0000 (12:03 -0700)]
Prevent crash when flattening ComponentKey to string with invalid user.

Bug: 22658306
Change-Id: I213d44e0bb22ac0617d46c80ab8cfec8f750a2cc

8 years agoMerge "Adding rank column in backup" into ub-launcher3-burnaby
Sunny Goyal [Thu, 30 Jul 2015 18:01:49 +0000 (18:01 +0000)]
Merge "Adding rank column in backup" into ub-launcher3-burnaby

8 years agoMerge "Fixing overview mode scale calculations." into ub-launcher3-burnaby
Winson Chung [Tue, 28 Jul 2015 22:38:14 +0000 (22:38 +0000)]
Merge "Fixing overview mode scale calculations." into ub-launcher3-burnaby

8 years agoFixing minor memory leak with name comparator.
Winson Chung [Tue, 28 Jul 2015 00:50:13 +0000 (17:50 -0700)]
Fixing minor memory leak with name comparator.

- 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

8 years agoOverlay support lib RV resources in Android.mk
Hyunyoung Song [Tue, 28 Jul 2015 01:24:45 +0000 (18:24 -0700)]
Overlay support lib RV resources in Android.mk

Note: after this change, ag/735298 can be reverted.

b/22719084

Change-Id: I83caf8832790b1df0a90a1339f6b24f481c51661

8 years agoRemove NPE inside WidgetsListAdapter during monkey actor test
Hyunyoung Song [Mon, 27 Jul 2015 20:35:33 +0000 (13:35 -0700)]
Remove NPE inside WidgetsListAdapter during monkey actor test
b/22518383

Change-Id: I1a683c49be93af150f7873390b723cee0d4ac5df

8 years agoMerge "Don't obfuscate Launcher3" into ub-launcher3-burnaby
Adam Cohen [Sat, 25 Jul 2015 00:26:34 +0000 (00:26 +0000)]
Merge "Don't obfuscate Launcher3" into ub-launcher3-burnaby

8 years agoDon't obfuscate Launcher3
Adam Cohen [Fri, 24 Jul 2015 22:56:33 +0000 (15:56 -0700)]
Don't obfuscate Launcher3

Change-Id: I86ac745602c0d3c09842ed9553f7589c232f5d23

8 years agoAdding rank column in backup
Sunny Goyal [Mon, 20 Jul 2015 19:59:39 +0000 (12:59 -0700)]
Adding rank column in backup

> 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

8 years agoMerge "Shifting hotseat icons to aling with all-apps icon, if the hotseat size is...
Sunny Goyal [Tue, 21 Jul 2015 01:50:37 +0000 (01:50 +0000)]
Merge "Shifting hotseat icons to aling with all-apps icon, if the hotseat size is different from the source device" into ub-launcher3-burnaby

8 years agoMerge "Fixing widget restore" into ub-launcher3-burnaby
Sunny Goyal [Tue, 21 Jul 2015 00:42:41 +0000 (00:42 +0000)]
Merge "Fixing widget restore" into ub-launcher3-burnaby

8 years agoMerge "Resizing the bitmap before caching it in the DB" into ub-launcher3-burnaby
Sunny Goyal [Tue, 21 Jul 2015 00:41:38 +0000 (00:41 +0000)]
Merge "Resizing the bitmap before caching it in the DB" into ub-launcher3-burnaby

8 years agoEnable Launcher3 as default Home app
bohu [Thu, 21 May 2015 15:20:38 +0000 (08:20 -0700)]
Enable Launcher3 as default Home app

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

8 years agoResizing the bitmap before caching it in the DB
Sunny Goyal [Mon, 20 Jul 2015 21:32:48 +0000 (14:32 -0700)]
Resizing the bitmap before caching it in the DB

> 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

8 years agoShifting hotseat icons to aling with all-apps icon, if the hotseat
Sunny Goyal [Mon, 20 Jul 2015 21:23:43 +0000 (14:23 -0700)]
Shifting hotseat icons to aling with all-apps icon, if the hotseat
size is different from the source device

Bug: 19074056
Change-Id: I8d8517971a3cde0dc38f653d151daeba90fa38a0

8 years agoFixing widget restore
Sunny Goyal [Tue, 14 Jul 2015 02:54:53 +0000 (19:54 -0700)]
Fixing widget restore

> 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

8 years agoam 249a510a: (-s ours) [DO NOT MERGE] Adding minSpanX and minSpanY for all the launch...
Sunny Goyal [Fri, 17 Jul 2015 19:36:00 +0000 (19:36 +0000)]
am 249a510a: (-s ours) [DO NOT MERGE] Adding minSpanX and minSpanY for all the launcher widgets

* commit '249a510ab318db461ce1ac86baca01021fe41a2c':
  [DO NOT MERGE] Adding minSpanX and minSpanY for all the launcher widgets

8 years agoMerge "Adding minSpanX and minSpanY for all the launcher widgets" into ub-launcher3...
Sunny Goyal [Fri, 17 Jul 2015 18:56:37 +0000 (18:56 +0000)]
Merge "Adding minSpanX and minSpanY for all the launcher widgets" into ub-launcher3-burnaby

8 years agoAdding minSpanX and minSpanY for all the launcher widgets
Sunny Goyal [Fri, 17 Jul 2015 00:27:43 +0000 (17:27 -0700)]
Adding minSpanX and minSpanY for all the launcher widgets

Bug: 22353460
Change-Id: Id4450dee42a83e4603dcd56e1c4dec2b0e405858

8 years ago[DO NOT MERGE] Adding minSpanX and minSpanY for all the launcher widgets
Sunny Goyal [Fri, 17 Jul 2015 00:27:43 +0000 (17:27 -0700)]
[DO NOT MERGE] Adding minSpanX and minSpanY for all the launcher widgets

Bug: 22353460
Change-Id: Id4450dee42a83e4603dcd56e1c4dec2b0e405858

8 years agoQuery the title and icon for app using correct user handle.
Hyunyoung Song [Fri, 17 Jul 2015 00:24:30 +0000 (17:24 -0700)]
Query the title and icon for app using correct user handle.

> 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

8 years agoMerge "Fix issue where corp app widget doesn't show correctly on drop targets." into...
Hyunyoung Song [Thu, 16 Jul 2015 23:37:35 +0000 (23:37 +0000)]
Merge "Fix issue where corp app widget doesn't show correctly on drop targets." into ub-launcher3-burnaby

8 years agoFix issue where corp app widget doesn't show correctly on drop targets.
Hyunyoung Song [Thu, 16 Jul 2015 23:36:59 +0000 (16:36 -0700)]
Fix issue where corp app widget doesn't show correctly on drop targets.

b/22535234

Change-Id: I6e57c7728704ad0f99df25257211243a23d26acd

8 years agoMerge "Fixing AppWidgetInfo not initialized with proper user" into ub-launcher3-burnaby
Sunny Goyal [Thu, 16 Jul 2015 01:13:01 +0000 (01:13 +0000)]
Merge "Fixing AppWidgetInfo not initialized with proper user" into ub-launcher3-burnaby

8 years agoam 3fec14be: (-s ours) Merge "[DO NOT MERGE] fixing build break" into ub-launcher3...
Sunny Goyal [Thu, 16 Jul 2015 01:10:17 +0000 (01:10 +0000)]
am 3fec14be: (-s ours) Merge "[DO NOT MERGE] fixing build break" into ub-launcher3-almonte

* commit '3fec14bedc03d77aa7a066a8053c6068dddda192':
  [DO NOT MERGE] fixing build break

8 years agoam e48e570a: (-s ours) Merge "[Do NOT MERGE] Fixing AppWidgetInfo not initialized...
Sunny Goyal [Thu, 16 Jul 2015 01:03:06 +0000 (01:03 +0000)]
am e48e570a: (-s ours) Merge "[Do NOT MERGE] Fixing AppWidgetInfo not initialized with proper user" into ub-launcher3-almonte

* commit 'e48e570a82293d34e955b966c7821770600ec7bf':
  [Do NOT MERGE] Fixing AppWidgetInfo not initialized with proper user

8 years agoMerge "[DO NOT MERGE] fixing build break" into ub-launcher3-almonte
Sunny Goyal [Thu, 16 Jul 2015 01:03:00 +0000 (01:03 +0000)]
Merge "[DO NOT MERGE] fixing build break" into ub-launcher3-almonte

8 years ago[DO NOT MERGE] fixing build break
Sunny Goyal [Thu, 16 Jul 2015 01:02:14 +0000 (18:02 -0700)]
[DO NOT MERGE] fixing build break

Change-Id: Ief14e03874626d4f6fdf403d98950d9d64b66160

8 years agoMerge "[Do NOT MERGE] Fixing AppWidgetInfo not initialized with proper user" into...
Sunny Goyal [Thu, 16 Jul 2015 00:50:17 +0000 (00:50 +0000)]
Merge "[Do NOT MERGE] Fixing AppWidgetInfo not initialized with proper user" into ub-launcher3-almonte

8 years agoFixing AppWidgetInfo not initialized with proper user
Sunny Goyal [Thu, 16 Jul 2015 00:20:54 +0000 (17:20 -0700)]
Fixing AppWidgetInfo not initialized with proper user

Bug: 21673750
Change-Id: I1e03c3cb10a87e394e963cc2001c9c1c293eb2ca

8 years agoMerge "Fix issue with UiThreadReveal on L devices" into ub-launcher3-burnaby
Adam Cohen [Thu, 16 Jul 2015 00:38:10 +0000 (00:38 +0000)]
Merge "Fix issue with UiThreadReveal on L devices" into ub-launcher3-burnaby

8 years ago[Do NOT MERGE] Fixing AppWidgetInfo not initialized with proper user
Sunny Goyal [Thu, 16 Jul 2015 00:20:54 +0000 (17:20 -0700)]
[Do NOT MERGE] Fixing AppWidgetInfo not initialized with proper user

Bug: 21673750
Change-Id: I1e03c3cb10a87e394e963cc2001c9c1c293eb2ca

8 years agoFix issue with UiThreadReveal on L devices
Adam Cohen [Thu, 16 Jul 2015 00:34:42 +0000 (17:34 -0700)]
Fix issue with UiThreadReveal on L devices

issue 22507784

Change-Id: If75292b21a1b572903099ab0682d5c7f69a960f4

8 years agoam eb01b967: (-s ours) Import translations. DO NOT MERGE
Geoff Mendal [Wed, 15 Jul 2015 21:37:53 +0000 (21:37 +0000)]
am eb01b967: (-s ours) Import translations. DO NOT MERGE

* commit 'eb01b967460d0d8287042e5f6dd16578f3f59eb6':
  Import translations. DO NOT MERGE

8 years agoImport translations. DO NOT MERGE
Geoff Mendal [Wed, 15 Jul 2015 20:07:24 +0000 (13:07 -0700)]
Import translations. DO NOT MERGE

Change-Id: I025eedc9fa35a6ba583f8d3e215dd066ddb634b3
Auto-generated-cl: translation import

8 years agoMerge "Using highres icons for backup" into ub-launcher3-burnaby
Sunny Goyal [Wed, 15 Jul 2015 17:55:11 +0000 (17:55 +0000)]
Merge "Using highres icons for backup" into ub-launcher3-burnaby

8 years agoUsing highres icons for backup
Sunny Goyal [Wed, 15 Jul 2015 17:13:56 +0000 (10:13 -0700)]
Using highres icons for backup

Bug: 22410445
Change-Id: I0fbc2d1217127556af806f12dbb5960712627ab7

8 years agoImport translations. DO NOT MERGE
Geoff Mendal [Wed, 15 Jul 2015 12:20:13 +0000 (05:20 -0700)]
Import translations. DO NOT MERGE

Change-Id: I26a10cf2320602abc00b38dfafc228e22fa20f1a
Auto-generated-cl: translation import

8 years agoMerge "Widget row should not be cut off on the right, when there is an indent" into...
Hyunyoung Song [Tue, 14 Jul 2015 23:58:13 +0000 (23:58 +0000)]
Merge "Widget row should not be cut off on the right, when there is an indent" into ub-launcher3-burnaby

8 years agoWidget row should not be cut off on the right, when there is an indent
Hyunyoung Song [Tue, 14 Jul 2015 23:52:35 +0000 (16:52 -0700)]
Widget row should not be cut off on the right, when there is an indent

b/22483452

Change-Id: I9d1cd8b71f4b6a4f75af420e9f54b73e9ae7527c

8 years agoMerge "Fixing shortcuts not getting migrated to app icons" into ub-launcher3-burnaby
Sunny Goyal [Tue, 14 Jul 2015 17:48:30 +0000 (17:48 +0000)]
Merge "Fixing shortcuts not getting migrated to app icons" into ub-launcher3-burnaby

8 years agoFixing shortcuts not getting migrated to app icons
Sunny Goyal [Tue, 14 Jul 2015 02:59:50 +0000 (19:59 -0700)]
Fixing shortcuts not getting migrated to app icons

Bug: 22410445
Change-Id: I939c59270529daf51638aa30b30763c18a2ce6a5

8 years agoMerge "Fixing regression in calculating workspace padding." into ub-launcher3-burnaby
Winson Chung [Mon, 13 Jul 2015 23:24:00 +0000 (23:24 +0000)]
Merge "Fixing regression in calculating workspace padding." into ub-launcher3-burnaby

8 years agoFixing regression in calculating workspace padding.
Winson Chung [Mon, 13 Jul 2015 18:14:30 +0000 (11:14 -0700)]
Fixing regression in calculating workspace padding.

Bug: 22340087
Change-Id: I28d599fbb8f136b8b5aa4aeffaa0fba5661ab73c

8 years agoMerge "Hide spammy WidgetModel log behind a DEBUG flag" into ub-launcher3-burnaby
Hyunyoung Song [Mon, 13 Jul 2015 17:36:05 +0000 (17:36 +0000)]
Merge "Hide spammy WidgetModel log behind a DEBUG flag" into ub-launcher3-burnaby

8 years agoHide spammy WidgetModel log behind a DEBUG flag
Hyunyoung Song [Mon, 13 Jul 2015 17:26:22 +0000 (10:26 -0700)]
Hide spammy WidgetModel log behind a DEBUG flag

Change-Id: I0119855655516d9fdc114334a974b8766aabf674

8 years agoImport translations. DO NOT MERGE
Geoff Mendal [Sat, 11 Jul 2015 13:18:55 +0000 (06:18 -0700)]
Import translations. DO NOT MERGE

Change-Id: Ie264c6de4d3b8a6c54ee093512aa1032a2d09d65
Auto-generated-cl: translation import

8 years agoFixing overview mode scale calculations.
Winson Chung [Sat, 11 Jul 2015 01:00:48 +0000 (18:00 -0700)]
Fixing overview mode scale calculations.

- Making the overview scale apply just like the spring loaded scale factor
- Tweaking overview scale to make it not so small

Change-Id: If93bac08609b0cfd9c9d9f8f6057498957378b56

8 years agoAnimation should start and finish on widgets button when opening/closing widget tray.
Hyunyoung Song [Sat, 11 Jul 2015 00:50:13 +0000 (17:50 -0700)]
Animation should start and finish on widgets button when opening/closing widget tray.

b/21301759

Change-Id: Ib0b9132d8709426598d95fc9f60d37752e05b711

8 years agoMaking long-press of AllApps to jump directly to search.
Winson Chung [Fri, 10 Jul 2015 21:33:23 +0000 (14:33 -0700)]
Making long-press of AllApps to jump directly to search.

Bug: 22210146
Change-Id: Iacf28416d6e31233a68e3b41576a8860b4b72b88

8 years agoMerge "Computing the visible cell layout area without using the current scroll" into...
Sunny Goyal [Thu, 9 Jul 2015 17:14:48 +0000 (17:14 +0000)]
Merge "Computing the visible cell layout area without using the current scroll" into ub-launcher3-burnaby

8 years agoComputing the visible cell layout area without using the current scroll
Sunny Goyal [Thu, 9 Jul 2015 06:28:51 +0000 (23:28 -0700)]
Computing the visible cell layout area without using the current scroll

Bug: 22358433
Change-Id: Ib79d02156b6bfab831fa659637f6113a7f555ba7

8 years agoMerge "Adding bounds checking when updating container bounds." into ub-launcher3...
Winson Chung [Thu, 9 Jul 2015 17:12:48 +0000 (17:12 +0000)]
Merge "Adding bounds checking when updating container bounds." into ub-launcher3-burnaby

8 years agoFixing overscroll not drawn in rtl
Sunny Goyal [Wed, 8 Jul 2015 23:41:21 +0000 (16:41 -0700)]
Fixing overscroll not drawn in rtl

> Using the currect right page index in rtl
> Updating current scroll after max scroll has been calculated. This prevens an extra overscroll when the layout happens for the first time.

Bug: 22358804
Change-Id: If07132701936e06f727211122a3b3e6f8426c07b

8 years agoAdding bounds checking when updating container bounds.
Winson Chung [Wed, 8 Jul 2015 21:13:08 +0000 (14:13 -0700)]
Adding bounds checking when updating container bounds.

- Only update the container bounds from their defaults if
  the search bar bounds are valid
- Adding logging to see if we can track down cases where we
  are getting bad bounds

Bug: 22333435
Change-Id: If15b6e228226e82e0fb9c7ba0f5b8a7a5f1d2e68

8 years agoam 9e218eaf: (-s ours) Import translations. DO NOT MERGE
Geoff Mendal [Wed, 8 Jul 2015 19:12:29 +0000 (19:12 +0000)]
am 9e218eaf: (-s ours) Import translations. DO NOT MERGE

* commit '9e218eaf2398e72619ab8dcd596ca99bfc85746b':
  Import translations. DO NOT MERGE

8 years agoMerge "Import translations. DO NOT MERGE" into ub-launcher3-burnaby
Geoff Mendal [Wed, 8 Jul 2015 19:02:51 +0000 (19:02 +0000)]
Merge "Import translations. DO NOT MERGE" into ub-launcher3-burnaby

8 years agoImport translations. DO NOT MERGE
Geoff Mendal [Wed, 8 Jul 2015 19:01:26 +0000 (12:01 -0700)]
Import translations. DO NOT MERGE

Change-Id: I6d088f3a7797d75df4e1faf21b3809a891618449
Auto-generated-cl: translation import

8 years agoImport translations. DO NOT MERGE
Geoff Mendal [Wed, 8 Jul 2015 18:57:19 +0000 (11:57 -0700)]
Import translations. DO NOT MERGE

Change-Id: If6f8aab0ef73f981d6a61581afc97b7373ead696
Auto-generated-cl: translation import

8 years agoam 4356e281: (-s ours) Import translations. DO NOT MERGE
Geoff Mendal [Wed, 8 Jul 2015 18:56:59 +0000 (18:56 +0000)]
am 4356e281: (-s ours) Import translations. DO NOT MERGE

* commit '4356e281037c51e8d0a92e8e93c11e5ee58e1dd2':
  Import translations. DO NOT MERGE

8 years agoImport translations. DO NOT MERGE
Geoff Mendal [Wed, 8 Jul 2015 18:24:36 +0000 (11:24 -0700)]
Import translations. DO NOT MERGE

Change-Id: I320b14c25007f49de2236722bf8239ab8c77e00d
Auto-generated-cl: translation import

8 years agoImport translations. DO NOT MERGE
Geoff Mendal [Wed, 8 Jul 2015 13:48:00 +0000 (06:48 -0700)]
Import translations. DO NOT MERGE

Change-Id: I32cb7994d836d2ea00acab42fa11f31b33dab3d9
Auto-generated-cl: translation import

8 years agoMerge "Adding custom slide up activity transition for L MR1" into ub-launcher3-burnaby
Adam Cohen [Wed, 8 Jul 2015 01:59:56 +0000 (01:59 +0000)]
Merge "Adding custom slide up activity transition for L MR1" into ub-launcher3-burnaby

8 years agoAdding custom slide up activity transition for L MR1
Adam Cohen [Sat, 23 May 2015 02:23:34 +0000 (19:23 -0700)]
Adding custom slide up activity transition for L MR1

issue 21402755

Change-Id: Id2542c0a3c38bd71aa407a3b0fe00fdee24e2f69

8 years agoMerge "Updating makefile to use the current SDK" into ub-launcher3-burnaby
Sunny Goyal [Tue, 7 Jul 2015 19:16:20 +0000 (19:16 +0000)]
Merge "Updating makefile to use the current SDK" into ub-launcher3-burnaby

8 years agoUpdating makefile to use the current SDK
Sunny Goyal [Tue, 7 Jul 2015 18:40:31 +0000 (11:40 -0700)]
Updating makefile to use the current SDK

Change-Id: I9e0f3f6d329098b40b704be6f60200110be5ed0e

8 years agoam 1bbb2ae9: Updating onRequestPermissionsResult signature to public
Sunny Goyal [Tue, 7 Jul 2015 18:54:34 +0000 (18:54 +0000)]
am 1bbb2ae9: Updating onRequestPermissionsResult signature to public

* commit '1bbb2ae90333dc3459a9d117ef285c6881a4f169':
  Updating onRequestPermissionsResult signature to public

8 years agoUpdating onRequestPermissionsResult signature to public
Sunny Goyal [Tue, 7 Jul 2015 17:57:57 +0000 (10:57 -0700)]
Updating onRequestPermissionsResult signature to public

Change-Id: Ie08caa55a195e9062006d13e86238cca827ef249
(cherry picked from commit dd2e6dfc16b7c6ae65123e4df545d42124b76cb0)

8 years agoUpdating onRequestPermissionsResult signature to public
Sunny Goyal [Tue, 7 Jul 2015 17:57:57 +0000 (10:57 -0700)]
Updating onRequestPermissionsResult signature to public

Change-Id: Ie08caa55a195e9062006d13e86238cca827ef249

8 years agoMerge "Moving prediction icons back into recycler view." into ub-launcher3-burnaby
Sunny Goyal [Tue, 7 Jul 2015 00:52:43 +0000 (00:52 +0000)]
Merge "Moving prediction icons back into recycler view." into ub-launcher3-burnaby

8 years agoMoving prediction icons back into recycler view.
Winson Chung [Tue, 7 Jul 2015 00:14:51 +0000 (17:14 -0700)]
Moving prediction icons back into recycler view.

- Fixes two accessibility issues with the prediction bar being
  separate from the rest of the list of icons related to scrolling
  and switch access.

Bug: 21725276
Change-Id: Ibc48e5028cace9a77000e6646b951f021910465d

8 years agoMerge "Hiding workspace from accessibility when its not visible" into ub-launcher3...
Sunny Goyal [Tue, 7 Jul 2015 00:46:08 +0000 (00:46 +0000)]
Merge "Hiding workspace from accessibility when its not visible" into ub-launcher3-burnaby

8 years agoHiding workspace from accessibility when its not visible
Sunny Goyal [Tue, 7 Jul 2015 00:19:48 +0000 (17:19 -0700)]
Hiding workspace from accessibility when its not visible

Bug: 22234780
Change-Id: Ie91ec59c3c3abb26fdf40466ea8173c78acb320f

8 years agoMerge "Using cellX and cellY for comparing position when rank is not available" into...
Sunny Goyal [Tue, 7 Jul 2015 00:12:05 +0000 (00:12 +0000)]
Merge "Using cellX and cellY for comparing position when rank is not available" into ub-launcher3-burnaby

8 years agoMerge "Using background outline provider as the final provider for reveal animation...
Sunny Goyal [Mon, 6 Jul 2015 20:58:27 +0000 (20:58 +0000)]
Merge "Using background outline provider as the final provider for reveal animation" into ub-launcher3-burnaby

8 years agoUsing cellX and cellY for comparing position when rank is not available
Sunny Goyal [Mon, 6 Jul 2015 20:04:02 +0000 (13:04 -0700)]
Using cellX and cellY for comparing position when rank is not available

Bug: 22059402
Change-Id: I69ec2b9b68610e171e76cd968de77aaed669672c

8 years agoMerge "Adding item rank when parsing a folder" into ub-launcher3-burnaby
Sunny Goyal [Mon, 6 Jul 2015 19:50:34 +0000 (19:50 +0000)]
Merge "Adding item rank when parsing a folder" into ub-launcher3-burnaby

8 years agoUsing an empty error view for QSB
Sunny Goyal [Mon, 6 Jul 2015 19:22:14 +0000 (12:22 -0700)]
Using an empty error view for QSB

Bug: 21731323
Change-Id: I837b7bf9bac443cd2062ab2d4c24e081eb01732d

8 years agoUsing background outline provider as the final provider for reveal animation
Sunny Goyal [Mon, 6 Jul 2015 18:45:18 +0000 (11:45 -0700)]
Using background outline provider as the final provider for reveal animation

> When two animations are running simultaneously, getOutlineProvider does not
give the correct provider

Bug: 22166935
Change-Id: I54c9bcd8cf42dd130949ea98e87c77389c02d00f

8 years agoAdding item rank when parsing a folder
Sunny Goyal [Mon, 6 Jul 2015 18:15:45 +0000 (11:15 -0700)]
Adding item rank when parsing a folder

Bug: 22059402
Change-Id: Ie57f2dd58d2b4bc2eb277f10e93a25d026d1cdd2

8 years agoImport translations. DO NOT MERGE
Geoff Mendal [Mon, 6 Jul 2015 12:25:09 +0000 (05:25 -0700)]
Import translations. DO NOT MERGE

Change-Id: I7e48169b1393f02ef4a152b8052f5243f3363f3a
Auto-generated-cl: translation import

8 years agoMerge "Using RGB_565 for low-res icons" into ub-launcher3-burnaby
Sunny Goyal [Thu, 2 Jul 2015 17:56:52 +0000 (17:56 +0000)]
Merge "Using RGB_565 for low-res icons" into ub-launcher3-burnaby

8 years agoam 1d8f4ad5: Revert "Add "option javanano_use_deprecated_package = true;\n" to protos...
Sunny Goyal [Thu, 2 Jul 2015 00:37:12 +0000 (00:37 +0000)]
am 1d8f4ad5: Revert "Add "option javanano_use_deprecated_package = true;\n" to protos compiled with the nano proto compiler that are referenced in Java files."

* commit '1d8f4ad59dbb17d80c6b910be8ad85904cb08d68':
  Revert "Add "option javanano_use_deprecated_package = true;\n" to protos compiled with the nano proto compiler that are referenced in Java files."

8 years agoam 469fea0b: Add "option javanano_use_deprecated_package = true;\n" to protos compile...
Sunny Goyal [Thu, 2 Jul 2015 00:37:11 +0000 (00:37 +0000)]
am 469fea0b: Add "option javanano_use_deprecated_package = true;\n" to protos compiled with the nano proto compiler that are referenced in Java files.

* commit '469fea0b390e893c1eb8115ff6c5f997916be4c1':
  Add "option javanano_use_deprecated_package = true;\n" to protos compiled with the nano proto compiler that are referenced in Java files.

8 years agoUpdating the pick-image tile in wallpaper picker
Sunny Goyal [Wed, 1 Jul 2015 20:46:37 +0000 (13:46 -0700)]
Updating the pick-image tile in wallpaper picker

> Changing the label to My photos
> Changing the icon to photo-library icon

Bug: 22019397
Change-Id: I068d8d5fa11392642bb0a84cb466d8f679e49b54

8 years agoUsing RGB_565 for low-res icons
Sunny Goyal [Wed, 1 Jul 2015 18:17:15 +0000 (11:17 -0700)]
Using RGB_565 for low-res icons

> Using a non-transparent image with flat background for low-res icons
> Changing the scale factor from 8 to 5
> The overall size change is 1/50 instead of 1/64

Bug: 22204941
Change-Id: I6cda4b4b3450c23a7bb8218ebd2de2b09af9c414

8 years agoRevert "Add "option javanano_use_deprecated_package = true;\n" to protos compiled...
Sunny Goyal [Wed, 1 Jul 2015 18:25:00 +0000 (18:25 +0000)]
Revert "Add "option javanano_use_deprecated_package = true;\n" to protos compiled with the nano proto compiler that are referenced in Java files."

This reverts commit 469fea0b390e893c1eb8115ff6c5f997916be4c1.

Change-Id: I2977f49a9836fd08038028c6cd8d3eed73185dde