OSDN Git Service

android-x86/frameworks-native.git
15 years agoIssue an error when VPN connection is lost.
Hung-ying Tyan [Mon, 3 Aug 2009 08:22:24 +0000 (16:22 +0800)]
Issue an error when VPN connection is lost.

+ Add new error code CONNECTION_LOST to VpnManager.
+ Make VpnService call onError() instead of onDisconnect() when
connection is lost.
+ Make VpnService broadcast CONNECTION_LOST when that happens.

15 years agoMerge change 9438 into donut
Android (Google) Code Review [Sat, 1 Aug 2009 03:15:15 +0000 (20:15 -0700)]
Merge change 9438 into donut

* changes:
  Change some log.i to log.d.

15 years agoChange some log.i to log.d.
Hung-ying Tyan [Sat, 1 Aug 2009 02:11:46 +0000 (10:11 +0800)]
Change some log.i to log.d.

15 years agoMerge snapshot variant of donut back into the tree
Jean-Baptiste Queru [Sat, 1 Aug 2009 00:43:55 +0000 (17:43 -0700)]
Merge snapshot variant of donut back into the tree

15 years agodonut snapshot
Jean-Baptiste Queru [Sat, 1 Aug 2009 00:38:20 +0000 (17:38 -0700)]
donut snapshot

15 years agoMerge change 9340 into donut
Android (Google) Code Review [Fri, 31 Jul 2009 15:50:45 +0000 (08:50 -0700)]
Merge change 9340 into donut

* changes:
  Fix issue 2025872: Deadlock in SoundPool.stop

15 years agoMerge change 9285 into donut
Android (Google) Code Review [Fri, 31 Jul 2009 14:11:25 +0000 (07:11 -0700)]
Merge change 9285 into donut

* changes:
  Clear singleton reference during JetPlayer.release()

15 years agoMerge change 9124 into donut
Android (Google) Code Review [Fri, 31 Jul 2009 02:53:47 +0000 (19:53 -0700)]
Merge change 9124 into donut

* changes:
  Fix a bug in ImageView: The drawing matrix is not updated when setImageMatrix is called.

15 years agoMerge change 9265 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 23:18:21 +0000 (16:18 -0700)]
Merge change 9265 into donut

* changes:
  Highlight IMEI-reading as part of READ_PHONE_STATE description

15 years agoMerge change 9243 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 22:50:49 +0000 (15:50 -0700)]
Merge change 9243 into donut

* changes:
  Clean up RIL_SIM_* in RILConstants

15 years agoMerge change 9159 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 15:16:09 +0000 (08:16 -0700)]
Merge change 9159 into donut

* changes:
  check for null native objects, which never happens on a real subclass (we throw in that case) but can happen because we allow the callers to create the base class from java.

15 years agoMerge change 9147 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 13:06:09 +0000 (06:06 -0700)]
Merge change 9147 into donut

* changes:
  Fix in-app search shortcut icons

15 years agoMerge change 9145 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 12:46:07 +0000 (05:46 -0700)]
Merge change 9145 into donut

* changes:
  Add the encryption option to PptpProfile parcel.

15 years agoAdd the encryption option to PptpProfile parcel.
Hung-ying Tyan [Thu, 30 Jul 2009 12:36:27 +0000 (20:36 +0800)]
Add the encryption option to PptpProfile parcel.

15 years agoMerge change 9114 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 11:46:00 +0000 (04:46 -0700)]
Merge change 9114 into donut

* changes:
  Add state saving mechanism to support proc restart

15 years agoAdd state saving mechanism to support proc restart
Hung-ying Tyan [Thu, 30 Jul 2009 06:02:48 +0000 (14:02 +0800)]
Add state saving mechanism to support proc restart

Also...
+ stop daemons before getting server IP;
+ remove setForeground();
+ add the DBG flag for Log.d calls.

