OSDN Git Service

android-x86/frameworks-native.git
14 years agoam b6b25d63: Merge change 23126 into donut
Scott Main [Thu, 3 Sep 2009 03:21:42 +0000 (20:21 -0700)]
am b6b25d63: Merge change 23126 into donut

Merge commit 'b6b25d63df8dd873c60ab056e5b0e0eda167cfb1' into eclair

* commit 'b6b25d63df8dd873c60ab056e5b0e0eda167cfb1':
  docs only.

14 years agoMerge change 23126 into donut
Android (Google) Code Review [Thu, 3 Sep 2009 03:19:39 +0000 (20:19 -0700)]
Merge change 23126 into donut

* changes:
  docs only. add documentation about zipalign and new auto-signing procedures for Ant

14 years agoMerge change 23765 into eclair
Android (Google) Code Review [Thu, 3 Sep 2009 02:35:07 +0000 (19:35 -0700)]
Merge change 23765 into eclair

* changes:
  [Issue 2087123] Suppressing all exception when trying to load a photo for the in-call UI

14 years agoam 2a2058f5: Merge change 23762 into donut
Dirk Dougherty [Thu, 3 Sep 2009 02:32:02 +0000 (19:32 -0700)]
am 2a2058f5: Merge change 23762 into donut

Merge commit '2a2058f5a31e3bace3d0284fb1259a9ddcbec3a5' into eclair

* commit '2a2058f5a31e3bace3d0284fb1259a9ddcbec3a5':
  Add updated API diff based on 4.xml.

14 years agoMerge change 23762 into donut
Android (Google) Code Review [Thu, 3 Sep 2009 02:29:45 +0000 (19:29 -0700)]
Merge change 23762 into donut

* changes:
  Add updated API diff based on 4.xml.

14 years agoam a6602f1f: Add docs for SDK update. Add redirects for preview files. Manually integ...
Dirk Dougherty [Thu, 3 Sep 2009 02:14:24 +0000 (19:14 -0700)]
am a6602f1f: Add docs for SDK update. Add redirects for preview files. Manually integrate a few doc changes from cupcake.

Merge commit 'a6602f1fe4590e48c760f21ce29a92629240c463' into eclair

* commit 'a6602f1fe4590e48c760f21ce29a92629240c463':
  Add docs for SDK update.

14 years agoMerge change 23584 into eclair
Android (Google) Code Review [Thu, 3 Sep 2009 02:13:10 +0000 (19:13 -0700)]
Merge change 23584 into eclair

* changes:
  Simple app to create a gl2 context and dump the strings.

14 years agoMerge change 23751 into eclair
Android (Google) Code Review [Thu, 3 Sep 2009 01:18:59 +0000 (18:18 -0700)]
Merge change 23751 into eclair

* changes:
  Fix deadlock in wallpaper.

14 years agoam 96b7f921: Merge change 23565 into donut
Scott Main [Thu, 3 Sep 2009 00:58:12 +0000 (17:58 -0700)]
am 96b7f921: Merge change 23565 into donut

Merge commit '96b7f921a5aea4264af1e0b4970263a3135c04d0' into eclair

* commit '96b7f921a5aea4264af1e0b4970263a3135c04d0':
  docs only.

14 years agoMerge change 23704 into eclair
Android (Google) Code Review [Thu, 3 Sep 2009 00:55:35 +0000 (17:55 -0700)]
Merge change 23704 into eclair

* changes:
  Fiddle system boot ordering.

14 years agoMerge change 23565 into donut
Android (Google) Code Review [Thu, 3 Sep 2009 00:55:32 +0000 (17:55 -0700)]
Merge change 23565 into donut

* changes:
  docs only. add new announcement for 1.6 sdk to homepage

14 years agoMerge change 23693 into eclair
Android (Google) Code Review [Thu, 3 Sep 2009 00:40:20 +0000 (17:40 -0700)]
Merge change 23693 into eclair

* changes:
  dumpstate: Add option to output to socket, disable code that switched to nonroot

