summaryrefslogtreecommitdiffstats
path: root/core/java/android
Commit message (Collapse)AuthorAgeFilesLines
* fix build breakageFred Quintana2009-10-061-0/+1
|
* - hide Entity and all its referencesFred Quintana2009-10-0610-94/+103
| | | | | | | - remove updateEntity and insertEntity, since they are not used - add the RawContacts.Entity class, which is used in lieu of the android.content.Entity
* Merge change I5be3d603 into eclairAndroid (Google) Code Review2009-10-062-31/+16
|\ | | | | | | | | * changes: Make sdk version and code names static finals in PackageParser. Remove api to set these values. Remove an unused method in AppSecurityPermissions
| * Make sdk version and code names static finals in PackageParser.Suchi Amalapurapu2009-10-062-31/+16
| | | | | | | | | | Remove api to set these values. Remove an unused method in AppSecurityPermissions
* | Make VCardComposer create the instance for mHandlerList.Daisuke Miyakawa2009-10-061-4/+2
| | | | | | | | | | | | | | | | | | | | | | 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.
* | Fix docs builds.Nick Pelly2009-10-062-2/+2
|/
* Provide an API for apps to use a dynamic RFCOMM channel and SDP record.Nick Pelly2009-10-066-42/+293
| | | | | | | | | | | | | | | | | | | | | | 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
* Merge change I4db3a5b3 into eclairAndroid (Google) Code Review2009-10-051-2/+1
|\ | | | | | | | | * changes: fix a javadoc build breakage
| * fix a javadoc build breakageFred Quintana2009-10-051-2/+1
| |
* | Fix issue #2166755: BroadcastReceiver trying to return result during a ↵Dianne Hackborn2009-10-057-13/+49
| | | | | | | | | | | | | | | | | | | | | | | | 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
* | Merge change I9b771df3 into eclairAndroid (Google) Code Review2009-10-051-0/+1
|\ \ | | | | | | | | | | | | * changes: Make sure AsyncTask sens a null result to onPostExecute() when cancelled.
| * | Make sure AsyncTask sens a null result to onPostExecute() when cancelled.Romain Guy2009-10-051-0/+1
| |/ | | | | | | | | | | | | 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
* | Merge change I89c40f50 into eclairAndroid (Google) Code Review2009-10-051-2/+1
|\ \ | | | | | | | | | | | | * changes: fix a javadoc build breakage
| * | fix a javadoc build breakageFred Quintana2009-10-051-2/+1
| |/
* | Merge change I8d48149c into eclairAndroid (Google) Code Review2009-10-051-3/+5
|\ \ | |/ |/| | | | | * changes: Don't reinflate search bar when dialog is already showing
| * Don't reinflate search bar when dialog is already showingBjorn Bringert2009-10-051-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | account manager api review changesFred Quintana2009-10-0520-279/+282
|/
* Work on issue #2163789: Way too much loggingDianne Hackborn2009-10-043-8/+11
| | | | | | Dr.No from mcleron. Change-Id: Iaca2268684f83fe8757e64db0b0e047a19755311
* bug 2161715: add the .jpg extension to the temp sdcard image file name so ↵Wei Huang2009-10-021-4/+4
| | | | | | MMS can read the JPEG data using a file uri. Change-Id: I1453950e406f1991e78530795ed28e6b4a7cf8c6
* Close the cursor before assigning a new one to the same variable.Marco Nelissen2009-10-011-0/+1
|
* Merge change Ic2a16d4f into eclairAndroid (Google) Code Review2009-10-011-3/+8
|\ | | | | | | | | * changes: b/2148252 Fix emulator
| * b/2148252 Fix emulatorMichael Chan2009-09-301-3/+8
| | | | | | | | Change-Id: Ic2a16d4fac2a2a12a209c83ad2049829255cb31f
* | Change intent flags for launching FastTrack.Jeff Sharkey2009-10-011-1/+3
| |
* | On BACK in search, hide just IME if IME is fullscreenBjorn Bringert2009-10-011-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | 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
* | Remove globalSearch argument from triggerSearch()Bjorn Bringert2009-10-014-16/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Merge change I2919f492 into eclairAndroid (Google) Code Review2009-10-011-12/+14
|\ \ | | | | | | | | | | | | * changes: remove cert for SampleBrowserPlugin and only check signature for the release build.
| * | remove cert for SampleBrowserPlugin and only checkGrace Kloba2009-09-301-12/+14
| | | | | | | | | signature for the release build.
* | | Semi-workaround for #2027266: app drawer showing up on the side of the screenDianne Hackborn2009-09-303-4/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (when booted while docked) This isn't really a fix, but we now have the activity report the configuration it actually launched in, so the activity manager will later adjust it if needed. Should help us recover from hitting the race in this particular case. Change-Id: I3bb83a48c2d692b4cb1822d8ae7d924cfa9187b2
* | | Update from API review.Dianne Hackborn2009-09-306-7/+56
| | | | | | | | | | | | Change-Id: I16b1c566f91167aac9615ac59dd297a154c828ea
* | | Merge change I7a39c564 into eclairAndroid (Google) Code Review2009-10-011-2/+2
|\ \ \ | | | | | | | | | | | | | | | | * changes: Fix docs error
| * | | Fix docs errorEvan Millar2009-09-301-2/+2
| | | | | | | | | | | | | | | | Change-Id: I7a39c5643cf6351bac47ccafff37fd32a668b9f5
* | | | Merge change Iaf08eabc into eclairAndroid (Google) Code Review2009-10-011-8/+16
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Reduce the ConnectivityManager logging.
| * | | | Reduce the ConnectivityManager logging.Robert Greenwalt2009-09-301-8/+16
| |/ / / | | | | | | | | | | | | Same great info, just fewer chars.
* | | | Merge change Id60fa26a into eclairAndroid (Google) Code Review2009-10-011-13/+17
|\ \ \ \ | |/ / / |/| | | | | | | | | | | * changes: Fix issue 2152541 thumbnail images stretched.
| * | | Fix issue 2152541 thumbnail images stretched.Ray Chen2009-09-301-13/+17
| | | |
* | | | Unhide ContactsContract#QuickContact and fix sdk buildEvan Millar2009-09-301-5/+3
| |/ / |/| | | | | | | | Change-Id: I60fdeb6d0625996d76a10f0a623c9f474337758d
* | | Merge change I07729abd into eclairAndroid (Google) Code Review2009-10-011-2/+19
|\ \ \ | | | | | | | | | | | | | | | | * changes: Keep the scrollbar on during TOUCH_MOVE events even when there is no movement.
| * | | Keep the scrollbar on during TOUCH_MOVE events evenGrace Kloba2009-09-301-2/+19
| | | | | | | | | | | | | | | | | | | | | | | | when there is no movement. Fix http://b/issue?id=2151115
* | | | show events in the UIFred Quintana2009-09-303-28/+31
| | | |
* | | | Merge change I55e15bad into eclairAndroid (Google) Code Review2009-10-011-2/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Try to reconnect twice when the rfcomm error code is Connection Refused.
| * | | | Try to reconnect twice when the rfcomm error code is Connection Refused.Jaikumar Ganesh2009-09-301-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This happens when the the remote headset is in a bad state or is not accepting connections. Try twice before giving up. Change-Id: I55e15bad6b72904b8e4ccbca89e17e9bd3ddb61e
* | | | | Merge change I98f2db38 into eclairAndroid (Google) Code Review2009-10-012-11/+20
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | * changes: FastTrack->QuickContact
| * | | | FastTrack->QuickContactEvan Millar2009-09-302-11/+20
| | | | | | | | | | | | | | | | | | | | Change-Id: I98f2db38e6402bdbe47b941d82c8f33863d1863e
* | | | | Merge change Ic88b39e6 into eclairAndroid (Google) Code Review2009-09-301-3/+15
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | * changes: Add the signature checking for WebView plugins. The first one is for SampleBrowserPlugin. The second one is for Flash.
| * | | | Add the signature checking for WebView plugins. TheGrace Kloba2009-09-301-3/+15
| |/ / / | | | | | | | | | | | | first one is for SampleBrowserPlugin. The second one is for Flash.
* | | | Merge change I7ed72bf5 into eclairAndroid (Google) Code Review2009-09-301-1/+5
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | * changes: Add documentation for scene mode. Other parameters may be changed after setting scene mode.
| * | | Add documentation for scene mode. Other parameters may be changed after ↵Wu-cheng Li2009-09-301-1/+5
| | | | | | | | | | | | | | | | setting scene mode.
* | | | Merge change Iec1f8a2e into eclairAndroid (Google) Code Review2009-09-301-2/+4
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | * changes: Add Turkish accented letters for G and S on the hard keyboard.
| * | | Add Turkish accented letters for G and S on the hard keyboard.Eric Fischer2009-09-301-2/+4
| | | | | | | | | | | | | | | | Bug 2158331
* | | | Set Sink State when ACL disconnects.Jaikumar Ganesh2009-09-301-0/+8
| | | | | | | | | | | | | | | | Change-Id: I9c71c1b848da48883c8ce28503c53c7d32e2fa34