PatchSet 3:
+ add CHALLENGE_ERROR and REMOTE_HUNG_UP to VpnManager
+ broadcast new error codes in VpnService
+ check local IP change instead of dns change
+ move removeStates() to VpnService.onFinalCleanUp()

PatchSet 7:
+ add encryption flag to PptpProfile
+ PptpService and MtpdHelper are revised accordingly

15 years agoAdd unit tests for netkeystore.
Chung-yih Wang [Thu, 30 Jul 2009 04:31:08 +0000 (12:31 +0800)]
Add unit tests for netkeystore.

+ some boundary checks.

15 years agoMerge change 9075 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 04:14:34 +0000 (21:14 -0700)]
Merge change 9075 into donut

* changes:
  Change the resource path for fwd locked apps when scanning the fwd locked install directory

15 years agoMerge change 9039 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 02:44:48 +0000 (19:44 -0700)]
Merge change 9039 into donut

* changes:
  Fix #2018814: System cannot correctly render assets with "wrap_content" attribute in QVGA

15 years agoFix #2018814: System cannot correctly render assets with "wrap_content" attribute...
Dianne Hackborn [Wed, 29 Jul 2009 22:41:19 +0000 (15:41 -0700)]
Fix #2018814: System cannot correctly render assets with "wrap_content" attribute in QVGA

It turns out we were not returning the density for anything retrieved from a
TypedArray...  which basically means any bitmap references from a layout or style...!!!

This is now fixed.

Also fiddle with the density compatibility mode to turn on smoothing in certain situations,
helping the look of things when they need to scale and we couldn't do the scaling at
load time.

15 years agoMerge change 9073 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 01:20:18 +0000 (18:20 -0700)]
Merge change 9073 into donut

* changes:
  Special-case search within the browser to not show the app icon to the left of the search field. Also, because this removes context about whether you're in browser search or global search, we make sure to clear any entered text if you jump out to global search from within browser search.

15 years agoMerge change 9071 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 01:09:28 +0000 (18:09 -0700)]
Merge change 9071 into donut

* changes:
  Fix issue #2018454: NullPointerException in ImageSpan constructor

15 years agoMerge change 9063 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 00:48:56 +0000 (17:48 -0700)]
Merge change 9063 into donut

* changes:
  Fixing bug #2023024 - there is an out of bounds exception that can happen if services are going away as the AccessibilityManagerService is trying to dispatch notifications to these services. Catching this exception and bailing because having this exception means that there are no more services around that need to get this notification.

15 years agoMerge change 8966 into donut
Android (Google) Code Review [Thu, 30 Jul 2009 00:16:13 +0000 (17:16 -0700)]
Merge change 8966 into donut

* changes:
  Add tests for android.net.vpn.

15 years agoMerge change 9035 into donut
Android (Google) Code Review [Wed, 29 Jul 2009 22:27:55 +0000 (15:27 -0700)]
Merge change 9035 into donut

* changes:
  Fix the TabWidget to display custom views for the tabs better when the tabs have different sizes.

15 years agoMerge change 9021 into donut
Android (Google) Code Review [Wed, 29 Jul 2009 21:52:11 +0000 (14:52 -0700)]
Merge change 9021 into donut

* changes:
  DO NOT MERGE - Fix CNAP-related NullPointerException

15 years agoMerge snapshot variant of donut back into the main tree
Jean-Baptiste Queru [Wed, 29 Jul 2009 21:30:25 +0000 (14:30 -0700)]
Merge snapshot variant of donut back into the main tree

15 years agodonut snapshot
Jean-Baptiste Queru [Wed, 29 Jul 2009 21:25:07 +0000 (14:25 -0700)]
donut snapshot

15 years agoMerge change 8860 into donut
Android (Google) Code Review [Wed, 29 Jul 2009 18:38:44 +0000 (11:38 -0700)]
Merge change 8860 into donut

