65226 Commits

Author SHA1 Message Date
Mathias Agopian
9a9dbd5921 separate transactions from updates
with this changes, SF transactions are handled as soon as possible
but do not trigger updates. the update is delayed until the next
vsync.

this allows us to work much better without requiring triple-buffering.

Change-Id: I1fa10794d0cf742129f0877698b7b1e1f2ec7401
2012-02-01 20:43:06 -08:00
James Dong
26daa02bdb Merge "Remove the restriction that the width must be a multiple of 4 or 2 for thumbnail generation" 2012-02-01 18:53:50 -08:00
Svetoslav Ganov
4e921197e2 Merge "Update the comment for View#clearFocus" 2012-02-01 18:08:01 -08:00
Adam Powell
80ec4ab7f5 Merge "Fix bug 5339708 - edge case in ListView focus restoration" 2012-02-01 17:46:55 -08:00
Adam Powell
2d8b0170bf Fix bug 5339708 - edge case in ListView focus restoration
Some apps have managed to hit this edge case in monkey runs. In
layoutChildren an attempt to findFocus() fails when items are
focusable. When ListView attempts to restore focus to this view,
bad things happen.

Change-Id: Ie8bb1bab847898e342c16fbe3ff1a6153d6f69df
2012-02-01 17:23:41 -08:00
Fabrice Di Meglio
81453f761a Merge "Fix bug #5262565 Need to remove CharCount TextDirectionHeuristics" 2012-02-01 17:21:59 -08:00
Fabrice Di Meglio
8a551a53fd Fix bug #5262565 Need to remove CharCount TextDirectionHeuristics
- was missing a clean of the attrs.xml file

Change-Id: I58155fa624326e8ae11f8b88d8a27d2c44cb467b
2012-02-01 17:19:18 -08:00
Stephen Hines
bb3968fed8 Merge "Remove wrapper version check assert." 2012-02-01 17:09:12 -08:00
Svetoslav Ganov
13fd561848 Update the comment for View#clearFocus
Change-Id: I779f94e88821574c74e5e76d99ae555a47042c12
2012-02-01 17:01:12 -08:00
Stephen Hines
07c12933e3 Remove wrapper version check assert.
This really shouldn't have been here to begin with, since the wrapper version
should be meaningless to libRS.

Change-Id: I329446ed96d1a70197247735e267b8539a8c83a2
2012-02-01 16:56:03 -08:00
Jeff Sharkey
88de70f3c5 Merge "Deprecate ACTION_BACKGROUND_DATA_SETTING_CHANGED." 2012-02-01 16:54:53 -08:00
Jeff Brown
9dbfc331b4 Merge "Support automatic cancellation of Loaders." 2012-02-01 16:31:48 -08:00
Jeff Brown
b19a71a20a Support automatic cancellation of Loaders.
Change-Id: I18d3f49e413f48fcdd519d15e99c238ad54d35b9
2012-02-01 16:30:14 -08:00
Romain Guy
bbf1bc8b6c Merge "Add optional metadata to initiliaze the render threat." 2012-02-01 16:15:17 -08:00
Romain Guy
211370fd94 Add optional metadata to initiliaze the render threat.
The render threat is likely to break your application if you initiate it.
As such it must be explicitely requested using the following meta-data
tag in your manifest's application tag:

<meta-data android:name="android.graphics.renderThread" android:value="true" />

Change-Id: Ibf0a48af2a0d091562bf6907eac970e3d1d601c4
2012-02-01 16:10:55 -08:00
Chet Haase
6baed6c110 Merge "Add Developer Option setting for Animator scaling." 2012-02-01 15:08:26 -08:00
Scott Main
1dcd36a8ad am 931d1daf: am fb16fdf2: am 6aaa27fb: docs: fix broken link
* commit '931d1daf1a0b0d61adf1a4c380a7ad00b8ead526':
  docs: fix broken link
2012-02-01 15:05:41 -08:00
John Reck
0918a4e8c0 Merge "Fix NPE" 2012-02-01 15:03:38 -08:00
Scott Main
931d1daf1a am fb16fdf2: am 6aaa27fb: docs: fix broken link
* commit 'fb16fdf2d11b807e9c5d986e6135c2915f1f6523':
  docs: fix broken link
