Justin Ho
7f2d64829c
Merge "Updated overscroll assets" into honeycomb
2011-01-24 18:05:46 -08:00
Chet Haase
8c9d818c49
Merge "Fix for display list problem with listview items." into honeycomb
2011-01-24 17:59:35 -08:00
Andy Stadler
bdc5b82f42
Merge "Throw Base64DataException instead of IOException" into honeycomb
2011-01-24 17:43:30 -08:00
Jason Sams
af23cba7bb
Merge "Cleanup script init to fix bogus log printing and reduce memory churn." into honeycomb
2011-01-24 17:30:38 -08:00
Jim Miller
7dc57eb761
Merge "Fix 3385152: Update lockscreen font." into honeycomb
2011-01-24 17:29:23 -08:00
Adam Powell
5bd1887e9b
Merge "Fix bug 3383867 - default height for dropdown list items in framework layouts" into honeycomb
2011-01-24 17:24:25 -08:00
Jim Miller
0b67314a43
Merge "Fix 3381660: Update PasswordUnlock screen's EditText background." into honeycomb
2011-01-24 17:13:30 -08:00
James Dong
79d6d4e17f
Merge "Reduce the JNI native method visibility" into honeycomb
2011-01-24 17:12:36 -08:00
Chet Haase
13a1ff2a09
Merge "Fix bug with display lists and layout." into honeycomb
2011-01-24 17:03:30 -08:00
Jim Miller
41637fc451
Merge "Fix 3381304: disable key preview in LockScreen's qwerty keyboard" into honeycomb
2011-01-24 17:03:07 -08:00
Jeff Brown
dbc8fa1cbe
Merge "Fix regression setting input windows." into honeycomb
2011-01-24 16:58:17 -08:00
Stephen Hines
816914d103
Merge "Add missing functions to math library." into honeycomb
2011-01-24 16:14:43 -08:00
Jeff Brown
b0355c5b0d
Merge "New orientation listener." into honeycomb
2011-01-24 15:31:22 -08:00
Svetoslav Ganov
4465fa24c3
Merge "DatePicker is picking the wrong date" into honeycomb
2011-01-24 15:26:42 -08:00
Adam Powell
6314bea24b
Merge "Fix bug 3242393 - overscroll effect missing from lists which drag but are always visible" into honeycomb
2011-01-24 15:03:16 -08:00
Leon Scroggins
8362ee8894
Merge "Disable focus controller when WebView loses focus." into honeycomb
2011-01-24 15:02:10 -08:00
Gilles Debunne
8d24f48727
Merge "NULL inputType text fields should never show the IME." into honeycomb
2011-01-24 14:46:57 -08:00
Gilles Debunne
62bd287d7d
Merge "Non-editable TextViews should not display a cursor." into honeycomb
2011-01-24 14:46:42 -08:00
Adam Powell
b2859765e8
Merge "Fix bug 3382994 - android.view.WindowManager$BadTokenException" into honeycomb
2011-01-24 14:35:11 -08:00
Xavier Ducrohet
02c8c923c1
Merge "LayoutLib: Use special view cookie for include-merge case." into honeycomb
2011-01-24 14:31:28 -08:00
Adam Powell
8ec254230e
Merge "Fix bug 3237638 - make it easy to change a "refresh" AB button/icon into the indeterminate progress icon" into honeycomb
2011-01-24 14:23:36 -08:00
Andreas Huber
f22700aad0
Merge "Support non-multiple-of-16 dimensions in MPEG4/H.263 software decoder" into honeycomb
2011-01-24 13:57:11 -08:00
Eric Fischer
fb2c634139
Merge "Import revised translations. DO NOT MERGE" into honeycomb
2011-01-24 13:46:28 -08:00
Andreas Huber
622ed4bf67
Merge "The .mkv parser lib leaves some tracks NULL if it doesn't support them." into honeycomb
2011-01-24 13:29:58 -08:00
Huahui Wu
ac74723924
Merge "A few small cleanning-ups." into honeycomb
2011-01-24 13:25:17 -08:00
Daniel Sandler
fb85e51e1c
Merge "Vertically align SSID/PLMN on lockscreen." into honeycomb
2011-01-24 13:14:35 -08:00
Justin Ho
3050e3c0b8
Merge "Updated checkbox assets for legacy applications" into honeycomb
2011-01-24 12:55:29 -08:00
Andreas Huber
071e5d38da
Merge "Make AwesomePlayer's reset process more verbose to track down ANRs (again)" into honeycomb
2011-01-24 10:45:59 -08:00
Santosh Madhava
f71c66d2b4
Merge "Resubmit of 'Fix for isssue 3369932 : stopPreview returns 0'" into honeycomb
2011-01-24 10:45:36 -08:00
Joe Onorato
946566e14b
Merge "Remove unwanted parameter (it was a typo)." into honeycomb
2011-01-24 10:43:55 -08:00
Chet Haase
b65ef09bc6
Merge "Use optimized display lists for all hwaccelerated rendering" into honeycomb
2011-01-24 09:24:59 -08:00
Daniel Sandler
0adceefce0
Merge "Smoothly hide the list when there are no notifications." into honeycomb
2011-01-24 08:59:08 -08:00
Gilles Debunne
7637510357
Merge "New fix for popup behavior in AutoCompleteTextViews." into honeycomb
2011-01-24 08:58:07 -08:00
Chet Haase
47ab362e8d
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
Gil Dobjanschi
cda20d3b7c
Merge "VideoEditor:Clear Surface API addition" into honeycomb
2011-01-23 22:32:28 -08:00
Dianne Hackborn
295c34358b
Merge "Fix a regression in the wallpaper drawing." into honeycomb
2011-01-23 22:12:39 -08:00
Adam Powell
03fbc7495d
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
964697ccf9
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
Joe Onorato
9dcb68a4e2
Merge "visibility ("lights out") API." into honeycomb
2011-01-23 19:26:13 -08:00
Joe Onorato
16c415a62b
Merge "Fix typo that causes brigtness to be wrong." into honeycomb
2011-01-23 18:26:02 -08:00
Adam Powell
86d494ddf5
Merge "Fix bug 3380292 - long title in actionbar context mode pushes buttons over edge" into honeycomb
2011-01-23 18:16:09 -08:00
Dianne Hackborn
e9650dfaf8
Merge "Fix issue #3215261 : NPE in WiFi Settings" into honeycomb
2011-01-23 17:45:59 -08:00
Adam Powell
34c204773b
Merge "Fix bug 3381563 - fix segmented button styles" into honeycomb
2011-01-23 17:07:59 -08:00
Jim Miller
9676003b5e
Merge "Fix 3373106: add hint text to PasswordUnlock" into honeycomb
2011-01-23 17:06:42 -08:00
Jesse Wilson
8965f7d951
Merge "Don't call broken+deprecated SamplingProfiler.writeHprofData" into honeycomb
2011-01-23 16:40:53 -08:00
Romain Guy
1b8daa9929
Merge "Fix bitmap meshes to work in display lists." into honeycomb
2011-01-23 16:34:08 -08:00
Dianne Hackborn
7366fb7b39
Merge "aapt: Allow raw "%" in unformatted string-arrays" into honeycomb
2011-01-23 16:30:53 -08:00
Romain Guy
57abff98cf
Merge "Add support for arcs." into honeycomb
2011-01-23 16:12:50 -08:00
Adam Powell
3e76ac990b
Merge "Fix bug 3299208 - Some apps' dialogs aren't show()ing successfully" into honeycomb
2011-01-23 16:09:54 -08:00
Dianne Hackborn
ddbdf97920
Merge "Final (hopefully) API cleanup." into honeycomb
2011-01-23 14:48:09 -08:00