* changes:
  Fix bug 2017664 Removed the TTS_ prefix in the TextToSpeech class to follow the standard naming convention. Moved the TTS-related intents from the Intent class to TextToSpeech and TextToSpeech.Engine. Renamed the TextToSpeech.Engine constants that are used as extras for the   ACTION_TTS_CHECK_TTS_DATA intent to prefix them with EXTRA_. Cleaned up the other TextToSpeech.Engine constant to remove superfluous mentions of   "TTS" in the name.

15 years agoMerge change 8962 into donut
Android (Google) Code Review [Wed, 29 Jul 2009 15:33:07 +0000 (08:33 -0700)]
Merge change 8962 into donut

* changes:
  Log uid and package name when launching intents from search

15 years agoMerge change 8208 into donut
Android (Google) Code Review [Wed, 29 Jul 2009 07:38:53 +0000 (00:38 -0700)]
Merge change 8208 into donut

* changes:
  Removing MD2

15 years agoMerge change 8911 into donut
Android (Google) Code Review [Wed, 29 Jul 2009 05:08:30 +0000 (22:08 -0700)]
Merge change 8911 into donut

* changes:
  Fix issue #1999179: search -> click result -> press home = search dialog is shown then hidden

15 years agoMerge change 8757 into donut
Android (Google) Code Review [Wed, 29 Jul 2009 01:34:33 +0000 (18:34 -0700)]
Merge change 8757 into donut

* changes:
  Support x509-user-cert mime type in browser.

15 years agoMerge change 8884 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 23:28:42 +0000 (16:28 -0700)]
Merge change 8884 into donut

* changes:
  DO NOT MERGE. Already in master. Fix calendar test.

15 years agoMerge change 8015 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 23:16:38 +0000 (16:16 -0700)]
Merge change 8015 into donut

* changes:
  Reset the mDpiX and mDpiY values when qemu.sf.lcd_density is defined.

15 years agoMerge change 8883 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 23:12:58 +0000 (16:12 -0700)]
Merge change 8883 into donut

* changes:
  fix [1973755] Surface.SURACE_FROZEN spelled SURACE_FROZEN

15 years agoReset the mDpiX and mDpiY values when qemu.sf.lcd_density is defined.
David 'Digit' Turner [Tue, 28 Jul 2009 22:38:58 +0000 (00:38 +0200)]
Reset the mDpiX and mDpiY values when qemu.sf.lcd_density is defined.

This will make android.view.Display return corresponding values for
the screen's DPI.

15 years agoMerge change 8877 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 22:34:25 +0000 (15:34 -0700)]
Merge change 8877 into donut

* changes:
  Remove warning in non-eng builds.

15 years agoMerge change 8832 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 21:18:00 +0000 (14:18 -0700)]
Merge change 8832 into donut

* changes:
  fix [1996214] Boot animation is occasionally messed up

15 years agoMerge change 8840 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 20:11:13 +0000 (13:11 -0700)]
Merge change 8840 into donut

* changes:
  Add padding to height of AutoCompleteTextView drop-down.

15 years agoMerge change 8752 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 19:36:49 +0000 (12:36 -0700)]
Merge change 8752 into donut

* changes:
  Updates from API review.

15 years agoMerge change 8836 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 19:28:06 +0000 (12:28 -0700)]
Merge change 8836 into donut

* changes:
  Add menu with search settings to search dialog.

15 years agoMerge change 8817 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 18:24:39 +0000 (11:24 -0700)]
Merge change 8817 into donut

* changes:
  fix [2017532] Partial Update leaves residual image.

15 years agoMerge change 8825 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 18:19:19 +0000 (11:19 -0700)]
Merge change 8825 into donut

* changes:
  Fixes 2017393. Correctly apply gravity in RelativeLayout.

15 years agofix [2017532] Partial Update leaves residual image.
Mathias Agopian [Tue, 28 Jul 2009 17:57:27 +0000 (10:57 -0700)]
fix [2017532] Partial Update leaves residual image.

15 years agoMerge change 8759 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 17:45:35 +0000 (10:45 -0700)]
Merge change 8759 into donut