14 years agoMerge change 23738 into eclair
Android (Google) Code Review [Thu, 3 Sep 2009 00:25:35 +0000 (17:25 -0700)]
Merge change 23738 into eclair

* changes:
  fix doc

14 years agoMerge change 23568 into eclair
Android (Google) Code Review [Thu, 3 Sep 2009 00:21:35 +0000 (17:21 -0700)]
Merge change 23568 into eclair

* changes:
  Work on issue #2079167: Flickering issue across multiple UI

14 years agoWork on issue #2079167: Flickering issue across multiple UI
Dianne Hackborn [Wed, 2 Sep 2009 02:01:50 +0000 (19:01 -0700)]
Work on issue #2079167: Flickering issue across multiple UI

This addresses a few parts of the bug:

- There was a small issue in the window manager where we could show a window
  too early before the transition animation starts, which was introduced
  by the recent wallpaper work.  This was the cause of the flicker when
  starting the dialer for the first time.

- There was a much larger problem that has existing forever where moving
  an application token to the front or back was not synchronized with the
  application animation transaction.  This was the cause of the flicker
  when hanging up (now that the in-call screen moves to the back instead
  of closing and we always have a wallpaper visible).  The approach to
  solving this is to have the window manager go ahead and move the app
  tokens (it must in order to keep in sync with the activity manager), but
  to delay the actual window movement: perform the movement to front when
  the animation starts, and to back when it ends.  Actually, when the
  animation ends, we just go and completely rebuild the window list to
  ensure it is correct, because there can be ways people can add windows
  while in this intermediate state where they could end up at the wrong
  place once we do the delayed movement to the front or back.  And it is
  simply reasuring to know that every time we finish a full app transition,
  we re-evaluate the world and put everything in its proper place.

Also included in this change are a few little tweaks to the input system,
to perform better logging, and completely ignore input devices that do not
have any of our input classes.  There is also a little cleanup of evaluating
configuration changes to not do more work than needed when an input
devices appears or disappears, and to only log a config change message when
the config is truly changing.

Change-Id: Ifb2db77f8867435121722a6abeb946ec7c3ea9d3

14 years agoMerge change 23720 into eclair
Android (Google) Code Review [Thu, 3 Sep 2009 00:05:31 +0000 (17:05 -0700)]
Merge change 23720 into eclair

* changes:
  Add colorkey to gl clear operation

14 years agoMerge change 23698 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 23:50:13 +0000 (16:50 -0700)]
Merge change 23698 into eclair

* changes:
  suppress syncs until boot is complete

14 years agoMerge change 23690 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 23:45:33 +0000 (16:45 -0700)]
Merge change 23690 into eclair

* changes:
  Prevent a crash when webkit changes the selection.

14 years agoMerge change 23723 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 23:44:52 +0000 (16:44 -0700)]
Merge change 23723 into eclair

* changes:
  Get drawable directory for the platform buttons.

14 years agoMerge change 23717 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 23:25:01 +0000 (16:25 -0700)]
Merge change 23717 into eclair

* changes:
  Make new attribute EXTRA_CHANGED_COMPONENT_NAME in broadcast intent ACTION_PACKAGE_CHANGED public so that apps like launcher can find out the changed component name when loading changes made in components.

14 years agoMerge change 23646 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 23:01:15 +0000 (16:01 -0700)]
Merge change 23646 into eclair

* changes:
  Immediately destroy BluetoothSocket's on close().

14 years agoAdd colorkey to gl clear operation
Rebecca Schultz Zavin [Wed, 2 Sep 2009 06:06:45 +0000 (23:06 -0700)]
Add colorkey to gl clear operation

Signed-off-by: Rebecca Schultz Zavin <rebecca@android.com>
14 years agoam d3db17d8: Merge snapshot version of donut back into the main tree
Jean-Baptiste Queru [Wed, 2 Sep 2009 22:35:10 +0000 (15:35 -0700)]
am d3db17d8: Merge snapshot version of donut back into the main tree

Merge commit 'd3db17d8e8563c1629bc705ecded54a405d84b7e' into eclair