2012-02-01 15:03:15 -08:00
Scott Main
fb16fdf2d1 am 6aaa27fb: docs: fix broken link
* commit '6aaa27fb8c4ba500a9b486c2baba5b01bcc34bf2':
  docs: fix broken link
2012-02-01 15:00:49 -08:00
Chet Haase
d21a9fe2d9 Add Developer Option setting for Animator scaling.
This new setting allows users to set a scale factor for the
duration and startDelay of all Animator-based animations. This
setting is very similar to the Transition animation scale and
Window animation scale settings, except this one applies specifically
to Animator animations. The property is only accessible by users
through the Settings UI, not programmatically. The value applies
system-wide and is picked up per-process at the time of the first
ValueAnimator construction.

Change-Id: I3d5fbc956695c88d01c30820259da3e107ffd8a3
2012-02-01 14:59:08 -08:00
John Reck
9cf8462751 Fix NPE
Change-Id: I9c05a11f971f033322b8988abf852c95cbaba8a5
2012-02-01 14:58:32 -08:00
Wink Saville
064d2d6569 Merge "Telephony: Fix sim_refresh as per ril v6" 2012-02-01 14:48:14 -08:00
Christopher Tate
f46723b41f Implement background vs foreground broadcasts
Before now, receiving a broadcast would cause a process to be hoisted
to foreground priority / cgroup.  This is no longer the case: broadcasts
by default are handled in the background, with a suitably increased
timeout interval.  When a given broadcast needs to be dealt with in a
more timely manner, the issuer can set the new FLAG_BROADCAST_FOREGROUND
flag on the Intent, which will produce the old foreground-priority
behavior.

To avoid priority inversions, foreground broadcasts are tracked on a
separate outgoing queue and can be in flight simultaneously with a
background-priority broadcast.  If there is already a background-level
broadcast in flight to a given app and then a foreground-level one is
dispatched to that app, the app [and its handling of both broadcasts]
will be properly hoisted to foreground priority.

This change is also essentially the first step towards refactoring the
broadcast-handling portions of the Activity Manager into a more
independent existence.  Making BroadcastQueue a top-level class and
regularizing its operation viz the primary Activity Manager operation
is the next step.

Change-Id: If1be33156dc22dcce318edbb5846b08df8e7bed5
2012-02-01 14:36:34 -08:00
Scott Main
6aaa27fb8c docs: fix broken link
Change-Id: I58a082341373370bf97fed49d4d6584b468b4b46
2012-02-01 14:32:11 -08:00
Stephen Hines
c97992b489 Merge "Add test for "public final static"-reflected constant fields." 2012-02-01 14:01:35 -08:00
Scott Main
ff35de850c am 4f7f2b8b: am b49c0355: am 6b3f98b4: Merge "docs: fix action bar style example" into ics-mr1
* commit '4f7f2b8bc3e1e6fb86ef1ccc0897e20c6cac8d48':
2012-02-01 13:59:20 -08:00
Scott Main
e04a2fbca8 am 3a080357: am e043db89: am f47f6791: Merge "docs: dashboard update for feb 1" into ics-mr1
* commit '3a08035788fe897ad21d53c76c063e9e902750df':
2012-02-01 13:59:19 -08:00
Scott Main
57b5b30981 am eea2e9c1: am 13f3c854: am 5e095939: docs: update menu guide with CAB and popup menu, plus many other revisions
* commit 'eea2e9c1344dfa30d350a54d4fef69069c6941a9':
2012-02-01 13:56:50 -08:00
Xia Wang
bba103c6d5 am c8c9ebe8: am 581a3334: am ccc11c4d: Merge "Fix a typo in image processing test" into ics-mr1
* commit 'c8c9ebe868bb16f1b564b95243c0d5fd1d09ad6f':
2012-02-01 13:56:49 -08:00
Scott Main
4f7f2b8bc3 am b49c0355: am 6b3f98b4: Merge "docs: fix action bar style example" into ics-mr1
* commit 'b49c0355aa6cb7411f6f5061f5fd31ee5cdea14d':
2012-02-01 13:54:48 -08:00
Scott Main
3a08035788 am e043db89: am f47f6791: Merge "docs: dashboard update for feb 1" into ics-mr1
* commit 'e043db892436f643fc2d71df3bc4b2604c556988':
2012-02-01 13:54:45 -08:00
Scott Main
eea2e9c134 am 13f3c854: am 5e095939: docs: update menu guide with CAB and popup menu, plus many other revisions
* commit '13f3c854d8fb635fa824a1ba15fe85152fed131e':
2012-02-01 13:54:43 -08:00
Xia Wang
c8c9ebe868 am 581a3334: am ccc11c4d: Merge "Fix a typo in image processing test" into ics-mr1
* commit '581a33344485181eb3484ba7bf50ff2b52be6d99':
2012-02-01 13:54:40 -08:00
Scott Main
b49c0355aa am 6b3f98b4: Merge "docs: fix action bar style example" into ics-mr1
* commit '6b3f98b458b9dc7771cce37221d4fe8c4a19bf05':
  docs: fix action bar style example
