OSDN Git Service

android-x86/frameworks-base.git
8 years agoMerge "Add RIL Error code list" into mm-wireless-dev
twen.chang [Fri, 11 Mar 2016 17:37:06 +0000 (17:37 +0000)]
Merge "Add RIL Error code list" into mm-wireless-dev
am: 49916d39e9

* commit '49916d39e9d27acbc6fb28b38abc78ad5dada5a4':
  Add RIL Error code list

8 years agoMerge "Add the missing overriden API" into nyc-dev
Tenghui Zhu [Fri, 11 Mar 2016 17:35:58 +0000 (17:35 +0000)]
Merge "Add the missing overriden API" into nyc-dev

8 years agoMerge "Add RIL Error code list" into mm-wireless-dev
Sanket Padawe [Fri, 11 Mar 2016 17:31:55 +0000 (17:31 +0000)]
Merge "Add RIL Error code list" into mm-wireless-dev

8 years agoMerge "Improve interaction around showing / hiding the gear behind notifications...
Mady Mellor [Fri, 11 Mar 2016 17:03:56 +0000 (17:03 +0000)]
Merge "Improve interaction around showing / hiding the gear behind notifications" into nyc-dev

8 years agoMerge "Set QS edit overflow bg" into nyc-dev
Jason Monk [Fri, 11 Mar 2016 16:00:46 +0000 (16:00 +0000)]
Merge "Set QS edit overflow bg" into nyc-dev

8 years agoSet QS edit overflow bg
Jason Monk [Fri, 11 Mar 2016 13:56:25 +0000 (08:56 -0500)]
Set QS edit overflow bg

Bug: 27396825
Change-Id: I656e49f66518f23bd05d59392f43fc1227207666

8 years agoMerge "More snazzy animation for UX happiness." into nyc-dev
Steve McKay [Fri, 11 Mar 2016 15:42:01 +0000 (15:42 +0000)]
Merge "More snazzy animation for UX happiness." into nyc-dev

8 years agoMerge "Add temporary logging to SimpleMonthView" into nyc-dev
Alan Viverette [Fri, 11 Mar 2016 15:08:24 +0000 (15:08 +0000)]
Merge "Add temporary logging to SimpleMonthView" into nyc-dev

8 years agoMerge "Add ability to swap docked/fullscreen stack" into nyc-dev
Jorim Jaggi [Fri, 11 Mar 2016 12:02:36 +0000 (12:02 +0000)]
Merge "Add ability to swap docked/fullscreen stack" into nyc-dev

8 years agoMerge "Fix: Context menu can contain obsolete suggestions." into nyc-dev
Keisuke Kuroyanagi [Fri, 11 Mar 2016 11:17:35 +0000 (11:17 +0000)]
Merge "Fix: Context menu can contain obsolete suggestions." into nyc-dev

8 years agoMerge "Make sure to compare subtype language with system language." into nyc-dev
Yohei Yukawa [Fri, 11 Mar 2016 10:25:57 +0000 (10:25 +0000)]
Merge "Make sure to compare subtype language with system language." into nyc-dev

8 years agoFix: Context menu can contain obsolete suggestions.
Keisuke Kuroyanagi [Fri, 11 Mar 2016 07:31:29 +0000 (16:31 +0900)]
Fix: Context menu can contain obsolete suggestions.

When there are not enough number of suggestions, previously used
suggestions was continue to be used. This fixes it and simplifies code
by always allocating SuggestionInfo array.

Bug: 27602619
Change-Id: I9378315b8c810f126f65fade96ce9f6ff5271957

8 years agoMerge "AAPT2: Add descriptions of Attributes in Styleables for R.java" into nyc-dev
Adam Lesinski [Fri, 11 Mar 2016 09:16:43 +0000 (09:16 +0000)]
Merge "AAPT2: Add descriptions of Attributes in Styleables for R.java" into nyc-dev

8 years agoMake sure to compare subtype language with system language.
Yohei Yukawa [Fri, 11 Mar 2016 09:08:52 +0000 (01:08 -0800)]
Make sure to compare subtype language with system language.

