18494 Commits

Author SHA1 Message Date
Justin Ho
07800cd4c2 am f8a93b4b: am 7040e33c: Merge "Updated checkbox assets for legacy applications" into honeycomb
* commit 'f8a93b4ba2a73e5c8271d1fe23853b83a03e1583':
  Updated checkbox assets for legacy applications
2011-01-24 13:32:52 -08:00
Joe Onorato
b05aacc1ae am ab8967ae: am da34e13b: Merge "Remove unwanted parameter (it was a typo)." into honeycomb
* commit 'ab8967ae9db71291094da2967e744038b7e91ff7':
  Remove unwanted parameter (it was a typo).
2011-01-24 13:30:42 -08:00
Chet Haase
3873da3c6e am 2acb67ec: am 67005b05: Merge "Use optimized display lists for all hwaccelerated rendering" into honeycomb
* commit '2acb67ec9fe34316231519373f59dfb76c03d57b':
  Use optimized display lists for all hwaccelerated rendering
2011-01-24 13:30:37 -08:00
Gilles Debunne
161bfdd0ce am 971bdb3a: am 7108724d: Merge "New fix for popup behavior in AutoCompleteTextViews." into honeycomb
* commit '971bdb3a24582ab1f09745cdef1ec906ff13b7f9':
  New fix for popup behavior in AutoCompleteTextViews.
2011-01-24 13:30:23 -08:00
Jean-Michel Trivi
477e035995 am dc871fd8: resolved conflicts for merge of 3ebade5d to honeycomb-plus-aosp
* commit 'dc871fd870972bd704d720fae45bcbbcc5905173':
  Bug 3365937 notify TTS initialization listener of binding errors
2011-01-24 13:29:58 -08:00
Dianne Hackborn
066db079a8 am 1eefe1fa: am 582a3944: Merge "Fix a regression in the wallpaper drawing." into honeycomb
* commit '1eefe1facc5607d502c5bdd2c11c11acd2438666':
  Fix a regression in the wallpaper drawing.
2011-01-24 13:27:00 -08:00
Adam Powell
9388442226 am caa54b39: am 77ddb026: Merge "Fix bug 3360953 - Toasts use the holo theme in non-HC apps" into honeycomb
* commit 'caa54b391268e3ea81c69635d87aba34d129c84b':
  Fix bug 3360953 - Toasts use the holo theme in non-HC apps
2011-01-24 13:26:52 -08:00
Adam Powell
003d248a52 am b3f079bc: am a6ce0819: Merge "Fix bug 3381275 - Too much padding on the left of a custom nav bar" into honeycomb
* commit 'b3f079bc67a8d1d330c4ee6e348cb286118416da':
  Fix bug 3381275 - Too much padding on the left of a custom nav bar
2011-01-24 13:26:43 -08:00
Joe Onorato
10f4126a36 resolved conflicts for merge of faf083ef to master
Change-Id: I316a1b4356f6dba6c3880ccb02dbb2fa00d21a85
2011-01-24 13:16:08 -08:00
Justin Ho
f8a93b4ba2 am 7040e33c: Merge "Updated checkbox assets for legacy applications" into honeycomb
* commit '7040e33c183f431531bd68b23c6d69d31eb1a173':
  Updated checkbox assets for legacy applications
2011-01-24 12:58:00 -08:00
Justin Ho
7040e33c18 Merge "Updated checkbox assets for legacy applications" into honeycomb 2011-01-24 12:55:29 -08:00
Justin Ho
ec42272205 Updated checkbox assets for legacy applications
Change-Id: I30c39101b365a0bcc78e1b5ff67a9d2ae732e5ae
2011-01-24 12:07:37 -08:00
Joe Onorato
ab8967ae9d am da34e13b: Merge "Remove unwanted parameter (it was a typo)." into honeycomb
* commit 'da34e13bb4ef97832c43489937a26d314437a1d7':
  Remove unwanted parameter (it was a typo).
