OSDN Git Service

android-x86/frameworks-base.git
14 years agoMerge "Doc Change: Docs for NDK r4." into froyo
Dirk Dougherty [Tue, 11 May 2010 21:20:24 +0000 (14:20 -0700)]
Merge "Doc Change: Docs for NDK r4." into froyo

14 years agoMerge "docs: announce froyo and update IO message" into froyo
Scott Main [Tue, 11 May 2010 21:04:49 +0000 (14:04 -0700)]
Merge "docs: announce froyo and update IO message" into froyo

14 years agoDoc Change: Docs for NDK r4.
Dirk Dougherty [Tue, 4 May 2010 23:28:48 +0000 (16:28 -0700)]
Doc Change: Docs for NDK r4.

Change-Id: Ib535324eb884d4be2c7bbba2d74cc9043acc3475

14 years agoMerge "LocationManagerService: Call updateNetworkState on providers that are disabled...
Mike Lockwood [Tue, 11 May 2010 20:26:25 +0000 (13:26 -0700)]
Merge "LocationManagerService: Call updateNetworkState on providers that are disabled." into froyo

14 years agoLocationManagerService: Call updateNetworkState on providers that are disabled.
Mike Lockwood [Tue, 11 May 2010 19:35:09 +0000 (15:35 -0400)]
LocationManagerService: Call updateNetworkState on providers that are disabled.

Fixes a problem with Network Location not working after SetupWizard until the
network state changes.

Change-Id: Ief81b76beb5cc90b2ca7d8aa2d4c99221898f01d
BUG: 2671347

Signed-off-by: Mike Lockwood <lockwood@android.com>
14 years agoMerge "Support for customizable socket-read timeouts through the HTTP response."...
Andreas Huber [Tue, 11 May 2010 19:21:14 +0000 (12:21 -0700)]
Merge "Support for customizable socket-read timeouts through the HTTP response." into froyo

14 years agoMerge "Better seek handling and proper reset of the vorbis decoder after a discontinu...
Andreas Huber [Tue, 11 May 2010 19:20:55 +0000 (12:20 -0700)]
Merge "Better seek handling and proper reset of the vorbis decoder after a discontinuity (seek)" into froyo

14 years agoMerge "Bug 2673557: rename datamessaging" into froyo
Costin Manolache [Tue, 11 May 2010 18:42:58 +0000 (11:42 -0700)]
Merge "Bug 2673557: rename datamessaging" into froyo

14 years agoMerge "Update javadoc in android.media.AudioManager to not hide the registerAudioFocu...
Jean-Michel Trivi [Tue, 11 May 2010 18:40:21 +0000 (11:40 -0700)]
Merge "Update javadoc in android.media.AudioManager to not hide the registerAudioFocusListener() methods." into froyo

14 years agoMerge "Doc Change: cherry-pick from master. ->Testing Procedures documents testing_ec...
Dirk Dougherty [Tue, 11 May 2010 18:33:13 +0000 (11:33 -0700)]
Merge "Doc Change: cherry-pick from  ->Testing Procedures documents testing_eclipse.html, testing_otheride." into froyo

14 years agoDoc Change: cherry-pick from master. ->Testing Procedures documents testing_eclipse...
Joe Malin [Sat, 8 May 2010 04:30:44 +0000 (21:30 -0700)]
Doc Change: cherry-pick from  ->Testing Procedures documents testing_eclipse.html, testing_otheride.

Change-Id: I0da7ebb8040013611ba9269bc303e4b8197033aa

14 years agoUpdate javadoc in android.media.AudioManager to not hide the
Jean-Michel Trivi [Tue, 11 May 2010 18:22:54 +0000 (11:22 -0700)]
Update javadoc in android.media.AudioManager to not hide the
registerAudioFocusListener() methods.

Change-Id: I8df37bd89df6f492aeb70fa636200552140578f9

14 years agoSupport for customizable socket-read timeouts through the HTTP response.
Andreas Huber [Tue, 11 May 2010 18:10:21 +0000 (11:10 -0700)]
Support for customizable socket-read timeouts through the HTTP response.

Specify a response header of "X-SocketTimeout: 15" to override the default timeout
of 5 secs with a timeout of 15 seconds. Specify a negative value to disable the
timeout altogether.

Change-Id: I545adf3d8b3f7efe5f8d081a641c6404440a77db
related-to-bug: 2675721

14 years agodocs: announce froyo and update IO message
Scott Main [Thu, 6 May 2010 17:54:35 +0000 (10:54 -0700)]
docs: announce froyo and update IO message