* changes:
  Cancel search on BACK if IME is obscured.

15 years agoMerge change 8806 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 17:27:56 +0000 (10:27 -0700)]
Merge change 8806 into donut

* changes:
  Mark the the airplane mode internal strings as not translatable.

15 years agoMerge change 8728 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 17:18:47 +0000 (10:18 -0700)]
Merge change 8728 into donut

* changes:
  Fix resource code and version attributes Create a new package setting object for updated system apps rather than moving around the same setting. This updates the resource, code and version correctly. For updating system packages, disable the package first which removes the entry from internal structures, create a new package setting, add it to list of user id's then rest of installation steps, kill the process if needed via ActivityManager then add this setting if everything was successful. This also fixes issues with updating values prematurely.

15 years agoMerge change 8773 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 14:19:26 +0000 (07:19 -0700)]
Merge change 8773 into donut

* changes:
  Only dismiss search on suggestion click in in-app search

15 years agoMerge change 8740 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 05:15:35 +0000 (22:15 -0700)]
Merge change 8740 into donut

* changes:
  Fix issue #1991230: DisplayMetrics.displayHeight is not updated with orientation change

15 years agoMerge change 8620 into donut
Android (Google) Code Review [Tue, 28 Jul 2009 02:46:35 +0000 (19:46 -0700)]
Merge change 8620 into donut

* changes:
  Fix swapped gsm/cdma function dispatch, and 7bit text fragmentation.

15 years agoMerge change 8678 into donut
Android (Google) Code Review [Mon, 27 Jul 2009 22:08:03 +0000 (15:08 -0700)]
Merge change 8678 into donut

* changes:
  Fixing bug #2008185 - problem with the TTS dropping utterances under heavy load was caused by the speech queue being locked. Switched to using a timeout with tryLock so that the TTS service does not give up immediately.

15 years agoMerge change 8682 into donut
Android (Google) Code Review [Mon, 27 Jul 2009 21:31:33 +0000 (14:31 -0700)]
Merge change 8682 into donut

* changes:
  New small rating stars from the UI designers.

15 years agoMerge change 8677 into donut
Android (Google) Code Review [Mon, 27 Jul 2009 20:55:18 +0000 (13:55 -0700)]
Merge change 8677 into donut

* changes:
  DO NOT MERGE.

15 years agoMerge change 8616 into donut
Android (Google) Code Review [Mon, 27 Jul 2009 19:03:36 +0000 (12:03 -0700)]
Merge change 8616 into donut

* changes:
  Fiddle with default densities to try to sanitize the API.

15 years agoMerge change 8648 into donut
Android (Google) Code Review [Mon, 27 Jul 2009 17:49:07 +0000 (10:49 -0700)]
Merge change 8648 into donut

* changes:
  Use the old string for bookmarks permissions.

15 years agoMerge change 8612 into donut
Android (Google) Code Review [Mon, 27 Jul 2009 05:01:43 +0000 (22:01 -0700)]
Merge change 8612 into donut

* changes:
  Remove visibility checks from SearchManager tests

15 years agoMerge change 8564 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:52:01 +0000 (20:52 -0700)]
Merge change 8564 into donut

* changes:
  Merge doc change from cupcake: commit 'a8d035ccf319e1aed685a1e1509681350f737fd1' into manualmerge

15 years agoMerge change 8563 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:51:25 +0000 (20:51 -0700)]
Merge change 8563 into donut

* changes:
  Empty merge from cupcake: commit '77bab58fd1c21b0e3035dee411b4a938e6a824ce' into manualmerge

15 years agoMerge change 8562 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:50:47 +0000 (20:50 -0700)]
Merge change 8562 into donut

* changes:
  Empty merge from cupcake: commit '7cecaed3192a6503df0ddf4d81b3b620b7cd9635' into manualmerge

15 years agoMerge change 8561 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:50:17 +0000 (20:50 -0700)]
Merge change 8561 into donut