This CL addresses a regression introduced by a recent CL [1] that
non-keyboard subtypes are no longer implicitly enabled based on the
system language (a.k.a. "use system language" in the subtype enabler)
due to a type mismatch in comparison.

Here is the original logic:
 if (language.equals(systemLanguage) && systemLocale.startsWith(locale))

And here is the logic replaced by [1]:
 if (locale != null && locale.equals(systemLanguage)) {

The new logic is simply broken, because locale is a Locale object while
systemLanguage is a String object.  It never matches.

With this CL we will compare the system language with the locale
language again, with several test cases that should have been included
in [1], as a temporary solution until we start relying on
LocaleUtils#filterByLanguage() for non-keyboard subtypes.

  [1]: Iaf179d60c12b9a98b4f097e2449471c4184e049b
       e985c240e3feb62ea38d5b4e386be083ca0f215b

Bug: 27560993
Change-Id: If2d1710174853180465832e6ecbbb91235b76210

8 years agoMerge "Persist isAsciiCapable attribute of additional subtypes." into nyc-dev
Yohei Yukawa [Fri, 11 Mar 2016 09:02:21 +0000 (09:02 +0000)]
Merge "Persist isAsciiCapable attribute of additional subtypes." into nyc-dev

8 years agoMerge "NFC antenna location asset." into nyc-dev
Martijn Coenen [Fri, 11 Mar 2016 08:38:58 +0000 (08:38 +0000)]
Merge "NFC antenna location asset." into nyc-dev

8 years agoAAPT2: Add descriptions of Attributes in Styleables for R.java
Adam Lesinski [Fri, 11 Mar 2016 05:55:04 +0000 (21:55 -0800)]
AAPT2: Add descriptions of Attributes in Styleables for R.java

Change-Id: I69e7b73cbdfe4baf502348397435c501ae29ff5e

8 years agoAdd RIL Error code list
twen.chang [Fri, 4 Mar 2016 10:25:25 +0000 (18:25 +0800)]
Add RIL Error code list

BUG: 27589497

Change-Id: Ib8d7e0ff13f72106b79210ea786020c17b0ba842

8 years agoPersist isAsciiCapable attribute of additional subtypes.
Yohei Yukawa [Fri, 11 Mar 2016 07:46:07 +0000 (23:46 -0800)]
Persist isAsciiCapable attribute of additional subtypes.

This was somehow missed in the previous commit [1] that added
isAsciiCapable attribute to InputMethodSubtype.

For devices from API level 14 to 23, IME developers might be able to
work around this issue by specifying "AsciiCapable" [2] in
imeSubtypeExtraValue, which is not coverted by CTS though.

  [1]: Ic3ace4b6e0432d56696bcbc0be336aec1dc744a5
       dc8abf6cee0bcf44e2cad8155f0c151105d46471
  [2]: I0bc9954f163a3ec38d08b9ba842a8a31176eb6a6
       8e303cc5dd4860b6050d5725ce60ca7e6fb00c7b

Bug: 27603986
Change-Id: Ifb6bc83e782ac05df180dfe0d689897d07441a0c

8 years agoMerge "Reset mWordIteratorWithText when SpellChecker locale is changed." into nyc-dev
Keisuke Kuroyanagi [Fri, 11 Mar 2016 05:43:17 +0000 (05:43 +0000)]
Merge "Reset mWordIteratorWithText when SpellChecker locale is changed." into nyc-dev

8 years agoMerge "docs: Fix reference docs build to indicate N changes" into nyc-dev
Joe Fernandez [Fri, 11 Mar 2016 04:50:17 +0000 (04:50 +0000)]
Merge "docs: Fix reference docs build to indicate N changes" into nyc-dev

8 years agoMerge "Import translations. DO NOT MERGE" into nyc-dev
Bill Yi [Fri, 11 Mar 2016 04:42:34 +0000 (04:42 +0000)]
Merge "Import translations. DO NOT MERGE" into nyc-dev

8 years agoMerge "Import translations. DO NOT MERGE" into nyc-dev
Bill Yi [Fri, 11 Mar 2016 04:42:17 +0000 (04:42 +0000)]
Merge "Import translations. DO NOT MERGE" into nyc-dev

8 years agoMerge "Import translations. DO NOT MERGE" into nyc-dev
Bill Yi [Fri, 11 Mar 2016 04:41:59 +0000 (04:41 +0000)]
Merge "Import translations. DO NOT MERGE" into nyc-dev

8 years agoMerge "Import translations. DO NOT MERGE" into nyc-dev
Bill Yi [Fri, 11 Mar 2016 04:41:43 +0000 (04:41 +0000)]
Merge "Import translations. DO NOT MERGE" into nyc-dev

8 years agoMerge "Import translations. DO NOT MERGE" into nyc-dev
Bill Yi [Fri, 11 Mar 2016 04:41:25 +0000 (04:41 +0000)]
Merge "Import translations. DO NOT MERGE" into nyc-dev

8 years agoImport translations. DO NOT MERGE
Bill Yi [Fri, 11 Mar 2016 03:02:22 +0000 (19:02 -0800)]
Import translations. DO NOT MERGE

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

8 years agoImport translations. DO NOT MERGE
Bill Yi [Fri, 11 Mar 2016 02:52:52 +0000 (18:52 -0800)]
Import translations. DO NOT MERGE

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

8 years agoImport translations. DO NOT MERGE
Bill Yi [Fri, 11 Mar 2016 02:50:20 +0000 (18:50 -0800)]
Import translations. DO NOT MERGE

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

8 years agoImport translations. DO NOT MERGE
Bill Yi [Fri, 11 Mar 2016 02:45:30 +0000 (18:45 -0800)]
Import translations. DO NOT MERGE

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

8 years agoImport translations. DO NOT MERGE
Bill Yi [Fri, 11 Mar 2016 02:40:16 +0000 (18:40 -0800)]
Import translations. DO NOT MERGE

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

8 years agoMerge "Use FlingAnimationUtils for dismissing a notification" into nyc-dev
Mady Mellor [Fri, 11 Mar 2016 02:37:54 +0000 (02:37 +0000)]
Merge "Use FlingAnimationUtils for dismissing a notification" into nyc-dev

8 years agoUse FlingAnimationUtils for dismissing a notification
Mady Mellor [Tue, 8 Mar 2016 22:12:42 +0000 (14:12 -0800)]
Use FlingAnimationUtils for dismissing a notification

Addressing comment in ag/877913 PS6

Adds FlingAnimationUtils to SwipeHelper for dismissing notification
so that it may better follow a user's finger. This is not used
when a dismiss all is called (i.e. useAcceleration is requested).

Additionally alters dismiss behavior to accelerate out if velocity
was 0.

Change-Id: Ia7dc15d64e8427d5cfbdee3f4e48ccd60f5b0b36

8 years agoMore snazzy animation for UX happiness.
Steve McKay [Fri, 11 Mar 2016 00:13:05 +0000 (16:13 -0800)]
More snazzy animation for UX happiness.

Slide up/down and fade in/out.

Bug: 26918725
Change-Id: I4ef8e31d3e1f6087369daddbfd0a74bca3ff6937

8 years agoMerge changes I8c1cd4d4,I5ed13c17,If603049c,I5cb7937c into nyc-dev
Selim Cinek [Fri, 11 Mar 2016 02:20:14 +0000 (02:20 +0000)]
Merge changes I8c1cd4d4,I5ed13c17,If603049c,I5cb7937c into nyc-dev

* changes:
  Fixed a bug where text would still not animate
  Reseting user expansions when the shade is collapsed
  Added more spacing around notifications
  Fixed an bug with the notification backgrounds

8 years agoFixed a bug where text would still not animate
Selim Cinek [Fri, 11 Mar 2016 02:06:54 +0000 (18:06 -0800)]
Fixed a bug where text would still not animate

Bug: 27419215
Change-Id: I8c1cd4d4436ae019875f3e1ae5620c1673c7584e

8 years agoReseting user expansions when the shade is collapsed
Selim Cinek [Fri, 11 Mar 2016 02:06:27 +0000 (18:06 -0800)]
Reseting user expansions when the shade is collapsed

Bug: 27597152
Change-Id: I5ed13c17a95defc9ddc3f5f184f7a98b012baef1

8 years agoMerge "Do not enforce minimum size for pinned stack." into nyc-dev
Rob Carr [Fri, 11 Mar 2016 02:03:48 +0000 (02:03 +0000)]
Merge "Do not enforce minimum size for pinned stack." into nyc-dev

8 years agoMerge "media: add MediaFormat.COLOR_ IntDefs" into nyc-dev
Lajos Molnar [Fri, 11 Mar 2016 01:44:56 +0000 (01:44 +0000)]
Merge "media: add MediaFormat.COLOR_ IntDefs" into nyc-dev

8 years agoMerge "media: expose MediaFormat.KEY_HDR_STATIC_INFO key" into nyc-dev
Lajos Molnar [Fri, 11 Mar 2016 01:44:26 +0000 (01:44 +0000)]
Merge "media: expose MediaFormat.KEY_HDR_STATIC_INFO key" into nyc-dev

8 years agoMerge "Invalidate TextView on change of elegantTextHeight" into nyc-dev
Raph Levien [Fri, 11 Mar 2016 01:26:51 +0000 (01:26 +0000)]
Merge "Invalidate TextView on change of elegantTextHeight" into nyc-dev

8 years agoMerge "Display file names in Media libraries in grid mode" into nyc-dev
Aga Wronska [Fri, 11 Mar 2016 01:23:19 +0000 (01:23 +0000)]
Merge "Display file names in Media libraries in grid mode" into nyc-dev

8 years agoMerge "Open drawer when showing copy/move destination screen" into nyc-dev
Aga Wronska [Fri, 11 Mar 2016 01:15:23 +0000 (01:15 +0000)]
Merge "Open drawer when showing copy/move destination screen" into nyc-dev

8 years agoAdding docking checks for multi-window support.
Winson [Fri, 11 Mar 2016 00:35:03 +0000 (16:35 -0800)]
Adding docking checks for multi-window support.

Bug: 27387257
Change-Id: I9f16302e1f9475225538871d9fc09c0706e4dbfb

8 years agoOpen drawer when showing copy/move destination screen
Aga Wronska [Thu, 10 Mar 2016 01:36:44 +0000 (17:36 -0800)]
Open drawer when showing copy/move destination screen

Bug: 27479369
Change-Id: I0bc7efe88ad47885ecf35fb447cfe5c1f38a10d7

8 years agoDo not enforce minimum size for pinned stack.
Robert Carr [Thu, 10 Mar 2016 23:52:46 +0000 (15:52 -0800)]
Do not enforce minimum size for pinned stack.

We don't need to enforce a minimum size for the tasks in
the pinned stack as the bounds are controlled by the system.

Bug: 27536840
Change-Id: I9ecb2ebd3792b2739d05e9f403fe0acba969e46a

8 years agoMerge "Delete downloads activity." into nyc-dev
Steve McKay [Fri, 11 Mar 2016 00:03:59 +0000 (00:03 +0000)]
Merge "Delete downloads activity." into nyc-dev

8 years agoDisplay file names in Media libraries in grid mode
Aga Wronska [Thu, 10 Mar 2016 19:06:47 +0000 (11:06 -0800)]
Display file names in Media libraries in grid mode

Bug: 26829518
Change-Id: If9e2f331df0233ef114c4147ffbc16214558b5ce

8 years agoMerge "Fix node rejection crash" into nyc-dev
Chris Craik [Thu, 10 Mar 2016 23:45:19 +0000 (23:45 +0000)]
Merge "Fix node rejection crash" into nyc-dev

8 years agoMerge "screencap: Nix deprecated direct read of framebuffer." into nyc-dev
Prathmesh Prabhu [Thu, 10 Mar 2016 23:44:09 +0000 (23:44 +0000)]
Merge "screencap: Nix deprecated direct read of framebuffer." into nyc-dev

8 years agoMerge "fix the docs preview version number" into nyc-dev
Scott Main [Thu, 10 Mar 2016 23:43:50 +0000 (23:43 +0000)]
Merge "fix the docs preview version number" into nyc-dev

8 years agoFix node rejection crash
Chris Craik [Thu, 10 Mar 2016 23:43:13 +0000 (15:43 -0800)]
Fix node rejection crash

bug:27598131
Change-Id: Iea05c22ec10f92beef9c47236929eb5f860d84f9

8 years agofix the docs preview version number
smain@google.com [Thu, 10 Mar 2016 23:37:58 +0000 (15:37 -0800)]
fix the docs preview version number

Change-Id: I8c8a8fb6bd431eade40e62a6b135b628811c0558

8 years agoMerge "Making clearAllNotifications in PSB public." into nyc-dev
Muyuan Li [Thu, 10 Mar 2016 23:34:18 +0000 (23:34 +0000)]
Merge "Making clearAllNotifications in PSB public." into nyc-dev

8 years agoscreencap: Nix deprecated direct read of framebuffer.
Prathmesh Prabhu [Thu, 10 Mar 2016 23:23:34 +0000 (15:23 -0800)]
screencap: Nix deprecated direct read of framebuffer.

screencap command had a fallback path that tried to read the framebuffer
directly. This is no longer supported (and is blocked by selinux
policy), so delete said path.

BUG:27598623
Change-Id: I1b002d4a68ad93f75b150029d01b5f0c500be56c

8 years agoMerge "Fallback to byte-by-byte copy/move if optimized fails." into nyc-dev
Steve McKay [Thu, 10 Mar 2016 23:18:49 +0000 (23:18 +0000)]
Merge "Fallback to byte-by-byte copy/move if optimized fails." into nyc-dev

8 years agoMerge "update preview version number to 2 for offline docs" into nyc-dev
Scott Main [Thu, 10 Mar 2016 23:14:26 +0000 (23:14 +0000)]
Merge "update preview version number to 2 for offline docs" into nyc-dev

8 years agoupdate preview version number to 2 for offline docs
smain@google.com [Thu, 10 Mar 2016 23:13:28 +0000 (15:13 -0800)]
update preview version number to 2 for offline docs

Change-Id: I56cab8d21f9521fab17ec79a441c518cf9da536c

8 years agoMerge "make new 'referenceonly' docs build the default for offline docs. add preview...
Scott Main [Thu, 10 Mar 2016 23:12:43 +0000 (23:12 +0000)]
Merge "make new 'referenceonly' docs build the default for offline docs. add preview codename and version number HDF variables for generated docs." into nyc-dev

8 years agoMerge "Setting mBackdropBack to null if artwork isn't available." into nyc-dev
Vadim Tryshev [Thu, 10 Mar 2016 23:08:06 +0000 (23:08 +0000)]
Merge "Setting mBackdropBack to null if artwork isn't available." into nyc-dev

8 years agomake new 'referenceonly' docs build the default for offline docs.
smain@google.com [Thu, 10 Mar 2016 22:13:30 +0000 (14:13 -0800)]
make new 'referenceonly' docs build the default for offline docs.
add preview codename and version number HDF variables for generated docs.

Change-Id: I165526f4e575ec8885bab906e66d17666ea8b4ba

8 years agoMerge "Tweak createManageBlockedNumbersIntent API documentation." into nyc-dev
Abhijith Shastry [Thu, 10 Mar 2016 22:55:17 +0000 (22:55 +0000)]
Merge "Tweak createManageBlockedNumbersIntent API documentation." into nyc-dev

8 years agoMerge "Guard against null bitmap path" into nyc-dev
Makoto Onuki [Thu, 10 Mar 2016 22:29:20 +0000 (22:29 +0000)]
Merge "Guard against null bitmap path" into nyc-dev

8 years agoGuard against null bitmap path
Makoto Onuki [Thu, 10 Mar 2016 22:24:58 +0000 (14:24 -0800)]
Guard against null bitmap path

Bug 27548047

Change-Id: I7130652f5ae6f7ff6bd4ae6a3ace31986a49be30

8 years agoMerge "Cache per-Activity Resources objects" into nyc-dev
Adam Lesinski [Thu, 10 Mar 2016 20:50:39 +0000 (20:50 +0000)]
Merge "Cache per-Activity Resources objects" into nyc-dev

8 years agoMerge "Refactor ShortcutService" into nyc-dev
Makoto Onuki [Thu, 10 Mar 2016 20:42:26 +0000 (20:42 +0000)]
Merge "Refactor ShortcutService" into nyc-dev

8 years agoMerge "Fix crash-loop on wiped FBE device." into nyc-dev
Makoto Onuki [Thu, 10 Mar 2016 20:41:43 +0000 (20:41 +0000)]
Merge "Fix crash-loop on wiped FBE device." into nyc-dev

8 years agoFix crash-loop on wiped FBE device.
Makoto Onuki [Thu, 10 Mar 2016 20:28:38 +0000 (12:28 -0800)]
Fix crash-loop on wiped FBE device.

Bug 27595678

Change-Id: I02708b3c9e5472c5548bda7e6e15189614056471

8 years agoSetting mBackdropBack to null if artwork isn't available.
Vadim Tryshev [Thu, 10 Mar 2016 00:44:30 +0000 (16:44 -0800)]
Setting mBackdropBack to null if artwork isn't available.

Otherwise, it preserves the old image. Later, mBackdropFront will
get this image and try fading from it. This will suddenly flash the
old image.

Bug: 25185253
Change-Id: I702e73684e692712edf48ce31c152c5f5a8bffdb

8 years agoMerge "Fix weird QS Edit bug" into nyc-dev
Jason Monk [Thu, 10 Mar 2016 20:13:20 +0000 (20:13 +0000)]
Merge "Fix weird QS Edit bug" into nyc-dev

8 years agoMerge "Make sure that QQS is invisible on lock screen" into nyc-dev
Jason Monk [Thu, 10 Mar 2016 20:12:50 +0000 (20:12 +0000)]
Merge "Make sure that QQS is invisible on lock screen" into nyc-dev

8 years agoMerge "Change testtag to large as tests needs to have wifi connection" into nyc-dev
Md Haque [Thu, 10 Mar 2016 20:04:02 +0000 (20:04 +0000)]
Merge "Change testtag to large as tests needs to have wifi connection" into nyc-dev

8 years agoMake sure that QQS is invisible on lock screen
Jason Monk [Thu, 10 Mar 2016 19:55:22 +0000 (14:55 -0500)]
Make sure that QQS is invisible on lock screen

Bug: 27536311
Change-Id: Idf5492ac4fd134761139156291968cc5c992ad52

8 years agoFix weird QS Edit bug
Jason Monk [Thu, 10 Mar 2016 19:38:13 +0000 (14:38 -0500)]
Fix weird QS Edit bug

Turns out code is best written while looking at it. Don't set the
layout params on the density container to layout params from another
view. Firstly its not fair to the density container or the qs container.
Secondly it makes the notification panel jealous and it starts eating
all the touches it can find.

Bug: 27586350
Change-Id: I2f8a7c23eda4625cc65390da1e854e5033b179a6

8 years agoDelete downloads activity.
Steve McKay [Wed, 9 Mar 2016 23:20:00 +0000 (15:20 -0800)]
Delete downloads activity.

Delete "MANAGE_ROOT" activity.
Add intent filter for "BROWSE_DOWNLOADS".
Open by default on Downloads directory.

Bug: 27563427
Change-Id: I1f85dc17a0bc94b439a272847e4ab3bb347ead23

8 years agoCache per-Activity Resources objects
Adam Lesinski [Fri, 4 Mar 2016 22:33:47 +0000 (14:33 -0800)]
Cache per-Activity Resources objects

Each Activity has a Resources object whose underlying state changes
when a configuration change occurs, both global and for that activity only (multi-window).
Views and other clients of the Resources object can safely cache it knowing that
they always have a reference to the most up-to-date resources.

This applies to Resources.Theme objects as well.

Bug:26854894
Change-Id: Ifd3da5a1086e17f747dfc265a447fe92a3a5c692

8 years agoMerge "Ensure AccessibilityGestureDetector only returns true when a callback returned...
Zach Kuznia [Thu, 10 Mar 2016 19:27:39 +0000 (19:27 +0000)]
Merge "Ensure AccessibilityGestureDetector only returns true when a callback returned true." into nyc-dev

8 years agoMerge "Adding a setting to force user activity." into nyc-dev
Vadim Tryshev [Thu, 10 Mar 2016 19:25:26 +0000 (19:25 +0000)]
Merge "Adding a setting to force user activity." into nyc-dev

8 years agoMerge "Removing now-unnecessary forgetLoadedWallpaper()." into nyc-dev
Vadim Tryshev [Thu, 10 Mar 2016 19:24:22 +0000 (19:24 +0000)]
Merge "Removing now-unnecessary forgetLoadedWallpaper()." into nyc-dev

8 years agoMerge "Fix touching gear on lock screen" into nyc-dev
Mady Mellor [Thu, 10 Mar 2016 19:21:47 +0000 (19:21 +0000)]
Merge "Fix touching gear on lock screen" into nyc-dev

8 years agoMerge "Fix WebView disappearing" into nyc-dev
Chris Craik [Thu, 10 Mar 2016 19:21:12 +0000 (19:21 +0000)]
Merge "Fix WebView disappearing" into nyc-dev

8 years agoMerge "Update docs to make suspend then uninstall clear." into nyc-dev
Kenny Guy [Thu, 10 Mar 2016 19:19:07 +0000 (19:19 +0000)]
Merge "Update docs to make suspend then uninstall clear." into nyc-dev

8 years agoMerge "DngCreator: Only write orientation into IFD0" into nyc-dev
Eino-Ville Talvala [Thu, 10 Mar 2016 19:15:16 +0000 (19:15 +0000)]
Merge "DngCreator: Only write orientation into IFD0" into nyc-dev

8 years agoFix touching gear on lock screen
Mady Mellor [Wed, 9 Mar 2016 17:50:18 +0000 (09:50 -0800)]
Fix touching gear on lock screen

The header wasn't taking into account the translation of the view
this CL alter so that it accounts for the translation.

Bug: 27484957
Change-Id: I19df138ae46a33863863821b8723cb57dc849454

8 years agoMerge "Fix clobbered RemoteInputView when changing position" into nyc-dev
Adrian Roos [Thu, 10 Mar 2016 19:09:23 +0000 (19:09 +0000)]
Merge "Fix clobbered RemoteInputView when changing position" into nyc-dev

8 years agoAdd ability to swap docked/fullscreen stack
Jorim Jaggi [Tue, 1 Mar 2016 08:57:38 +0000 (09:57 +0100)]
Add ability to swap docked/fullscreen stack

Adds tap affordance that moves all tasks of the docked
stack into the fullscreen stack as well as moves the top task
of the fullscreen stack into the docked stack.

Also make sure not to trigger focus switch when tapping the divider
handle. For that, add a method so SysUI can specify the touchable
region which then gets excludes for the focus switch touch region.

Bug: 27358134
Change-Id: I34f39c53cacc0b9c00f87a792b88c3f64a5f61e1

8 years agoFix WebView disappearing
Chris Craik [Thu, 10 Mar 2016 18:27:38 +0000 (10:27 -0800)]
Fix WebView disappearing

bug:27528563

Change-Id: Ib9fefa18ef9fb8eb11edd097cbadf8ab2b911576

8 years agoChange testtag to large as tests needs to have wifi connection
Md Haque [Thu, 10 Mar 2016 18:48:49 +0000 (10:48 -0800)]
Change testtag to large as tests needs to have wifi connection

Change-Id: I345dbbba1c232d127eb4d0084767afbfc7bd55f9

8 years agoMerge "Checked the flag not set in the correct way" into nyc-dev
Lifu Tang [Thu, 10 Mar 2016 18:30:07 +0000 (18:30 +0000)]
Merge "Checked the flag not set in the correct way" into nyc-dev

8 years agoChecked the flag not set in the correct way
Lifu Tang [Thu, 10 Mar 2016 03:32:29 +0000 (19:32 -0800)]
Checked the flag not set in the correct way

The previous macro always returns false after expansion. Fixed the problem, and
also added a mechanism to catch such kind of mistakes during compile time.

Change-Id: I6870dfa80a8cbbaa0e145ae00f09dd0d78cff157

8 years agoMerge "Fixed visibility of home stack behind translucent app activity." into nyc-dev
Wale Ogunwale [Thu, 10 Mar 2016 18:20:44 +0000 (18:20 +0000)]
Merge "Fixed visibility of home stack behind translucent app activity." into nyc-dev

8 years agoMerge "Fix ArcMotion path creation in some quadrants." into nyc-dev
George Mount [Thu, 10 Mar 2016 18:19:09 +0000 (18:19 +0000)]
Merge "Fix ArcMotion path creation in some quadrants." into nyc-dev

8 years agoMerge "Fix bug in new encryption API" into nyc-dev
Paul Lawrence [Thu, 10 Mar 2016 18:14:20 +0000 (18:14 +0000)]
Merge "Fix bug in new encryption API" into nyc-dev

8 years agoMaking clearAllNotifications in PSB public.
Muyuan Li [Thu, 10 Mar 2016 01:15:05 +0000 (17:15 -0800)]
Making clearAllNotifications in PSB public.

Change-Id: I5603755e8f66d12d53dc167e1a97045fa93f60a5
(cherry picked from commit 083281681ef711d7cc1ea64d5ef89a4b46c61e35)

8 years agoMerge "fix docs" into nyc-dev
Todd Kennedy [Thu, 10 Mar 2016 18:11:29 +0000 (18:11 +0000)]
Merge "fix docs" into nyc-dev

8 years agoudpate refonly doc build to include new landing page for dev preview.
smain@google.com [Wed, 9 Mar 2016 22:16:07 +0000 (14:16 -0800)]
udpate refonly doc build to include new landing page for dev preview.

Change-Id: I088425ed1549dd3bae6a5a755884eb4c3cb0af4f
(cherry picked from commit aa6aa2929c546289c873b3d019de4616c2ddc620)

8 years agofix docs
Todd Kennedy [Thu, 10 Mar 2016 18:07:00 +0000 (10:07 -0800)]
fix docs

No code change; just doc clarification per API Review Council suggestions

Bug: 27531045
Change-Id: Ib1eef9635d68d44be596888b46de0650883d118c

8 years agoMerge "cherrypick I4e1ca9fddc6374fd80108e4f9a3b9745f8598507 add new make target for...
Scott Main [Thu, 10 Mar 2016 18:05:58 +0000 (18:05 +0000)]
Merge "cherrypick I4e1ca9fddc6374fd80108e4f9a3b9745f8598507 add new make target for offline docs with only the API reference. Also update the default index.html landing page to redirect to the reference." into nyc-dev

8 years agoFix bug in new encryption API
Paul Lawrence [Thu, 10 Mar 2016 18:02:07 +0000 (10:02 -0800)]
Fix bug in new encryption API

Bug: 27583871
Change-Id: I372f0a6a411704dc57ca9bcc53c4c5a10b236772

8 years agoMerge "Improve AlarmManager docs" into nyc-dev
Chris Tate [Thu, 10 Mar 2016 17:58:17 +0000 (17:58 +0000)]
Merge "Improve AlarmManager docs" into nyc-dev