* commit 'd3db17d8e8563c1629bc705ecded54a405d84b7e':
  donut snapshot

14 years agoam e1b4437d: Revert "Fix content provider"
Dianne Hackborn [Wed, 2 Sep 2009 22:35:01 +0000 (15:35 -0700)]
am e1b4437d: Revert "Fix content provider"

Merge commit 'e1b4437dba7c33566af55d4e5d27d35729678684' into eclair

* commit 'e1b4437dba7c33566af55d4e5d27d35729678684':
  Revert "Fix content provider"

14 years agoMerge change 23510 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 22:29:26 +0000 (15:29 -0700)]
Merge change 23510 into eclair

* changes:
  SMS-to-email fix for messages from the web

14 years agoMerge change 23652 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 21:06:59 +0000 (14:06 -0700)]
Merge change 23652 into eclair

* changes:
  Read forward address from file for DRT, fallback to default address

14 years agoMerge snapshot version of donut back into the main tree
Jean-Baptiste Queru [Wed, 2 Sep 2009 20:42:05 +0000 (13:42 -0700)]
Merge snapshot version of donut back into the main tree

14 years agoMerge change 23669 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 20:33:43 +0000 (13:33 -0700)]
Merge change 23669 into eclair

* changes:
  Cleaner way to fix the -1 count problem (and removing an Eclipse warning along the way).

14 years agoMerge change 23667 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 20:15:52 +0000 (13:15 -0700)]
Merge change 23667 into eclair

* changes:
  Fix the -1 unread count bug.

14 years agoMerge change 23548 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 20:01:59 +0000 (13:01 -0700)]
Merge change 23548 into eclair

* changes:
  Fix some sign in errors.

14 years agoMerge change 23643 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 19:38:03 +0000 (12:38 -0700)]
Merge change 23643 into eclair

* changes:
  Don't crash when a user taps on a fast track trigger that isn't hooked up to a contact.

14 years agoMerge change 23323 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 19:37:56 +0000 (12:37 -0700)]
Merge change 23323 into eclair

* changes:
      For intent ACTION_PACKAGE_CHANGED, there could be a lot of broadcasts related to enabling/disabling     components by apps which could result in thrashing on the PackageManager. For apps that     do not want to be restarted when such a broadcast is sent, we can just aggregate these broadcasts and     handle them at one go.     Changes include:     New structure to hold pending broadcasts by class name. If a component is enabled or disabled frequently     aggregate component enabled/disabled settings in this structure in a 10 second window and then     send out the accumulated list of broadcasts to the ActivityManager.     A new Handler implementation handles this message     Add new attribute name EXTRA_CHANGED_COMPONENT_NAME in broadcast intent Intent.ACTION_PACKAGE_CHANGED for     additional information for apps like Launcher.     Rename a couple of parameters, the names were too jarring.

14 years agoMerge change 23529 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 18:17:18 +0000 (11:17 -0700)]
Merge change 23529 into eclair

* changes:
  Make it an error to use a bare apostrophe in aapt, and adjust warnings/errors.

14 years agoMerge change 23632 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 17:05:45 +0000 (10:05 -0700)]
Merge change 23632 into eclair

* changes:
  Increase buffer allocated to receive HTTP response, YouTube is rather verbose...

14 years agoMerge change 23631 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 16:41:14 +0000 (09:41 -0700)]
Merge change 23631 into eclair

* changes:
  Add APANIC kernel logging to CheckinService. we keep book and only read a particular file once and send it to the server.

14 years agoMerge change 23539 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 16:22:49 +0000 (09:22 -0700)]
Merge change 23539 into eclair

* changes:
  Squashed commit of the following:

14 years agoMerge change 23527 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 15:38:32 +0000 (08:38 -0700)]
Merge change 23527 into eclair

* changes:
  Adding a convenience method to resolve contact lookup URI to a regular content URI

14 years agoMerge change 23609 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 07:07:09 +0000 (00:07 -0700)]
Merge change 23609 into eclair

