Mike Cleron
322b6ee7e1
Add support for making a LiveWallpaper the default
2009-11-12 23:23:49 -08:00
Android (Google) Code Review
fddfb9ae03
Merge change Iad79689a into eclair
...
* changes:
Improvements for issue 2197683: English IME key-press latency is noticeably higher on passion than sholes
2009-11-12 22:53:28 -08:00
Android (Google) Code Review
1aa9f3cac3
Merge change I923d7d72 into eclair
...
* changes:
Fix issue 2242614: Wired headset not recognized: bogus "state" in ACTION_HEADSET_PLUG broadcast.
2009-11-12 22:45:50 -08:00
Android (Google) Code Review
5f8f1487be
Merge change Ia0a40883 into eclair
...
* changes:
Modify the binder to request 1M - 2 pages instead of 1M. The backing store in the kernel requires a guard page, so 1M allocations fragment memory very badly. Subtracting a couple of pages so that they fit in a power of two allows the kernel to make more efficient use of its virtual address space.
2009-11-12 21:29:13 -08:00
Android (Google) Code Review
11fea858b2
Merge change I8061e6ac into eclair
...
* changes:
Fix 2209086: Updated assets and fixed widget dimension calculation.
2009-11-12 18:51:35 -08:00
Jim Miller
4811d62d5f
Fix 2209086: Updated assets and fixed widget dimension calculation.
...
Added hvga assets for new lock screen widget.
Tested:
LockScreen on wvga and hvga devices.
InCallScreen on wvga and hvga devices.
2009-11-12 18:15:00 -08:00
Android (Google) Code Review
6f5ba93469
Merge change I42a0f7a5 into eclair
...
* changes:
PackageManager: Support secondary ABI for native code at installation time.
2009-11-12 17:51:26 -08:00
Dianne Hackborn
1778776cf1
Fix issue #2258571 : Fix build versions
...
Update the definition of SDK 6, remove all new APIs from it.
Change-Id: Id96827f630ab46279d9ad8d3f7498e5515e0a688
2009-11-12 17:02:03 -08:00
Rebecca Schultz Zavin
a0a40883d0
Modify the binder to request 1M - 2 pages instead of 1M. The backing store
...
in the kernel requires a guard page, so 1M allocations fragment memory very
badly. Subtracting a couple of pages so that they fit in a power of
two allows the kernel to make more efficient use of its virtual address space.
Signed-off-by: Rebecca Schultz Zavin <rebecca@android.com>
2009-11-12 16:31:12 -08:00
Android (Google) Code Review
4dd6fee7e4
Merge change Ieb4b0318 into eclair
...
* changes:
Make default vertex program correctly track surface size.
2009-11-12 16:29:26 -08:00
Android (Google) Code Review
572e0087a8
Merge change Idfc116fe into eclair
...
* changes:
Return null if SIM doesn't have the MSISDN Aplha tag.
2009-11-12 16:10:10 -08:00
Jason Sams
eb4b031804
Make default vertex program correctly track surface size.
2009-11-12 16:09:45 -08:00
David 'Digit' Turner
feba743b47
PackageManager: Support secondary ABI for native code at installation time.
...
The goal of this change is to allow the Package Manager to look for native
shared libraries corresponding to the CPU ABI reported by ro.product.cpu.abi2
if none was found for the CPU ABI given by ro.product.cpu.abi
This is used to support both ARMv5 and ARMv7 native code on modern ARMv7-based
devices. Typically, such a device would report a primary ABI of 'armeabi-v7a'
and a secondary one of 'armeabi', to indicate that it can run the binaries
generated for both.
2009-11-12 15:55:17 -08:00
Android (Google) Code Review
274072089c
Merge change Icf335098 into eclair
...
* changes:
fix [2236865] STOPSHIP: bump soft gl and egl minor version number
2009-11-12 15:36:27 -08:00
Android (Google) Code Review
59175ac269
Merge change I81b1421a into eclair
...
* changes:
Defer EGL init until the surface changed call comes in. Pass w,h along with surface for verification of driver state.
2009-11-12 15:27:28 -08:00
Mathias Agopian
cf3350982f
fix [2236865] STOPSHIP: bump soft gl and egl minor version number
2009-11-12 15:19:42 -08:00
Android (Google) Code Review
2a1e96412c
Merge change Ie122606f into eclair
...
* changes:
Add code to use Gservices provided values for throtting NITZ updates.
2009-11-12 15:12:08 -08:00
Jason Sams
3bc47d4381
Defer EGL init until the surface changed call comes in. Pass w,h along with surface for verification of driver state.
2009-11-12 15:10:47 -08:00
Android (Google) Code Review
b602c328c2
Merge change I31c52bef into eclair
...
* changes:
Revert change incorrectly submitted as part of change #32153 .
2009-11-12 13:37:30 -08:00
Jaikumar Ganesh
de1fcd49e7
Return null if SIM doesn't have the MSISDN Aplha tag.
...
This makes both the GSM and CDMA version compatible.
Bug: 2247067
Dr No: jsh
2009-11-12 13:29:33 -08:00
Android (Google) Code Review
dffa96f734
Merge change I90daccf3 into eclair
...
* changes:
fix [2143798] Need to figure out how to do video on Passion w/ GPU
2009-11-12 13:25:36 -08:00
Android (Google) Code Review
2477fd6949
Merge change Ic31c11ad into eclair
...
* changes:
Fix 2209086: restore drawable states when drawables change.
2009-11-12 13:13:58 -08:00
Android (Google) Code Review
58c603eff0
Merge change Id301a47f into eclair
...
* changes:
Fix bug 2253204: MapView resources for hdpi devices.
2009-11-12 12:54:43 -08:00
Dan Egnor
d301a47ff9
Fix bug 2253204: MapView resources for hdpi devices.
2009-11-12 12:24:33 -08:00
Eric Laurent
923d7d721d
Fix issue 2242614: Wired headset not recognized: bogus "state" in ACTION_HEADSET_PLUG broadcast.
...
The headset state indicated by HeadsetObserver in the broadcast intent ACTION_HEADSET_PLUG was not 0 or 1 as specified in the java doc but contained a bit field indicating the type of headset connected.
Modified HeadsetObserver to broacast a state conforming to java doc.
Added an extra to intent ACTION_HEADSET_PLUG to indicate if headset has a microphone or not.
Removed handling of non standard headset indications from HeadsetObserver.
Removed platform specific devices from output devices defined in AudioSystem.
Modified AudioService to use new ACTION_HEADSET_PLUG intent extra instead of bitfield in state.
2009-11-12 12:09:06 -08:00
Jim Miller
4df2c5433b
Fix 2209086: restore drawable states when drawables change.
...
This fixes a bug where the right tab hightlight wasn't being seen.
The prooblem was that we weren't preserving the drawables' states when
the application requested a new drawable. We now track the drawable state
so we can updated it when the resources change.
2009-11-12 11:23:29 -08:00
Android (Google) Code Review
609bbf182e
Merge change I54089080 into eclair
...
* changes:
Update keyguard and pattern-lock layouts for new UX designs.
2009-11-12 10:34:32 -08:00
Guang Zhu
ea48cd6dd4
Use a diff that ignores trailing whitespaces to get by some layout test failures.
2009-11-12 10:18:14 -08:00
Android (Google) Code Review
c66d53f97b
Merge change I880541a8 into eclair
...
* changes:
Delegate the platform dependent hardware renderer implementation to a shared library provided by the vendor.
2009-11-12 09:53:09 -08:00
Android (Google) Code Review
ddf157cae4
Merge change I5ae73af7 into eclair
...
* changes:
Don't back up system wallpapers.
2009-11-12 09:52:10 -08:00
Daniel Sandler
e3ea6e3d4c
Update keyguard and pattern-lock layouts for new UX designs.
...
To do this, we bring DigitalClock over from Clock into the
internal widgets. Its font, Clockopia, comes along for the
ride (find it in /system/fonts).
This change is required for relevant code changes in
frameworks/policy/phone.
Change-Id: I354534f1abd9cf9557c9d18566f1d55b6be5e8f1
2009-11-12 09:37:44 -08:00
Andreas Huber
c8d7c1492e
Delegate the platform dependent hardware renderer implementation to a shared library provided by the vendor.
2009-11-12 09:36:10 -08:00
Android (Google) Code Review
3c58d279ab
Merge change I738ed802 into eclair
...
* changes:
Fix BMW and Audi auto pairing lists.
2009-11-11 23:27:03 -08:00
Jaikumar Ganesh
738ed80262
Fix BMW and Audi auto pairing lists.
...
Bug no:2256558
Dr No:Eastham
2009-11-11 23:12:04 -08:00
Android (Google) Code Review
34d723d8fa
Merge change I32371166 into eclair
...
* changes:
Fix issue #2239203 : Setting large background causes OOME and soft-reboot spiral
2009-11-11 23:10:06 -08:00
Android (Google) Code Review
2ba297d19e
Merge change I9890c2d4 into eclair
...
* changes:
Fix 2209086: Fix landscape layout of LockScreen on devices with a keyboard
2009-11-11 23:04:47 -08:00
Dianne Hackborn
c9dbbe28f7
Fix issue #2239203 : Setting large background causes OOME and soft-reboot spiral
...
Try really really hard not to crash, for any reason.
Change-Id: I32371166229825f13fc8d12d5cf3a6531cdb345e
2009-11-11 22:50:37 -08:00
Android (Google) Code Review
013b0e531a
Merge change I143ea844 into eclair
...
* changes:
Add BMW and Audi to Auto Pairing black list.
2009-11-11 22:46:49 -08:00
Jaikumar Ganesh
9b26f3fae4
Add BMW and Audi to Auto Pairing black list.
...
Bug: 2256558
Dr No: Eastham
2009-11-11 22:43:32 -08:00
Jim Miller
9890c2d4ba
Fix 2209086: Fix landscape layout of LockScreen on devices with a keyboard
2009-11-11 22:38:16 -08:00
Dan Egnor
541fa51e5c
Don't back up system wallpapers.
2009-11-11 22:18:00 -08:00
Android (Google) Code Review
360d710ebc
Merge change I580de484 into eclair
...
* changes:
Fix issue #2256270 : Package manager sends bad broadcasts when components change
2009-11-11 20:18:44 -08:00
Dianne Hackborn
86a72dacbe
Fix issue #2256270 : Package manager sends bad broadcasts when components change
...
Also reworks this intent protocol a little bit to be much more efficient, only
requiring one broadcast per package.
Change-Id: I580de4843ebd3c7f2e6df7295a2f80d2937cef7c
2009-11-11 20:13:53 -08:00
Android (Google) Code Review
dc30d28bc8
Merge change I3656f7a3 into eclair
...
* changes:
Honor the mInitialScale set on WebView. This was lost when we fixed restoring the scale for a new page.
2009-11-11 20:11:25 -08:00
Grace Kloba
16efce7242
Honor the mInitialScale set on WebView. This was
...
lost when we fixed restoring the scale for a new
page.
Fix http://b/issue?id=2251716
2009-11-11 20:13:32 -08:00
Android (Google) Code Review
f2897fe42e
Merge change Idc34a3f7 into eclair
...
* changes:
Fix 2209086: add drawables for SlidingTab states in PhoneApp. Update string file for new SlidingTab sound states. Tweak "animation" to be 250ms based on conversation with ui guys. Some minor performance tweaks to SlidingTab.
2009-11-11 20:11:13 -08:00
Android (Google) Code Review
532d560345
Merge change I80022375 into eclair
...
* changes:
Fix issue #2256032 : Change CONFIGURATION_CHANGED and add a locale changed broadcast
2009-11-11 19:09:56 -08:00
Android (Google) Code Review
001e5242c8
Merge change Icccbd889 into eclair
...
* changes:
Fix broken handling of the BACK key in PopupWindow. Needed by Launcher2.
2009-11-11 18:52:07 -08:00
Romain Guy
9a583c1bfb
Fix broken handling of the BACK key in PopupWindow. Needed by Launcher2.
...
Change-Id: Icccbd8897186d0b9348a40b3dfc19ab7ac389efd
2009-11-11 18:51:18 -08:00
Android (Google) Code Review
ca20347543
Merge change Ifcf20541 into eclair
...
* changes:
New Javadoc for ContactsContract.
2009-11-11 18:49:55 -08:00