3229 Commits

Author SHA1 Message Date
Fred Quintana
05ffc255c0 always preserve rows for accounts with type of localhost even if the account manager doesn't know about them 2009-11-15 12:53:42 -08:00
Jean-Baptiste Queru
478de466ce merge from eclair 2009-11-15 12:06:23 -08:00
Jean-Baptiste Queru
9db3d07b96 eclair snapshot 2009-11-13 13:53:39 -08:00
Android Code Review
2b63ff51d5 Merge change I83387a48
* changes:
  Correction of an error in the setRotate method of the ColorMatrix class. The matrix rotation params around the 2nd axis was not set correctly:
2009-11-10 09:59:52 -08:00
Jean-Baptiste Queru
df682c8443 Fix build 2009-11-09 17:33:17 -08:00
Alexey Tarasov
f2db9fb0f8 Typo fix in javadoc
@throw -> @throws
@Deprecated -> @deprecated
2009-11-09 16:07:14 -08:00
Android Code Review
4d88cbd98e Merge change Ia01d5fe8
* changes:
  Fix documentation example, per issue 895 on android.googlecode.com
2009-11-08 12:33:19 -08:00
Android Code Review
7c70af0458 Merge change I4a783af6
* changes:
  Fix obvious typo bug in egl.cpp
2009-11-05 14:10:10 -08:00
Android Code Review
8d9ef03611 Merge change I8f67f092
* changes:
  Fix of compatibility with multifunction extUSB adapters. Tested with HTC YC A300.
2009-11-05 14:08:25 -08:00
Android Code Review
b52990e79d Merge change Ifcba56d2
* changes:
  Capture failure of copybit->stretch()
2009-11-05 13:10:16 -08:00
Android Code Review
1933504616 Merge change I9ff67a5f
* changes:
  LocationManagerService: Fix race when removing LocationListener
2009-11-05 11:36:48 -08:00
Ravi K Yenduri
7b35fd7dd4 Capture failure of copybit->stretch() 2009-11-05 10:42:21 -06:00
Olivier Goutet
83387a484c Correction of an error in the setRotate method of the ColorMatrix class.
The matrix rotation params around the 2nd axis was not set correctly:

Initial matrix for axis 2 (green):
 cos 0 sin 0 0
  0  1  0  0 0
-sin 0  0  0 0
  0  0 cos 1 0

After correction:
 cos 0 -sin 0 0
  0  1   0  0 0
 sin 0  cos 0 0
  0  0   0  1 0
2009-11-05 14:48:03 +01:00
Android Code Review
0b95a572a0 Merge change Ic93ca0d7
* changes:
  Don't return when blocking is true.
2009-11-04 17:31:01 -08:00
Jean-Baptiste Queru
a74dc60c96 Merge from donut 2009-10-28 08:32:40 -07:00
Jean-Baptiste Queru
6c63ee4fc4 Reconcile true history with open-source donut snapshots 2009-10-28 07:42:36 -07:00
Jean-Baptiste Queru
35eae22a1d Merge from donut 2009-10-13 18:07:12 -07:00
Christoffer Gurell
1d05c7cae5 Fixes scroll/measure bug in EditText
Bug and fix described in:
http://code.google.com/p/android/issues/detail?id=4184
2009-10-12 15:53:39 +02:00
Christoffer Gurell
4a783af6ec Fix obvious typo bug in egl.cpp
can (and does sometimes) lead to accessing array with -1 as index
2009-10-12 11:57:27 +02:00
Jean-Baptiste Queru
63abad7ed3 reconcile tools-docs into main branch 2009-10-09 10:27:15 -07:00
Jean-Baptiste Queru
5f4906cafc donut snapshot 2009-10-09 10:27:14 -07:00
Jean-Baptiste Queru
dde8b50b87 donut snapshot 2009-10-09 07:33:40 -07:00
Joshua Bartel
9ff67a5f9b LocationManagerService: Fix race when removing LocationListener
In LocationManagerService if a LocationListener is removed while it has
a pending broadcast the wake lock held while pending broadcasts are
outstanding do not get cleared properly.

There are 2 cases of this race that are fixed:

1. locationCallbackFinished was changed to check the mReceivers HashMap
directly instead of calling getReceiver.  getReceiver would add the
ILocationListener as a new Receiver if it did not exist which caused
a receiver that was removed when it still had a broadcast pending to
be added back in a bad state when the pending broadcast completed.

2. removeUpdatesLocked was changed to decrement the pending broadcasts
when a Receiver is removed that has pending broadcasts.
2009-10-05 12:44:46 -04:00
Josh Guilfoyle
336a0ee90f Fixed issue #4098: Ringtone#getTitle does not close its cursor.
http://code.google.com/p/android/issues/detail?id=4098
2009-10-02 17:39:36 -07:00
Li Wenhao
c93ca0d7b5 Don't return when blocking is true. 2009-09-21 17:14:59 +08:00
Yusuf T. Mobile
5550ef4873 Fixed Android issue #2002: "Proximity alert detection logic is broken"
http://code.google.com/p/android/issues/detail?id=2002
2009-09-17 10:56:57 -07:00
Ravi K Yenduri
62e73f466e Update comment in mediaplayer.h.
When sending a MEDIA_INFO message, the second integer is supposed
to be an "info" code instead of an "error" code.
2009-09-16 15:14:40 -07:00
Jean-Baptiste Queru
ea5f767246 Update documentation for getVideoWidth and getVideoHeight.
Ref: http://code.google.com/p/android/issues/detail?id=3024
2009-09-16 15:06:25 -07:00
Android Code Review
2419fa842b Merge change 10326
* changes:
  Javadoc used startApplication() which doesnt exists, changed to createApplication()
