Joe Onorato
bbfeb52613
am 9b120ead: Merge "Make the notification settings view less janky." into honeycomb
...
* commit '9b120ead0b5a3783031f35b93890226fc45f8f30':
Make the notification settings view less janky.
2011-01-16 13:55:45 -08:00
Joe Onorato
4e0a956c5a
am 1ddf75a3: Merge "Change the default of how AsyncTask enqueues." into honeycomb
...
* commit '1ddf75a3df38c3e9b56ed626da52662dd0694279':
Change the default of how AsyncTask enqueues.
2011-01-16 13:55:39 -08:00
Joe Onorato
9b120ead0b
Merge "Make the notification settings view less janky." into honeycomb
2011-01-16 13:52:48 -08:00
Joe Onorato
1ddf75a3df
Merge "Change the default of how AsyncTask enqueues." into honeycomb
2011-01-16 13:52:41 -08:00
Romain Guy
761ae69b7c
am 3c372789: Merge "Don\'t dispatchDetachedFromWindow() if the View was not attached." into honeycomb
...
* commit '3c372789ea0b7836c6a9fe4852fac0de3f29fbbf':
Don't dispatchDetachedFromWindow() if the View was not attached.
2011-01-16 13:30:43 -08:00
Romain Guy
3c372789ea
Merge "Don't dispatchDetachedFromWindow() if the View was not attached." into honeycomb
2011-01-16 13:28:38 -08:00
Joe Onorato
c07d7c139b
Make the notification settings view less janky.
...
Bug: 3124822
Change-Id: I8fb9d169ae047d9b6738bb66e60a193a7a749efb
2011-01-16 13:10:11 -08:00
Joe Onorato
81de61bfdd
Change the default of how AsyncTask enqueues.
...
The default is now to serialize everything onto the thread pool. If you would
like to have finer grained control over how AsyncTasks are executed, you can
call the new executeOnExecutor method, which takes a custom Executor. The
pool used by the default is handily now accessible as THREAD_POOL_EXECUTOR.
This change is because it is too tempting to convert single threaded Janky™
code to use AsyncTask in a way that is unsafe and ends up calling the
AsyncTasks in parallel.
Also, this adds a static execute(Runnable) method to AsyncTask that posts
onto the serialized queue, so that if you don't have any parameters or
return values, you can just use Runnable instead of AsyncTask.
Change-Id: I91bdfb00193542bfc2e101bcad56e3430421884a
2011-01-16 13:09:52 -08:00
Romain Guy
90fc03bc49
Don't dispatchDetachedFromWindow() if the View was not attached.
...
Change-Id: I36cb697be76c8c03497284563dc339c5367559c6
2011-01-16 13:07:15 -08:00
Irfan Sheriff
a81851f074
am b2c1a5c3: Merge "Fix WPS to provides immediate feedback" into honeycomb
...
* commit 'b2c1a5c38834fd6fef229001d0571b7e833236ed':
Fix WPS to provides immediate feedback
2011-01-16 13:05:12 -08:00
Irfan Sheriff
b2c1a5c388
Merge "Fix WPS to provides immediate feedback" into honeycomb
2011-01-16 13:02:57 -08:00
Romain Guy
f219da5e32
Don't blend transparent pixels when rendering layers.
...
With this change, the rendere keeps track of what regions are rendered into
and generates a mesh that matches these regions exactly. The mesh is used
to composite the layer on screen.
Change-Id: I1f342576b9134fb29caff7fb8f4c1da179fe956d
2011-01-16 12:54:25 -08:00
Romain Guy
222a2f1de1
am 749b9dba: Merge "Don\'t blend transparent pixels when rendering layers." into honeycomb
...
* commit '749b9dbaf939ab91ae5cf6680dd03e1180a8b37f':
Don't blend transparent pixels when rendering layers.
2011-01-16 12:54:02 -08:00
Romain Guy
749b9dbaf9
Merge "Don't blend transparent pixels when rendering layers." into honeycomb
2011-01-16 12:52:37 -08:00
Dianne Hackborn
64e3064305
am c237bb27: Merge "Add manifest API to request a large heap." into honeycomb
...
* commit 'c237bb2776facbfd3325ef23865fd7f6ced67f17':
Add manifest API to request a large heap.
2011-01-16 12:47:57 -08:00
Dianne Hackborn
c237bb2776
Merge "Add manifest API to request a large heap." into honeycomb
2011-01-16 12:45:07 -08:00
Dianne Hackborn
3b81bc18bb
Add manifest API to request a large heap.
...
You can now do android:largeHeap="true" on an application.
Doesn't yet do anything, waiting for Dalvik API.
Also tweak package parsing so that the SDK API level is set in the
configuration, allowing manifest resource value selection based on
that.
Change-Id: I6e035f9702a97b055416743b88f83a22ba4a9584
2011-01-16 12:08:38 -08:00
Chet Haase
15401dc2c2
am 598913a6: Merge "Remove obsolete DoubleEvaluator" into honeycomb
...
* commit '598913a6ba733da911a547e29fb21c6fea3aef3d':
Remove obsolete DoubleEvaluator
2011-01-16 12:07:19 -08:00
Chet Haase
598913a6ba
Merge "Remove obsolete DoubleEvaluator" into honeycomb
2011-01-16 12:05:40 -08:00
Chet Haase
b2ab04ffb6
Remove obsolete DoubleEvaluator
...
Change-Id: I4407468599061ff35c68589988fb1e897de28c69
2011-01-16 11:34:14 -08:00
Amith Yamasani
fac8e262a1
am fe75749c: Merge "Fix position and size of searchfield and buttons." into honeycomb
...
* commit 'fe75749cd9ad2186069037db0238b8596007c4d4':
Fix position and size of searchfield and buttons.
2011-01-16 11:23:02 -08:00
Amith Yamasani
fe75749cd9
Merge "Fix position and size of searchfield and buttons." into honeycomb
2011-01-16 11:20:49 -08:00
Joe Onorato
0ffce15209
am 772f5600: Need to save the brigness setting.
...
* commit '772f5600ef720945b98054246982fd3b711830a9':
Need to save the brigness setting.
2011-01-16 11:14:54 -08:00
Joe Onorato
772f5600ef
Need to save the brigness setting.
...
Otherwise the value isn't preserved the next time the screen goes off.
Bug: 3356129
Change-Id: I78fd32ee66a0766ec254b8558d483e97ffdccd7e
2011-01-16 11:10:16 -08:00
Joe Onorato
f3c739cae4
am a032c901: Provide a public resource with the dimensions of the large notification icon.
...
* commit 'a032c90189d9ac28b65af4fe5f8b34f182441335':
Provide a public resource with the dimensions of the large notification icon.
2011-01-16 11:06:29 -08:00
Joe Onorato
a032c90189
Provide a public resource with the dimensions of the large notification icon.
...
Bug: 3301067
Change-Id: I4ef66ee35df34a5288681a0e80e9877d57398dd0
2011-01-16 10:50:23 -08:00
Shih-wei Liao
0340f9955f
am 71a2e13d: On-device linking using bccLinkBC. Note that we switch to getFile interface on the libbcc side.
...
* commit '71a2e13d19fa8d8f88b6b97e2b28296094af3005':
On-device linking using bccLinkBC. Note that we switch to getFile interface on the libbcc side.
2011-01-16 04:00:57 -08:00
Shih-wei Liao
71a2e13d19
On-device linking using bccLinkBC. Note that we switch to getFile interface
...
on the libbcc side.
Change-Id: Iec4e0624f1448161c0a2163f3ce725ce6cdf3267
2011-01-16 03:57:20 -08:00
Adam Powell
9b90ac3b06
am efb9000f: Fix bug 3355197 - TextView error popup text color
...
* commit 'efb9000f42f30cc6e70113626de0f05456340ad2':
Fix bug 3355197 - TextView error popup text color
2011-01-15 20:52:32 -08:00
Adam Powell
efb9000f42
Fix bug 3355197 - TextView error popup text color
...
Fix a theme setting for positioning buttons in alert dialogs for
holo.light.
Change-Id: Id6334c6d77afa19ea29409c8d5034942740c7065
2011-01-15 20:49:52 -08:00
Adam Powell
9f5f3d92ce
am c6ac2472: Merge "Fix bug 3238726 - AutoCompleteTextView dropdown text color" into honeycomb
...
* commit 'c6ac2472c9a24675795df19d2c07cfa86d931dc4':
Fix bug 3238726 - AutoCompleteTextView dropdown text color
2011-01-15 20:07:52 -08:00
Adam Powell
c6ac2472c9
Merge "Fix bug 3238726 - AutoCompleteTextView dropdown text color" into honeycomb
2011-01-15 20:05:21 -08:00
Adam Powell
674af39e56
Fix bug 3238726 - AutoCompleteTextView dropdown text color
...
Change-Id: I8de7a33932b0f6fb2c961f662b626d6ce46d46e9
2011-01-15 20:04:24 -08:00
Adam Powell
39ec9427fb
am b921072c: Fix bug 3356144 - Alert dialog in Holo Dark theme has wrong height
...
* commit 'b921072c2b509cf31d9d9779b30c278bc6f9f640':
Fix bug 3356144 - Alert dialog in Holo Dark theme has wrong height
2011-01-15 19:29:30 -08:00
Adam Powell
b921072c2b
Fix bug 3356144 - Alert dialog in Holo Dark theme has wrong height
...
Change-Id: I026ab039caa2b9010a25ed7a1980b1213d946509
2011-01-15 19:24:50 -08:00
Adam Powell
ebef3b8ca5
am 115ad165: Merge "Fix bug 3355197 - Add attribute for fast scroll preview panel text color." into honeycomb
...
* commit '115ad16551c9cf9551f44cbea59f3edf83e4a340':
Fix bug 3355197 - Add attribute for fast scroll preview panel text color.
2011-01-15 17:25:49 -08:00
Adam Powell
115ad16551
Merge "Fix bug 3355197 - Add attribute for fast scroll preview panel text color." into honeycomb
2011-01-15 17:23:39 -08:00
Adam Powell
b2e551711a
Fix bug 3355197 - Add attribute for fast scroll preview panel text color.
...
Text color for the fast scroll panel is dependent on its background,
which is already configurable within the theme.
Change-Id: I6ac3018116f078b7567888d75fa34ffd250d2f92
2011-01-15 17:21:35 -08:00
Jamie Gennis
0969120b61
am 39de4584: Merge "Compare GraphicBuffers using handles." into honeycomb
...
* commit '39de45846cd9431e9fc1ee44591152bc566f9858':
Compare GraphicBuffers using handles.
2011-01-15 17:03:28 -08:00
Jamie Gennis
39de45846c
Merge "Compare GraphicBuffers using handles." into honeycomb
2011-01-15 17:01:51 -08:00
Jamie Gennis
4559ea41d8
Compare GraphicBuffers using handles.
...
This change fixes a bug in SurfaceTextureClient where GraphicBuffers
were being compared using pointer comparison rather than handles.
Change-Id: Ib8989af94be32d4efd86e020a732f5143088a863
2011-01-15 17:00:06 -08:00
Joe Onorato
46f98a78e2
am 80a44401: Need to update the largeIcon for notifications when we\'re reapplying the views.
...
* commit '80a44401a22344f7eabce6976372ab144ef22893':
Need to update the largeIcon for notifications when we're reapplying the views.
2011-01-15 16:25:46 -08:00
Joe Onorato
80a44401a2
Need to update the largeIcon for notifications when we're reapplying the views.
...
Bug: 3298062
Change-Id: I6bb72c0b93e00a9de8cc2633ac07add0a572a20f
2011-01-15 16:22:24 -08:00
Wink Saville
eb73112312
am a47aa87a: Merge "Set mIsMinInfoReady and mCurrentOtasp before notifcations." into honeycomb
...
* commit 'a47aa87a19c733e28d9d2db1c4eb7f29d668db7b':
Set mIsMinInfoReady and mCurrentOtasp before notifcations.
2011-01-15 10:13:07 -08:00
Wink Saville
a47aa87a19
Merge "Set mIsMinInfoReady and mCurrentOtasp before notifcations." into honeycomb
2011-01-15 10:11:08 -08:00
Wink Saville
ad8c32f302
Set mIsMinInfoReady and mCurrentOtasp before notifcations.
...
We were sending a notification before setting mIsMinInfoReady and
mCurrentOtasp. This causes a race and it's possible that
OtaUtils.maybeDoOtasp is called before before they are set.
In this case the activation would not occur.
Bug: 3339109
Change-Id: I3baf8992d58af63a5cc07a14cc33157fd1c5aaa3
2011-01-15 07:47:03 -08:00
Nick Pelly
18f52d533d
am f780350e: am b73203ab: Merge "Make sure service handles are live before passing to other objects." into gingerbread
...
* commit 'f780350edb403739fee1a99b0ca91541f5ec0b91':
Make sure service handles are live before passing to other objects.
2011-01-14 21:30:20 -08:00
Jean-Baptiste Queru
89a11e5d5c
am 9286cfe5: (-s ours) merge 83fdc69e from gingerbread - do not merge
...
* commit '9286cfe5017363d95798d85163ec4f28aeb0c675':
Squash commits of the following patches, cherry-picked from other branch - do not merge.
2011-01-14 21:30:16 -08:00
Jaikumar Ganesh
e76ca5e0f1
am ef6abd8a: (-s ours) am a788a943: Merge "Do Not Merge: Expose insecure rfcomm Bluetooth API." into gingerbread
...
* commit 'ef6abd8a3e4b05cb9d94f29f4e8ffc7bb2ecec77':
Do Not Merge: Expose insecure rfcomm Bluetooth API.
2011-01-14 21:30:06 -08:00
Dianne Hackborn
89f0e6fe38
am dd4a1e38: am 7d234fab: Merge "Don\'t drop the drawable cache completely on configuration change"
...
* commit 'dd4a1e3825f4f379ba36fd721f78de0101bb1833':
Don't drop the drawable cache completely on configuration change
2011-01-14 21:29:59 -08:00