OSDN Git Service

android-x86/frameworks-base.git
14 years agoFix issue 2139634: DTMF tones on Sholes popping, hissing (audio latency too high).
Eric Laurent [Tue, 6 Oct 2009 03:29:18 +0000 (20:29 -0700)]
Fix issue 2139634: DTMF tones on Sholes popping, hissing (audio latency too high).

This change is a complement to the main fix in kernel driver for the same issue (partner change #1250).
It removes clicks sometimes heard after the end of the tones while audio flinger is sending 0s to the audio output stream.
The problem was that the sleep time between two writes was more than the duration of one audio output stream buffer which could cause some underrun.

Also fixed a recent regression in ToneGenerator that made that the end of previous tone was repeated at the beginning of current one under certain timing circumstances when the maximum tone duration was specified.

14 years agoFix failing unit test; the test was using a deprecated API making it fail on WVGA...
Romain Guy [Wed, 7 Oct 2009 01:38:27 +0000 (18:38 -0700)]
Fix failing unit test; the test was using a deprecated API making it fail on WVGA devices.

Change-Id: I407c7baa5606aaee875f51d6e96ce8a0117fc375

14 years agotemporarily disable the use of glTexImage2D for sw buffers on sholes.
Mathias Agopian [Wed, 7 Oct 2009 00:59:43 +0000 (17:59 -0700)]
temporarily disable the use of glTexImage2D for sw buffers on sholes.

we're going to first cut a build without this change.

Approved by Dr. Hiroshi.

14 years agoMerge changes I430cf57b,I51f02f67,I464f13f3 into eclair
Android (Google) Code Review [Wed, 7 Oct 2009 00:46:37 +0000 (20:46 -0400)]
Merge changes I430cf57b,I51f02f67,I464f13f3 into eclair

* changes:
  fix [2168528] enable glTexImage2D code path in SF for software-only buffers
  fix [2168531] have software-only gralloc buffer side-step the HAL
  fix [2167050] glTexImage2D code path buggy in SurfaceFlinger

14 years agofix [2168528] enable glTexImage2D code path in SF for software-only buffers
Mathias Agopian [Tue, 6 Oct 2009 01:20:39 +0000 (18:20 -0700)]
fix [2168528] enable glTexImage2D code path in SF for software-only buffers

14 years agoMerge change I996db8da into eclair
Android (Google) Code Review [Wed, 7 Oct 2009 00:18:40 +0000 (20:18 -0400)]
Merge change I996db8da into eclair

* changes:
  Fix tls crash on startup if more than one RS contexts are created in one process.

14 years agoFix tls crash on startup if more than one RS contexts are created in one process.
Jason Sams [Wed, 7 Oct 2009 00:16:55 +0000 (17:16 -0700)]
Fix tls crash on startup if more than one RS contexts are created in one process.

14 years agofix [2168531] have software-only gralloc buffer side-step the HAL
Mathias Agopian [Tue, 6 Oct 2009 01:19:57 +0000 (18:19 -0700)]
fix [2168531] have software-only gralloc buffer side-step the HAL

14 years agofix [2167050] glTexImage2D code path buggy in SurfaceFlinger
Mathias Agopian [Tue, 6 Oct 2009 00:07:12 +0000 (17:07 -0700)]
fix [2167050] glTexImage2D code path buggy in SurfaceFlinger

When EGLImage extension is not available, SurfaceFlinger will fallback to using
glTexImage2D and glTexSubImage2D instead, which requires 50% more memory and an
extra copy. However this code path has never been exercised and had some bugs
which this patch fix.

Mainly the scale factor wasn't computed right when falling back on glDrawElements.
We also fallback to this mode of operation if a buffer doesn't have the adequate
usage bits for EGLImage usage.

This changes only code that is currently not executed. Some refactoring was needed to
keep the change clean. This doesn't change anything functionaly.

14 years agoMerge change I3d6cf8aa into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 22:34:40 +0000 (18:34 -0400)]
Merge change I3d6cf8aa into eclair

* changes:
  Fix for bug 2158794. Hide MediaPlayer.invoke() and MediaPlayer.newRequest(), and Fix bad links in ToneGenerator documentation.

14 years agolayout lib tests cleanup
Xavier Ducrohet [Tue, 6 Oct 2009 19:04:03 +0000 (12:04 -0700)]
layout lib tests cleanup

