OSDN Git Service

android-x86/frameworks-base.git
13 years agoMerge "fix [3361121] hang in glClear() - device unresponsive, OTA fails" into honeycomb
Mathias Agopian [Wed, 19 Jan 2011 00:52:33 +0000 (16:52 -0800)]
Merge "fix [3361121] hang in glClear() - device unresponsive, OTA fails" into honeycomb

13 years agoAPI CHANGE: add a no-View ctor for DragShadowBuilder
Christopher Tate [Tue, 18 Jan 2011 20:50:26 +0000 (12:50 -0800)]
API CHANGE: add a no-View ctor for DragShadowBuilder

Cf conversation with the API council.  Also expand the javadoc
a bit.

Change-Id: I9d4edb1042e00492b3db5c6bb7c7d9648581efad

13 years agoMerge "Smoother pinch-zoom in Browser." into honeycomb
Romain Guy [Tue, 18 Jan 2011 23:55:31 +0000 (15:55 -0800)]
Merge "Smoother pinch-zoom in Browser." into honeycomb

13 years agoMerge "Unhide GLSurfaceView.get/setPreserveEGLContextOnPause" into honeycomb
Jack Palevich [Tue, 18 Jan 2011 23:54:29 +0000 (15:54 -0800)]
Merge "Unhide GLSurfaceView.get/setPreserveEGLContextOnPause" into honeycomb

13 years agoMerge "Create db path if it doesn't exit" into honeycomb
John Reck [Tue, 18 Jan 2011 23:53:33 +0000 (15:53 -0800)]
Merge "Create db path if it doesn't exit" into honeycomb

13 years agoUnhide GLSurfaceView.get/setPreserveEGLContextOnPause
Jack Palevich [Tue, 18 Jan 2011 23:53:25 +0000 (15:53 -0800)]
Unhide GLSurfaceView.get/setPreserveEGLContextOnPause

Change-Id: I882b8fa7888e2baae41c81b75af7fc1f639d38d6

13 years agofix [3361121] hang in glClear() - device unresponsive, OTA fails
Mathias Agopian [Tue, 18 Jan 2011 23:51:30 +0000 (15:51 -0800)]
fix [3361121] hang in glClear() - device unresponsive, OTA fails

Generally we never want to lock a buffer for write access if it is at
the "head" on the surfaceflinger side. The only exception (1) is when
the buffer is not currently in use AND there is at least one queued
buffer -- in which case, SurfaceFlinger will never use said buffer
anymore, because on the next composition around, it will be able to
retire the first queued buffer.

The logic above relies on SurfaceFlinger always retiring
and locking a buffer before composition -- unfortunately this
didn't happen during a screenshot.

This could leave us in a situation where a buffer is locked by the
application for write, and used by SurfaceFlinger for texturing,
causing a hang.

Here, we fix this issue by never assuming the exception (1), it was
intended as an optimization allowing ANativeWindow::lockBuffer() to
return sooner and was justified when most of SF composition was
done in software. The actual buffer locking is now ensured by
gralloc. We could have handled screenshots in a similar way to
a regular composition, but it could have caused glitches on screen,
essentially, taking a screenshot could cause to skip a frame.

Change-Id: I1f226b1ebdf6918439b687c2723955d55b842c55

13 years agoSmoother pinch-zoom in Browser.
Romain Guy [Tue, 18 Jan 2011 23:41:44 +0000 (15:41 -0800)]
Smoother pinch-zoom in Browser.

Change-Id: Ie5a403b76ab25483a980324cd7b31976359fa796

13 years agoCreate db path if it doesn't exit
John Reck [Tue, 18 Jan 2011 23:42:49 +0000 (15:42 -0800)]
Create db path if it doesn't exit

 Bug: 3241808
 Make sure the directory the caller is trying to open the icon db
 in actually exists and create it if it doesn't.

Change-Id: Ie5e4a09210e9430edc318846a551542119969053

13 years agoMerge "Apparently our native TCP sockets do not return an error from blocking "connec...
Andreas Huber [Tue, 18 Jan 2011 23:35:35 +0000 (15:35 -0800)]
Merge "Apparently our native TCP sockets do not return an error from blocking "connect"" into honeycomb