* changes:
  Fix SDK build breakage.

14 years agoMerge change 23585 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 06:49:42 +0000 (23:49 -0700)]
Merge change 23585 into eclair

* changes:
  Print error message if the buffer size is too small.

14 years agoMerge change 23425 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 06:23:41 +0000 (23:23 -0700)]
Merge change 23425 into eclair

* changes:
  Store CA certificate chain into one single key entry with PEM format.

14 years agoMerge change 23582 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 04:00:59 +0000 (21:00 -0700)]
Merge change 23582 into eclair

* changes:
  Expand apps' control over the settings restore process

14 years agoMerge change 23583 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 03:42:19 +0000 (20:42 -0700)]
Merge change 23583 into eclair

* changes:
  Update fountain to use structures.

14 years agoSimple app to create a gl2 context and dump the strings.
Jason Sams [Wed, 2 Sep 2009 03:41:05 +0000 (20:41 -0700)]
Simple app to create a gl2 context and dump the strings.

14 years agoMerge change 23463 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 02:19:47 +0000 (19:19 -0700)]
Merge change 23463 into eclair

* changes:
  Wait for HCI to come up if getting the adapter path fails.

14 years agoam c804efe2: Merge change 23569 into donut
Dianne Hackborn [Wed, 2 Sep 2009 02:18:18 +0000 (19:18 -0700)]
am c804efe2: Merge change 23569 into donut

Merge commit 'c804efe278fa33555e6e836504a467cb14505eb3' into eclair

* commit 'c804efe278fa33555e6e836504a467cb14505eb3':
  Update 4.xml to the most recent APIs.

14 years agoMerge change 23569 into donut
Android (Google) Code Review [Wed, 2 Sep 2009 02:15:59 +0000 (19:15 -0700)]
Merge change 23569 into donut

* changes:
  Update 4.xml to the most recent APIs.

14 years agoam 6a98f8d9: Merge change 23499 into donut
Dianne Hackborn [Wed, 2 Sep 2009 02:11:44 +0000 (19:11 -0700)]
am 6a98f8d9: Merge change 23499 into donut

Merge commit '6a98f8d93e4ddd407baad8d9b7481a892001d281' into eclair

* commit '6a98f8d93e4ddd407baad8d9b7481a892001d281':
  Fix content provider

14 years agoMerge change 23499 into donut
Android (Google) Code Review [Wed, 2 Sep 2009 02:09:24 +0000 (19:09 -0700)]
Merge change 23499 into donut

* changes:
  Fix content provider

14 years agoam dc516413: Merge change 23503 into donut
Scott Main [Wed, 2 Sep 2009 02:07:10 +0000 (19:07 -0700)]
am dc516413: Merge change 23503 into donut

Merge commit 'dc5164134c507f747f1cf89c01e4fb5e724eccd4' into eclair

* commit 'dc5164134c507f747f1cf89c01e4fb5e724eccd4':
  docs only.

14 years agoMerge change 23503 into donut
Android (Google) Code Review [Wed, 2 Sep 2009 02:04:15 +0000 (19:04 -0700)]
Merge change 23503 into donut

* changes:
  docs only. expand the uses-feature docs

14 years agoam 4e60d012: docs only. add syntax samples for all attributes and revise targetSdkVer...
Scott Main [Wed, 2 Sep 2009 01:48:34 +0000 (18:48 -0700)]
am 4e60d012: docs only. add syntax samples for all attributes and revise targetSdkVersion information.

Merge commit '4e60d012c95f50ddd2a1ba6202e4fec3c9cfd3df' into eclair

* commit '4e60d012c95f50ddd2a1ba6202e4fec3c9cfd3df':
  docs only.

14 years agoMerge change 23376 into eclair
Android (Google) Code Review [Wed, 2 Sep 2009 00:38:25 +0000 (17:38 -0700)]
Merge change 23376 into eclair

* changes:
  - don't schedule syncs that we will never dispatch - expedite the INITIALIZATION sync

14 years agoMerge change 23542 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 23:19:14 +0000 (16:19 -0700)]
Merge change 23542 into eclair