- Move test files to their own package for easy binary inclusion
  in adt-test
- fix some tests and remove obsolete ones.

Change-Id: I5b967f29074fdad74073f9b37d903eabe8dc29e6

14 years agoAdd a test to make sure the replaced classes in layoutlib are correct.
Xavier Ducrohet [Tue, 6 Oct 2009 16:58:08 +0000 (09:58 -0700)]
Add a test to make sure the replaced classes in layoutlib are correct.

Change-Id: I9641635153c12e2c0a23583f7d094767533fc683

14 years agoFix for bug 2158794. Hide MediaPlayer.invoke() and MediaPlayer.newRequest(), and...
gwang@google.com [Fri, 2 Oct 2009 23:54:15 +0000 (16:54 -0700)]
Fix for bug 2158794. Hide MediaPlayer.invoke() and MediaPlayer.newRequest(), and Fix bad links in ToneGenerator documentation.

14 years agoMerge change Id8df149c into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 21:38:03 +0000 (17:38 -0400)]
Merge change Id8df149c into eclair

* changes:
  Turn some logging back on in ConnectionManager

14 years agoMerge change If933b13d into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 21:34:17 +0000 (17:34 -0400)]
Merge change If933b13d into eclair

* changes:
  Fix for 2161835: Tweaks to rotary lock screen:

14 years agoMerge change I516c3191 into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 21:32:13 +0000 (17:32 -0400)]
Merge change I516c3191 into eclair

* changes:
  Implement data push from scripts.  Fixes the problem where apps would have to poll to monitor a scripts state. Fix bug in StoreState where state could be overridden by the default unless the script used more than one state.

14 years agoTurn some logging back on in ConnectionManager
Robert Greenwalt [Tue, 6 Oct 2009 21:12:53 +0000 (14:12 -0700)]
Turn some logging back on in ConnectionManager

Trimmed a bunch of logging out, but turned it on so we get the critical stuff.

bug: 2168291

14 years agoImplement data push from scripts. Fixes the problem where apps would have to poll...
Jason Sams [Tue, 6 Oct 2009 20:58:47 +0000 (13:58 -0700)]
Implement data push from scripts.  Fixes the problem where apps would have to poll to monitor a scripts state.
Fix bug in StoreState where state could be overridden by the default unless the script used more than one state.

Change only impacts renderscript and renderscript apps.

14 years agoMerge change I547cff66 into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 20:32:44 +0000 (16:32 -0400)]
Merge change I547cff66 into eclair

* changes:
  Add zoom functions and sendCommand.

14 years agoAdd zoom functions and sendCommand.
Wu-cheng Li [Mon, 28 Sep 2009 23:14:58 +0000 (16:14 -0700)]
Add zoom functions and sendCommand.

b2060030

14 years agofix build breakage
Fred Quintana [Tue, 6 Oct 2009 20:21:23 +0000 (13:21 -0700)]
fix build breakage

14 years agoFix for 2161835: Tweaks to rotary lock screen:
Jim Miller [Mon, 5 Oct 2009 20:00:58 +0000 (13:00 -0700)]
Fix for 2161835: Tweaks to rotary lock screen:

- Make inactive dimples dim.
- When an item is grabbed, make all other dimples dim.

14 years ago- hide Entity and all its references
Fred Quintana [Mon, 5 Oct 2009 21:21:12 +0000 (14:21 -0700)]
- hide Entity and all its references
- remove updateEntity and insertEntity, since they are not
  used
- add the RawContacts.Entity class, which is used in lieu of the
  android.content.Entity

14 years agoMerge change I5be3d603 into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 18:36:43 +0000 (14:36 -0400)]
Merge change I5be3d603 into eclair

* changes:
      Make sdk version and code names static finals in PackageParser.     Remove api to set these values.     Remove an unused method in AppSecurityPermissions

14 years agoMerge change I6a0b14bd into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 17:48:11 +0000 (13:48 -0400)]
Merge change I6a0b14bd into eclair

* changes:
  Make VCardComposer create the instance for mHandlerList.