13 years agoMerge "Fix issue #3362484: Can't dismiss activity picker by tapping outside dialog...
Dianne Hackborn [Tue, 18 Jan 2011 23:31:21 +0000 (15:31 -0800)]
Merge "Fix issue #3362484: Can't dismiss activity picker by tapping outside dialog" into honeycomb

13 years agoFix issue #3362484: Can't dismiss activity picker by tapping outside dialog
Dianne Hackborn [Tue, 18 Jan 2011 21:57:54 +0000 (13:57 -0800)]
Fix issue #3362484: Can't dismiss activity picker by tapping outside dialog

Change-Id: Idc2fe5a86c61e8f94fe9d902a0087a05f6f7918e

13 years agoApparently our native TCP sockets do not return an error from blocking "connect"
Andreas Huber [Tue, 18 Jan 2011 23:26:40 +0000 (15:26 -0800)]
Apparently our native TCP sockets do not return an error from blocking "connect"

if the network interface is shutdown while connecting.

Change-Id: I1bd7e43475edf20f35e15dd4eae547126289f5f0
related-to-bug: 3362836

13 years agoMerge "Filter virtual keys after touches." into honeycomb
Jeff Brown [Tue, 18 Jan 2011 23:26:15 +0000 (15:26 -0800)]
Merge "Filter virtual keys after touches." into honeycomb

13 years agoMerge "Import revised translations. DO NOT MERGE" into honeycomb
Eric Fischer [Tue, 18 Jan 2011 23:13:06 +0000 (15:13 -0800)]
Merge "Import revised translations.  DO NOT MERGE" into honeycomb

13 years agoFilter virtual keys after touches.
Jeff Brown [Tue, 18 Jan 2011 23:10:10 +0000 (15:10 -0800)]
Filter virtual keys after touches.

Adds a new virtualKeyQuietTimeMillis configuration resource that sets
the duration for which virtual keys will be dropped after recent touches
on screen.  The default value is 0; it is intended to be overridden
per device using a resource overlay.

This change is designed to help in two cases:

1. Swipes from touchscreen into virtual key area.
2. Accidental taps in virtual key area while using on-screen keyboard.

Bug: 3089163
Change-Id: Ib912d4f8a4df9966a39cd537d3ec7c24afab7225

13 years agoMerge "Fix the sluggish preview during timelapse video recording because software...
James Dong [Tue, 18 Jan 2011 22:43:02 +0000 (14:43 -0800)]
Merge "Fix the sluggish preview during timelapse video recording because software encoder is used." into honeycomb

13 years agoMerge "Add back NEW_TASK flag." into honeycomb
Costin Manolache [Tue, 18 Jan 2011 22:37:24 +0000 (14:37 -0800)]
Merge "Add back NEW_TASK flag." into honeycomb

13 years agoImport revised translations. DO NOT MERGE
Eric Fischer [Tue, 18 Jan 2011 22:31:36 +0000 (14:31 -0800)]
Import revised translations.  DO NOT MERGE

Change-Id: I4805367889be5c8a7a03591f11fea732f3b9edb7

13 years agoFix the sluggish preview during timelapse video recording because software encoder...
James Dong [Tue, 18 Jan 2011 22:26:55 +0000 (14:26 -0800)]
Fix the sluggish preview during timelapse video recording because software encoder is used.

bug - 3361771

Change-Id: Ic5344e9eabe7f1b82910b65b4260e4ad8dc51c32

13 years agoMerge "Validate that version pragma is correct." into honeycomb
Stephen Hines [Tue, 18 Jan 2011 22:26:24 +0000 (14:26 -0800)]
Merge "Validate that version pragma is correct." into honeycomb

13 years agoMerge "Fix typo" into honeycomb
Eric Laurent [Tue, 18 Jan 2011 22:25:17 +0000 (14:25 -0800)]
Merge "Fix typo" into honeycomb

13 years agoFix typo
Glenn Kasten [Tue, 18 Jan 2011 22:13:28 +0000 (14:13 -0800)]
Fix typo

Change-Id: I73e7c5cf13c5ed82398006af61308665eb1d3ad0