* changes:
  Empty merge from cupcake: commit '414f62c0cb7eceeb1cd24bf9e570688a00683f9c' into manualmerge

15 years agoMerge change 8560 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:49:41 +0000 (20:49 -0700)]
Merge change 8560 into donut

* changes:
  Merge doc changes from cupcake: commit '5ae517d9659e96e9525406ffbce18dcacc3294bc' into manualmerge

15 years agoMerge change 8559 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:49:01 +0000 (20:49 -0700)]
Merge change 8559 into donut

* changes:
  Empty merge from cupcake: commit 'ff339f0b966c5ca62867689a13ea713e6cb62a15'

15 years agoMerge change 8558 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:48:17 +0000 (20:48 -0700)]
Merge change 8558 into donut

* changes:
  Empty merge from cupcake: commit '79188bb2c9bac9fef1bc86b7f9f54324471ee53e'

15 years agoMerge change 8557 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:46:39 +0000 (20:46 -0700)]
Merge change 8557 into donut

* changes:
  Merge doc change from cupcake: commit '2c44586d118208bdddfc727165ebf235fe7c0051'

15 years agoMerge change 8556 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:45:56 +0000 (20:45 -0700)]
Merge change 8556 into donut

* changes:
  Empty merge from cupcake: commit '2e7e15f2da527f762f6eb56b974e758d83f12660'

15 years agoMerge change 8555 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:44:57 +0000 (20:44 -0700)]
Merge change 8555 into donut

* changes:
  Empty merge from cupcake:  commit '5a3a63f8b450a1902dd26809f18e35ef30befff3'

15 years agoMerge change 8554 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:44:21 +0000 (20:44 -0700)]
Merge change 8554 into donut

* changes:
  Empty merge from cupcake: commit 'b69bed1947d4c8835b861f7b68be756b6a8e80d3'

15 years agoMerge change 8553 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 03:43:20 +0000 (20:43 -0700)]
Merge change 8553 into donut

* changes:
  Merge doc changes from cupcake at commit '373271b94cbe01c337b4952d0d5764e200c69f48'

15 years agoMerge change 8565 into donut
Android (Google) Code Review [Sat, 25 Jul 2009 00:09:33 +0000 (17:09 -0700)]
Merge change 8565 into donut

* changes:
  Fixing bug 2003639 - this is a fix to prevent the AccessibilityManagerService from crashing if it gets an invalid accessibility event.

15 years agoMerge doc change from cupcake: commit 'a8d035ccf319e1aed685a1e1509681350f737fd1'...
Dirk Dougherty [Fri, 24 Jul 2009 22:34:57 +0000 (15:34 -0700)]
Merge doc change from cupcake: commit 'a8d035ccf319e1aed685a1e1509681350f737fd1' into manualmerge

15 years agoEmpty merge from cupcake: commit '77bab58fd1c21b0e3035dee411b4a938e6a824ce' into...
Dirk Dougherty [Fri, 24 Jul 2009 21:42:18 +0000 (14:42 -0700)]
Empty merge from cupcake: commit '77bab58fd1c21b0e3035dee411b4a938e6a824ce' into manualmerge

15 years agoEmpty merge from cupcake: commit '7cecaed3192a6503df0ddf4d81b3b620b7cd9635' into...
Dirk Dougherty [Fri, 24 Jul 2009 21:41:11 +0000 (14:41 -0700)]
Empty merge from cupcake: commit '7cecaed3192a6503df0ddf4d81b3b620b7cd9635' into manualmerge

15 years agoEmpty merge from cupcake: commit '414f62c0cb7eceeb1cd24bf9e570688a00683f9c' into...
Dirk Dougherty [Fri, 24 Jul 2009 21:39:55 +0000 (14:39 -0700)]
Empty merge from cupcake: commit '414f62c0cb7eceeb1cd24bf9e570688a00683f9c' into manualmerge