14 years ago Make sdk version and code names static finals in PackageParser.
Suchi Amalapurapu [Tue, 6 Oct 2009 16:26:09 +0000 (09:26 -0700)]
Make sdk version and code names static finals in PackageParser.
    Remove api to set these values.
    Remove an unused method in AppSecurityPermissions

14 years agoMerge change I8333dcc4 into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 17:14:45 +0000 (13:14 -0400)]
Merge change I8333dcc4 into eclair

* changes:
  New section header and divider assets.

14 years agoMerge change I76d7ba61 into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 16:49:51 +0000 (12:49 -0400)]
Merge change I76d7ba61 into eclair

* changes:
  Pixel tweak search dialog to match search widget

14 years agoMerge change I24895c35 into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 16:49:01 +0000 (12:49 -0400)]
Merge change I24895c35 into eclair

* changes:
  Reimplement all the method of Paint for layoutlib

14 years agoMake VCardComposer create the instance for mHandlerList.
Daisuke Miyakawa [Tue, 6 Oct 2009 16:25:52 +0000 (09:25 -0700)]
Make VCardComposer create the instance for mHandlerList.

Previously the creation was delayed until addHandler(), which
had been required to be called.

However, after VCardComoser's support toward PBAP stuffs,
the guarantee was not true any more.

So by creating the instance in constructor, we refrain NPE during
finalize() when PBAP uses VCardComposer.

14 years agoMusic visualizer support hack.
Marco Nelissen [Sun, 20 Sep 2009 17:42:13 +0000 (10:42 -0700)]
Music visualizer support hack.
This currently assumes 44k stereo (won't crash on other formats, but won't give the correct results either), and links statically with libspeex to get FFT data, increasing the size of libmedia by about 45kb.

14 years agoNew section header and divider assets.
Evan Millar [Mon, 5 Oct 2009 23:07:15 +0000 (16:07 -0700)]
New section header and divider assets.

triaged bug http://b/issue?id=2153296

Tim Sullivan gave Dr. No approval.

Change-Id: I8333dcc4645529a03805aa76e32a3e9b90be58a7

14 years agoFix docs builds.
Nick Pelly [Tue, 6 Oct 2009 14:10:02 +0000 (16:10 +0200)]
Fix docs builds.

14 years agoProvide an API for apps to use a dynamic RFCOMM channel and SDP record.
Nick Pelly [Sat, 3 Oct 2009 03:34:18 +0000 (20:34 -0700)]
Provide an API for apps to use a dynamic RFCOMM channel and SDP record.

Hide listenUsingRfcommOn(int channel)
Add listenUsingRfcomm(String name, ParcelUuid uuid)

The new API automatically finds a free RFCOMM channel and registers an SDP
record with the given uuid and name. The SDP record is automatically
removed when the socket is closed, or if the application dies.

Apps are prevented from registering SDP records with the uuid of system
Bluetooth profiles, such as A2DP, HFP and OPP.

Apps are prevented from removing SDP records that they did not create. This is
tracked by pid.

TODO: Provide an API for the connecting app to look up an SDP record.

Bug: 2158900
DrNo: eastham
Joke: "What did the dog say to the tree? bark."
Change-Id: Ia92f51c34615a7270a403255ad2b8faa98c4a3f5

14 years agoPixel tweak search dialog to match search widget
Bjorn Bringert [Tue, 6 Oct 2009 09:11:27 +0000 (10:11 +0100)]
Pixel tweak search dialog to match search widget

- Remove one pixel of margin from the left of the voice
  search button icon.
- Move magnifying glass icon one pixel downwards (= remove
  one pixel of padding at the bottom and add one at the top).
- Remove one pixel of margin from the bottom of the button
  backgrounds.
- Remove one pixel of padding from the left of the
  search button background.
- Remove one pixel of padding from the left and add one to
  the right of the voice search button background.

Fixes http://b/issue?id=2160857
"Pixel tweak search layouts to match widget"

Change-Id: I76d7ba6128f13f3d29b03a89e9862df355874e06

14 years agoMerge change I5b650a61 into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 04:09:07 +0000 (00:09 -0400)]
Merge change I5b650a61 into eclair

* changes:
  dumpstate: Emit a logcat message at beginning and end of execution.

14 years agodumpstate: Emit a logcat message at beginning and end of execution.
Mike Lockwood [Tue, 6 Oct 2009 03:23:40 +0000 (23:23 -0400)]
dumpstate: Emit a logcat message at beginning and end of execution.

