Jeff Hamilton
6d93386a2d
am 1212d4fd: am ef569469: Merge "Remove the My Tag feature." into gingerbread
...
* commit '1212d4fdc9bdc09c2c4c4d676b0918172eb09380':
Remove the My Tag feature.
2010-11-03 20:11:23 -07:00
Romain Guy
617d74ac48
Merge "Fix rendering bug with saveLayerAlpha/drawColor."
2010-11-03 20:03:42 -07:00
Romain Guy
e45362cad9
Fix rendering bug with saveLayerAlpha/drawColor.
...
drawColor() was not calling quickReject because it fills the clip region
and thus always passes the test. However, quickReject also checks whether
the current layer is invisible. drawColor() now performs the same check
and avoid drawing inside an invisible layer.
Change-Id: I63d0e9a8a9c0fba774f0f5c3870d58e6ed96fbd1
2010-11-03 19:58:32 -07:00
James Dong
c25c28a496
am c0fa1d47: Merge "Revert "Support rotation in media recorder"" into gingerbread
...
* commit 'c0fa1d4791667ee8d1a9685749e42426fe8bd38b':
Revert "Support rotation in media recorder"
2010-11-03 19:44:45 -07:00
James Dong
c0fa1d4791
Merge "Revert "Support rotation in media recorder"" into gingerbread
2010-11-03 19:42:17 -07:00
Gilles Debunne
e1c14e6a94
Tapping on paste popup with an empty clipboard does not crash in TextView.
...
Change-Id: I5730ec46582862c6233a9e3a2d4bf695cd2c3e69
2010-11-03 19:24:34 -07:00
Adam Powell
0c24a5514c
Fix bug 3156280 - Fix several issues with tab navigation in action bars.
...
Add the ability to restrict a FragmentTransaction's ability to be
added to the back stack. (It doesn't make sense for tabs or other
scenarios to allow this.)
Change-Id: I8fa2edb5f35c365e2483010ad13eb9993f5e6570
2010-11-03 19:24:19 -07:00
James Dong
c80c28801d
Revert "Support rotation in media recorder"
...
This reverts commit f1febe470ac30f8992066cb263c10f58493c4c34.
2010-11-03 19:22:47 -07:00
Xavier Ducrohet
9c05b39728
Layoutlib native delegate: FloatMath.
...
While the difference is pretty minor since it's a small class,
the point is that the unit test will ensure that we detect
new methods added to FloatMath more easily.
Change-Id: Ia8bfee231cc4ae0cfeb18692be86d02649c187d5
2010-11-03 19:15:07 -07:00
Xavier Ducrohet
4b606da91d
Layoutlib native delegate: path effects and xfermode.
...
Change-Id: Iafaac6dbaf452e2dba3e77c801089dad33ac4ea9
2010-11-03 19:15:07 -07:00
Dianne Hackborn
079e235750
Add new fade in/out feature for drawable containers.
...
This is used to allow list view's pressed and activated indicators
to fade in an out, though of course it can be used elsewhere as well.
There is a lot of complexity in supporting this in list view. The
two main things that are being dealt with:
- When recycling views, we need to make sure that the view's drawable
state doesn't get animated from an old row's state. The recycler
now keeps track of which position a view was last in, and if it is
reused at a new position there is a new View/Drawable API to tell
it to jump to its current state instead of animating.
- For the pressed indicator to fade out, we need to keep displaying it
after it is hidden. There are new variables and code to keep track
of this state, and tweaks in various places to be able to remember
the last selected position and continue updating the drawable bounds
as needed.
Change-Id: Ic96aa1a3c05e519665abf3098892ff2cc4f0ef2f
2010-11-03 19:11:19 -07:00
Chet Haase
079fd674fb
invalidate() View when backgroundColor changes
...
Change-Id: I5dd41b6ccffe35a784eec74495649fede65e78f2
2010-11-03 18:07:45 -07:00
Scott Main
974ea38a7c
am 42361551: Merge "docs: some more edits to the sdk install docs" into gingerbread
...
* commit '42361551b1e97884735b44dd49147ac133fa146e':
docs: some more edits to the sdk install docs
2010-11-03 18:04:56 -07:00
Scott Main
42361551b1
Merge "docs: some more edits to the sdk install docs" into gingerbread
2010-11-03 18:03:01 -07:00
Mathias Agopian
b20c2e7ca0
am 477c4fee: Merge "[3163098] Fix bug in angleChange funtion which caused the returned angle change to be zeroall the time. The fix is to use PrevR instead of computing the difference between R and R." into gingerbread
...
* commit '477c4feee2f0922dbc8952639cc12987d5cdce04':
[3163098] Fix bug in angleChange funtion which caused the returned angle change to be zeroall the time. The fix is to use PrevR instead of computing the difference between R and R.
2010-11-03 17:59:47 -07:00
Hiroshi Lockheimer
0ce42c9d31
am c181a082: Merge "Support rotation in media recorder" into gingerbread
...
* commit 'c181a08209dc85c80e4da5d20cd3980998def40d':
Support rotation in media recorder
2010-11-03 17:59:43 -07:00
Mathias Agopian
477c4feee2
Merge "[3163098] Fix bug in angleChange funtion which caused the returned angle change to be zeroall the time. The fix is to use PrevR instead of computing the difference between R and R." into gingerbread
2010-11-03 17:57:32 -07:00
Hiroshi Lockheimer
c181a08209
Merge "Support rotation in media recorder" into gingerbread
2010-11-03 17:57:28 -07:00
James Dong
f1febe470a
Support rotation in media recorder
...
o needs to be tested with camera hal and camcorder application
Change-Id: Ie343185c8ad3ec55da8850efbdcf19cf98993232
2010-11-03 17:49:55 -07:00
Chet Haase
7c608f25d4
optimizing for primitive types in animations
...
The animator classes caused autoboxing by converting primitive types (by far
the most typical types used in animations) to be converted to their
Object equivalents because of various APIs that required Object
(like getValue() to get the animated value). This change creates
factory methods on some classes instead of the former constructors
so that we can create and return private type-specific subclasses
which operate directly on the primitive types instead.
In particular, float and int are natively supported by the animators
now. Support in the APIs for double and long was removed because it
seemed like these less common types did not justify the extra
baggage of the added API and code.
Change-Id: I6008a3883e3d6dd5225005f45f112af148e5a4ea
2010-11-03 17:42:04 -07:00
Gilles Debunne
67e1ae5b96
am 698dd812: Merge "ldpi assets created from hdpi in core." into gingerbread
...
* commit '698dd8127636fcf57c56dcc90688fb5e8afb8abb':
ldpi assets created from hdpi in core.
2010-11-03 17:38:50 -07:00
Gilles Debunne
698dd81276
Merge "ldpi assets created from hdpi in core." into gingerbread
2010-11-03 17:37:28 -07:00
Wink Saville
3611e5c939
Allow DataConnectionTrackers to manage multiple data connections.
...
This is the first step to allow simultaneous data connections.
Bug: 2441767
Change-Id: Ia625cfe94b771a6958401adca84b80543fbdb35c
2010-11-03 17:14:16 -07:00
Hiroshi Lockheimer
5f5bcf5039
am e0887cc7: Merge "Squash ANRs in UsbStorageActivity." into gingerbread
...
* commit 'e0887cc7febe2a03f1685e4aa3cb131c455d8cd0':
Squash ANRs in UsbStorageActivity.
2010-11-03 17:10:33 -07:00
Hiroshi Lockheimer
e0887cc7fe
Merge "Squash ANRs in UsbStorageActivity." into gingerbread
2010-11-03 17:08:03 -07:00
Dmitry Shmidt
8182cd36cf
Merge "bugreport: Fix dump of netcfg command"
2010-11-03 17:06:29 -07:00
Robert Greenwalt
26ba124903
Merge "Add some network/phone type constants."
2010-11-03 17:05:24 -07:00
Robert Greenwalt
962a990a45
Add some network/phone type constants.
...
Support for LTE (and SIP-based voice) and the stepping-stone eHPRD.
bug:3125398
Change-Id: Ied3d96fa09d9c758a82a2fd1817f55db711d1a4f
2010-11-03 17:02:37 -07:00
Dmitry Shmidt
2c3197bf46
bugreport: Fix dump of netcfg command
...
Change-Id: Id2f507f4b094cd9cbe5c5eae9030321d1c3ed71a
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2010-11-03 16:59:47 -07:00
Kevin Powell
34884b409e
[3163098] Fix bug in angleChange funtion which caused the returned angle change to be zeroall the time. The fix is to use PrevR instead of computing the difference between R and R.
...
Change-Id: I59cacab4c7108cfb4a17fd1021de7473e6faa74f
2010-11-03 16:35:02 -07:00
Romain Guy
9195f75df0
Merge "Fix rendering issue with layers."
2010-11-03 16:23:41 -07:00
Romain Guy
5ec9924d24
Fix rendering issue with layers.
...
Change-Id: I1d511ab2707000762a942d32c300a9944ab38603
2010-11-03 16:19:08 -07:00
Jamie Gennis
f0c5c1e8ce
Fix a MediaBuffer leak in Stagefright.
...
Change-Id: I548e60b07cf1676476874b156cfbc4ffefdfa2b9
2010-11-03 16:15:10 -07:00
Praveen Bharathi
26e3734983
frameworks/base: switch audio to hdmi when cable is plugged in
...
Change-Id: I01c4ee968bc0ffbb6ce75370935571cc1ff6f8c7
Signed-off-by: Iliyan Malchev <malchev@google.com>
2010-11-03 15:38:12 -07:00
Alexander Lucas
f0452c2507
am 6f4a084e: Merge "Added SIP Demo" into gingerbread
...
* commit '6f4a084e33c917b7e04309a4296404aef7325fca':
Added SIP Demo
2010-11-03 15:35:29 -07:00
Alexander Lucas
6f4a084e33
Merge "Added SIP Demo" into gingerbread
2010-11-03 15:32:57 -07:00
Scott Main
d9bb6bc283
am 08810efc: docs: provide overview of the web apps docs and revise images in the targeting doc
...
* commit '08810efc1a1868261fb042355f75ab049438b6e3':
docs: provide overview of the web apps docs and revise images in the targeting doc
2010-11-03 15:18:10 -07:00
Jaikumar Ganesh
de04e5242a
Merge "Add STATE_AUDIO_CONNECTING state."
2010-11-03 14:58:00 -07:00
Scott Main
08810efc1a
docs: provide overview of the web apps docs and revise images in the targeting doc
...
Change-Id: I7c7c5b1936bea0676a2cafa5020e2b997c0b8634
2010-11-03 14:48:21 -07:00
Andreas Huber
fd96799958
Merge "Experimentally reenable mpeg4 and h.263 hardware decoders."
2010-11-03 14:40:27 -07:00
Shimeng (Simon) Wang
a25c0305bc
Merge "Prevent 0 content width."
2010-11-03 14:33:28 -07:00
Jason Sams
5dc336e23a
Merge "RS Error cleanup. Thow java exception during init if the GL driver fails rather than native crash."
2010-11-03 14:29:16 -07:00
Jason Sams
d5f0630034
RS Error cleanup.
...
Thow java exception during init if the
GL driver fails rather than native crash.
Change-Id: Ie96ef5a2ac12e64f9456545d86157c4c95179a8e
2010-11-03 14:27:11 -07:00
Andreas Huber
9f9ae60ace
Experimentally reenable mpeg4 and h.263 hardware decoders.
...
Change-Id: I1be266bd4534004a08e8836b48cc6c09ca890ccc
2010-11-03 14:21:15 -07:00
Shimeng (Simon) Wang
27c31388e4
Prevent 0 content width.
...
Sometimes content will be set to 0 from webkit.
issue: 3161799
Change-Id: Ib17322c2e71535105d0f961674cedce63f66a534
2010-11-03 14:18:40 -07:00
Bryan Mawhinney
8dc287de7f
Merge "Avoid copying byte arrays when just decoding bounds."
2010-11-03 14:05:54 -07:00
Eric Fischer
e9702c3989
Split strings referring to "phone" into phone and tablet variants.
...
Change-Id: I956c075a1ddeb627db0ba582a35906c9ae8f41ea
2010-11-03 13:44:11 -07:00
Justin Ho
ade230ed99
am 112b5b1f: Merge "DO NOT MERGE - Updated VPNServices stat_sys icons" into gingerbread
...
* commit '112b5b1f304846a1f6999a8347f45dae43719b8f':
DO NOT MERGE - Updated VPNServices stat_sys icons
2010-11-03 13:43:09 -07:00
Justin Ho
112b5b1f30
Merge "DO NOT MERGE - Updated VPNServices stat_sys icons" into gingerbread
2010-11-03 13:39:26 -07:00
Justin Ho
ccacd87a39
DO NOT MERGE - Updated VPNServices stat_sys icons
...
Change-Id: I2dfb6873488460528bab68225a69cae61c215006
2010-11-03 13:38:12 -07:00