Change-Id: I07a071c99eaf0a03e7dd9d4e0c5969b47e86ab08

14 years agoBetter seek handling and proper reset of the vorbis decoder after a discontinuity...
Andreas Huber [Tue, 11 May 2010 17:11:55 +0000 (10:11 -0700)]
Better seek handling and proper reset of the vorbis decoder after a discontinuity (seek)

Change-Id: I3c76d35da48e0964f7a0fa2816f8573b5e1a9436
related-to-bug: 2674036
QA-impact: low, only affects ogg-vorbis playback through http

14 years agoMerge " Fix bug 2670395 and 2599698 When the user selects a "Silent" notificat...
Jean-Michel Trivi [Tue, 11 May 2010 16:42:41 +0000 (09:42 -0700)]
Merge "    Fix bug 2670395 and 2599698     When the user selects a "Silent" notification sound, the Uri encoded     path is an empty string. Setting this Uri as the data source of the     MediaPlayer used to play notifications caused the completion listener     to not be called, which with the AudioFocus logic causes the Music     app to pause and never resume. The NotificationPlayer modifications     cause the MediaPlayer for the notification to only request audio     focus when the data source is not empty.     The audio focus code in AudioService is defensively synchronized     against a unique lock, and the exception observed in bug 2670395     is explicitely caught in case another edge case wasn't caught by     this fix.     The AudioFocus handling in AudioManager is modified so only the     requestAudioFocus and abandonAudioFocus methods are meant to be     used, as registerAudioFocusListener and unregisterAudioFocusListener     provided no additional functionality over the request/abandon     methods. abandonAudioFocus() also removes the listener from the     map in AudioManager since after abandonning focus, the listener     would no longer be called." into froyo

14 years ago Fix bug 2670395 and 2599698
Jean-Michel Trivi [Tue, 11 May 2010 03:02:46 +0000 (20:02 -0700)]
Fix bug 2670395 and 2599698
    When the user selects a "Silent" notification sound, the Uri encoded
    path is an empty string. Setting this Uri as the data source of the
    MediaPlayer used to play notifications caused the completion listener
    to not be called, which with the AudioFocus logic causes the Music
    app to pause and never resume. The NotificationPlayer modifications
    cause the MediaPlayer for the notification to only request audio
    focus when the data source is not empty.
    The audio focus code in AudioService is defensively synchronized
    against a unique lock, and the exception observed in bug 2670395
    is explicitely caught in case another edge case wasn't caught by
    this fix.
    The AudioFocus handling in AudioManager is modified so only the
    requestAudioFocus and abandonAudioFocus methods are meant to be
    used, as registerAudioFocusListener and unregisterAudioFocusListener
    provided no additional functionality over the request/abandon
    methods. abandonAudioFocus() also removes the listener from the
    map in AudioManager since after abandonning focus, the listener
    would no longer be called.

Change-Id: I3b553ee8a8163c25e01117d7e5479dd5fdfa7c6b

14 years agoAdd remove method in CameraParameters class.
Wu-cheng Li [Tue, 11 May 2010 04:11:56 +0000 (12:11 +0800)]
Add remove method in CameraParameters class.

bug:2672651
Change-Id: I537c817b5ca6a3d925f22febe9a5769156354d00

14 years agoMerge "Fix for bug 2672749: StringIndexOutOfBoundsException in Uri.getQueryParameter...
Keith Ito [Tue, 11 May 2010 03:41:47 +0000 (20:41 -0700)]
Merge "Fix for bug 2672749: StringIndexOutOfBoundsException in Uri.getQueryParameter" into froyo