Since the logcat is not printed until later in the output, this will
make it easier to determine at what point the user pressed the key sequence
to initiate the bugreport, which can be helpful when debugging timing dependent problems.

b/2164183

Change-Id: I5b650a6163c383183ff28e344dac36fab11a2c7b
Signed-off-by: Mike Lockwood <lockwood@android.com>
14 years agoMerge change I61aac7b3 into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 02:19:46 +0000 (22:19 -0400)]
Merge change I61aac7b3 into eclair

* changes:
  Add PERIOD char to CDMA address sugar list.

14 years agoReimplement all the method of Paint for layoutlib
Xavier Ducrohet [Tue, 6 Oct 2009 01:49:08 +0000 (18:49 -0700)]
Reimplement all the method of Paint for layoutlib

There were a few missing methods that should have been reimplmented
(because they were native).

Others have been added just to be sure so that we can test whether methods
are missing or not (test coming soon).

Change-Id: I24895c353e38545e9b1abe28d41224fdc78cadb1

14 years agoMerge change I4db3a5b3 into eclair
Android (Google) Code Review [Tue, 6 Oct 2009 00:22:27 +0000 (20:22 -0400)]
Merge change I4db3a5b3 into eclair

* changes:
  fix a javadoc build breakage

14 years agofix a javadoc build breakage
Fred Quintana [Tue, 6 Oct 2009 00:19:03 +0000 (17:19 -0700)]
fix a javadoc build breakage

14 years agoMerge change I34f51342 into eclair
Android (Google) Code Review [Mon, 5 Oct 2009 22:58:36 +0000 (18:58 -0400)]
Merge change I34f51342 into eclair

* changes:
  Fix the layoutlib test to run from adt-tests.

14 years agoFix issue #2166755: BroadcastReceiver trying to return result during a non-ordered...
Dianne Hackborn [Mon, 5 Oct 2009 20:58:17 +0000 (13:58 -0700)]
Fix issue #2166755: BroadcastReceiver trying to return result during a non-ordered broadcast

Tell the broadcast receiver whether it is getting an initial sticky value,
so it will be quiet about attempts to do ordered broadcast stuff.

Note that the original bug being reported was not actually a crash, just
an error log.  So all we are doing here is making the log quieter.

Change-Id: Iaf1b718d82093ec1197142410a64feff47eb3859

14 years agoMerge change I8874a405 into eclair
Android (Google) Code Review [Mon, 5 Oct 2009 22:37:36 +0000 (18:37 -0400)]
Merge change I8874a405 into eclair

* changes:
  Refactor class/method names used by layoutlib_create.

14 years agoFix the layoutlib test to run from adt-tests.
Xavier Ducrohet [Mon, 5 Oct 2009 22:28:33 +0000 (15:28 -0700)]
Fix the layoutlib test to run from adt-tests.

Change-Id: I34f513429593dce9f781ed8a08c4664a5d6f9aa8

14 years agoMerge change I9b771df3 into eclair
Android (Google) Code Review [Mon, 5 Oct 2009 22:28:26 +0000 (18:28 -0400)]
Merge change I9b771df3 into eclair

* changes:
  Make sure AsyncTask sens a null result to onPostExecute() when cancelled.

14 years agoMake sure AsyncTask sens a null result to onPostExecute() when cancelled.
Romain Guy [Mon, 5 Oct 2009 21:48:04 +0000 (14:48 -0700)]
Make sure AsyncTask sens a null result to onPostExecute() when cancelled.

This is in accordance to the documentation. This bug was approved by hackbod.
The change is safe and is a single line of code.

Change-Id: I9b771df3ae2aa4f496d15e6c43b677f3245539ac

14 years agoMerge change I89c40f50 into eclair
Android (Google) Code Review [Mon, 5 Oct 2009 21:23:13 +0000 (17:23 -0400)]
Merge change I89c40f50 into eclair

* changes:
  fix a javadoc build breakage

14 years agofix a javadoc build breakage
Fred Quintana [Mon, 5 Oct 2009 21:21:53 +0000 (14:21 -0700)]
fix a javadoc build breakage