* changes:
  Modify the gain after filtering to prevent TTS clipping in en-US.

14 years agoMerge change 23506 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 22:40:28 +0000 (15:40 -0700)]
Merge change 23506 into eclair

* changes:
  dumpstate: Add support for apanic crash data

14 years agoMake it an error to use a bare apostrophe in aapt, and adjust warnings/errors.
Eric Fischer [Tue, 1 Sep 2009 22:20:30 +0000 (15:20 -0700)]
Make it an error to use a bare apostrophe in aapt, and adjust warnings/errors.

In practice, no one ever writes an apostrophe in an aapt string with the
intent of using it to quote whitespace -- they always mean to include a
literal apostrophe in the string and then are surprised when they find
the apostrophe missing.  Make this an error so that it is discovered
right away instead of waiting until late in QA or after the strings have
already been sent for translation.  (And fix a recently-introduced string
that has exactly this problem.)

Silence the warning about an empty span in a string, since this seems to
annoy people instead of finding any real problems.

Make the error about having a translated string with no base string into
a warning, since this is a big pain when making changes to an application
that has already had some translations done, and the dead translations
should be removed by a later translation import anyway.

14 years agoMerge change 23462 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 21:10:06 +0000 (14:10 -0700)]
Merge change 23462 into eclair

* changes:
  Add Bluetooth Device trust

14 years agoMerge change 23461 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 20:09:25 +0000 (13:09 -0700)]
Merge change 23461 into eclair

* changes:
  Mimetypes in ContactsProvider2 shouldn't overlap with those in ContactsProvider

14 years agoMerge change 23474 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 20:03:58 +0000 (13:03 -0700)]
Merge change 23474 into eclair

* changes:
  Breaking sleep after yield into small quanta.

14 years agoMerge change 23403 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 19:31:31 +0000 (12:31 -0700)]
Merge change 23403 into eclair

* changes:
  Various infrastructure to support a running services UI.

14 years agoMerge change 23469 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 19:03:39 +0000 (12:03 -0700)]
Merge change 23469 into eclair

* changes:
  Set a default dump type for DRT as a workaround for indeterministic order in receiving dumpAsText and onPageFinish callback.

14 years agoMerge change 23464 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 18:49:45 +0000 (11:49 -0700)]
Merge change 23464 into eclair

* changes:
  Create new hdpi versions of 1x data statusbar icons.

14 years agoam 56205fea: Merge change 23345 into donut
Eric Fischer [Tue, 1 Sep 2009 18:18:43 +0000 (11:18 -0700)]
am 56205fea: Merge change 23345 into donut

Merge commit '56205fea879543a50bb797016832416a8b48cabb' into eclair

* commit '56205fea879543a50bb797016832416a8b48cabb':
  Fix an emoji-measuring bug that caused an exception when editing a contact.

14 years agoMerge change 23345 into donut
Android (Google) Code Review [Tue, 1 Sep 2009 18:16:25 +0000 (11:16 -0700)]
Merge change 23345 into donut

* changes:
  Fix an emoji-measuring bug that caused an exception when editing a contact.

14 years agoMerge change 23105 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 18:14:00 +0000 (11:14 -0700)]
Merge change 23105 into eclair

* changes:
  Fix issue 2077333: The volume key will effect both ring and media vol at the same time.

14 years agoMerge change 23450 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 17:24:38 +0000 (10:24 -0700)]
Merge change 23450 into eclair

* changes:
  At leaset log the layout test timeouts

14 years agoMerge change 23439 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 17:14:10 +0000 (10:14 -0700)]
Merge change 23439 into eclair

* changes:
  if exception getMessage() is null, don't add it to the error

14 years agoMerge change 23438 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 16:57:53 +0000 (09:57 -0700)]
Merge change 23438 into eclair

* changes:
  Fix issue 2091594: music chirp after disconnecting A2DP.

14 years agoMerge change 23395 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 16:15:45 +0000 (09:15 -0700)]
Merge change 23395 into eclair

