Jim Miller
81e77360b2
Merge "Update DevicePolicyManager documentation with new keyguard flags" into jb-mr1-lockscreen-dev
2012-11-02 16:20:52 -07:00
Svetoslav Ganov
f74d0c39b6
Merge "Polish user selector accessibility." into jb-mr1-lockscreen-dev
2012-11-02 15:55:11 -07:00
Jeff Sharkey
383df1e70a
am 1c743650: Merge "Sanity check network stats coming from disk." into jb-mr1-dev
...
* commit '1c743650addb9f632dd3eb39d4b17109ee4171f5':
Sanity check network stats coming from disk.
2012-11-02 15:52:49 -07:00
Jeff Sharkey
1c743650ad
Merge "Sanity check network stats coming from disk." into jb-mr1-dev
2012-11-02 15:49:20 -07:00
Jeff Sharkey
b0a579f833
Sanity check network stats coming from disk.
...
Throw early when structure is unstable, which allows the normal
recoverFromWtf() path to recover automatically.
Bug: 7440485
Change-Id: Ic150d17daac4de7c9ff3489025403a9b485b4620
2012-11-02 15:38:15 -07:00
Adam Cohen
ff105ea2f6
Merge "Fix pages disappearing (issue 7456885)" into jb-mr1-lockscreen-dev
2012-11-02 15:35:30 -07:00
Jim Miller
3520774a91
Update DevicePolicyManager documentation with new keyguard flags
...
Change-Id: Idb1fa306a5706ba5b9543d7dff5450a4af5c394f
2012-11-02 15:33:20 -07:00
Svetoslav Ganov
fc9c4cd51b
Polish user selector accessibility.
...
1. The current user was not announced as such.
2. The event for a user switch was not sent.
Change-Id: Ib3caf1f9e93ea1f0b5450246601bc37f416be6da
2012-11-02 15:32:25 -07:00
Amith Yamasani
e7b3ed2cf2
am e96e0a1a: Merge "Resolve USER_ALL when inflating notification views." into jb-mr1-dev
...
* commit 'e96e0a1a759a524072cc3fb1dfd3ec01e18ef67f':
Resolve USER_ALL when inflating notification views.
2012-11-02 15:30:21 -07:00
Adam Cohen
196cde973f
Fix pages disappearing (issue 7456885)
...
Change-Id: I51e4510da06a9b81aaefb8b2165234297ad4de92
2012-11-02 15:28:12 -07:00
Amith Yamasani
e96e0a1a75
Merge "Resolve USER_ALL when inflating notification views." into jb-mr1-dev
2012-11-02 15:26:37 -07:00
Laurent Tu
35e01866d8
am 685cc8c7: Merge "Decrement number of updates in LocationRequest" into jb-mr1-dev
...
* commit '685cc8c7cba0bef5257bf00e9821e82a2dbbfc91':
Decrement number of updates in LocationRequest
2012-11-02 15:18:46 -07:00
Laurent Tu
685cc8c7cb
Merge "Decrement number of updates in LocationRequest" into jb-mr1-dev
2012-11-02 15:15:28 -07:00
Dianne Hackborn
78bc99001f
am 8ae0420e: Merge "Fix issue #7343200 : Fails to show wallpaper in the background for..." into jb-mr1-dev
...
* commit '8ae0420e4b4169855608d404e389a66ce7253a36':
Fix issue #7343200 : Fails to show wallpaper in the background for...
2012-11-02 15:13:36 -07:00
Dianne Hackborn
8ae0420e4b
Merge "Fix issue #7343200 : Fails to show wallpaper in the background for..." into jb-mr1-dev
2012-11-02 15:10:16 -07:00
Raph Levien
369cf0c1a2
am d9134e7a: Merge "Revert partial RTL\'ization of Editor.setError()" into jb-mr1-dev
...
* commit 'd9134e7aa1679878245b67ed1a318acb19d0c717':
Revert partial RTL'ization of Editor.setError()
2012-11-02 15:08:43 -07:00
Raph Levien
d9134e7aa1
Merge "Revert partial RTL'ization of Editor.setError()" into jb-mr1-dev
2012-11-02 15:05:08 -07:00
Geremy Condra
3d96f9404e
am 0600ab78: am b14c9900: am a295ba44: Merge "Change android.permission.SERIAL_PORT to signature|system." into jb-dev
...
* commit '0600ab78354894e0a8559dc8eacefbef02d1249b':
Change android.permission.SERIAL_PORT to signature|system.
2012-11-02 14:28:54 -07:00
Geremy Condra
0600ab7835
am b14c9900: am a295ba44: Merge "Change android.permission.SERIAL_PORT to signature|system." into jb-dev
...
* commit 'b14c9900cbbaca6361030d8fc8d6515cc9e06e10':
Change android.permission.SERIAL_PORT to signature|system.
2012-11-02 14:26:34 -07:00
Geremy Condra
b14c9900cb
am a295ba44: Merge "Change android.permission.SERIAL_PORT to signature|system." into jb-dev
...
* commit 'a295ba44793e5601c8574bdcb07313420aa6500c':
Change android.permission.SERIAL_PORT to signature|system.
2012-11-02 14:22:31 -07:00
Dianne Hackborn
98129739af
Fix issue #7343200 : Fails to show wallpaper in the background for...
...
...lockscreen sometimes and remains black / blank
The problem was that we were using the animation-side wallpaper state
in cases where it was not updated yet.
The mWallpaperTarget variable is propagated over to the animation
side when the main window manager state updates. On the animation
side, this is used by hideWallpapersLocked() to determine if the
current wallpaper should be hidden.
The problem is that various paths to hideWallpapersLocked() can
come from the layout side of the window manager instead of the
animation side. This causes the problem here because in this case
the wallpaper state may not have yet been propagated to the
animation side, so it could incorrectly decide to hide the wallpaper
because it thinks there is not a target when in fact a target is
set in the layout side. This won't get fixed until some time way
later that the layout side decides that a new window is being shown
that may need to have the wallpaper shown.
The fix here is pretty gross, but as safe as possible -- the
hideWallpapersLocked() function now uses either the animation or
layout wallpaper state depending on where the call to it is coming
from.
Change-Id: I9250bfeae6e11c1761760bcc696fdb33fb5c8a5f
2012-11-02 14:19:59 -07:00
Geremy Condra
a295ba4479
Merge "Change android.permission.SERIAL_PORT to signature|system." into jb-dev
2012-11-02 14:19:46 -07:00
Chris Wren
81af21e67c
Merge "hide the correct text, and more text, on bounce" into jb-mr1-lockscreen-dev
2012-11-02 13:28:57 -07:00
Chris Wren
052999f3c9
hide the correct text, and more text, on bounce
...
Bug: 7464865
Change-Id: I39dc6f06ce0403a29e4802fcc5288788cffb6070
2012-11-02 16:28:18 -04:00
Daniel Sandler
a96cd636ec
Merge "Improve PIN key layouts." into jb-mr1-lockscreen-dev
2012-11-02 12:34:16 -07:00
Daniel Sandler
80bc85a791
Improve PIN key layouts.
...
- space between digit and mnemonics
- better center the (left-aligned) text in its container
- nudge the enter arrow a little to the left in its
container
- add missing contentDescriptions for SIMPIN/PUK
Bug: 7427380
Change-Id: I0f5d9d1554a476c00591981028733ee6924bb729
2012-11-02 15:31:48 -04:00
Amith Yamasani
ecbd68b0de
Resolve USER_ALL when inflating notification views.
...
Fixes the OTA icon display when the OTA is to be shown to all users.
Bug: 7462511
Change-Id: I185d9d5340d866d0a4b0ae273a361e8db160e33b
2012-11-02 12:17:19 -07:00
Svetoslav Ganov
807c1a99bf
Merge "Obscure speech for PIN password keys when no headset plugged in." into jb-mr1-lockscreen-dev
2012-11-02 12:03:23 -07:00
alanv
0cbbc5766f
Obscure speech for PIN password keys when no headset plugged in.
...
If applicable, also announces that the user needs a headset when
displaying the PIN pad layout. Also fixes accessibility focus "falling
through" to the next Z-ordered view.
Bug: 7436382
Change-Id: Ic1db5320b2e47ff181c5902e9f7980fe3fe6756b
2012-11-02 11:56:27 -07:00
Svetoslav Ganov
b8e58bb6ed
am 28e8f76c: Merge "Cannot click on partially visible views in touch exploration." into jb-mr1-dev
...
* commit '28e8f76c50b26efd657bc0740fee25ac18520f9e':
Cannot click on partially visible views in touch exploration.
2012-11-02 11:54:36 -07:00
Svetoslav Ganov
28e8f76c50
Merge "Cannot click on partially visible views in touch exploration." into jb-mr1-dev
2012-11-02 11:51:36 -07:00
Winson Chung
f3b9ec8230
Initial changes to allow dropping on delete target to remove widget.
...
- Fixing deletion animation
Change-Id: Ie93991c0e9af0c6b64c6b3808e38f349f6845965
2012-11-02 10:41:41 -07:00
Chris Wren
febea58c92
Merge "hide multiuser selector when IME is up." into jb-mr1-lockscreen-dev
2012-11-02 10:06:00 -07:00
Chris Wren
5f69f380ac
hide multiuser selector when IME is up.
...
Bug: 7437062
Change-Id: I7d1b2cf8e74b5ac8546aa9ae7545b69ab3584633
2012-11-02 12:55:16 -04:00
Laurent Tu
75defb6f88
Decrement number of updates in LocationRequest
...
Decrement the number of updates after a location fix has been sent to a
a listener. This is necessary for respecting calls such as
requestSingleUpdate().
Bug: 7460868
Change-Id: Iea207ab494b93b936ca434d59652bb2cb6404cef
2012-11-02 09:22:48 -07:00
Baligh Uddin
cc5c168e33
am 37238e5a: (-s ours) Merge "Import translations. DO NOT MERGE" into jb-mr1-dev
...
* commit '37238e5a4e10c5c5439f6864dd19049a5544e01a':
Import translations. DO NOT MERGE
2012-11-02 09:12:15 -07:00
Baligh Uddin
37238e5a4e
Merge "Import translations. DO NOT MERGE" into jb-mr1-dev
2012-11-02 09:08:57 -07:00
John Spurlock
1ec464679f
Block swipe up gesture if challenge non-interactive.
...
Change-Id: I0f9ba918c072261614011cd675e417e54296366f
2012-11-02 11:25:35 -04:00
Baligh Uddin
79417e8912
Merge "Import translations. DO NOT MERGE" into jb-mr1-lockscreen-dev
2012-11-02 08:13:23 -07:00
John Spurlock
78a8f126a9
Properly disable challenge handle.
...
Bug:7464304
Change-Id: Ib69ccc66bbd348fc3ad17e5097522a0976838daa
2012-11-02 11:07:00 -04:00
John Spurlock
a9b468248d
Disable disable back if using an alternate back icon.
...
This enables the IME down chevron even if back would otherwise
be disabled.
Bug:7453424
Change-Id: Ia007df256124c617b86983bfe6958f790bd6a544
2012-11-02 10:42:39 -04:00
John Spurlock
bb5c941149
Disable security handle when swiping into camera widget.
...
Bug:7444313
Change-Id: I3eb268a41bc8b8a4323e55577a775c5ab3cef10d
2012-11-02 09:00:04 -04:00
Baligh Uddin
e506ae188b
Import translations. DO NOT MERGE
...
Change-Id: Ib2e0bbc19617066ac205c54676eddb8c71e71ae8
Auto-generated-cl: translation import
2012-11-02 00:15:43 -07:00
Adam Cohen
dd8ac785e3
Merge "Fix small issue with previous CL" into jb-mr1-lockscreen-dev
2012-11-02 00:15:10 -07:00
Baligh Uddin
d7ad778914
Import translations. DO NOT MERGE
...
Change-Id: I663c9a6379eb664e31cdb5984c55cf70a6c99999
Auto-generated-cl: translation import
2012-11-02 00:14:48 -07:00
Adam Cohen
86006bb8a5
Fix small issue with previous CL
...
Change-Id: Id5260413898eef61447f88b3dd82d6181e9bd492
2012-11-02 00:13:24 -07:00
Adam Cohen
2df294eb39
Merge "Widget size policy, size callbacks" into jb-mr1-lockscreen-dev
2012-11-01 23:49:07 -07:00
Winson Chung
d6fe75af31
am 98b930ce: Cleaning up keyguard persistence threads when the pager is detached. (Bug 7460991)
...
* commit '98b930ce4ca4258fe1d6e9df0053f6883517a241':
Cleaning up keyguard persistence threads when the pager is detached. (Bug 7460991)
2012-11-01 23:39:06 -07:00
Winson Chung
98b930ce4c
Cleaning up keyguard persistence threads when the pager is detached. (Bug 7460991)
...
Change-Id: I28ebbd04d90a1ea2a721c28d3bce7ccea31a33e9
2012-11-01 23:34:47 -07:00
Adam Cohen
4ddcd573dd
Widget size policy, size callbacks
...
-> vertically resizable widgets behave are sized to fill
-> non-vertically resizable widgets use the small size all the time
-> providing size call-backs. ensuring that we don't send excessive /
incorrect size callbacks. These are expensive. Had to clean things
up to ensure we only send the truth, and not bounce around.
Change-Id: I8038de01096906526e2622c6f1cd24c171e3a4ec
2012-11-01 23:32:55 -07:00