| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
If TTS requires network for selected language, we will
show dialog informing why we can't synthesize an example
if user have no internet connectivity.
Bug: 7398316
Change-Id: I01b033a9a8b8538b322ed3639b671f90f849ae29
|
|\
| |
| |
| |
| |
| |
| | |
selection by finishing on return" into jb-mr1-dev
* commit 'f1e74da7b6b6267d5ce1da432760552cc7ad8673':
Reduce jank in security lock selection by finishing on return
|
| |\
| | |
| | |
| | | |
jb-mr1-dev
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Earlier the finish of the chooser was happening before the pattern/pin chooser
was started, resulting in two transitions.
This change defers the finish to after returning from the other activity. There
is still sometimes a very small glitch on the way back, but much smaller than
the current problem.
Bug: 7342594
Change-Id: I5f4f4393b841ce31dc7236074381283155ebddbd
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
name for the initial population of User name." into jb-mr1-dev
* commit 'd525470d4b7a290b7a55ee244d47f8e486cfe72c':
Use given name instead of full name for the initial population of User name.
|
| |\ \
| | |/
| |/|
| | | |
User name." into jb-mr1-dev
|
| | |
| | |
| | |
| | |
| | |
| | | |
Bug: 7406217
Change-Id: I5006039ef146369f569445d0fcbaf82fd163343e
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
admin enforces a small timeout for screen lock" into jb-mr1-dev
* commit 'efc9458b46cdbab7abe5df169d83a09582e8e6cd':
Fixes an AIOOBE when device admin enforces a small timeout for screen lock
|
| |\ \
| | | |
| | | |
| | | | |
lock" into jb-mr1-dev
|
| | |/
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Bug: 7378871
If the timeout choices are empty, set an empty summary.
Change-Id: I20dbe61af56f9c41337a7c284580511322e5a45e
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
when user is a monkey" into jb-mr1-dev
* commit '8f2a9c0043081f0008bfadc50bb7cbc010a2b3cb':
Prevent sync state changes when user is a monkey
|
| |\ \
| | |/
| |/| |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Bug: 7385019
Change-Id: Icf305683e57b83b3260f2587ae0a3d1a6dc3c21d
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* commit '86a52bec4b0134e540cc5c546da4e88dc2d62487':
Added info about why Wi-Fi is required
|
| |/
| |
| |
| |
| |
| |
| |
| | |
Added a new optional textview to wifi settings, informing that wifi
is required during setup. For use on Nakasi 3G.
Bug: 7383934
Change-Id: I231472438e61ccddedc1e680a362f90738d64a2d
|
|\ \
| |/
| |
| |
| |
| |
| | |
setting defaults.
* commit '9055dd74f4ac42e422de941259d9f9c437ef9eca':
Settings: Use new shared dream setting defaults.
|
| |
| |
| |
| |
| | |
Bug:7373284
Change-Id: I12d00b45d0bada5207af3a7bda906370e7a87413
|
|\ \
| |/
| |
| |
| |
| |
| | |
settings." into jb-mr1-dev
* commit '049ccb55361de3ef41b01875569b341c4f06d1db':
More migration to Global settings.
|
| |\ |
|
| | |
| | |
| | |
| | |
| | | |
Bug: 7375796
Change-Id: I43079368c32e91e8bb75b00377cd57d1766f15d4
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
Developer Options in Settings" into jb-mr1-dev
* commit 'b8b34ba9f5e1fb545276dc95ff57859e26188265':
Control OpenGL traces from Developer Options in Settings
|
| |\ \ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This change adds a new entry to the developer options screen in
settings that lets you choose what OpenGL traces you want.
Change-Id: Ie789fa20dbbabee1e509b697106072464e9f9d2b
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
turn Airplane mode off on setting screen on manta(tablet)" into jb-mr1-dev
* commit 'ecb7f618576300e5d729c1aab2938169634f0d33':
bluetooth won't turn on after turn Airplane mode off on setting screen on manta(tablet)
|
| |\ \ \
| | |_|/
| |/| |
| | | | |
screen on manta(tablet)" into jb-mr1-dev
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
manta(tablet)
The root cause is normally when change the airplane mode, the bluetooth setting UI
will not be foreground. No listener is setup for bluetooth setting UI when it is
in background. So the onCheckedChanged won't be called and mLocalAdapter.setBluetoothEnabled
won't be called. But for manta, airplane mode setting and bluetooth setting UI both
will show on the foreground due to bigger screen size. When we turn ariplane mode on,
bluetooth manager service will disable bluetooth without changing the persist bluetooth setting.
But bluetooth setting UI will listen to the bluetooth state change intent, it will receive
bluetooth state turn-off intent then it will call mSwitch.setChecked(false) in handleStateChanged,
which cause checked status changed from true to false to trigger the listener (onCheckedChanged)
being called. The listener will call mAdapter.disable() which will call mManagerService.disable(true)
to change bluetooth persist state to OFF. So when we turn back airplane more to OFF,
due to the bluetooth persist state is OFF, we won't turn back bluetooth to ON.
Don't need to consider thread synchronization, because everything is running on the main thread.
bug 7366814
Change-Id: I138d1904df6cb17c7828295caa51a7d80abf99f2
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
"Sleep Mode" pref." into jb-mr1-dev
* commit '6749fb88efaacf1e1de23fd170d0797562101aee':
More descriptive summary for "Sleep Mode" pref.
|
| |\ \ \ |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
It will either show "Off" or the name of the selected dream.
Also, move "When to sleep" out onto the visible part of the
action bar if there's room, making it much easier to discover.
Bug: 7320701
Change-Id: I1d4e2c17b764b8ee054dbb17c23f559d735e3450
|
|\ \ \ \ \
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
on after turn Airplane mode off on setting screen on manta(tablet)"" into jb-mr1-dev
* commit '5a8b0b8276701ee230ad6f02c8474dd05a67c595':
Revert "bluetooth won't turn on after turn Airplane mode off on setting screen on manta(tablet)"
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
screen on manta(tablet)"
This reverts commit 0b21b3d725935c03a4ca4ab8476da2b0675a53cd.
Bug: 7366814
Change-Id: I0992e9ca1a6e36ebc3a717137a6c494835fad712
|
|\ \ \ \ \
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
turn Airplane mode off on setting screen on manta(tablet)" into jb-mr1-dev
* commit '933bef3db03d25ba430139ef9bdb12369a70661b':
bluetooth won't turn on after turn Airplane mode off on setting screen on manta(tablet)
|
| |\ \ \ \
| | |_|_|/
| |/| | |
| | | | | |
screen on manta(tablet)" into jb-mr1-dev
|
| | |/ /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
manta(tablet)
The root cause is normally when change the airplane mode, the bluetooth setting UI
will not be foreground. No listener is setup for bluetooth setting UI when it is
in background. So the onCheckedChanged won't be called and mLocalAdapter.setBluetoothEnabled
won't be called. But for manta, airplane mode setting and bluetooth setting UI both
will show on the foreground due to bigger screen size. When we turn ariplane mode on,
bluetooth manager service will disable bluetooth without changing the persist bluetooth setting.
But bluetooth setting UI will listen to the bluetooth state change intent, it will receive
bluetooth state turn-off intent then it will call mSwitch.setChecked(false) in handleStateChanged,
which cause checked status changed from true to false to trigger the listener (onCheckedChanged)
being called. The listener will call mAdapter.disable() which will call mManagerService.disable(true)
to change bluetooth persist state to OFF. So when we turn back airplane more to OFF,
due to the bluetooth persist state is OFF, we won't turn back bluetooth to ON.
bug 7366814
Change-Id: I07d4a2dfe03fc6775cfeabb28cd3a0cc1fded44e
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | | |
* commit 'fca149f25859a902506cd449ed73fe54c0fad740':
Fix check for multiple users
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Bug: 7365839
Remove the Uninstall for all users option if less than 2 users on the device.
Change-Id: I5d2d853e05e1d505b67f8b83b1d5ea7f9c6e7215
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
4x MSAA" into jb-mr1-dev
* commit 'fd0a3d08238c6c924e702266da58e3d8f512a94c':
New developer setting: force 4x MSAA
|
| | |
| | |
| | |
| | | |
Change-Id: I443b97ad8adc9f461aa140069f208f83f19f8c52
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
disable a built-in app if you\'ve downloaded updates" into jb-mr1-dev
* commit '31d866e1c612d2391e8b279addd052ac779c503b':
Fix issue #7330867: Cannot disable a built-in app if you've downloaded updates
|
| |\ \
| | | |
| | | |
| | | | |
downloaded updates" into jb-mr1-dev
|
| | | |
| | | |
| | | |
| | | | |
Change-Id: Ie9dfe4a9195e4583bead8066807e4bba8274801f
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
for keyguard settings
* commit 'fcf460eb874953fd663711fe7d6164f700d181ae':
Show the overflow in the right place for keyguard settings
|
| | | |
| | | |
| | | |
| | | | |
Change-Id: Ie8b2c8acf97736041bf09a64c0f1d77f80350f4c
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
now" into jb-mr1-dev
* commit '0b0f1ea2c25e7c68e60ab64e2adeb2cca24173a7':
Disable security widgets for now
|
| |\ \ \
| | |/ /
| |/| | |
|
| | | |
| | | |
| | | | |
Change-Id: Ia4627d697514c4029fb0fb3250d674ed25495f97
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
the activity on picking a locale" into jb-mr1-dev
* commit 'a6b3ecbebfa2d5de7525184747116edaea1c148f':
Fix a regression in exiting the activity on picking a locale
|
| |\ \ \
| | |_|/
| |/| |
| | | | |
jb-mr1-dev
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Bug: 7326748
Change-Id: I5db57c805c104bf01c256f65990aec6deae27789
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
activity from Settings instead of from AccountManager" into jb-mr1-dev
* commit '33e8e04d844713f59ca0193bb93f8ae9bedbe72c':
Launch account addition activity from Settings instead of from AccountManager
|