14 years agoRefactor class/method names used by layoutlib_create.
Xavier Ducrohet [Mon, 5 Oct 2009 21:12:04 +0000 (14:12 -0700)]
Refactor class/method names used by layoutlib_create.

Information about classes and methods that are replaced, renamed, removed
into CreateInfo, so that it can be used by the tests.

Change-Id: I8874a40503249416621aa90b2ca02dcaf30ecd57

14 years agoMerge change I8d48149c into eclair
Android (Google) Code Review [Mon, 5 Oct 2009 20:15:14 +0000 (16:15 -0400)]
Merge change I8d48149c into eclair

* changes:
  Don't reinflate search bar when dialog is already showing

14 years agoDon't reinflate search bar when dialog is already showing
Bjorn Bringert [Mon, 5 Oct 2009 20:00:53 +0000 (21:00 +0100)]
Don't reinflate search bar when dialog is already showing

Change https://android-git.corp.google.com/g/27729 started reinflating
the entire search bar every time the search source was changed, to get
around problems with bad state in AutoCompleteTextView
(http://b/issue?id=2132686). This had some side-effects if the
search dialog was already visible, as it is when selecting a
source in "More results" or when presing the search key to go to
QSB from in-app search.

This change changes the reinflation to only happen if the dialog is
not already showing.

Fixes:

http://b/issue?id=2166640
"After selecting More results from suggestions, the search box is no longer visible."

http://b/issue?id=2166675
"Calling QSB with the hardware key does not place focus in the search tab."

http://b/issue?id=2166712
"back key has unexpected behaviour in QSB after selecting "More results" from suggestions."

Change-Id: I8d48149c3e9ad97ec11c49ec7efb356f27dfe4f6

14 years agoFix issue #2161169: onStop not being called.
Dianne Hackborn [Mon, 5 Oct 2009 19:44:13 +0000 (12:44 -0700)]
Fix issue #2161169: onStop not being called.

There was a bug with the starting window where it could be added to
the app window list twice, so the buddy list would end up with one
left over after all was done.  This would result in visibility
changes not being delivered to it correctly, delaying the dispatch
of onStop.

Change-Id: If1993eaf9cfbba1f523ce5aaa478be0239d0c7db

14 years agoaccount manager api review changes
Fred Quintana [Sat, 3 Oct 2009 00:19:31 +0000 (17:19 -0700)]
account manager api review changes

14 years agoAdd PERIOD char to CDMA address sugar list.
Tammo Spalink [Mon, 5 Oct 2009 06:20:06 +0000 (14:20 +0800)]
Add PERIOD char to CDMA address sugar list.

Addresses issue:
http://buganizer/issue?id=2164455

14 years agoMerge change Iaca22686 into eclair
Android (Google) Code Review [Sun, 4 Oct 2009 22:35:24 +0000 (18:35 -0400)]
Merge change Iaca22686 into eclair

* changes:
  Work on issue #2163789: Way too much logging

14 years agoMerge change Iee638412 into eclair
Android (Google) Code Review [Sun, 4 Oct 2009 22:19:29 +0000 (18:19 -0400)]
Merge change Iee638412 into eclair

* changes:
  Fix issue #2161726: Car dock app bypasses setup wizard

14 years agoam e9e1cdd5: decode the search string before putting it into the search control....
Scott Main [Sun, 4 Oct 2009 22:05:43 +0000 (15:05 -0700)]
am e9e1cdd5: decode the search string before putting it into the search control. this fixes a safari-only bug in which encoded chars were inserted into the search string.

Merge commit 'e9e1cdd556b40a04637b7de3d839b2a596df47e3' into eclair

* commit 'e9e1cdd556b40a04637b7de3d839b2a596df47e3':
  decode the search string before putting it into the search control.

14 years agoWork on issue #2163789: Way too much logging
Dianne Hackborn [Sun, 4 Oct 2009 20:30:50 +0000 (13:30 -0700)]
Work on issue #2163789: Way too much logging

Dr.No from mcleron.

Change-Id: Iaca2268684f83fe8757e64db0b0e047a19755311

14 years agodumpstate: Add backlight information to bugreport output.
Mike Lockwood [Sun, 4 Oct 2009 21:21:05 +0000 (17:21 -0400)]
dumpstate: Add backlight information to bugreport output.

To help diagnose bugs b/2164183 and b/2164647

Change-Id: Ie80c3b205c231c485d8a24e68b0a9c5e025da479
Signed-off-by: Mike Lockwood <lockwood@android.com>
14 years agoMerge change I0c4cec7e into eclair
Android (Google) Code Review [Sat, 3 Oct 2009 03:35:12 +0000 (23:35 -0400)]
Merge change I0c4cec7e into eclair

* changes:
  Attempt to fix [2152536] ANR in browser

14 years agoMerge change I7f047786 into eclair
Android (Google) Code Review [Sat, 3 Oct 2009 01:40:07 +0000 (21:40 -0400)]
Merge change I7f047786 into eclair

* changes:
  Update the SimpleMesh API to support new attribute types.  Also spilt add/set commands to avoid permutation explosion.

14 years agoUpdate the SimpleMesh API to support new attribute types. Also spilt add/set command...
Jason Sams [Sat, 3 Oct 2009 01:18:35 +0000 (18:18 -0700)]
Update the SimpleMesh API to support new attribute types.  Also spilt add/set commands to avoid permutation explosion.

14 years agoAttempt to fix [2152536] ANR in browser
Mathias Agopian [Sat, 3 Oct 2009 01:12:30 +0000 (18:12 -0700)]
Attempt to fix [2152536] ANR in browser

The ANR is caused by SurfaceFlinger waiting for buffers of a removed surface to become availlable.
When it is removed from the current list, a Surface is marked as NO_INIT, which causes SF to return
immediately in the above case. For some reason, the surface here wasn't marked as NO_INIT.

This change makes the code more robust by always (irregadless or errors) setting the NO_INIT status
in all code paths where a surface is removed from the list.

Additionaly added more information in the logs, should this happen again.

14 years agoMerge change Ic0d82ef1 into eclair
Android (Google) Code Review [Fri, 2 Oct 2009 23:17:30 +0000 (19:17 -0400)]
Merge change Ic0d82ef1 into eclair

* changes:
  [Issue 2161366] Changing capitalization of string "Via" to "via"

14 years ago[Issue 2161366] Changing capitalization of string "Via" to "via"
Dmitri Plotnikov [Fri, 2 Oct 2009 23:06:06 +0000 (16:06 -0700)]
[Issue 2161366] Changing capitalization of string "Via" to "via"

Approved by Tim.

Change-Id: Ic0d82ef1c687ecce91edc90a16aeefa17292d565

14 years agoMerge change Iaf686344 into eclair
Android (Google) Code Review [Fri, 2 Oct 2009 20:34:02 +0000 (16:34 -0400)]
Merge change Iaf686344 into eclair

* changes:
  dumpstate: Display mtime instead of ctime

14 years agodumpstate: Display mtime instead of ctime
San Mehat [Fri, 2 Oct 2009 20:15:53 +0000 (13:15 -0700)]
dumpstate: Display mtime instead of ctime

Signed-off-by: San Mehat <san@google.com>
14 years agoFix issue #2161726: Car dock app bypasses setup wizard
Dianne Hackborn [Fri, 2 Oct 2009 17:44:41 +0000 (10:44 -0700)]
Fix issue #2161726: Car dock app bypasses setup wizard

We now just don't send out dock broadcasts/launches when the
device is not provisioned.  Good enough for our purposes.

Change-Id: Iee6384121675e0e9854745ec1168245e8a23a241

14 years agobug 2161715: add the .jpg extension to the temp sdcard image file name so MMS can...
Wei Huang [Fri, 2 Oct 2009 17:58:49 +0000 (10:58 -0700)]
bug 2161715: add the .jpg extension to the temp sdcard image file name so MMS can read the JPEG data using a file uri.

Change-Id: I1453950e406f1991e78530795ed28e6b4a7cf8c6

14 years agoMerge change I80ce8833 into eclair
Android (Google) Code Review [Fri, 2 Oct 2009 07:51:19 +0000 (03:51 -0400)]
Merge change I80ce8833 into eclair

* changes:
  Icons again

14 years agoRotarySelector widget: add callback for "grabbed" state changes.
David Brown [Fri, 2 Oct 2009 02:25:54 +0000 (19:25 -0700)]
RotarySelector widget: add callback for "grabbed" state changes.

This is the frameworks/base part of the fix for Bug 2158434: add a new
callback to the OnDialTriggerListener interface, so the RotarySelector can
tell the app about state changes between NOTHING_GRABBED and
LEFT_HANDLE_GRABBED and RIGHT_HANDLE_GRABBED.

BUG=2158434
DRNO=timsullivan

TESTED=regular incoming calls, call waiting calls, answering a call,
       rejecting a call.  Also verified I didn't affect the
       lock screen at all.

14 years agoIcons again
Mike Cleron [Fri, 2 Oct 2009 07:27:31 +0000 (00:27 -0700)]
Icons again

14 years agoMerge change I3ca8fb69 into eclair
Android (Google) Code Review [Fri, 2 Oct 2009 04:47:08 +0000 (00:47 -0400)]
Merge change I3ca8fb69 into eclair

* changes:
  Import revised translations.  DO NOT MERGE

14 years agoMerge change I5dbd1994 into eclair
Android (Google) Code Review [Fri, 2 Oct 2009 02:46:23 +0000 (22:46 -0400)]
Merge change I5dbd1994 into eclair

* changes:
  Fix rfcomm socket connect return code.

14 years agoFix rfcomm socket connect return code.
Jaikumar Ganesh [Fri, 2 Oct 2009 02:10:43 +0000 (19:10 -0700)]
Fix rfcomm socket connect return code.

The phone would say connected even when powered off.
Bug id: 2161890
DrNo: Hiroshi

Change-Id: I5dbd19941a80e86c7462670fb844a29cf4eb0908

14 years agoMerge change I15b0ebb9 into eclair
Android (Google) Code Review [Fri, 2 Oct 2009 00:25:45 +0000 (20:25 -0400)]
Merge change I15b0ebb9 into eclair

* changes:
  a simple test app for gralloc

14 years agoa simple test app for gralloc
Mathias Agopian [Thu, 1 Oct 2009 22:45:37 +0000 (15:45 -0700)]
a simple test app for gralloc

14 years agoImport revised translations. DO NOT MERGE
Eric Fischer [Thu, 1 Oct 2009 23:55:20 +0000 (16:55 -0700)]
Import revised translations.  DO NOT MERGE

Approver: jerryw

14 years agoMerge change I9e384ddd into eclair
Android (Google) Code Review [Thu, 1 Oct 2009 23:49:27 +0000 (19:49 -0400)]
Merge change I9e384ddd into eclair

* changes:
  Add a test pattern as rollo's icon

14 years agoAdd a test pattern as rollo's icon
Joe Onorato [Thu, 1 Oct 2009 23:48:44 +0000 (16:48 -0700)]
Add a test pattern as rollo's icon

14 years agodecode the search string before putting it into the search control.
Scott Main [Thu, 1 Oct 2009 21:59:24 +0000 (14:59 -0700)]
decode the search string before putting it into the search control.
this fixes a safari-only bug in which encoded chars were inserted
into the search string.

http://b/issue?id=2031559

Change-Id: Ie60902bafcbb327d488b921f8d3925aaf9ff0566

14 years agoUnhide constant DATA_ACTIVITY_DORMANT.
John Wang [Wed, 30 Sep 2009 22:11:02 +0000 (15:11 -0700)]
Unhide constant DATA_ACTIVITY_DORMANT.

14 years agoClose the cursor before assigning a new one to the same variable.
Marco Nelissen [Wed, 30 Sep 2009 23:39:15 +0000 (16:39 -0700)]
Close the cursor before assigning a new one to the same variable.

14 years agoMerge change I6e01fa52 into eclair
Android (Google) Code Review [Thu, 1 Oct 2009 15:01:34 +0000 (11:01 -0400)]
Merge change I6e01fa52 into eclair

* changes:
  Remove unneeded icon.

14 years agoRemove unneeded icon.
Daniel Sandler [Thu, 1 Oct 2009 15:00:24 +0000 (11:00 -0400)]
Remove unneeded icon.

(Obviated by commit a408791148e816215f65ad81a187051c5fb47c68.)

Change-Id: I6e01fa52f2bbeb28c969e6a033ab0b1032cbc848

14 years agoMerge change Ic2a16d4f into eclair
Android (Google) Code Review [Thu, 1 Oct 2009 14:52:01 +0000 (10:52 -0400)]
Merge change Ic2a16d4f into eclair

* changes:
  b/2148252 Fix emulator

14 years agohide setGammaForText, which is only used for calibrating new devices
Mike Reed [Thu, 1 Oct 2009 13:17:47 +0000 (09:17 -0400)]
hide setGammaForText, which is only used for calibrating new devices

14 years agoChange intent flags for launching FastTrack.
Jeff Sharkey [Thu, 1 Oct 2009 05:27:15 +0000 (22:27 -0700)]
Change intent flags for launching FastTrack.

14 years agoMerge change Ia8826d67 into eclair
Android (Google) Code Review [Thu, 1 Oct 2009 10:16:25 +0000 (06:16 -0400)]
Merge change Ia8826d67 into eclair

* changes:
  improve boot animation a bit

14 years agoimprove boot animation a bit
Mathias Agopian [Thu, 1 Oct 2009 10:10:14 +0000 (03:10 -0700)]
improve boot animation a bit

14 years agoOn BACK in search, hide just IME if IME is fullscreen
Bjorn Bringert [Thu, 1 Oct 2009 09:30:25 +0000 (10:30 +0100)]
On BACK in search, hide just IME if IME is fullscreen

Since a fullscreen IME covers the entire search dialog, there was
no discoverable way to get back to the search dialog.
Now, on BACK presses when the IME is fullscreen (e.g. in landscape
mode without hard keyboard), we dismiss only the IME.
A second BACK press will dismiss the search dialog.

Fixes http://b/issue?id=2159132

Change-Id: I8e5736d83d7c35936a718929017ea04c6214700b

14 years agoMerge change Ie69a9c0a into eclair
Android (Google) Code Review [Thu, 1 Oct 2009 09:10:15 +0000 (05:10 -0400)]
Merge change Ie69a9c0a into eclair

* changes:
  Remove globalSearch argument from triggerSearch()

14 years agoRemove globalSearch argument from triggerSearch()
Bjorn Bringert [Thu, 1 Oct 2009 08:57:33 +0000 (09:57 +0100)]
Remove globalSearch argument from triggerSearch()

API council says:

"In reviewing the new triggerSearch API, we are concerned that
applications could use the option to perform a global search to spam
the user with frequent searches.  We would like the global search
option to be removed for now (not just hidden, but removed from the
internal IPC API so that nobody can find this and abuse it).  The rest
of the API should be fine as long as it is restricted to local
searches."

Fixes http://b/editIssue?id=2158785

Change-Id: Ie69a9c0ab6373cc4427aab50606885bdede40585

14 years agoMerge change I55c9c7b7 into eclair
Android (Google) Code Review [Thu, 1 Oct 2009 08:48:32 +0000 (04:48 -0400)]
Merge change I55c9c7b7 into eclair

* changes:
  New 1x status bar icons

14 years agoNew 1x status bar icons
Mike Cleron [Thu, 1 Oct 2009 08:46:00 +0000 (01:46 -0700)]
New 1x status bar icons

14 years agoMerge change I4fe2a47a into eclair
Android (Google) Code Review [Thu, 1 Oct 2009 08:39:38 +0000 (04:39 -0400)]
Merge change I4fe2a47a into eclair

* changes:
  Fix stopping all vpn daemons before connect and more.

14 years agoPrevents the WindowManager from requesting empty or negative surfaces.
Romain Guy [Thu, 1 Oct 2009 07:58:09 +0000 (00:58 -0700)]
Prevents the WindowManager from requesting empty or negative surfaces.

Windows with a negative Y position can end up in createSurfaceLocked()
with mFrame containing a negative height, causing SurfaceFlinger to go
crazy when asked to create the surface. This change simply guards
against such a situation by instead asking for a 1x1 surface and relying
or later layout operations to resize the window to the appropriate size.

Change-Id: I66f2058f4cd1cf069b12d3d23e6fd340dc76b74e

14 years agoMerge change Ia1baa5ab into eclair
Android (Google) Code Review [Thu, 1 Oct 2009 07:35:27 +0000 (03:35 -0400)]
Merge change Ia1baa5ab into eclair

* changes:
  More icons

14 years agoMore icons
Mike Cleron [Thu, 1 Oct 2009 07:31:34 +0000 (00:31 -0700)]
More icons