13 years agoValidate that version pragma is correct.
Stephen Hines [Tue, 18 Jan 2011 22:10:44 +0000 (14:10 -0800)]
Validate that version pragma is correct.

Change-Id: I42dced79b0df52c101525799081bc8a5426c11e4

13 years agoMerge "Erase OBB files when removing packages" into honeycomb
Kenny Root [Tue, 18 Jan 2011 22:03:15 +0000 (14:03 -0800)]
Merge "Erase OBB files when removing packages" into honeycomb

13 years agoFix 9patches, again...
Romain Guy [Tue, 18 Jan 2011 22:02:16 +0000 (14:02 -0800)]
Fix 9patches, again...
Bug #3365243

Change-Id: Id45a1f1fd5e099b1d691e6064401d3de1b0c5c20

13 years agoMerge "Fix 9patches, again... Bug #3365243" into honeycomb
Romain Guy [Tue, 18 Jan 2011 22:00:28 +0000 (14:00 -0800)]
Merge "Fix 9patches, again... Bug #3365243" into honeycomb

13 years agoErase OBB files when removing packages
Kenny Root [Tue, 18 Jan 2011 21:04:40 +0000 (13:04 -0800)]
Erase OBB files when removing packages

OBB files on USB storage or SD card should be removed when an
application is removed.

Bug: 3356804
Change-Id: Ifbbf043368b125fcd47fd74e5cd2e5167a8deb00

13 years agoMerge "MTP: Set modification date for abstract playlists" into honeycomb
Mike Lockwood [Tue, 18 Jan 2011 21:29:55 +0000 (13:29 -0800)]
Merge "MTP: Set modification date for abstract playlists" into honeycomb

13 years agoMTP: Set modification date for abstract playlists
Mike Lockwood [Tue, 18 Jan 2011 21:27:25 +0000 (13:27 -0800)]
MTP: Set modification date for abstract playlists

BUG: 3224269

Change-Id: I96ae8e6d2f7e28860e9217ceb911331b333e1391
Signed-off-by: Mike Lockwood <lockwood@android.com>
13 years agoMerge "Fixing memory leak in PreferenceScreen." into honeycomb
Brad Fitzpatrick [Tue, 18 Jan 2011 21:26:56 +0000 (13:26 -0800)]
Merge "Fixing memory leak in PreferenceScreen." into honeycomb

13 years agoMerge "Fix the build break in git_master-without-vendor" into honeycomb
James Dong [Tue, 18 Jan 2011 21:26:14 +0000 (13:26 -0800)]
Merge "Fix the build break in git_master-without-vendor" into honeycomb

13 years agoFixing memory leak in PreferenceScreen.
Mathias Jeppsson [Tue, 18 Jan 2011 13:34:52 +0000 (14:34 +0100)]
Fixing memory leak in PreferenceScreen.

Every time the PreferenceScreen is displayed a new ListView is
created and bound to the adapter. As the same adapter is used during
the lifetime of PreferenceScreen and the listviews never gets
unbound, the adapter will contain a list of unused views. The old view
should be unbound from adapter when we create a new view.

Change-Id: I13e2d0dc79c8ff79b58efa650653e3f84c6e53c5

13 years agoMerge "MTP: Strip ".pla" file extension from name field for WMP playlists" into honeycomb
Mike Lockwood [Tue, 18 Jan 2011 21:14:58 +0000 (13:14 -0800)]
Merge "MTP: Strip ".pla" file extension from name field for WMP playlists" into honeycomb

13 years agoMTP: Strip ".pla" file extension from name field for WMP playlists
Mike Lockwood [Tue, 18 Jan 2011 21:13:05 +0000 (13:13 -0800)]
MTP: Strip ".pla" file extension from name field for WMP playlists

BUG: 3309324

Change-Id: Ia136f94406496f971819f4f805f742f2a6829007
Signed-off-by: Mike Lockwood <lockwood@android.com>
13 years agoMerge "Don't cache return of getService in Environment" into honeycomb
Kenny Root [Tue, 18 Jan 2011 21:12:55 +0000 (13:12 -0800)]
Merge "Don't cache return of getService in Environment" into honeycomb