2011-01-24 11:16:43 -08:00
Chet Haase
2acb67ec9f am 67005b05: Merge "Use optimized display lists for all hwaccelerated rendering" into honeycomb
* commit '67005b05cc76a38a5b3bf6e83957dd03619e9126':
  Use optimized display lists for all hwaccelerated rendering
2011-01-24 11:15:51 -08:00
Gilles Debunne
971bdb3a24 am 7108724d: Merge "New fix for popup behavior in AutoCompleteTextViews." into honeycomb
* commit '7108724d4b6a1c2862154cd52ed4fb1e5f001186':
  New fix for popup behavior in AutoCompleteTextViews.
2011-01-24 11:15:38 -08:00
Joe Onorato
da34e13bb4 Merge "Remove unwanted parameter (it was a typo)." into honeycomb 2011-01-24 10:43:55 -08:00
Jean-Michel Trivi
dc871fd870 resolved conflicts for merge of 3ebade5d to honeycomb-plus-aosp
Change-Id: Ifd5f88f75feeb2dad1131e6a262dff3b979bdf8d
2011-01-24 09:35:57 -08:00
Joe Onorato
e595cad6ee Remove unwanted parameter (it was a typo).
Bug: 3241144
Change-Id: I569f6c8dffb17041a422be6084b6eab89624a57b
2011-01-24 09:25:35 -08:00
Chet Haase
67005b05cc Merge "Use optimized display lists for all hwaccelerated rendering" into honeycomb 2011-01-24 09:24:59 -08:00
Gilles Debunne
7108724d4b Merge "New fix for popup behavior in AutoCompleteTextViews." into honeycomb 2011-01-24 08:58:07 -08:00
Chet Haase
daf98e941e Use optimized display lists for all hwaccelerated rendering
Previously, display lists were used only if hardware acceleration
was enabled for an application (hardwareAccelerated=true) *and* if
setDrawingCacheEnabled(true) was called. This change makes the framework
use display lists for all views in an application if hardware acceleration
is enabled.

In addition, display list renderering has been optimized so that
any view's recreation of its own display list (which is necessary whenever
the visuals of that view change) will not cause any other display list
in its parent hierarchy to change. Instead, when there are any visual
changes in the hierarchy, only those views which need to have new
display list content will recreate their display lists.

This optimization works by caching display list references in each
parent display list (so the container of some child will refer to its
child's display list by a reference to the child's display list). Then when
a view needs to recreate its display list, it will do so inside the same
display list object. This will cause the content to get refreshed, but not
the reference to that content. Then when the view hierarchy is redrawn,
it will automatically pick up the new content from the old reference.

This optimization will not necessarily improve performance when applications
need to update the entire view hierarchy or redraw the entire screen, but it does
show significant improvements when redrawing only a portion of the screen,
especially when the regions that are not refreshed are complex and time-
consuming to redraw.

Change-Id: I68d21cac6a224a05703070ec85253220cb001eb4
2011-01-24 08:43:20 -08:00
Adam Powell
a19ca02ce2 am b4ae633d: am 2bed570b: Fix bug 3367627 - spontaneous crash
* commit 'b4ae633df775f99c4c0e47da228d71489d44b353':
  Fix bug 3367627 - spontaneous crash
2011-01-23 23:44:35 -08:00
Adam Powell
8aca17f1e0 am 9c01f219: am 7ed3d005: Merge "Fix bug 3380292 - long title in actionbar context mode pushes buttons over edge" into honeycomb
* commit '9c01f219503e9bd62127fb85e1d4f5c7f59291cb':
  Fix bug 3380292 - long title in actionbar context mode pushes buttons over edge
2011-01-23 23:44:24 -08:00
Dianne Hackborn
1eefe1facc am 582a3944: Merge "Fix a regression in the wallpaper drawing." into honeycomb
* commit '582a3944f704d7fde660126ef92cf4736c734ac2':
  Fix a regression in the wallpaper drawing.