14 years agoFix the 'wobbling fixed elements' bug.
Nicolas Roard [Mon, 10 May 2010 22:15:51 +0000 (15:15 -0700)]
Fix the 'wobbling fixed elements' bug.
Cherry-picked from master.
This CL has a corresponding C++ counterpart (https://android-git.corp.google.com/g/#change,51149)

Bug:2665696
Change-Id: I0a044661ff21ef601ba34782db8acdc9531f98e7

14 years agoBug 2673557: rename datamessaging
Costin Manolache [Mon, 10 May 2010 23:42:25 +0000 (16:42 -0700)]
Bug 2673557: rename datamessaging

Change-Id: I583ac61c7b8fce69d60801dc76aeca9f13d250b2

14 years agoFix for bug 2672749: StringIndexOutOfBoundsException in Uri.getQueryParameter
Keith Ito [Tue, 11 May 2010 01:27:23 +0000 (18:27 -0700)]
Fix for bug 2672749: StringIndexOutOfBoundsException in Uri.getQueryParameter

Change-Id: I10b02306478d9c595dbcae0767b44c403d50e24a

14 years agoMerge "Hopefully fix issue #2662536: Why is launcher being killed?" into froyo
Dianne Hackborn [Tue, 11 May 2010 00:27:14 +0000 (17:27 -0700)]
Merge "Hopefully fix issue #2662536: Why is launcher being killed?" into froyo

14 years agoHopefully fix issue #2662536: Why is launcher being killed?
Dianne Hackborn [Mon, 10 May 2010 22:57:38 +0000 (15:57 -0700)]
Hopefully fix issue #2662536: Why is launcher being killed?

It looks like there was a subtle bug where Process.setOomAdj() could
return false just because the given process doesn't exist, even though
it is documented to only return false if OOM killing is not supported
at all.  This would cause the activity manager to fall into its code
path of trying to clean up processes itself, which it does a much
poorer problem at.  I am thinking we may be seeing this problem more
now that the activity manager is killing background processes itself
when there are too many of them.

In addition, this change cleans up and reduces some of the logging
around killing processes.

Finally, try to improve process LRU management a bit by taking
into account process dependencies.  Any dependent processes are
pulled up in the LRU list with the processes that is actually
moving.  Also, we bring a process up if someone accesses its content
provider.

Change-Id: I34ea161f839679345578ffe681e8d9c5d26ab948

14 years agoMerge "Doc change: Final api diffs 7 -> 8." into froyo
Dirk Dougherty [Mon, 10 May 2010 23:23:13 +0000 (16:23 -0700)]
Merge "Doc change: Final api diffs 7 -> 8." into froyo

14 years agoDoc change: add toc references to tictactoe sample apps and screen shots.
Dirk Dougherty [Sun, 9 May 2010 04:22:11 +0000 (21:22 -0700)]
Doc change: add toc references to tictactoe sample apps and screen shots.

Change-Id: I7d520587c0e6b2252e819029a2f053893fdcd7c3

14 years agoMerge "Fix 2660488: Add LockScreen/InCallScreen resources to preloads" into froyo
Jim Miller [Mon, 10 May 2010 22:55:41 +0000 (15:55 -0700)]
Merge "Fix 2660488: Add LockScreen/InCallScreen resources to preloads" into froyo

14 years agoFix 2660488: Add LockScreen/InCallScreen resources to preloads
Jim Miller [Mon, 10 May 2010 22:24:47 +0000 (15:24 -0700)]
Fix 2660488: Add LockScreen/InCallScreen resources to preloads

This adds the base SlidinTab drawable resources shared by
InCallScreen and LockScreen into the zygote process. It should
save approximately 375kB (mdpi) and 825kB (hdpi) of RAM by
sharing resource between the LockScreen and InCallScreen.

Change-Id: I05bcafa894ed27d419b171ad5041bd83134461f7

14 years agoMerge "String change to refer to wifi tether as hotspot" into froyo
Robert Greenwalt [Mon, 10 May 2010 17:11:12 +0000 (10:11 -0700)]
Merge "String change to refer to wifi tether as hotspot" into froyo

14 years agoMerge "docs: change SearchableDictionary to "v2" and remove old "new" superscripts...
Scott Main [Mon, 10 May 2010 16:54:30 +0000 (09:54 -0700)]
Merge "docs: change SearchableDictionary to "v2" and remove old "new" superscripts from resources toc" into froyo

14 years agoMerge "Add unit test for passing thread priority & cgroup through Binder." into froyo
Dan Egnor [Sun, 9 May 2010 14:03:46 +0000 (07:03 -0700)]
Merge "Add unit test for passing thread priority & cgroup through Binder." into froyo

14 years agoString change to refer to wifi tether as hotspot
Robert Greenwalt [Sat, 8 May 2010 22:07:53 +0000 (15:07 -0700)]
String change to refer to wifi tether as hotspot

bug:2664412
Change-Id: I9ab110f88551d03a9215b81887675c50aa575d9a

14 years agoMerge "Doc change: cherry-pick from master: Testing Android Applications document...
Dirk Dougherty [Sat, 8 May 2010 04:07:57 +0000 (21:07 -0700)]
Merge "Doc change: cherry-pick from master: Testing Android Applications document (concepts)" into froyo

14 years agoDoc change: cherry-pick from master: Testing Android Applications document (concepts)
Joe Malin [Tue, 2 Mar 2010 02:10:57 +0000 (18:10 -0800)]
Doc change: cherry-pick from master: Testing Android Applications document (concepts)

Change-Id: Ie94632bc7becb3b388d1ecb01512ce29efc04208

14 years agoDoc change: Final api diffs 7 -> 8.
Dirk Dougherty [Sat, 8 May 2010 00:11:18 +0000 (17:11 -0700)]
Doc change: Final api diffs 7 -> 8.

Change-Id: Ie4b13f6b85439009f8236f8c082ca28021aa9b0c

14 years agodocs: add default value and compatibility info for installLocation
Scott Main [Fri, 7 May 2010 22:30:15 +0000 (15:30 -0700)]
docs: add default value and compatibility info for installLocation

Change-Id: I2336bc0c7edb68a0c452e44633a8163a2798d7de

14 years agodocs: revisions to the new resources doc based on editorial feedback
Scott Main [Fri, 9 Apr 2010 22:52:18 +0000 (15:52 -0700)]
docs: revisions to the new resources doc based on editorial feedback
plus some fixes to resource references and other misc revisions

Change-Id: I7b498858d9d0ecfd8cf9bad48c08c93047d597b8

14 years agodocs: change SearchableDictionary to "v2" and remove old "new" superscripts from...
Scott Main [Fri, 7 May 2010 22:08:36 +0000 (15:08 -0700)]
docs: change SearchableDictionary to "v2" and remove old "new" superscripts from resources toc

Change-Id: Ic240502b8874fdc69d1d97cbf9df0ef925fbc071

14 years agoMerge "A new OggExtractor/VorbisDecoder combo to support approximate seeking." into...
Andreas Huber [Fri, 7 May 2010 20:47:42 +0000 (13:47 -0700)]
Merge "A new OggExtractor/VorbisDecoder combo to support approximate seeking." into froyo

14 years agoMerge "fix [2664345] Flash: Bad flicker at the end of a pinch zoom." into froyo
Mathias Agopian [Fri, 7 May 2010 20:39:29 +0000 (13:39 -0700)]
Merge "fix [2664345] Flash: Bad flicker at the end of a pinch zoom." into froyo

14 years agoA new OggExtractor/VorbisDecoder combo to support approximate seeking.
Andreas Huber [Fri, 7 May 2010 17:35:13 +0000 (10:35 -0700)]
A new OggExtractor/VorbisDecoder combo to support approximate seeking.

Change-Id: Id5d0c1c8b1adc62896bb5ed951f7b5cfda811e95
related-to-bug: 2654400

14 years agoMerge "Doc change: cherry-pick from master: Activity Testing/Hello, Testing tutorials...
Dirk Dougherty [Fri, 7 May 2010 17:57:48 +0000 (10:57 -0700)]
Merge "Doc change: cherry-pick from master: Activity Testing/Hello, Testing tutorials doc files" into froyo

14 years agoUpdaing preloaded classes with removal of OpenSSLSocketImpl$Finalizer
Brian Carlstrom [Fri, 7 May 2010 17:12:01 +0000 (10:12 -0700)]
Updaing preloaded classes with removal of OpenSSLSocketImpl$Finalizer

Part of fixing b/2663512: "java.io.IOException: SSL shutdown failed.: Ok" shouldn't dump a stacktrace

Change-Id: Ic6070ab9abb58c08eb7c5d8648424f582bb48e1c

14 years agoDoc change: cherry-pick from master: Activity Testing/Hello, Testing tutorials doc...
Joe Malin [Wed, 14 Apr 2010 21:40:59 +0000 (14:40 -0700)]
Doc change: cherry-pick from master: Activity Testing/Hello, Testing tutorials doc files

Change-Id: If43ba08af00c8c9fcf6d05834f8b2a7a719b4bec

14 years agoAdd unit test for passing thread priority & cgroup through Binder.
Dan Egnor [Fri, 7 May 2010 16:32:54 +0000 (09:32 -0700)]
Add unit test for passing thread priority & cgroup through Binder.

This test actually exposes some bugs -- the test passes as written, but
certain parts are commented out with references to the bugs in question.

Bug: 2665914
Bug: 2665954
Change-Id: I61220e0efadc4edbb6ad419d26fa1f0f50bbc24c

14 years agoDoc Change: cherry-pick doc change from master. -> Add images for the index file...
Joe Malin [Tue, 20 Apr 2010 22:59:18 +0000 (15:59 -0700)]
Doc Change: cherry-pick doc change from  -> Add images for the index file for the SpinnerTest test application sample.

Change-Id: Id2525470127a6324c361d952f09afec7dd584704

14 years agoMerge "Fixing: RecognitionService logcat spam "cancel called..."" into froyo
Bjorn Bringert [Fri, 7 May 2010 10:37:48 +0000 (03:37 -0700)]
Merge "Fixing: RecognitionService logcat spam "cancel called..."" into froyo

14 years agofix [2664345] Flash: Bad flicker at the end of a pinch zoom.
Mathias Agopian [Fri, 7 May 2010 03:21:45 +0000 (20:21 -0700)]
fix [2664345] Flash: Bad flicker at the end of a pinch zoom.

the window manger puts SurfaceViews up before they have been
rendered into, because of that surfaceflinger doesn't have
anything ready to draw for that surface when an udpate occurs
and responds by filling the surface with black.
With this fix, we only fill those areas of the framebuffer
that would otherwise be undefined (no content at all).

in the Flash case, the "flash" window is not drawn at all
until it has some content, instead the underlaying browser
window is shown.

Change-Id: Ifb610f7f8c27b88edf83e09adc4803fc295c15a1

14 years agoMerge "Make static versions of libutils and libbinder." into froyo
Dan Egnor [Fri, 7 May 2010 00:31:48 +0000 (17:31 -0700)]
Merge "Make static versions of libutils and libbinder." into froyo

14 years agoMerge "Fix "p.m." in lockscreen (locale: es)." into froyo
Daniel Sandler [Fri, 7 May 2010 00:23:03 +0000 (17:23 -0700)]
Merge "Fix "p.m." in lockscreen (locale: es)." into froyo

14 years agoMerge "Fix ThrottleService wifi interaction" into froyo
Robert Greenwalt [Fri, 7 May 2010 00:14:23 +0000 (17:14 -0700)]
Merge "Fix ThrottleService wifi interaction" into froyo

14 years agoFix ThrottleService wifi interaction
Robert Greenwalt [Thu, 6 May 2010 19:25:13 +0000 (12:25 -0700)]
Fix ThrottleService wifi interaction

When we switch to another network (or even just lose mobile data) the mobile
interface is either brought down or destroyed altogether.  That means any
throttling rules we've told the kernel about get lost.

This change notices when our interface comes up and reinstates throttling
if needed.

bug:2660287
Change-Id: I4c6ebf78acc59ed66b95984a1e8b7c2ffbc22dcb

14 years agoMerge "Avoid UNKNOWN state for Wifi in bug2542613, not a common user case." into...
Xia Wang [Thu, 6 May 2010 22:24:08 +0000 (15:24 -0700)]
Merge "Avoid UNKNOWN state for Wifi in bug2542613, not a common user case." into froyo

14 years agoMerge "Adding PacketVideo attribution in NOTICE." into froyo
Dan Morrill [Thu, 6 May 2010 22:11:02 +0000 (15:11 -0700)]
Merge "Adding PacketVideo attribution in NOTICE." into froyo

14 years agoAvoid UNKNOWN state for Wifi in bug2542613, not a common user case.
Xia Wang [Thu, 6 May 2010 21:12:54 +0000 (14:12 -0700)]
Avoid UNKNOWN state for Wifi in bug2542613, not a common user case.

Change-Id: Ief0a953e2909cb5c808f0d683ab95d14f6c53e72

14 years agoAdding PacketVideo attribution in NOTICE.
Dan Morrill [Thu, 6 May 2010 21:15:47 +0000 (14:15 -0700)]
Adding PacketVideo attribution in NOTICE.

Change-Id: Id2fe398d4deed6ebd8cba8516ffc6c0334a961b0

14 years agoMerge "Propagating IOException from RemoteAndroidTestRunner#run() in PackageManagerHo...
Neal Nguyen [Thu, 6 May 2010 20:45:18 +0000 (13:45 -0700)]
Merge "Propagating IOException from RemoteAndroidTestRunner#run() in PackageManagerHostTestUtils." into froyo

14 years agoPropagating IOException from RemoteAndroidTestRunner#run() in PackageManagerHostTestU...
Neal Nguyen [Thu, 6 May 2010 20:26:58 +0000 (13:26 -0700)]
Propagating IOException from RemoteAndroidTestRunner#run() in PackageManagerHostTestUtils.

Change-Id: Ia50d58760b4cc1e222927be054c52cc3b2993395

14 years agoFix "p.m." in lockscreen (locale: es).
Daniel Sandler [Thu, 6 May 2010 20:15:49 +0000 (16:15 -0400)]
Fix "p.m." in lockscreen (locale: es).

Use padding instead of margin in DigitalClock's
RelativeLayout params to ensure @id/am_pm's descenders
aren't clipped.

Bug: 2277477
Change-Id: I9c8ef0c60e8ac0d2f969de97e8bfe146553ac379

14 years agoMerge "Disable vorbis seek when streaming from localhost." into froyo
Andreas Huber [Thu, 6 May 2010 18:27:35 +0000 (11:27 -0700)]
Merge "Disable vorbis seek when streaming from localhost." into froyo

14 years agoDisable vorbis seek when streaming from localhost.
Andreas Huber [Thu, 6 May 2010 17:18:05 +0000 (10:18 -0700)]
Disable vorbis seek when streaming from localhost.

Change-Id: Icda523ae1c89e26482f1c1767fe3a8b9222bb30f
related-to-bug: 2654400

14 years agoDoc change: New doc that describes how market filters work
Dirk Dougherty [Tue, 27 Apr 2010 01:15:25 +0000 (18:15 -0700)]
Doc change: New doc that describes how market filters work

Change-Id: I99696502b38d952df8fe07c8982d0cf6b95b31bd

14 years agoMerge "For issue #2651381, allow library prelinking." into froyo
Dan Bornstein [Thu, 6 May 2010 17:01:39 +0000 (10:01 -0700)]
Merge "For issue #2651381, allow library prelinking." into froyo

14 years agoMerge "Adding a few host-based stress tests for Apps on SD." into froyo
Neal Nguyen [Thu, 6 May 2010 16:44:10 +0000 (09:44 -0700)]
Merge "Adding a few host-based stress tests for Apps on SD." into froyo

14 years agoMake static versions of libutils and libbinder.
Dan Egnor [Thu, 6 May 2010 07:55:09 +0000 (00:55 -0700)]
Make static versions of libutils and libbinder.

Fix some small static-initialization-order issues (and a static-
initializers-missing issue) that result from doing so.  The static
libraries don't actually get used for anything real at the moment --
they're used for perf tests of bug 2660235.

Bug: 2660235
Change-Id: Iee2f38f79cc93b395e8d0a5a144ed92461f5ada0

14 years agoFor issue #2651381, allow library prelinking.
Dan Bornstein [Thu, 6 May 2010 01:23:05 +0000 (18:23 -0700)]
For issue #2651381, allow library prelinking.

Change-Id: I1cb467a158e21fc02cac6af585ac8d27c2bf42de

14 years agoAdding a few host-based stress tests for Apps on SD.
Neal Nguyen [Wed, 31 Mar 2010 23:45:01 +0000 (16:45 -0700)]
Adding a few host-based stress tests for Apps on SD.

Change-Id: I0ccb1f3574688f60b6296dac6f6859ba5d0597ea

14 years agoMerge "Fix 2656989. Clean up update to updated system applications." into froyo
Suchi Amalapurapu [Thu, 6 May 2010 00:38:58 +0000 (17:38 -0700)]
Merge "Fix 2656989. Clean up update to updated system applications." into froyo

14 years agoFor issue #2651381, allow library prelinking.
Dan Bornstein [Wed, 5 May 2010 16:37:52 +0000 (09:37 -0700)]
For issue #2651381, allow library prelinking.

Change-Id: I119348b55ad0015a286e9c94709977cd1973a7e1

14 years agoFix 2656989. Clean up update to updated system applications.
Suchi Amalapurapu [Wed, 5 May 2010 20:37:12 +0000 (13:37 -0700)]
Fix 2656989. Clean up update to updated system applications.

Change-Id: Ic66b00926c45fac43396f1f8f23d0865ba77faba

14 years agoMerge "Fix bug 2594126 Do not crash when ViewRoot is trying to play a UI sound. This...
Jean-Michel Trivi [Wed, 5 May 2010 19:02:18 +0000 (12:02 -0700)]
Merge "Fix bug 2594126 Do not crash when ViewRoot is trying to play a UI sound. This CL doesn't fix why mView can be null in the first place, but prevents a crash when mView is null and a UI sound is to be played." into froyo

14 years agoFix bug 2594126 Do not crash when ViewRoot is trying to play a UI
Jean-Michel Trivi [Wed, 5 May 2010 16:18:15 +0000 (09:18 -0700)]
Fix bug 2594126 Do not crash when ViewRoot is trying to play a UI
sound.
This CL doesn't fix why mView can be null in the first place, but
prevents a crash when mView is null and a UI sound is to be played.

Change-Id: I74ea03567e8e6ebebb6c95c80a473abf11e1163d

14 years agofix doc bug in hello gallery tutorial
Scott Main [Wed, 5 May 2010 15:58:09 +0000 (08:58 -0700)]
fix doc bug in hello gallery tutorial

Change-Id: I05ff14f7b15a8fd338dec8004912845eebe94347

14 years agoMerge "Fix issue #2643754: Launcher is caching widget layouts for too long" into...
Dianne Hackborn [Wed, 5 May 2010 00:43:25 +0000 (17:43 -0700)]
Merge "Fix issue #2643754: Launcher is caching widget layouts for too long" into froyo

14 years agoFix issue #2643754: Launcher is caching widget layouts for too long
Dianne Hackborn [Wed, 5 May 2010 00:22:49 +0000 (17:22 -0700)]
Fix issue #2643754: Launcher is caching widget layouts for too long

With the .apk file names now changing during an update, we need
to make sure to flush all caches related to a package when the
package is removed.  Otherwise we can continue to use the old
package, since its old file may still exist if we try to load it
too soon.

Change-Id: I15f08dffca3feac999dbca4f24bef12a30ca0a66

14 years agoMerge "Build searchables list after boot" into froyo
Bjorn Bringert [Tue, 4 May 2010 23:57:56 +0000 (16:57 -0700)]
Merge "Build searchables list after boot" into froyo

14 years agoMerge "docs: resolve doc bug bug:2648699" into froyo
Scott Main [Tue, 4 May 2010 23:03:37 +0000 (16:03 -0700)]
Merge "docs: resolve doc bug bug:2648699" into froyo

14 years agoBuild searchables list after boot
Bjorn Bringert [Tue, 4 May 2010 19:44:16 +0000 (20:44 +0100)]
Build searchables list after boot

This avoids delaying the first launch of QuickSearchBox or Browser
after boot while SearchManagerService builds the searchables list.

Bug http://b/issue?id=2639863

Change-Id: Ia510204691ecf487a2008723fe8f6caaced86618

14 years agoFix bug 2651076 - Catch/log ActivityNotFoundException in MenuItemImpl.invoke()
Adam Powell [Tue, 4 May 2010 21:44:45 +0000 (14:44 -0700)]
Fix bug 2651076 - Catch/log ActivityNotFoundException in MenuItemImpl.invoke()

Change-Id: I841a37349fbc6af33073aaecae903eb8999cc5bd

14 years agoMerge "Support for Ogg Vorbis decoding in stagefright." into froyo
Andreas Huber [Tue, 4 May 2010 21:27:26 +0000 (14:27 -0700)]
Merge "Support for Ogg Vorbis decoding in stagefright." into froyo

14 years agoMerge "docs: revise and add documentation for backup APIs" into froyo
Scott Main [Tue, 4 May 2010 21:20:02 +0000 (14:20 -0700)]
Merge "docs: revise and add documentation for backup APIs" into froyo

14 years agoFixing: RecognitionService logcat spam "cancel called..."
Valentin Kravtsov [Tue, 4 May 2010 19:53:52 +0000 (20:53 +0100)]
Fixing: RecognitionService logcat spam "cancel called..."

Bug fix for: http://b/issue?id=2647644

RecognitionService logcat spam "cancel called with no preceding startListening - ignoring"

Change-Id: I1da8b4d40406929ed0225d40cfac629507e71c7e

14 years agoMerge "Increase the row height of menus by 1dip." into froyo
Daniel Sandler [Tue, 4 May 2010 19:40:54 +0000 (12:40 -0700)]
Merge "Increase the row height of menus by 1dip." into froyo

14 years agoMerge "Adding the backward-compatible filtering heuristics for the new device feature...
Dan Morrill [Tue, 4 May 2010 19:03:45 +0000 (12:03 -0700)]
Merge "Adding the backward-compatible filtering heuristics for the new device features definitions added in FroYo." into froyo

14 years agoSupport for Ogg Vorbis decoding in stagefright.
Andreas Huber [Tue, 4 May 2010 18:46:42 +0000 (11:46 -0700)]
Support for Ogg Vorbis decoding in stagefright.

Set the magic property media.stagefright.enable-vorbis to true to use the new implementation instead of the standalon vorbis player for file-based playback. HTTP streaming of vorbis content will always go through stagefright.

Change-Id: Ie3843a99fadb22372f89540d0f8d65196e0c2af8
related-to-bug: 2654400

14 years agoCall into app widget hosts when the provider is updated.
Joe Onorato [Tue, 4 May 2010 18:49:12 +0000 (11:49 -0700)]
Call into app widget hosts when the provider is updated.

Change-Id: If0a2459901e88cf04810b23178e4673d44fa69cc

14 years agoIncrease the row height of menus by 1dip.
Daniel Sandler [Tue, 4 May 2010 18:33:28 +0000 (14:33 -0400)]
Increase the row height of menus by 1dip.

This prevents CJK characters, which have extra-tall
ascenders, from being clipped by the drawable in
IconMenuItemView.

Bug: 2330380
Change-Id: I1256b85122e1634d5220c648111a5ffe43879f1f

14 years agoAdding the backward-compatible filtering heuristics for the new device
Dan Morrill [Mon, 3 May 2010 23:13:14 +0000 (16:13 -0700)]
Adding the backward-compatible filtering heuristics for the new device
features definitions added in FroYo.

Change-Id: I5024e45c62813fe2fd2ff4d222df816a86a94f86

14 years agodocs: resolve doc bug
Scott Main [Sun, 2 May 2010 23:57:50 +0000 (16:57 -0700)]
docs: resolve doc bug
bug:2648699

Change-Id: I8da83978953fed1952b595d5c9a36ee740287b33

14 years agoMerge "Tweak style of recent apps dialog title." into froyo
Daniel Sandler [Fri, 30 Apr 2010 17:55:03 +0000 (10:55 -0700)]
Merge "Tweak style of recent apps dialog title." into froyo

14 years agoTweak style of recent apps dialog title.
Daniel Sandler [Fri, 30 Apr 2010 17:36:13 +0000 (13:36 -0400)]
Tweak style of recent apps dialog title.

Lovingly hand-crafted to UX's specification.

Bug: 2614279
Change-Id: I14a50e80ed4d97e5d14c7a94586380a27c845263

14 years agodocs: revise and add documentation for backup APIs
Scott Main [Fri, 30 Apr 2010 04:42:58 +0000 (21:42 -0700)]
docs: revise and add documentation for backup APIs

Change-Id: I0b015a6de16da07ccd31756b8d2329dc2785c2f7

14 years agoMerge "docs: editorial revisions to the bmgr tool doc" into froyo
Scott Main [Fri, 30 Apr 2010 04:22:17 +0000 (21:22 -0700)]
Merge "docs: editorial revisions to the bmgr tool doc" into froyo

14 years agoMerge "Expose _id in ExtendedProperties subValues" into froyo
Marc Blank [Thu, 29 Apr 2010 22:39:37 +0000 (15:39 -0700)]
Merge "Expose _id in ExtendedProperties subValues" into froyo

14 years agoMerge "Import revised translations" into froyo
Kenny Root [Thu, 29 Apr 2010 22:28:15 +0000 (15:28 -0700)]
Merge "Import revised translations" into froyo

14 years agoImport revised translations
Kenny Root [Thu, 29 Apr 2010 22:25:21 +0000 (15:25 -0700)]
Import revised translations

Change-Id: I94756035b7d3bfe2027c578a6c1578df5219f8ea

14 years agoMerge "docs: rewrite information about using shared preferences, internal and externa...
Scott Main [Thu, 29 Apr 2010 22:21:34 +0000 (15:21 -0700)]
Merge "docs: rewrite information about using shared preferences, internal and external storage (including new apis), and sqlite databases." into froyo

14 years agoExpose _id in ExtendedProperties subValues
Marc Blank [Thu, 29 Apr 2010 21:16:48 +0000 (14:16 -0700)]
Expose _id in ExtendedProperties subValues

* ExtendedValues' "name" and "value" columns are exposed in Entry
  entity subvalues, but it is clumsy to change a value, as the _id
  of the ExtendedValues row isn't also exposed.  (We otherwise have to
  perform a potentially slow query)
* This CL adds the _id column to the columns exposed

Bug: 2638762
Change-Id: Iaffeffed620af78439f5f73aa5f3257b0f8a0fd0

14 years agodocs: rewrite information about using shared preferences, internal and
Scott Main [Thu, 22 Apr 2010 19:30:25 +0000 (12:30 -0700)]
docs: rewrite information about using shared preferences, internal and
external storage (including new apis), and sqlite databases.

Change-Id: Ib951f14764759a04beca7b24767fb1e927245ebd

14 years agoFix issue #2641875: Apps on sdcard not accesible after update
Dianne Hackborn [Thu, 29 Apr 2010 18:56:40 +0000 (11:56 -0700)]
Fix issue #2641875: Apps on sdcard not accesible after update

Change-Id: I541aa040939e6a872f0b7e8e82e44f96de49d97a