13 years agoMerge "StrictMode class instance limit interface." into honeycomb
Brad Fitzpatrick [Tue, 18 Jan 2011 21:11:33 +0000 (13:11 -0800)]
Merge "StrictMode class instance limit interface." into honeycomb

13 years agoDon't cache return of getService in Environment
Kenny Root [Tue, 18 Jan 2011 21:03:28 +0000 (13:03 -0800)]
Don't cache return of getService in Environment

There is already a cache of all non-null return values for calls to
getService(), so don't bother caching it in Environment. This caused
some problems when Environment was called too early in the boot process
and getService() returned null.

Change-Id: I66739d01dab7e422f660d26b370ecce110dcc808

13 years agoAdd support for Paint::setTextSkewX in OpenGLRenderer.
Romain Guy [Tue, 18 Jan 2011 21:02:38 +0000 (13:02 -0800)]
Add support for Paint::setTextSkewX in OpenGLRenderer.
Bug #3360888

Change-Id: I42e81a1f10bf7b9ae1c63ca8add1878fd59a1e8a

13 years agoMerge "Add support for Paint::setTextSkewX in OpenGLRenderer. Bug #3360888" into...
Romain Guy [Tue, 18 Jan 2011 21:00:41 +0000 (13:00 -0800)]
Merge "Add support for Paint::setTextSkewX in OpenGLRenderer. Bug #3360888" into honeycomb

13 years agoMerge "Add support for preserving EGL contexts when pausing / resuming." into honeycomb
Jack Palevich [Tue, 18 Jan 2011 21:00:27 +0000 (13:00 -0800)]
Merge "Add support for preserving EGL contexts when pausing / resuming." into honeycomb

13 years agoFix the build break in git_master-without-vendor
Dharmaray Kundargi [Tue, 18 Jan 2011 20:40:56 +0000 (12:40 -0800)]
Fix the build break in git_master-without-vendor

Change-Id: I8fff5ee69958212a80711e0d86fb86514c8797f4

13 years agoMerge "Implement parsing of vbv buffering info in RTSP." into honeycomb
Andreas Huber [Tue, 18 Jan 2011 19:52:02 +0000 (11:52 -0800)]
Merge "Implement parsing of vbv buffering info in RTSP." into honeycomb

13 years agoMerge "Enable AUTO_TIME_ZONE settings." into honeycomb
John Wang [Tue, 18 Jan 2011 19:43:53 +0000 (11:43 -0800)]
Merge "Enable AUTO_TIME_ZONE settings." into honeycomb

13 years agoStrictMode class instance limit interface.
Brad Fitzpatrick [Thu, 13 Jan 2011 22:21:03 +0000 (14:21 -0800)]
StrictMode class instance limit interface.

Change-Id: Ic5eea539586e5d4965d83364bf9f623d1d89f2b1

13 years agoMerge "Don't report 100% buffered when the stream ends prematurely." into honeycomb
Bryan Mawhinney [Tue, 18 Jan 2011 19:30:30 +0000 (11:30 -0800)]
Merge "Don't report 100% buffered when the stream ends prematurely." into honeycomb

13 years agoAdd support for skew()
Romain Guy [Tue, 18 Jan 2011 19:19:19 +0000 (11:19 -0800)]
Add support for skew()

Change-Id: Ia3a9a867f74fd78b61f75179e3788fdc2f0cacd0

13 years agoImplement parsing of vbv buffering info in RTSP.
Andreas Huber [Tue, 18 Jan 2011 19:19:13 +0000 (11:19 -0800)]
Implement parsing of vbv buffering info in RTSP.

Change-Id: I7d871cafda2c4c65670a40ad9ab4f24317f8568a
related-to-bug: 3351915

13 years agoMerge "Add support for skew()" into honeycomb
Romain Guy [Tue, 18 Jan 2011 19:17:20 +0000 (11:17 -0800)]
Merge "Add support for skew()" into honeycomb

13 years agoMerge "Fix issue #3362666 Activities launched from ongoing notifications don't animat...
Dianne Hackborn [Tue, 18 Jan 2011 19:14:46 +0000 (11:14 -0800)]
Merge "Fix issue #3362666 Activities launched from ongoing notifications don't animate" into honeycomb

