78924 Commits

Author SHA1 Message Date
Romain Guy
425f126a0f am a865d7d7: am df3633b3: Merge "Make it harder for apps to mess up ViewGroup\'s internal state Bug #6421288" into jb-dev
* commit 'a865d7d7d3612d99e3b1407793610056c7df163c':
  Make it harder for apps to mess up ViewGroup's internal state Bug #6421288
2012-05-23 16:08:53 -07:00
Svetoslav Ganov
762932396a am 97490bc6: am 2205d204: Merge "System accessibility state update postponed if UI test autmation is running." into jb-dev
* commit '97490bc65a1307e276b341601cb5894568ac350a':
  System accessibility state update postponed if UI test autmation is running.
2012-05-23 16:08:51 -07:00
Romain Guy
a865d7d7d3 am df3633b3: Merge "Make it harder for apps to mess up ViewGroup\'s internal state Bug #6421288" into jb-dev
* commit 'df3633b38969e134c5370449b8247827c705ac1e':
  Make it harder for apps to mess up ViewGroup's internal state Bug #6421288
2012-05-23 16:05:15 -07:00
Svetoslav Ganov
97490bc65a am 2205d204: Merge "System accessibility state update postponed if UI test autmation is running." into jb-dev
* commit '2205d20421994d4e31994c298a22cb8fd9232fb6':
  System accessibility state update postponed if UI test autmation is running.
2012-05-23 16:05:07 -07:00
Stephen Hines
4776aead5b Merge "Revert "Large matrix test"" 2012-05-23 16:02:26 -07:00
Stephen Hines
9fc54f3d85 Revert "Large matrix test"
This reverts commit 4af866511bad19f2fec1aee6d10d58242ae40087
2012-05-23 16:02:17 -07:00
Manuel Roman
bb5a8fd908 am 9d98a089: Check result handler is not null
* commit '9d98a089756b692eefeae7f92cca15e121196e0c':
  Check result handler is not null
2012-05-23 16:00:37 -07:00
Romain Guy
df3633b389 Merge "Make it harder for apps to mess up ViewGroup's internal state Bug #6421288" into jb-dev 2012-05-23 15:49:50 -07:00
Jason Sams
27637173bb Merge "Large matrix test" 2012-05-23 15:23:32 -07:00
Svetoslav Ganov
2205d20421 Merge "System accessibility state update postponed if UI test autmation is running." into jb-dev 2012-05-23 15:19:04 -07:00
George Mount
cf73e52825 am 5354a327: am 8871403a: Merge "Show caret handle when clicking in the middle of text." into jb-dev
* commit '5354a3277736b57daa0003409ce37c5b5f3b2236':
  Show caret handle when clicking in the middle of text.
2012-05-23 15:00:47 -07:00
Chet Haase
8c5f7616be am ad26d4d6: am 38330ec3: Merge "Avoid running layout transitions on unattached views and windows" into jb-dev
* commit 'ad26d4d6ece6a1aeac208d5b4ac18814fabad034':
  Avoid running layout transitions on unattached views and windows
2012-05-23 14:56:39 -07:00
George Mount
5354a32777 am 8871403a: Merge "Show caret handle when clicking in the middle of text." into jb-dev
* commit '8871403ad2ea885dc9e773b3fb476b54bbf25412':
  Show caret handle when clicking in the middle of text.
2012-05-23 14:55:27 -07:00
Jean-Baptiste Queru
85f99ac13f am f222c03d: am cb57f4f6: (-s ours) am 7a52ba8a: Merge "Add a new API on DRM Framework for streaming"
* commit 'f222c03dfa4f8f017843324a991b8dc4ff2a7f37':
  Add a new API on DRM Framework for streaming
2012-05-23 14:52:59 -07:00
Chet Haase
ad26d4d6ec am 38330ec3: Merge "Avoid running layout transitions on unattached views and windows" into jb-dev
* commit '38330ec3b11aec64c549a71fb12fd9b8f63d3730':
  Avoid running layout transitions on unattached views and windows
2012-05-23 14:51:21 -07:00
George Mount
8871403ad2 Merge "Show caret handle when clicking in the middle of text." into jb-dev 2012-05-23 14:50:23 -07:00
Chet Haase
38330ec3b1 Merge "Avoid running layout transitions on unattached views and windows" into jb-dev 2012-05-23 14:48:43 -07:00
Jean-Baptiste Queru
f222c03dfa am cb57f4f6: (-s ours) am 7a52ba8a: Merge "Add a new API on DRM Framework for streaming"
* commit 'cb57f4f6b8057b2208fac9f2bea497e03ebeec46':
  Add a new API on DRM Framework for streaming