2011-01-23 23:38:05 -08:00
Adam Powell
caa54b3912 am 77ddb026: Merge "Fix bug 3360953 - Toasts use the holo theme in non-HC apps" into honeycomb
* commit '77ddb0262094e0d30d50572e7b1a76d7b5977f46':
  Fix bug 3360953 - Toasts use the holo theme in non-HC apps
2011-01-23 23:37:59 -08:00
Adam Powell
b3f079bc67 am a6ce0819: Merge "Fix bug 3381275 - Too much padding on the left of a custom nav bar" into honeycomb
* commit 'a6ce081970a78233ba6b9792149ee5f1390cba7b':
  Fix bug 3381275 - Too much padding on the left of a custom nav bar
2011-01-23 23:37:44 -08:00
Joe Onorato
faf083ef0b am 4c541b13: Merge "visibility ("lights out") API." into honeycomb
* commit '4c541b1303b0ee2b9b0d19bee85d3780c5c4c110':
  visibility ("lights out") API.
2011-01-23 23:36:57 -08:00
Adam Powell
b4ae633df7 am 2bed570b: Fix bug 3367627 - spontaneous crash
* commit '2bed570bba183249c6ca9ca1151d1d23808de8c1':
  Fix bug 3367627 - spontaneous crash
2011-01-23 23:36:52 -08:00
Adam Powell
9c01f21950 am 7ed3d005: Merge "Fix bug 3380292 - long title in actionbar context mode pushes buttons over edge" into honeycomb
* commit '7ed3d005ac5ed26221ccc3596c0b81522909ca76':
  Fix bug 3380292 - long title in actionbar context mode pushes buttons over edge
2011-01-23 23:36:25 -08:00
Dianne Hackborn
582a3944f7 Merge "Fix a regression in the wallpaper drawing." into honeycomb 2011-01-23 22:12:39 -08:00
Jeff Brown
033f63a1a5 Fix a regression in the wallpaper drawing.
We should not lock and post the surface if we don't intend to
draw anything into it.

Change-Id: Idfd1cf127bdc1f5e1f5e783a8991d44de90878da
2011-01-23 22:01:49 -08:00
Adam Powell
77ddb02620 Merge "Fix bug 3360953 - Toasts use the holo theme in non-HC apps" into honeycomb 2011-01-23 22:00:29 -08:00
Adam Powell
472b026dc1 Fix bug 3360953 - Toasts use the holo theme in non-HC apps
Change-Id: Ic386b35ec47613655f4b17395090959f9031e3ad
2011-01-23 21:15:23 -08:00
Adam Powell
a6ce081970 Merge "Fix bug 3381275 - Too much padding on the left of a custom nav bar" into honeycomb 2011-01-23 20:52:38 -08:00
Adam Powell
2a7ea67a03 Fix bug 3381275 - Too much padding on the left of a custom nav bar
Hide the title layout if it's empty to omit any included padding.

Change-Id: I01d287c8e214ed3648a47f5ca00b50f78d1659ad
2011-01-23 20:35:28 -08:00
Joe Onorato
4c541b1303 Merge "visibility ("lights out") API." into honeycomb 2011-01-23 19:26:13 -08:00
Joe Onorato
664644d9e0 visibility ("lights out") API.
1. Views may setSystemUiVisibility() to recommend that
the system chrome (status bar or other UI) show or hide
itself.  (This functionality was previously available only
via the FLAG_FULLSCREEN window flag for some SystemUI
implementations.)

2. Views may register a OnSystemUiVisibilityChangedListener
on a view, and find out when the system UI actually
appears or disappears, allowing apps to coordinate the
appearance of their own UI if desired.

Bug: 3241144
Change-Id: Ia1758d94099182d49a1e3688ea2738ae4995b829
2011-01-23 19:22:52 -08:00
Adam Powell
2bed570bba Fix bug 3367627 - spontaneous crash
Fix a little-traversed codepath that could cause some grief.