15 years agoMerge doc changes from cupcake: commit '5ae517d9659e96e9525406ffbce18dcacc3294bc...
Dirk Dougherty [Fri, 24 Jul 2009 19:58:01 +0000 (12:58 -0700)]
Merge doc changes from cupcake: commit '5ae517d9659e96e9525406ffbce18dcacc3294bc' into manualmerge

15 years agoEmpty merge from cupcake: commit 'ff339f0b966c5ca62867689a13ea713e6cb62a15'
Dirk Dougherty [Fri, 24 Jul 2009 19:56:59 +0000 (12:56 -0700)]
Empty merge from cupcake: commit 'ff339f0b966c5ca62867689a13ea713e6cb62a15'

15 years agoEmpty merge from cupcake: commit '79188bb2c9bac9fef1bc86b7f9f54324471ee53e'
Dirk Dougherty [Fri, 24 Jul 2009 19:55:49 +0000 (12:55 -0700)]
Empty merge from cupcake: commit '79188bb2c9bac9fef1bc86b7f9f54324471ee53e'

15 years agoMerge doc change from cupcake: commit '2c44586d118208bdddfc727165ebf235fe7c0051'
Dirk Dougherty [Fri, 24 Jul 2009 19:54:31 +0000 (12:54 -0700)]
Merge doc change from cupcake: commit '2c44586d118208bdddfc727165ebf235fe7c0051'

15 years agoEmpty merge from cupcake: commit '2e7e15f2da527f762f6eb56b974e758d83f12660'
Dirk Dougherty [Fri, 24 Jul 2009 19:52:58 +0000 (12:52 -0700)]
Empty merge from cupcake: commit '2e7e15f2da527f762f6eb56b974e758d83f12660'

15 years agoEmpty merge from cupcake: commit '5a3a63f8b450a1902dd26809f18e35ef30befff3'
Dirk Dougherty [Fri, 24 Jul 2009 19:51:46 +0000 (12:51 -0700)]
Empty merge from cupcake:  commit '5a3a63f8b450a1902dd26809f18e35ef30befff3'

15 years agoEmpty merge from cupcake: commit 'b69bed1947d4c8835b861f7b68be756b6a8e80d3'
Dirk Dougherty [Fri, 24 Jul 2009 19:49:53 +0000 (12:49 -0700)]
Empty merge from cupcake: commit 'b69bed1947d4c8835b861f7b68be756b6a8e80d3'

15 years agoMerge doc changes from cupcake at commit '373271b94cbe01c337b4952d0d5764e200c69f48'
Dirk Dougherty [Fri, 24 Jul 2009 19:25:15 +0000 (12:25 -0700)]
Merge doc changes from cupcake at commit '373271b94cbe01c337b4952d0d5764e200c69f48'

15 years agoMerge change 8475 into donut
Android (Google) Code Review [Fri, 24 Jul 2009 17:18:26 +0000 (10:18 -0700)]
Merge change 8475 into donut

* changes:
  Per conversation, remove the toast while saving the Certificates to CertTools.

15 years agoMerge change 8462 into donut
Android (Google) Code Review [Fri, 24 Jul 2009 17:00:05 +0000 (10:00 -0700)]
Merge change 8462 into donut

* changes:
  Make the DatePicker respect the date format setting if the date is numeric.

15 years agoAdd memcpy and strcpy boundary check.
Chung-yih Wang [Wed, 22 Jul 2009 23:23:24 +0000 (07:23 +0800)]
Add memcpy and strcpy boundary check.

15 years agoMerge change 8443 into donut
Android (Google) Code Review [Fri, 24 Jul 2009 00:38:24 +0000 (17:38 -0700)]
Merge change 8443 into donut

* changes:
  add some more defensiveness to SuggestionsAdapter to avoid system process crashes.

15 years agoMerge change 8323 into donut
Android (Google) Code Review [Thu, 23 Jul 2009 20:33:07 +0000 (13:33 -0700)]
Merge change 8323 into donut

