summaryrefslogtreecommitdiffstats
path: root/api/current.txt
Commit message (Collapse)AuthorAgeFilesLines
* Make FLAG_AUTO_CORRECTION publicsatok2011-10-261-0/+1
| | | | | | Bug: 5440299 Change-Id: Ia82745e793be741c1558ce15b189b63872107ddb
* Add content description setter to RemoteViewsSvetoslav Ganov2011-10-181-0/+1
| | | | | | bug:5480389 Change-Id: I66616f379a244ba7f3552d766f3aaa77f207550a
* Add a CrossProcessCursorWrapper.Jeff Brown2011-10-131-0/+7
| | | | | | | | | | | | | | | Bug: 5220669 The CrossProcessCursorWrapper is a useful building block for wrapping cursors that will be sent to processes remotely. It can also transform normal Cursors into CrossProcessCursors transparently. The new class fixes common performance problems and bugs that applications have encountered when implementing ContentProviders. Change-Id: Icc59fec10add3f7d8cfbd0495447860c1872c752
* Deprecate local-only CursorWindows.Jeff Brown2011-10-121-1/+2
| | | | | | | | | | | | | | | | There is no difference and has never really been a difference between local-only and remotable CursorWindows. By removing the distinction officially in the API, we will make it easier to implement CrossProcessCursor correctly. CrossProcessCursor is problematic currently because it's not clear whether a call to getWindow() will return a local-only window or a remotable window. As a result, the bulk cursor adaptor has special case handling for AbstractWindowedCursors vs. ordinary CrossProcessCursors so that it can set a remotable window before the cursor fills it. All these problems go away if we just forget about local-only windows being special in any way. Change-Id: Ie59f517968e33d0ecb239c3c4f60206495e8f376
* Add AccessibilityRecord#getMaxScrollX and #getMaxScrollY to the pubic APISvetoslav Ganov2011-10-111-0/+4
| | | | | | | | | The methods were hidden for the previoud release since they were added too close to the SDK final date. bug:5424373 Change-Id: I812b9809223db75636b04549500f023820b6eb5a
* Hide quota APIs until finalized.Jeff Sharkey2011-10-061-11/+0
| | | | | Bug: 5383656 Change-Id: Ia2a978a6ff2ee642b0ea4d7d6b8857b7efffd612
* DO NOT MERGE New permissions for social stream.Dave Santoro2011-10-041-58/+0
| | | | | | | | | | | | | These permissions are needed to separate the (potentially invasive) access to the user's social stream from the existing read/write contacts permission. Per discussion with Android release team, we are also hiding the stream item API until we figure out a better way to guard the data. Bug 5406886 Change-Id: I8339d743c3ebe8923c7ee47f2900444efcf82a52
* Merge "Make Bluetooth Health constant public." into ics-factoryromJaikumar Ganesh2011-09-211-0/+1
|\
| * Make Bluetooth Health constant public.Jaikumar Ganesh2011-09-211-0/+1
| | | | | | | | Change-Id: I366f1231056fe978d85ee80c773d5911badb22e2
* | Unhide new PackageManager APIs for API 14Kenny Root2011-09-201-0/+7
|/ | | | Change-Id: I83110285ccee39a4cd872a1c2af8357f541833d4
* Continuation of the unified account chooser flow.Fred Quintana2011-09-161-1/+1
| | | | | | | | | | | - made the UI match the spec - added ability to force the account chooser to appear - added ability to pass in a description that will override the stock one - added ability to pass in requiredFeatures for addAccount - added ability to pass in an authTokenType for addAccount Bug: 5293377 Change-Id: I243c0fd6598c943b1f65753e1f5d3c86629f64f5
* Add a generic account chooser/add account flow for apps.Fred Quintana2011-09-151-0/+1
| | | | | | | | | | | | | | | | The activity is launched as follows: Account account1 = new Account("account1@gmail.com", "com.google") Account account2 = new Account("account2@gmail.com", "com.google") ArrayList<Account> accounts = new ArrayList<Account>(); accounts.add(account1); accounts.add(account2); String[] accountTypes = new String[]{"com.google", "com.android.exchange"}; Bundle addAccountOptions = null; Intent intent = AccountManager.newChooseAccountIntent(account1, accounts, accountTypes, addAccountOptions); startActivityForResult(intent, 0); Change-Id: I05a467bdc3552a2e39397b0182879351f4324389
* Update the public APIs for finding views by text to optionally use content ↵Svetoslav Ganov2011-09-141-1/+3
| | | | | | | | | | | | | | | description. 1. Added flags to the search method to specify whether to match text or content description or both. 2. Added test case for the seach by content description. 3. Updated the code in AccessibilityManager service to reflect the latest changes there so test automation service works - this is the fake service used for UI automation. Change-Id: I14a6779a920ff0430e78947ea5aaf876c2e66076
* Merge "Rename of DoodleEffect as part of cleanup (Bug 5287103)."Marius Renn2011-09-141-1/+1
|\
| * Rename of DoodleEffect as part of cleanup (Bug 5287103).Marius Renn2011-09-131-1/+1
| | | | | | | | | | | | | | | | | | | | The DoodleEffect semantics have been considerably simplified so that the name no longer fits the effect outcome. Renamed to BitmapOverlayEffect (EFFECT_BITMAPOVERLAY). This is the necessary change to the current.txt. Change-Id: I43fe0e1f99ec6aedbcb53b186ac322cc51ee83ab
* | ICS is API 14.Dianne Hackborn2011-09-141-1/+1
| | | | | | | | Change-Id: I95f500f94ce206ae6ca6938d17537431d8799237
* | Merge "Bug 5300223 RemoteControlClient uses PendingIntent"Jean-Michel Trivi2011-09-141-2/+2
|\ \
| * | Bug 5300223 RemoteControlClient uses PendingIntentJean-Michel Trivi2011-09-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | API change so RemoteControlClient is given a PendingIntent in its constructor, which will be used for receiving media button events from remote controls. Leave the old constructors (but hidden) to not break current functionality until the AudioManager and AudioService implementations have been updated. Change-Id: Ifa12c8036c948931adc386a827dce2936788e1cd
* | | Remove deprecated TrafficStats API.Jeff Sharkey2011-09-131-1/+0
| | | | | | | | | | | | | | | Bug: 5314214 Change-Id: If7dc3ef012a0e998e83ab4fef27ff19398d3e14c
* | | API review: Metadata class not used.Dianne Hackborn2011-09-131-10/+0
| | | | | | | | | | | | | | | | | | | | | The Metadata class doesn't actually seem to be used with anything in the SDK, and the API probably needs some work, so hide it. Change-Id: Ifecf49130b90cbb4c588ad8104f1e7957978f789
* | | Unhide wifi p2p APIIrfan Sheriff2011-09-131-0/+137
| | | | | | | | | | | | | | | Bug: 5247957 Change-Id: Id93e30c0cb60f361ba13a840de8f843415777336
* | | Merge "Adding accessibility delegate mechanism for backwards compatibility ↵Svetoslav Ganov2011-09-121-0/+12
|\ \ \ | |/ / |/| | | | | support."
| * | Adding accessibility delegate mechanism for backwards compatibility support.Svetoslav Ganov2011-09-121-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Added an AccessibilityDelegate class in View which can be set by a client that wants to cutomize accessibility behavior via composition as opposed to inheritance. Insead overriding a new method in View thus being bound to the API version that introduced this method a developer can conditionally inject the accessibility customization if the platform API version is heigh enough. The developer will have to override the method of interest of the delegate. The default implementation of the delegate methods is the same as that of View in the case that there is no delegate set. If a delegate is set calling an accessibility related method on View will be handed off to the corresponsing method of the delegate. bug:5259555 Change-Id: I00e750e22e5e7164a1b571cb3d12ecaf4ab93db4
* | | Fix build.Dianne Hackborn2011-09-111-1/+1
| | | | | | | | | | | | Change-Id: I8f0f137649ae69100a2b94706ad9b3861d8dbac0
* | | Merge "The wave view attributes should not be public."Dianne Hackborn2011-09-111-45/+31
|\ \ \
| * | | The wave view attributes should not be public.Dianne Hackborn2011-09-091-45/+31
| | | | | | | | | | | | | | | | Change-Id: I7f021fc79385f5cf2e252389cc5f672f334ee4c4
* | | | Fix buildAdam Powell2011-09-091-4/+4
| | | | | | | | | | | | | | | | Change-Id: I2b1ad9f057367873554ca4df0c93050bbbc9ebb7
* | | | Go faster!!!!Romain Guy2011-09-091-4/+5
|/ / / | | | | | | | | | | | | | | | The less we do, the faster we draw. Change-Id: I7bbc3908b36d8ae295ea3e61ef71fd9ee2187970
* | | Bug 5214224 - List item metricsAdam Powell2011-09-091-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Base list item padding on the theme. Adjust stock framework list items to obey this. Adjust text sizes in stock list items based on existing theme attributes. Change-Id: I98a441e5494fa1d1d34a5f05e525e54e8b0d78b9
* | | Merge "Add a form of getAuthToken that both accepts an options Bundle and ↵Fred Quintana2011-09-091-1/+3
|\ \ \ | | | | | | | | | | | | doesn't accepts an activity."
| * | | Add a form of getAuthToken that both accepts an options Bundle andFred Quintana2011-09-081-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | doesn't accepts an activity. Bug: 5278759 Change-Id: I513c9b5d8a907e26b9ad3c0d5977614820a4990c
* | | | Merge "Fix bug 5045498 Unhide Remote Control Client API"Marco Nelissen2011-09-091-0/+36
|\ \ \ \ | |_|_|/ |/| | |
| * | | Fix bug 5045498 Unhide Remote Control Client APIJean-Michel Trivi2011-09-011-0/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The RemoteControlClient API enables media application to have information such as album art, current song, playback state be displayed on "remote control displays", as well as be controlled by "remote controls". The new API consists in: - a new class, RemoteControlClient - new methods in AudioManager to register a RemoteControlClient - a new class, RemoteControlClient.MetadataEditor to edit and apply the information associated with a RemoteControlClient, and which will be displayed on a "remote control display" Change-Id: I5616085e4ad58ce0bbc1a5953b0a5a28d32f8703
* | | | Make Bluetooth Health APIs public.Jaikumar Ganesh2011-09-081-0/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix a few bugs: a) Pass a integer token to identify the channel. b) Close fds in case of errors. Change-Id: I2046787be5008769435f2f72a5bd67c19b749da0
* | | | Merge "Add raw entities URI for profiles."Dave Santoro2011-09-081-0/+1
|\ \ \ \
| * | | | Add raw entities URI for profiles.Dave Santoro2011-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug 5274218 Change-Id: Ifc08e5c2fe4aa3d111cfbe896770a1206fa97bbf
* | | | | Merge "Add data_set for Settings table as well."Dave Santoro2011-09-081-0/+1
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | Add data_set for Settings table as well.Dave Santoro2011-09-071-0/+1
| |/ / / | | | | | | | | | | | | | | | | | | | | Bug 5156004 Change-Id: Iac0eac2a8a6c3994ba3188e571e39717dcb673e1
* | | | Merge "Add FrameLayout.getMeasureAllChildren()"Steve Block2011-09-081-1/+2
|\ \ \ \
| * | | | Add FrameLayout.getMeasureAllChildren()Steve Block2011-04-281-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently the counterpart to FrameLayout.setMeasureAllChildren() is FameLayout.getConsiderGoneChildrenWhenMeasuring(). This change deprecates FameLayout.getConsiderGoneChildrenWhenMeasuring() in favor of a new FrameLayout.getMeasureAllChildren() method. Change-Id: Id26ec8b3966bd1553d5fd708ad76049069fcaeef
* | | | | Fix buildAdam Powell2011-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | Change-Id: I9efe13a7647088402c6759399a96de7831df964b
* | | | | Merge "Empty implementations of new ActionBar methods."Adam Powell2011-09-071-2/+2
|\ \ \ \ \
| * | | | | Empty implementations of new ActionBar methods.Adam Powell2011-09-071-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makes mocks happy! Change-Id: Ib69dd3b3e0d62e2d1301103d8e3dfcec5e9b03ab
* | | | | | Merge "Hide RTL related APIs"Fabrice Di Meglio2011-09-071-12/+3
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Hide RTL related APIsFabrice Di Meglio2011-09-071-12/+3
| | |/ / / | |/| | | | | | | | | | | | | Change-Id: Idda458fcdebe7afeb9b95e328e552fcbc7939157
* | | | | Merge "Fix bug 5258435 - ActionBar.setBackgroundDrawable"Adam Powell2011-09-071-0/+2
|\ \ \ \ \
| * | | | | Fix bug 5258435 - ActionBar.setBackgroundDrawableAdam Powell2011-09-071-0/+2
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix this call to work properly and add methods for setting split/stacked bar backgrounds to match existing styleable elements. Change-Id: I8c6b1c598af1110f84a9098683d8e0226daf2e27
* | | | | Merge "Unhide camera video snapshot supported API."Wu-cheng Li2011-09-071-0/+1
|\ \ \ \ \
| * | | | | Unhide camera video snapshot supported API.Wu-cheng Li2011-09-081-0/+1
| |/ / / / | | | | | | | | | | | | | | | | | | | | bug:5187868 Change-Id: Idefde8746012c8ef504f3e3020e3fe1256c60860
* | | | | Merge "Add feature definition for Wi-Fi Direct"Irfan Sheriff2011-09-071-0/+1
|\ \ \ \ \ | |/ / / / |/| | | |