* changes:
  When we get 304 and switch to cacheLoader, need to set mFromCache to be true. So that the cache loading will not create a new mCacheResult which overwrites the old cache data.

14 years agoMerge change 23434 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 14:20:18 +0000 (07:20 -0700)]
Merge change 23434 into eclair

* changes:
  Fix a docs comment to match the parameter name.

14 years agoFix issue 2091594: music chirp after disconnecting A2DP.
Eric Laurent [Tue, 1 Sep 2009 12:56:26 +0000 (05:56 -0700)]
Fix issue 2091594: music chirp after disconnecting A2DP.

In AudioFlinger::MixerThread::putTracks(), change the mFillingUpStatus flag to FS_FILLING for active tracks so that mute request is executed without ramping volume down when the track is moved from A2DP to hardware output.
Also modified AudioFlinger::setStreamOutput() so that the notification of the change is sent only once to AudioSystem.

14 years agoMerge change 23427 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 12:23:26 +0000 (05:23 -0700)]
Merge change 23427 into eclair

* changes:
  Moves GoogleLocationSettingManager to its correct location.

14 years agoMerge changes 23429,23430 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 12:01:26 +0000 (05:01 -0700)]
Merge changes 23429,23430 into eclair

* changes:
  LocationManagerService: Remove caching of last known locations to flash.
  LocationManagerService: Add null pointer check and remove useless finalize() method.

14 years agoMerge change 22886 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 05:39:22 +0000 (22:39 -0700)]
Merge change 22886 into eclair

* changes:
  Move SMS pdu creation fully into the central Phone process.

14 years agoMerge change 23402 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 05:33:41 +0000 (22:33 -0700)]
Merge change 23402 into eclair

* changes:
  Fix 2081525: NPE in MediaScannerService.

14 years agoMerge change 23406 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 05:04:09 +0000 (22:04 -0700)]
Merge change 23406 into eclair

* changes:
  allow a longer timeout for layout tests, see if it stabilizes pass/fail numbers

14 years agoMerge change 23271 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 02:45:05 +0000 (19:45 -0700)]
Merge change 23271 into eclair

* changes:
  Cleanup egregious style issues.

14 years agoMerge change 22551 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 02:39:40 +0000 (19:39 -0700)]
Merge change 22551 into eclair

* changes:
  Fix broken unit test.

14 years agoam 5126d3a3: docs only. revise samples link for offline docs to point to the current...
Scott Main [Tue, 1 Sep 2009 02:00:45 +0000 (19:00 -0700)]
am 5126d3a3: docs only. revise samples link for offline docs to point to the current version

Merge commit '5126d3a3794c8c5e1e61621daa5e9dab050b44a1' into eclair

* commit '5126d3a3794c8c5e1e61621daa5e9dab050b44a1':
  docs only.

14 years agoMerge change 23375 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 01:51:04 +0000 (18:51 -0700)]
Merge change 23375 into eclair

* changes:
  re-enable cancelation of the sync thread upon receipt of ISyncAdapter.cancelSync()

14 years agoMerge change 23363 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 01:13:24 +0000 (18:13 -0700)]
Merge change 23363 into eclair

* changes:
  Add error output to pm for FAILED_MISSING_FEATURE

14 years agoMerge change 23381 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 00:46:47 +0000 (17:46 -0700)]
Merge change 23381 into eclair

* changes:
  Prevent ListView from scrolling/flinging its content when the content fits on screen.

14 years agoMerge change 23380 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 00:45:03 +0000 (17:45 -0700)]
Merge change 23380 into eclair

* changes:
  Change util_texSubImage2D to call glCompressedTexImage2D correctly.

14 years agoMerge change 23370 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 00:24:17 +0000 (17:24 -0700)]
Merge change 23370 into eclair

* changes:
  Revert "- don't schedule syncs that we will never dispatch"

14 years agoMerge change 23329 into eclair
Android (Google) Code Review [Tue, 1 Sep 2009 00:15:42 +0000 (17:15 -0700)]
Merge change 23329 into eclair