2012-05-23 14:48:39 -07:00
Romain Guy
393a52c9f6 Make it harder for apps to mess up ViewGroup's internal state
Bug #6421288

Change-Id: I8c2c597f45391d3c1ae40c8341a68bb25d8ad4d9
2012-05-23 14:32:16 -07:00
Jean-Baptiste Queru
cb57f4f6b8 am 7a52ba8a: Merge "Add a new API on DRM Framework for streaming"
* commit '7a52ba8a0277f4b0c98e581115abc4a13cb47251':
  Add a new API on DRM Framework for streaming
2012-05-23 14:31:19 -07:00
Manuel Roman
9d98a08975 Check result handler is not null
If caller passes a null result handler to the proxy methods, we need
to check it when getting the result. Otherwise we try to invoke a method
on a null object

Change-Id: Ic2f456c36cb542b782b6a6d0d4d607ccf0987496
2012-05-23 14:25:31 -07:00
Rich Cannings
9a69c5fce7 Merge "Added code to log the current value of the "allow unknown sources" setting after successful package installation." 2012-05-23 14:21:34 -07:00
Chet Haase
ab3a776827 Avoid running layout transitions on unattached views and windows
LayoutTransition causes artifacts in some situations where a window is just
becoming visible or a container is just being added to the view tree when animations
are kicked off in LayoutTransition due to the normal automatic mechanism of running
animations when views are added/removed/etc. The problem is that containers in these
situations may have children with positions and sizes of (0, 0), causing the animation to
animate from this default/nonsense value to whatever is appropriate for the views when
they are first laid out and drawn. The end result is correct, but the animation is
superfluous and silly.

The fix is to avoid running any kind of transition animation on windows that are not
currently visible or containers that are not currently atached to the view hierarchy.
This should avoid the situation by only allowing the animations to run after the containers
and windows are visible and set up correctly.

Issue #6544410 issue with layout transition when first showing the activity

Change-Id: I737b2598887ef806dec3b02a483a8e8ff2c3d4e2
2012-05-23 14:09:30 -07:00
Jean-Baptiste Queru
7a52ba8a02 Merge "Add a new API on DRM Framework for streaming" 2012-05-23 14:06:54 -07:00
George Mount
c2813fa759 Show caret handle when clicking in the middle of text.
Bug 6545325

Change-Id: Ibea6daca1da12eec38b05f7f451561d31bb3c983
2012-05-23 14:04:54 -07:00
Chris Wren
e1ee12650e am 7ecc8974: am b72ac9dd: Merge "BigPicture notifications for screenshots." into jb-dev
* commit '7ecc89743d43adeaf3d80c8d630fe37b23f8346e':
  BigPicture notifications for screenshots.
2012-05-23 13:39:36 -07:00
Chris Wren
ac13e5d5ae am 969cf617: am e820b18f: Merge "Leave less space between notificaitons." into jb-dev
* commit '969cf617d494f1551a1cc0065765bc55c4a0bbc9':
  Leave less space between notificaitons.
2012-05-23 13:39:31 -07:00
Chris Wren
7ecc89743d am b72ac9dd: Merge "BigPicture notifications for screenshots." into jb-dev
* commit 'b72ac9dd6eb649d6f0583a5782b1780cf4efa088':
  BigPicture notifications for screenshots.
2012-05-23 13:35:56 -07:00
Chris Wren
969cf617d4 am e820b18f: Merge "Leave less space between notificaitons." into jb-dev
* commit 'e820b18ffa9dc3ece742d137e5c3e4cf82e406df':
  Leave less space between notificaitons.
2012-05-23 13:35:53 -07:00
Chris Wren
b72ac9dd6e Merge "BigPicture notifications for screenshots." into jb-dev 2012-05-23 13:32:53 -07:00
Chris Wren
e820b18ffa Merge "Leave less space between notificaitons." into jb-dev 2012-05-23 13:32:34 -07:00
Svetoslav Ganov
4074e8a3f4 System accessibility state update postponed if UI test autmation is running.
1. If a UI test automation accessibility service is connected to the
   system we pospone state updates in the AccessibilityManagerService
   for the moment the UI automations service dies or is disconnected.

bug:6540522

Change-Id: I48ddf603b53d2158a00edcf8ad05cfe2575d4d75
2012-05-23 13:12:13 -07:00
Craig Mautner
43b091133a am b53437c5: am 53d003f0: Merge "Modify auto brightness to return to dim level." into jb-dev
* commit 'b53437c51b441dc0ccdfb743e0f4e0b2ea44eae1':
  Modify auto brightness to return to dim level.