13 years agoMerge "MTP: Fix problems with modification dates for folders and non-media files...
Mike Lockwood [Tue, 18 Jan 2011 19:13:01 +0000 (11:13 -0800)]
Merge "MTP: Fix problems with modification dates for folders and non-media files" into honeycomb

13 years agoDon't report 100% buffered when the stream ends prematurely.
Bryan Mawhinney [Tue, 18 Jan 2011 19:12:21 +0000 (19:12 +0000)]
Don't report 100% buffered when the stream ends prematurely.

Change-Id: Ia4e80d02f28104427a3309e3d5b155faa5702757

13 years agoEnable AUTO_TIME_ZONE settings.
John Wang [Sat, 15 Jan 2011 03:07:10 +0000 (19:07 -0800)]
Enable AUTO_TIME_ZONE settings.

There are separate settings for AUTO_TIME and AUTO_TIME_ZONE.

Modify *ServiceStateTracker to monitor AUTO_TIME and AUTO_TIME_ZONE changes
separately and reset NITZ time and timezone accordingly.

bug: 3304255
Change-Id: Ie430f7b4a256618bea87672b3628d1223ea6e36a

13 years agoMerge "WebStorage public API change" into honeycomb
John Reck [Tue, 18 Jan 2011 19:10:26 +0000 (11:10 -0800)]
Merge "WebStorage public API change" into honeycomb

13 years agoMerge "Prevent Dropbox from crashing system server pre-boot." into honeycomb
David Turner [Tue, 18 Jan 2011 19:09:03 +0000 (11:09 -0800)]
Merge "Prevent Dropbox from crashing system server pre-boot." into honeycomb

13 years agoFix issue #3362666 Activities launched from ongoing notifications don't animate
Dianne Hackborn [Tue, 18 Jan 2011 01:54:31 +0000 (17:54 -0800)]
Fix issue #3362666 Activities launched from ongoing notifications don't animate

The phone-oriented code for turning off animations when the screen is entirely
covered by the status bar was not appropriate for the tablet.

Change-Id: Ica3e0db989f16b9187eacd6ecf4ac3d17661dd6d

13 years agoMTP: Fix problems with modification dates for folders and non-media files
Mike Lockwood [Tue, 18 Jan 2011 19:06:19 +0000 (11:06 -0800)]
MTP: Fix problems with modification dates for folders and non-media files

Also removed an unnecessary parameter to MtpDatabase.endSendobject()

BUG: 3352142

Change-Id: I6fd812dcba4814956bc8bc1cbd6bd5c868197790
Signed-off-by: Mike Lockwood <lockwood@android.com>
13 years agoMerge "Hiding the AsyncTaskLoader.waitForLoader method" into honeycomb
Dmitri Plotnikov [Tue, 18 Jan 2011 19:01:35 +0000 (11:01 -0800)]
Merge "Hiding the AsyncTaskLoader.waitForLoader method" into honeycomb

13 years agoPrevent Dropbox from crashing system server pre-boot.
Brad Fitzpatrick [Tue, 18 Jan 2011 02:14:18 +0000 (18:14 -0800)]
Prevent Dropbox from crashing system server pre-boot.

Bug: 3362748
Change-Id: I3f94f22798eb4a6ef14dd9a418fd3c054637e16b

13 years agoMerge "Fix smart zoom for plugins that use OpenGL." into honeycomb
Derek Sollenberger [Tue, 18 Jan 2011 18:38:34 +0000 (10:38 -0800)]
Merge "Fix smart zoom for plugins that use OpenGL." into honeycomb

13 years agoMerge "Doc change: fix busted link to DatePicker tutorial." into honeycomb
Dirk Dougherty [Tue, 18 Jan 2011 18:16:31 +0000 (10:16 -0800)]
Merge "Doc change: fix busted link to DatePicker tutorial." into honeycomb

13 years agoMerge "Disable AutoFill in private browsing mode." into honeycomb
Ben Murdoch [Tue, 18 Jan 2011 18:07:01 +0000 (10:07 -0800)]
Merge "Disable AutoFill in private browsing mode." into honeycomb

13 years agoFix smart zoom for plugins that use OpenGL.
Derek Sollenberger [Tue, 18 Jan 2011 16:11:28 +0000 (11:11 -0500)]
Fix smart zoom for plugins that use OpenGL.