2009-09-15 13:14:58 -07:00
Kenny Root
fc01794f33 Make Uri.parseUserPart, parseHost, and parsePort symmetric
Currently parseUserPart uses the encoded authority to split the URI
into user and non-user parts, but the parseHost and parsePort uses
the decoded URI to split the URI into non-host, host, and port parts.
This gives unexpected results when %40 ('@') and %3a (':') is used
in a URI:

Uri test = Uri.parse("http://bob%40lee%3ajr@example.com:42/");
test.getUserInfo() => "bob@lee:jr"
test.getHost() => "lee:jr@example.com" (should be "example.com")
test.getPort() => -1 (should be 42)
2009-09-14 17:45:04 -07:00
Android Code Review
f9d9cf1ec1 Merge change 10322
* changes:
  Text specifies "android:codeName" which doesnt exist, should be "android:versionName"
2009-09-14 14:19:56 -07:00
David Strobach
fb0bd47d3a Fix of compatibility with multifunction extUSB adapters.
Tested with HTC YC A300.
2009-09-14 10:50:22 -07:00
Jean-Baptiste Queru
be8e36e32b merge from donut 2009-09-03 15:19:21 -07:00
Jean-Baptiste Queru
8f4b5a5618 donut snapshot 2009-09-02 13:39:46 -07:00
Dianne Hackborn
e1b4437dba Revert "Fix content provider"
Argh!

This reverts commit da706900f45dca82d89f090e4e52fa5d1772c495.
2009-09-01 19:21:08 -07:00
Android (Google) Code Review
c804efe278 Merge change 23569 into donut
* changes:
  Update 4.xml to the most recent APIs.
2009-09-01 19:15:59 -07:00
Dianne Hackborn
2c8859aeda Update 4.xml to the most recent APIs. 2009-09-01 19:14:55 -07:00
Android (Google) Code Review
6a98f8d93e Merge change 23499 into donut
* changes:
  Fix content provider
2009-09-01 19:09:24 -07:00
Android (Google) Code Review
dc5164134c Merge change 23503 into donut
* changes:
  docs only. expand the uses-feature docs
2009-09-01 19:04:15 -07:00
Scott Main
c6747d02c6 docs only.
expand the uses-feature docs

Change-Id: I47e7d7570fdab6f0f698ecc978c8cecca8c1d28b
2009-09-01 17:12:53 -07:00
Kenny Root
44b283dc27 Fix %p vs %s typo in aapt message
When trying to print an xmltree or xmlstrings from aapt, the error
message if the resource didn't exist erroneously printed a pointer
instead of a string.

Change-Id: I317bbbdc1200e0f10922e80a36e41a22b2d50d0d
2009-09-01 19:07:48 -05:00
Scott Main
4e60d012c9 docs only.
add syntax samples for all attributes and revise
targetSdkVersion information.

Change-Id: I164da5870743be259e64827c36c4c5eed55fa2b0
2009-09-01 16:17:36 -07:00
Dianne Hackborn
da706900f4 Fix content provider 2009-09-01 13:57:11 -07:00
Android (Google) Code Review
56205fea87 Merge change 23345 into donut
* changes:
  Fix an emoji-measuring bug that caused an exception when editing a contact.
2009-09-01 11:16:25 -07:00
Eric Fischer
a82e99a89b Fix an emoji-measuring bug that caused an exception when editing a contact.
It was measuring the text to try to determine the size that it needed to
scale the emoji character to.  Unfortunately it was accidentally trying
to measure the character under the cursor instead of the emoji character
itself, which is wrong, but more seriously doesn't work at all when the
cursor is at the end of the line.

This was already fixed before in change 144474, but that change never got
merged over to donut.  So this merges it now.

Bug 2087915

Change-Id: Ib4804d330a029a966207b3b07271f84e6b2652c0
2009-09-01 10:28:11 -07:00
Scott Main
5126d3a379 docs only.
revise samples link for offline docs to point to the current version
2009-08-31 18:04:52 -07:00
Android (Google) Code Review
728157b4af Merge change 23242 into donut
* changes:
  docs only. add uses-feature "name" attribute
2009-08-31 15:00:36 -07:00
Scott Main
05902f06f6 docs only.
add uses-feature "name" attribute
2009-08-31 14:56:23 -07:00
Jean-Baptiste Queru
57f03f0b5d Merge snapshot version of donut back into the main tree 2009-08-31 09:32:35 -07:00
Jean-Baptiste Queru
72b1f379d5 donut snapshot 2009-08-31 09:17:57 -07:00