2012-02-01 13:52:21 -08:00
Scott Main
e043db8924 am f47f6791: Merge "docs: dashboard update for feb 1" into ics-mr1
* commit 'f47f6791f897b436530557dea3a57a2ca969afe6':
  docs: dashboard update for feb 1
2012-02-01 13:52:19 -08:00
Scott Main
13f3c854d8 am 5e095939: docs: update menu guide with CAB and popup menu, plus many other revisions
* commit '5e0959393426371dadef2c7905d5c915a1ac2dd4':
  docs: update menu guide with CAB and popup menu, plus many other revisions
2012-02-01 13:52:17 -08:00
Xia Wang
581a333444 am ccc11c4d: Merge "Fix a typo in image processing test" into ics-mr1
* commit 'ccc11c4d3c8357a402b84c546e7b2f889729358c':
  Fix a typo in image processing test
2012-02-01 13:52:13 -08:00
Svetoslav Ganov
2eecea3b48 Merge "Speedup the accessibility window querying APIs and clean up." 2012-02-01 13:45:24 -08:00
James Dong
5a043534a5 Remove the restriction that the width must be a multiple of 4 or 2 for thumbnail generation
o simply applying the change in commit a161af9d1e2baa3f23e32634ef7dd9b4bbce9a6c to other formats
o related-to-bug: 5947196

Change-Id: I95de10263b8ad9ec941f1d6b907fca6aeff0a90f
2012-02-01 13:37:36 -08:00
Andreas Huber
c5143d2af8 Merge "The AMR WB software encoder is now an OMX component." 2012-02-01 13:25:26 -08:00
Siva Velusamy
295ac06562 Merge "gltrace: fixup Push & Insert Marker calls" 2012-02-01 13:08:58 -08:00
Alex Yakavenka
8f24145805 Telephony: Fix sim_refresh as per ril v6
Change-Id: I2d237601c6fd58760c6d5d080709381fddc5cbbe
2012-02-01 12:27:39 -08:00
Andreas Huber
ca97d6b6ae The AMR WB software encoder is now an OMX component.
Change-Id: Iebfb2696783a0163369ba4e8ef72e19ee76ad893
2012-02-01 12:16:40 -08:00
Siva Velusamy
a16cc6b271 gltrace: fixup Push & Insert Marker calls
Change-Id: I58ced7225fac79ec636a65da4883614a5dce6dff
2012-02-01 12:16:40 -08:00
Scott Main
b8f2c3514e am d3747509: am 8f6b4c52: am 6b3f98b4: Merge "docs: fix action bar style example" into ics-mr1
* commit 'd3747509f5d3c64f1fbc6255a6f7f20aac023ead':
  docs: fix action bar style example
2012-02-01 12:01:32 -08:00
Scott Main
d3747509f5 am 8f6b4c52: am 6b3f98b4: Merge "docs: fix action bar style example" into ics-mr1
* commit '8f6b4c52ded03527d3c60e99cafa66aaabb4f355':
  docs: fix action bar style example
2012-02-01 11:58:57 -08:00
Scott Main
8f6b4c52de am 6b3f98b4: Merge "docs: fix action bar style example" into ics-mr1
* commit '6b3f98b458b9dc7771cce37221d4fe8c4a19bf05':
  docs: fix action bar style example
2012-02-01 11:56:23 -08:00
Scott Main
6b3f98b458 Merge "docs: fix action bar style example" into ics-mr1 2012-02-01 11:54:57 -08:00
Scott Main
b6802e7b58 docs: fix action bar style example
Change-Id: I9e02c3b3ade17c832b97836c03cf023fe6ea9340
2012-02-01 11:53:03 -08:00