Change-Id: I75e6931c3208a0f18b40446f23a2fdd5a0065ce8
2011-01-23 19:20:43 -08:00
Gilles Debunne
4a74dbc3f2 New fix for popup behavior in AutoCompleteTextViews.
Bug 3374144

The fix in https://android-git.corp.google.com/g/#change,91880 is not
sufficient. An updated adapter needs to be able to force an update of
the poup result list.

Addded a flag that prevents the popup from being re-opened when it has
previously been closed by a user action.

Change-Id: I45fab056c8ebd6dc4317430213f2bc37b51b79e3
2011-01-23 18:20:43 -08:00
Adam Powell
7ed3d005ac Merge "Fix bug 3380292 - long title in actionbar context mode pushes buttons over edge" into honeycomb 2011-01-23 18:16:09 -08:00
Adam Powell
b0ff6f9955 Fix bug 3380292 - long title in actionbar context mode pushes buttons over edge
Also adjust default web text selection menu to allow overflow, preventing items
from being cut off in portrait or on smaller screens.

Change-Id: I686c9a8daab31a38c2fcb75ee1402f09f568c238
2011-01-23 18:07:45 -08:00
Dianne Hackborn
ee18bc7e3c am 802fb15d: am 9476f045: Merge "Fix issue #3215261: NPE in WiFi Settings" into honeycomb
* commit '802fb15d2a9d6e094627c561100aabbac3689d94':
  Fix issue #3215261: NPE in WiFi Settings
2011-01-23 17:50:23 -08:00
Dianne Hackborn
802fb15d2a am 9476f045: Merge "Fix issue #3215261: NPE in WiFi Settings" into honeycomb
* commit '9476f04590ebea2d74ebb60775f2648323239512':
  Fix issue #3215261: NPE in WiFi Settings
2011-01-23 17:48:23 -08:00
Dianne Hackborn
9476f04590 Merge "Fix issue #3215261: NPE in WiFi Settings" into honeycomb 2011-01-23 17:45:59 -08:00
Dianne Hackborn
89ba6750e5 Fix issue #3215261: NPE in WiFi Settings
And also fix #3343369: EGL_BAD_DISPLAY and/or broadcast intent
TIME_SET before boot completion

And a few more tweaks to animations to keep the wallpaper displayed
when needed.

And make more use of the drag and drop "rotation disabled" thing to
also use it while animating the screen rotation, since if we try to
start a new rotation while doing the animation we end up with a mess.

Change-Id: I373af305a6e23a92835abed96229a83e173f67ce
2011-01-23 17:35:08 -08:00
Adam Powell
bb5536015a am ab847acd: am 12e2500b: Merge "Fix bug 3381563 - fix segmented button styles" into honeycomb
* commit 'ab847acd5e116cc60efbc6ac5a332ee5353966c0':
  Fix bug 3381563 - fix segmented button styles
2011-01-23 17:13:34 -08:00
Adam Powell
ab847acd5e am 12e2500b: Merge "Fix bug 3381563 - fix segmented button styles" into honeycomb
* commit '12e2500b27cf53880baff5bcdc6c30868ecde744':
  Fix bug 3381563 - fix segmented button styles
2011-01-23 17:10:57 -08:00
Jim Miller
6cda2dd5f8 am 62a01eca: am 93727e84: Merge "Fix 3373106: add hint text to PasswordUnlock" into honeycomb
* commit '62a01eca1d40217ce9bcae0734168b98f0534fb3':
  Fix 3373106: add hint text to PasswordUnlock
2011-01-23 17:10:24 -08:00
Jim Miller
62a01eca1d am 93727e84: Merge "Fix 3373106: add hint text to PasswordUnlock" into honeycomb
* commit '93727e845fa73f3397ccbe4416a5781bb5003883':
  Fix 3373106: add hint text to PasswordUnlock
2011-01-23 17:08:43 -08:00
Adam Powell
12e2500b27 Merge "Fix bug 3381563 - fix segmented button styles" into honeycomb 2011-01-23 17:07:59 -08:00