2012-05-23 11:28:11 -07:00
Craig Mautner
b53437c51b am 53d003f0: Merge "Modify auto brightness to return to dim level." into jb-dev
* commit '53d003f0e77291e7382c4871e0828014b470ab9f':
  Modify auto brightness to return to dim level.
2012-05-23 11:24:38 -07:00
Craig Mautner
53d003f0e7 Merge "Modify auto brightness to return to dim level." into jb-dev 2012-05-23 11:22:04 -07:00
Daniel Sandler
0fc034f49f am 79934c00: am 81de5a0b: Merge "Stop animating when not showing." into jb-dev
* commit '79934c0048a6bfccdbb6dda0fc45db3240ba5de8':
  Stop animating when not showing.
2012-05-23 11:12:25 -07:00
Daniel Sandler
79934c0048 am 81de5a0b: Merge "Stop animating when not showing." into jb-dev
* commit '81de5a0b11df08b603693b6d3b381ac9f89ebc67':
  Stop animating when not showing.
2012-05-23 11:07:42 -07:00
Daniel Sandler
81de5a0b11 Merge "Stop animating when not showing." into jb-dev 2012-05-23 11:05:02 -07:00
Craig Mautner
2b5d509584 am 4d7b752e: am 85aea366: Merge "Remove Popup immediately rather than defer it." into jb-dev
* commit '4d7b752ee9f739e3b178261728fc6b9ae0d8eac4':
  Remove Popup immediately rather than defer it.
2012-05-23 10:55:50 -07:00
Craig Mautner
4d7b752ee9 am 85aea366: Merge "Remove Popup immediately rather than defer it." into jb-dev
* commit '85aea3664992cd1e16ef4497c3450b26bdef06b0':
  Remove Popup immediately rather than defer it.
2012-05-23 10:52:04 -07:00
Craig Mautner
85aea36649 Merge "Remove Popup immediately rather than defer it." into jb-dev 2012-05-23 10:47:46 -07:00
Craig Mautner
b82d074038 Remove Popup immediately rather than defer it.
Delaying the popup by using removeView instead of removeViewImmediate
caused an error when the removal was actually executed after the parent
window was deleted along with the popup.

Fixes bug 6407801.

Change-Id: Ieb17d58467aaf16e1a24f47187f52766d694ba32
2012-05-23 10:15:09 -07:00
Chris Wren
956beaf956 Leave less space between notificaitons.
Bug: 6507482
Change-Id: I9244fcabe423ec59e1856f5fddcd948ea7b3374d
2012-05-23 11:14:19 -04:00
Marco Nelissen
738342b1dc am ec1d16bf: am 101fb9fe: Merge "Handle _ and % in paths" into jb-dev
* commit 'ec1d16bf72d68604e7dc86309f13d909a6d88321':
  Handle _ and % in paths
2012-05-23 07:49:15 -07:00
Marco Nelissen
ec1d16bf72 am 101fb9fe: Merge "Handle _ and % in paths" into jb-dev
* commit '101fb9fe2b5001e8122e2965c115688c1f42bd63':
  Handle _ and % in paths
2012-05-23 07:46:14 -07:00
Marco Nelissen
101fb9fe2b Merge "Handle _ and % in paths" into jb-dev 2012-05-23 07:43:20 -07:00
Daniel Sandler
aa0a3b6923 Stop animating when not showing.
We were eating too many jelly beans even when the screen was
off.

Also clean up touch offsets, rotation on fling, and main
platlogo asset.

Bug: 6541052
Change-Id: I34e49b8b7a95ce6daab929885130426a5ae58dc4
2012-05-23 01:38:26 -04:00
Svetoslav Ganov
997c952f13 am f608140b: am ed82973e: Merge "Interaction model of KeyboarView should be same as latimIME" into jb-dev
* commit 'f608140b13d9c617cf93ffb00cb5a9a93a2dd6da':
  Interaction model of KeyboarView should be same as latimIME
2012-05-22 20:36:51 -07:00
Svetoslav Ganov
eed38b6d7f am 1eab75b9: am 321a56c8: Merge "Clearing accessibility focus of a view did not update the global state." into jb-dev
* commit '1eab75b9ba87fe73e5709ef4e77adc78e55b96c9':
  Clearing accessibility focus of a view did not update the global state.
2012-05-22 20:32:58 -07:00
Svetoslav Ganov
f608140b13 am ed82973e: Merge "Interaction model of KeyboarView should be same as latimIME" into jb-dev
* commit 'ed82973e616b1cbcab873dfb9c0191e63b34c821':
  Interaction model of KeyboarView should be same as latimIME
2012-05-22 20:32:48 -07:00