bug: 3331323
Change-Id: I4f1d4e0ecdb75283fc781bf5afe579f43610506c

13 years agoDisable AutoFill in private browsing mode.
Ben Murdoch [Tue, 18 Jan 2011 14:10:48 +0000 (14:10 +0000)]
Disable AutoFill in private browsing mode.

Ensure that WebKit knows that AutoFill is disabled when private
browsing is on.

Bug: 3335257
Change-Id: I8c3e45175211e5cb00605c1dbf974e513c582d8e

13 years agoHiding the AsyncTaskLoader.waitForLoader method
Dmitri Plotnikov [Tue, 18 Jan 2011 17:41:29 +0000 (09:41 -0800)]
Hiding the AsyncTaskLoader.waitForLoader method

I introduced this method a couple of weeks ago,
but then we had a chat with Dianne and she made
a good point that rather than having this behavior
on AsyncTaskLoader, we should have it on LoaderManager
and then it will cover all kinds of loaders,
not just the ones inheriting from AsyncTaskLoader.
She suggested that we postpone that work until
after Honeycomb.

Change-Id: I1939956296cddb678791ba652ab5f4a0dd45eea1

13 years agoNew lockscreen assets for xlarge
Justin Ho [Tue, 18 Jan 2011 17:12:51 +0000 (09:12 -0800)]
New lockscreen assets for xlarge

Change-Id: Iaf116307ec645630761d4f00810fa01022eeef4e

13 years agoBattery charging assets (HDPI) from Gingerbread
Justin Ho [Tue, 18 Jan 2011 16:42:36 +0000 (08:42 -0800)]
Battery charging assets (HDPI) from Gingerbread

Change-Id: Ic4003d93719130fb85a535fc03dc6c232578deec

13 years agoMerge "Added a touch up filter in text selection handles." into honeycomb
Gilles Debunne [Tue, 18 Jan 2011 16:33:42 +0000 (08:33 -0800)]
Merge "Added a touch up filter in text selection handles." into honeycomb

13 years agoadd interface to return if (x/y) is a plugin
Cary Clark [Tue, 11 Jan 2011 16:32:01 +0000 (11:32 -0500)]
add interface to return if (x/y) is a plugin

Use the nav cache to determine if a given
coordinate corresponds to a plugin.

Requires a companion change in external/webkit

bug:3331323
Change-Id: I07d7fdfd643768d600cd6ba81165fac8b553a77f

13 years agoMerge "Motorola request to fix proxy" into honeycomb
Kristian Monsen [Tue, 18 Jan 2011 14:05:46 +0000 (06:05 -0800)]
Merge "Motorola request to fix proxy" into honeycomb

13 years agoMotorola request to fix proxy
Kristian Monsen [Tue, 18 Jan 2011 14:01:45 +0000 (14:01 +0000)]
Motorola request to fix proxy

Change-Id: I2beecc2bef5a21294cc5fab0f11d4026f8ad3c2d

13 years agoMerge "Change to stream decoding mode if the file descriptor cannot support seek...
Owen Lin [Tue, 18 Jan 2011 12:13:13 +0000 (04:13 -0800)]
Merge "Change to stream decoding mode if the file descriptor cannot support seek." into honeycomb

13 years agoMerge "Merge "SipService: registers broadcast receivers on demand."" into honeycomb
Hung-ying Tyan [Tue, 18 Jan 2011 10:25:52 +0000 (02:25 -0800)]
Merge "Merge "SipService: registers broadcast receivers on demand."" into honeycomb

13 years agoChange to stream decoding mode if the file descriptor cannot support seek.
Owen Lin [Tue, 18 Jan 2011 09:39:15 +0000 (17:39 +0800)]
Change to stream decoding mode if the file descriptor cannot support seek.

bug: 3298498
Change-Id: Id7ae46bf8e885a417753edbd6648332052fee469

13 years agoMerge "SipService: registers broadcast receivers on demand."
Hung-ying Tyan [Fri, 7 Jan 2011 03:57:22 +0000 (11:57 +0800)]
Merge "SipService: registers broadcast receivers on demand."