* changes:
  Load bitmap resources entirely from native code.

14 years agoMerge change 23218 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 23:52:38 +0000 (16:52 -0700)]
Merge change 23218 into eclair

* changes:
  Fix property being cleared when DeviceFound signal is received.

14 years agoMerge change 23356 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 23:44:46 +0000 (16:44 -0700)]
Merge change 23356 into eclair

* changes:
  Temporarily unlock our mutex while fetching a buffer from the upstream source.

14 years agoMerge change 23357 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 23:33:10 +0000 (16:33 -0700)]
Merge change 23357 into eclair

* changes:
  Fix double-free problem in EmojiFactory.

14 years agoMerge change 23338 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 22:39:07 +0000 (15:39 -0700)]
Merge change 23338 into eclair

* changes:
  Clean TTS logs: use a common TAG in the TTS service, don't show an error when loading the native synth lib.

14 years agoMerge change 23341 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 22:18:44 +0000 (15:18 -0700)]
Merge change 23341 into eclair

* changes:
  Fix replacement-after-add of resource files in overlay.

14 years agoMerge change 23344 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 22:18:43 +0000 (15:18 -0700)]
Merge change 23344 into eclair

* changes:
  Make vCard composer handle null of Photo entry correctly.

14 years agoMerge change 23343 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 22:18:28 +0000 (15:18 -0700)]
Merge change 23343 into eclair

* changes:
  Use Email.TYPE_MOBILE

14 years agoMerge change 23066 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 22:03:32 +0000 (15:03 -0700)]
Merge change 23066 into eclair

* changes:
  - don't schedule syncs that we will never dispatch - expedite the INITIALIZATION sync

14 years agoam 728157b4: Merge change 23242 into donut
Scott Main [Mon, 31 Aug 2009 22:02:35 +0000 (15:02 -0700)]
am 728157b4: Merge change 23242 into donut

Merge commit '728157b4af937bc34706b71c21e9d804ca83039d' into eclair

* commit '728157b4af937bc34706b71c21e9d804ca83039d':
  docs only.

14 years agoMerge change 23242 into donut
Android (Google) Code Review [Mon, 31 Aug 2009 22:00:36 +0000 (15:00 -0700)]
Merge change 23242 into donut

* changes:
  docs only. add uses-feature "name" attribute

14 years agoMerge change 23335 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 21:44:03 +0000 (14:44 -0700)]
Merge change 23335 into eclair

* changes:
  Set RFCOMM SO_SNDBUF size to 70 KB for large RFCOMM writes.

14 years agoMerge change 23300 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 21:12:53 +0000 (14:12 -0700)]
Merge change 23300 into eclair

* changes:
  Add a synchronous stop method to TTS synth engine so that upon its destruction, if it was synthesing to a file, the latter can be deleted without still being written to. Clear the hashmap of SpeechItem to be stopped (mKillList) when the speech queue is empty.

14 years agoMerge change 23320 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 20:54:11 +0000 (13:54 -0700)]
Merge change 23320 into eclair

* changes:
  Set result code in REMOTE_INTENT receiver for subscribed feeds.

14 years agoMerge change 22995 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 19:07:07 +0000 (12:07 -0700)]
Merge change 22995 into eclair

* changes:
   modified:   res/layout/surface_view.xml  modified:   src/com/android/mediaframeworktest/MediaFrameworkTest.java  modified:   src/com/android/mediaframeworktest/functional/MediaPlayerApiTest.java         Fixed the async mp3 playback test case and also switch the base activity to full screen.

14 years agoMerge change 23289 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 17:07:10 +0000 (10:07 -0700)]
Merge change 23289 into eclair

* changes:
  Fix http://b/issue?id=2086835 (unlock pattern graphics misaligned).

14 years agoMerge change 23277 into eclair
Android (Google) Code Review [Mon, 31 Aug 2009 16:38:56 +0000 (09:38 -0700)]
Merge change 23277 into eclair

* changes:
  Fix issue 2085690: AudioFlinger must properly terminate the input and output threads when destroyed.