* changes:
  * a best effort fix for apps that uses get/set Matrix API on canvas.   - scale the matrix   - but don't scale if the matrix *looks* like obtained from the canvas itself. (typically to set it back to original matrix)

15 years agoMerge change 8360 into donut
Android (Google) Code Review [Thu, 23 Jul 2009 18:12:19 +0000 (11:12 -0700)]
Merge change 8360 into donut

* changes:
  Remove failing test AutoCompleteTextViewCallbacks.testPopupNoSelection from medium continuus suite.

15 years agoMerge change 8263 into donut
Android (Google) Code Review [Thu, 23 Jul 2009 18:10:00 +0000 (11:10 -0700)]
Merge change 8263 into donut

* changes:
  Make the date formats as close as possible to what the translators wanted.

15 years agoMerge change 8291 into donut
Android (Google) Code Review [Thu, 23 Jul 2009 17:33:30 +0000 (10:33 -0700)]
Merge change 8291 into donut

* changes:
  Add gservices flag for configuring the URL vending redirects to when TOS is inaccessible due to no/bad network.

15 years agoMerge change 8338 into donut
Android (Google) Code Review [Thu, 23 Jul 2009 16:41:08 +0000 (09:41 -0700)]
Merge change 8338 into donut

* changes:
  Have the notification service only have notifications diabled until setup wizard has been run.

15 years agoMerge change 8336 into donut
Android (Google) Code Review [Thu, 23 Jul 2009 16:17:47 +0000 (09:17 -0700)]
Merge change 8336 into donut

* changes:
  Remove the silent ringtone. I didn't realize that the ringtone picker already has an option to show a "Silent" item at the top, and having a separate silent ringtone conflicts with that in apps that choose to show it.

15 years agoMerge change 8262 into donut
Android (Google) Code Review [Wed, 22 Jul 2009 23:47:18 +0000 (16:47 -0700)]
Merge change 8262 into donut

* changes:
  Implement the device ConfigurationInfo.reqGlEsVersion field.

15 years agoMerge change 8261 into donut
Android (Google) Code Review [Wed, 22 Jul 2009 23:13:45 +0000 (16:13 -0700)]
Merge change 8261 into donut

* changes:
  Remove recently-added android.opengl.Version API

15 years agoMerge change 8255 into donut
Android (Google) Code Review [Wed, 22 Jul 2009 23:13:40 +0000 (16:13 -0700)]
Merge change 8255 into donut

* changes:
  Add new hidden API setForceIgnoreOutsideTouch to AutoCompleteTextView for use by SearchDialog. SearchDialog wants to be able to say a dropdown should not always be visible but still let it ignore outside touch when it does show.

15 years agoMerge change 8235 into donut
Android (Google) Code Review [Wed, 22 Jul 2009 21:42:08 +0000 (14:42 -0700)]
Merge change 8235 into donut

* changes:
  * Revert the change that I introduced while refactroing in SurfaceView#dispatchTouchEvent * Don't scale back the event if the canvas is used in SurfaceView.

15 years agoMerge change 8228 into donut
Android (Google) Code Review [Wed, 22 Jul 2009 20:31:20 +0000 (13:31 -0700)]
Merge change 8228 into donut

* changes:
  Remove background padding workaround from SuggestionsAdapter

15 years agoMerge change 8227 into donut
Android (Google) Code Review [Wed, 22 Jul 2009 20:27:26 +0000 (13:27 -0700)]
Merge change 8227 into donut

* changes:
  Handle null in MatrixCursor.get*()

15 years agoMerge change 8220 into donut
Android (Google) Code Review [Wed, 22 Jul 2009 20:17:46 +0000 (13:17 -0700)]
Merge change 8220 into donut

* changes:
  Fix issue 1996218: Disable use of shared memory buffer by SoundPool.

15 years agoReconcile donut-release history into donut
Jean-Baptiste Queru [Wed, 22 Jul 2009 20:15:31 +0000 (13:15 -0700)]
Reconcile donut-release history into donut