The previous implementation registers receivers when SipService starts up.
If the user doesn't use SIP at all, SipService will still process connecivity
and wifi state change events, which involves holding wake lock and thus
consumes power unnecessarily.

With this CL, SipService is completely idle if the user doesn't use SIP at all.
It registers receivers only when at least one account is opened.

Bug: 3326998
Change-Id: Idea43747f8204b0ccad3fc05a1b1c0b29c9b2557

13 years agoMerge "SipService: release wake lock for cancelled tasks."
Hung-ying Tyan [Thu, 6 Jan 2011 05:03:30 +0000 (13:03 +0800)]
Merge "SipService: release wake lock for cancelled tasks."

Bug: 3327004
Change-Id: Ice47f973b5f2969f26eaa83a3e4795b2e153ba8b

13 years agoLayoutLib: properly configure ApplicationInfo with targetSdkVersion.
Xavier Ducrohet [Tue, 18 Jan 2011 06:57:36 +0000 (22:57 -0800)]
LayoutLib: properly configure ApplicationInfo with targetSdkVersion.

Change-Id: I1bfef890206552843d1a7a8d0564741f2a37494f

13 years agoMerge "Allow TabHosts to have no children in the tabcontent widget" into honeycomb
Xavier Ducrohet [Tue, 18 Jan 2011 06:10:20 +0000 (22:10 -0800)]
Merge "Allow TabHosts to have no children in the tabcontent widget" into honeycomb

13 years agoMerge "Update package manager when panel is loaded." into honeycomb
satok [Tue, 18 Jan 2011 06:02:00 +0000 (22:02 -0800)]
Merge "Update package manager when panel is loaded." into honeycomb

13 years agoAllow TabHosts to have no children in the tabcontent widget
Tor Norbye [Tue, 18 Jan 2011 05:55:18 +0000 (21:55 -0800)]
Allow TabHosts to have no children in the tabcontent widget

Replace the code which throws an exception if there are no children in
the FrameLayout that is the tabcontent, with code to add a single
dummy tab.

This makes the TabHost renderable in those scenarios where the real
tabs are added dynamically rather than via XML.

Change-Id: I72442bd7d40eddd875b3507585c1f372fcae3329

13 years agoMerge "Fix the algorithm to get current input method subtype considering explicitly...
satok [Tue, 18 Jan 2011 05:14:46 +0000 (21:14 -0800)]
Merge "Fix the algorithm to get current input method subtype considering explicitly and implicitly enabled subtypes." into honeycomb

13 years agoFix the algorithm to get current input method subtype considering explicitly and...
satok [Mon, 17 Jan 2011 15:55:13 +0000 (00:55 +0900)]
Fix the algorithm to get current input method subtype considering explicitly and implicitly enabled subtypes.

Change-Id: I2e6d9ae36a1335f67b6db7659244cdfb2bfe3068

13 years agoDoc change: fix busted link to DatePicker tutorial.
Dirk Dougherty [Tue, 18 Jan 2011 04:09:46 +0000 (20:09 -0800)]
Doc change: fix busted link to DatePicker tutorial.

Change-Id: I957aa3bb4c0c91f195de99405cc8e1b5a5bc82f7

13 years agoFix bug 3357248 - Small text in settings list items should not change color
Adam Powell [Tue, 18 Jan 2011 03:38:39 +0000 (19:38 -0800)]
Fix bug 3357248 - Small text in settings list items should not change color

Change-Id: I0610a6006a948935a2e3cb02616ceea631d14065

13 years agoMerge "Fix bug 3357208 - List selector shows as dark black on first pressed state...
Adam Powell [Tue, 18 Jan 2011 02:54:13 +0000 (18:54 -0800)]
Merge "Fix bug 3357208 - List selector shows as dark black on first pressed state" into honeycomb

13 years agoMerge "Remove erroneous log message." into honeycomb
Stephen Hines [Tue, 18 Jan 2011 02:52:02 +0000 (18:52 -0800)]
Merge "Remove erroneous log message." into honeycomb

13 years agoFix bug 3357208 - List selector shows as dark black on first pressed state
Adam Powell [Tue, 18 Jan 2011 02:37:42 +0000 (18:37 -0800)]
Fix bug 3357208 - List selector shows as dark black on first pressed state

