Michael Chan
faaf49b822
am 7420f133: Added new extra for creating an all-day event by default
...
* commit '7420f1339446cd76723d57b3c5c1bbc92f15f4f0':
Added new extra for creating an all-day event by default
2011-08-25 13:19:53 -07:00
Chet Haase
19ac9aa5b4
am c93fcdce: Merge "Fix issue with views becoming visible with stale content."
...
* commit 'c93fcdce226ff7cfbbc5a63d7d8848e7ba07badb':
Fix issue with views becoming visible with stale content.
2011-08-25 13:19:39 -07:00
Dianne Hackborn
a3e1ccc5ee
am 6ff00377: Merge "Fix to show the correct HW accel background in the preview window."
...
* commit '6ff0037792619c4441d9d3caa4f9ab4f45c11236':
Fix to show the correct HW accel background in the preview window.
2011-08-25 13:18:29 -07:00
Dianne Hackborn
1e1e47c170
am 1fc756da: Merge "New API to determine if device has lots of RAM."
...
* commit '1fc756da434441708eb557a22363eea7f41f3f73':
New API to determine if device has lots of RAM.
2011-08-25 13:18:07 -07:00
Scott Main
31b4888417
am 9a10bf03: fix sample code typo issue 5190961
...
* commit '9a10bf0386ac9822e33a15820d8cd1fd8bdb5572':
fix sample code typo issue 5190961
2011-08-25 13:17:13 -07:00
Katherine Kuan
f2b7e3cda1
am 2382c3a9: Merge "Add DATA_SET value to Entity from EntityIterator cursor"
...
* commit '2382c3a92fcc00f9d4c9642724a04d79977f2fde':
Add DATA_SET value to Entity from EntityIterator cursor
2011-08-25 13:16:41 -07:00
Gilles Debunne
e7632741d7
am f874c4f9: Merge "Spell checking in TextViews"
...
* commit 'f874c4f93437cbbef7a915a36d5abb448e1e3209':
Spell checking in TextViews
2011-08-25 13:16:05 -07:00
Dianne Hackborn
3d7cbbafa1
am c2644096: Merge "Fix issue #5050039 : Launcher is sometimes rendering underneath the system/status bar"
...
* commit 'c2644096b7ddbd9dfbffe329c2b72bf83b3ea231':
Fix issue #5050039 : Launcher is sometimes rendering underneath the system/status bar
2011-08-25 13:15:29 -07:00
Romain Guy
aacf1d7310
am c39e8e89: Merge "Add OpenGL backend to ImageWallpaper Bug #5204874 "
...
* commit 'c39e8e89eb370ed66f552da3be258e57f1aabeb9':
Add OpenGL backend to ImageWallpaper Bug #5204874
2011-08-25 13:14:23 -07:00
Dianne Hackborn
e67afddf4a
am 19bc995e: Merge "Fix animation scale to also scale start offset."
...
* commit '19bc995e9ae4ec9ea48c183758759e2b68ec964b':
Fix animation scale to also scale start offset.
2011-08-25 13:14:11 -07:00
Dianne Hackborn
42a6f9e002
am 2da59ffb: Merge "Fix issue #5192141 : systemui asplodes after enough tapping on the windowlist button"
...
* commit '2da59ffbda80594e6312f400341810f91e1d333a':
Fix issue #5192141 : systemui asplodes after enough tapping on the windowlist button
2011-08-25 13:06:03 -07:00
Flavio Lerda
d9c1aa608c
am 192df696: Merge "Add a few columns for caching to the call log."
...
* commit '192df696d3499258d6d3ae383a5ab05a5021d875':
Add a few columns for caching to the call log.
2011-08-25 13:05:47 -07:00
Irfan Sheriff
5d1965357d
am a407aef8: Merge "Added support for multiple DNS servers."
...
* commit 'a407aef8985f8a7503438ca33f271edceb2e11dd':
Added support for multiple DNS servers.
2011-08-25 13:04:38 -07:00
Chet Haase
c48053c03f
am 4694b7f1: Merge "Fix docs for fill behavior in Animation class."
...
* commit '4694b7f1866ae423c548eeb429c3b2a76c26f0be':
Fix docs for fill behavior in Animation class.
2011-08-25 13:03:53 -07:00
satok
7435c945fd
am cfc0f2c2: Merge "Add functions to set / get SpellCheckerSubtype"
...
* commit 'cfc0f2c206af24350245f83b36e0032a7d4de49a':
Add functions to set / get SpellCheckerSubtype
2011-08-25 11:33:20 -07:00
Adam Powell
a955464f36
am bc714a35: Merge "Fix bug 5205275 - SwitchPreference doesn\'t allow Switch to slide back and forth."
...
* commit 'bc714a357d79c2315cc665eb706b465334cb9716':
Fix bug 5205275 - SwitchPreference doesn't allow Switch to slide back and forth.
2011-08-25 11:32:13 -07:00
Jeff Sharkey
178e3a3945
am 006efb24: Merge "Proactively disable data when over policy limit."
...
* commit '006efb24706378293a2faa137c7c7ca34a2e15cd':
Proactively disable data when over policy limit.
2011-08-25 11:31:30 -07:00
Jason Simmons
df6bb0a7ee
resolved conflicts for merge of 33264596 to ics-aah
...
Change-Id: I1b0b2c3a63d97d49940666ceec71293bdbab4e2e
2011-08-25 09:57:48 -07:00
Michael Chan
7420f13394
Added new extra for creating an all-day event by default
...
bug:2891538
Change-Id: Ifbd835535a8b6f6f46b0a366023d77e9662639a1
2011-08-25 01:11:37 -07:00
Chet Haase
c93fcdce22
Merge "Fix issue with views becoming visible with stale content."
2011-08-25 00:54:14 -07:00
Chet Haase
4324eadc89
Fix issue with views becoming visible with stale content.
...
An earlier fix nooop'd invalidate calls on non-visible views. This
caused an issue where changes to the view while it was not visible
(such as changing the text of a TextView) would not get picked up
by the invalidation process.
The fix is to automatically invalidate() a view when it becomes
visible, to account for any changes that may have occurred to its
content while it was not visible.
Change-Id: Ia0f8fb42ca627b5a38f08761fa622b23f2dfa38b
2011-08-24 21:31:03 -07:00
Dianne Hackborn
6ff0037792
Merge "Fix to show the correct HW accel background in the preview window."
2011-08-24 20:56:05 -07:00
Dianne Hackborn
07213e6d88
Fix to show the correct HW accel background in the preview window.
...
Also tweak wallpaper service to do a cleaner transition to a
static wallpaper.
Change-Id: I876a32091f92dd5a529d7fd809d3b8e730bb7d2a
2011-08-24 20:05:39 -07:00
Dianne Hackborn
1fc756da43
Merge "New API to determine if device has lots of RAM."
2011-08-24 19:57:52 -07:00
Scott Main
9a10bf0386
fix sample code typo
...
issue 5190961
Change-Id: I15f10bc97b46f0e5f5e31ff5b38d6c3a938ddedf
2011-08-24 19:09:48 -07:00
Katherine Kuan
2382c3a92f
Merge "Add DATA_SET value to Entity from EntityIterator cursor"
2011-08-24 18:56:06 -07:00
Gilles Debunne
f874c4f934
Merge "Spell checking in TextViews"
2011-08-24 17:53:42 -07:00
Dianne Hackborn
c2644096b7
Merge "Fix issue #5050039 : Launcher is sometimes rendering underneath the system/status bar"
2011-08-24 17:39:07 -07:00
Dianne Hackborn
49d228b3f3
New API to determine if device has lots of RAM.
...
Change-Id: Ie243e851960fdd9e1ebeaf1c1929879193620051
2011-08-24 17:37:31 -07:00
Romain Guy
c39e8e89eb
Merge "Add OpenGL backend to ImageWallpaper Bug #5204874 "
2011-08-24 17:09:30 -07:00
Romain Guy
407ec78b82
Add OpenGL backend to ImageWallpaper
...
Bug #5204874
Currently disabled.
Change-Id: I5e7b35dce2981b0691f107e39c6394b260466543
2011-08-24 17:06:58 -07:00
Dianne Hackborn
fa6b35be12
Fix issue #5050039 : Launcher is sometimes rendering underneath the system/status bar
...
It looks like this is caused by the change in HC to stop activities when
the screen is off. ViewRootImpl (a.k.a. ViewRoot) has special code to
avoid doing work when it is stopped, and it is now stopped when the screen
is off. The problem here is if the window's activity is stopped when the
window is first displayed, then it would never do the initial fitSystemWindows()
with the status bar offsets given by the window manager, and never do this
again until the status bar changes.
Also included here is some re-arranging of the code dealing with the offsets
changing, because it was dealt with in two places and only one had a bunch of
code dealing with HW accelerated drawing and performing the fade transition
between states. Now all of that is unified into one place.
Change-Id: I9828f02664cc622dbf186effb1f685a8aa4456a1
2011-08-24 17:03:54 -07:00
Katherine Kuan
1d837232d2
Add DATA_SET value to Entity from EntityIterator cursor
...
Account name and account type are being retrieved from the
cursor for the contact, but account dataset, which is the
3rd value to uniquely distinguish an account is missing.
Bug: 5210676
Change-Id: I85f93b3fa19839734e4e22928382e0f786ed8ee2
2011-08-24 16:45:59 -07:00
Dianne Hackborn
a4bacb8b74
Fix animation scale to also scale start offset.
...
Also more better info in meminfo dump.
Change-Id: I45ab41821cd8dd81b61605de6a0cf7074e76c71a
2011-08-24 15:12:38 -07:00
Dianne Hackborn
2da59ffbda
Merge "Fix issue #5192141 : systemui asplodes after enough tapping on the windowlist button"
2011-08-24 12:07:10 -07:00
Flavio Lerda
192df696d3
Merge "Add a few columns for caching to the call log."
2011-08-24 12:07:03 -07:00
Dianne Hackborn
cfb9f2bca3
Fix issue #5192141 : systemui asplodes after enough tapping on the windowlist button
...
Change-Id: I5afb2d54b531d9eac9435660616579324f239812
2011-08-24 12:06:15 -07:00
Irfan Sheriff
a407aef898
Merge "Added support for multiple DNS servers."
2011-08-24 11:46:12 -07:00
Chet Haase
4694b7f186
Merge "Fix docs for fill behavior in Animation class."
2011-08-24 11:38:23 -07:00
Chet Haase
d8991c4ab0
Fix docs for fill behavior in Animation class.
...
Change-Id: I9230e9b9841dbecead51a6716195749b0c5a0e39
2011-08-24 07:20:53 -07:00
Flavio Lerda
2d538d44e2
Add a few columns for caching to the call log.
...
These columns store additional information about the contact associated
with a call log entry and are needed by the new functionality present in
the call log.
The information is used only internally by the call log, so these column
do not need to be part of the public API.
Bug: 5101753
Change-Id: Ie2160a157497f10ba5fc95c5fcf3b4095a99753a
2011-08-24 13:02:34 +01:00
satok
cfc0f2c206
Merge "Add functions to set / get SpellCheckerSubtype"
2011-08-24 00:26:01 -07:00
satok
ada8c4e6a3
Add functions to set / get SpellCheckerSubtype
...
Change-Id: I977326879fe201c4dee4a87da361217175eb6041
2011-08-24 16:00:55 +09:00
Adam Powell
bc714a357d
Merge "Fix bug 5205275 - SwitchPreference doesn't allow Switch to slide back and forth."
2011-08-23 21:56:16 -07:00
Jeff Sharkey
006efb2470
Merge "Proactively disable data when over policy limit."
2011-08-23 21:26:51 -07:00
Adam Powell
94f67e2af6
Fix bug 5205275 - SwitchPreference doesn't allow Switch to slide back
...
and forth.
Also have the SwitchPreference's Switch widget's onClick listener
toggle the switch rather than invoke the preference's own onClick
method. This will allow subclasses to assign different behavior to
clicking the preference itself if desired.
Change-Id: I97e3b7a786e9f0e8bdc03c0ed6001caa7dcd991b
2011-08-23 21:17:07 -07:00
Jeff Sharkey
8e28b7d782
Proactively disable data when over policy limit.
...
Add policy controls to NetworkStateTracker which are combined with
other user preference and internal flags to decide if data connection
should be established. Better locking around enabled flags.
When data network would be over limit, proactively disable data on
that network. Enable when policy is snoozed or when cycle resets.
Track and dismiss notifications from now-stale policies.
Bug: 4587023, 5178147
Change-Id: Ibfcc9f73cda7c369209af701b46eddd3d1943f2d
2011-08-23 18:45:44 -07:00
Dianne Hackborn
332645960c
Merge "Fix issue #4279860 : previous UI flashes before showing lock screen..."
2011-08-23 18:13:51 -07:00
Dianne Hackborn
29aae6f36e
Fix issue #4279860 : previous UI flashes before showing lock screen...
...
...(when turning display on after recently turning it off)
Also clean up when we decide to turn the screen on to improve that
transition. There are still problems here with turning it on
before the wallpaper gets dispayed.
Change-Id: I2bc56c12e5ad75a1ce5a0546f43a845bf0823e66
2011-08-23 17:44:52 -07:00
Adam Powell
d44b0df105
am 0e1e5223: Merge "Fix bug 5149918 - Can\'t call ProgressDialog.setProgressNumberFormat() before dialog is shown"
...
* commit '0e1e5223f96250e84323ae95d8cc9bd474b93502':
Fix bug 5149918 - Can't call ProgressDialog.setProgressNumberFormat() before dialog is shown
2011-08-23 17:13:50 -07:00