Make sure AbsListView selector drawable state gets configured on touch.

Change-Id: Ic5863ee05517b426585f59aaf52ba75b72d8c020

13 years agoMerge "set sdk version to "Android 3.0" and api level to "Honeycomb"" into honeycomb
Scott Main [Tue, 18 Jan 2011 02:19:44 +0000 (18:19 -0800)]
Merge "set sdk version to "Android 3.0" and api level to "Honeycomb"" into honeycomb

13 years agoRemove erroneous log message.
Stephen Hines [Tue, 18 Jan 2011 01:31:58 +0000 (17:31 -0800)]
Remove erroneous log message.

This change also enables pragmas to be checked for scripts that do not have a
root() function.

Change-Id: I4f41300b623581483970050680ac96c54f99d34a

13 years agoMerge "Don't crash with non-standard bitmap types." into honeycomb
Joe Onorato [Tue, 18 Jan 2011 01:25:02 +0000 (17:25 -0800)]
Merge "Don't crash with non-standard bitmap types." into honeycomb

13 years agoMerge "Remove old APIs." into honeycomb
Dianne Hackborn [Tue, 18 Jan 2011 01:23:46 +0000 (17:23 -0800)]
Merge "Remove old APIs." into honeycomb

13 years agoDon't crash with non-standard bitmap types.
Joe Onorato [Tue, 18 Jan 2011 01:20:09 +0000 (17:20 -0800)]
Don't crash with non-standard bitmap types.

Bug: 3299780
Change-Id: I435c3bedda22395db1b65dc9ff488bfea9069deb

13 years agoRemove old APIs.
Dianne Hackborn [Tue, 18 Jan 2011 01:16:02 +0000 (17:16 -0800)]
Remove old APIs.

Change-Id: If676e4e7886ad71c4959d4253db99639b49218b8

13 years agoset sdk version to "Android 3.0" and api level to "Honeycomb"
Scott Main [Tue, 18 Jan 2011 00:17:55 +0000 (16:17 -0800)]
set sdk version to "Android 3.0" and api level to "Honeycomb"

Change-Id: I89a7149b32643d7e9c79bf2030b061bbff3bd8c4

13 years agoAdded a touch up filter in text selection handles.
Gilles Debunne [Mon, 17 Jan 2011 17:16:40 +0000 (09:16 -0800)]
Added a touch up filter in text selection handles.

This filters the touch up event, so that in case the handles'
position is altered when the finger is lifted up, this unwanted
movement is discarded.

Bug 3282095

Change-Id: Ibfe8f49d979091ba49139449ecc13f47050608d9

13 years agoMerge "Fix 3303606: invalidate WaveView after resetting state" into honeycomb
Jim Miller [Tue, 18 Jan 2011 00:35:52 +0000 (16:35 -0800)]
Merge "Fix 3303606: invalidate WaveView after resetting state" into honeycomb

13 years agoMerge "Fix a bunch of API review bugs." into honeycomb
Dianne Hackborn [Tue, 18 Jan 2011 00:24:32 +0000 (16:24 -0800)]
Merge "Fix a bunch of API review bugs." into honeycomb

13 years agoFix a bunch of API review bugs.
Dianne Hackborn [Mon, 17 Jan 2011 22:38:50 +0000 (14:38 -0800)]
Fix a bunch of API review bugs.

3362464 API REVIEW: android.content potpourri
3362445 API REVIEW: Fragment transaction stuff
3362428 API REVIEW: Fragment stuff
3362418 API REVIEW: Loader stuff
3362414 API REVIEW: android.content.pm.ActivityInfo

Change-Id: I6475421a4735759b458acb67df4380cc6234f147

13 years agoMerge "Fix 3329600: Always enable screen rotation in lockscreen." into honeycomb
Jim Miller [Tue, 18 Jan 2011 00:23:16 +0000 (16:23 -0800)]
Merge "Fix 3329600: Always enable screen rotation in lockscreen." into honeycomb

13 years agoMerge "Mouse pointer tweaks." into honeycomb
Jeff Brown [Tue, 18 Jan 2011 00:17:44 +0000 (16:17 -0800)]
Merge "Mouse pointer tweaks." into honeycomb