summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix build breakageFred Quintana2009-10-062-23/+1
|
* - hide Entity and all its referencesFred Quintana2009-10-0612-519/+182
| | | | | | | - 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-063-33/+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-063-33/+16
| | | | | | | | | | Remove api to set these values. Remove an unused method in AppSecurityPermissions
* | Merge change I6a0b14bd into eclairAndroid (Google) Code Review2009-10-061-4/+2
|\ \ | | | | | | | | | | | | * changes: Make VCardComposer create the instance for mHandlerList.
| * | 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.
* | | Merge change I8333dcc4 into eclairAndroid (Google) Code Review2009-10-066-0/+0
|\ \ \ | | | | | | | | | | | | | | | | * changes: New section header and divider assets.
| * | | New section header and divider assets.Evan Millar2009-10-066-0/+0
| |/ / | | | | | | | | | | | | | | | | | | | | | triaged bug http://b/issue?id=2153296 Tim Sullivan gave Dr. No approval. Change-Id: I8333dcc4645529a03805aa76e32a3e9b90be58a7
* | | Merge change I76d7ba61 into eclairAndroid (Google) Code Review2009-10-068-0/+0
|\ \ \ | | | | | | | | | | | | | | | | * changes: Pixel tweak search dialog to match search widget
| * | | Pixel tweak search dialog to match search widgetBjorn Bringert2009-10-068-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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
* | | | Merge change I24895c35 into eclairAndroid (Google) Code Review2009-10-061-69/+294
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Reimplement all the method of Paint for layoutlib
| * | | | Reimplement all the method of Paint for layoutlibXavier Ducrohet2009-10-051-69/+294
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | Music visualizer support hack.Marco Nelissen2009-10-069-4/+243
| |_|/ / |/| | | | | | | | | | | 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.
* | | | 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-069-55/+355
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 I5b650a61 into eclairAndroid (Google) Code Review2009-10-061-0/+8
|\ \ | | | | | | | | | | | | * changes: dumpstate: Emit a logcat message at beginning and end of execution.
| * | dumpstate: Emit a logcat message at beginning and end of execution.Mike Lockwood2009-10-051-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | Merge change I61aac7b3 into eclairAndroid (Google) Code Review2009-10-052-1/+11
|\ \ \ | |/ / |/| | | | | | | | * changes: Add PERIOD char to CDMA address sugar list.
| * | Add PERIOD char to CDMA address sugar list.Tammo Spalink2009-10-052-1/+11
| | | | | | | | | | | | | | | Addresses issue: http://buganizer/issue?id=2164455
* | | 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
| | | |
* | | | Merge change I34f51342 into eclairAndroid (Google) Code Review2009-10-056-67/+53
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | * changes: Fix the layoutlib test to run from adt-tests.
| * | | Fix the layoutlib test to run from adt-tests.Xavier Ducrohet2009-10-056-67/+53
| | | | | | | | | | | | | | | | Change-Id: I34f513429593dce9f781ed8a08c4664a5d6f9aa8
* | | | Fix issue #2166755: BroadcastReceiver trying to return result during a ↵Dianne Hackborn2009-10-0512-29/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 I8874a405 into eclairAndroid (Google) Code Review2009-10-053-38/+86
|\ \ \ \ | |/ / / | | | | | | | | | | | | * changes: Refactor class/method names used by layoutlib_create.
| * | | Refactor class/method names used by layoutlib_create.Xavier Ducrohet2009-10-053-38/+86
| |/ / | | | | | | | | | | | | | | | | | | Information about classes and methods that are replaced, renamed, removed into CreateInfo, so that it can be used by the tests. Change-Id: I8874a40503249416621aa90b2ca02dcaf30ecd57
* | | 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
* | | Fix issue #2161169: onStop not being called.Dianne Hackborn2009-10-051-1/+0
| |/ |/| | | | | | | | | | | | | | | | | 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
* | account manager api review changesFred Quintana2009-10-0523-923/+524
|/
* Merge change Iaca22686 into eclairAndroid (Google) Code Review2009-10-0411-23/+34
|\ | | | | | | | | * changes: Work on issue #2163789: Way too much logging
| * Work on issue #2163789: Way too much loggingDianne Hackborn2009-10-0411-23/+34
| | | | | | | | | | | | Dr.No from mcleron. Change-Id: Iaca2268684f83fe8757e64db0b0e047a19755311
* | Merge change Iee638412 into eclairAndroid (Google) Code Review2009-10-041-16/+7
|\ \ | | | | | | | | | | | | * changes: Fix issue #2161726: Car dock app bypasses setup wizard
| * | Fix issue #2161726: Car dock app bypasses setup wizardDianne Hackborn2009-10-021-16/+7
| | | | | | | | | | | | | | | | | | | | | We now just don't send out dock broadcasts/launches when the device is not provisioned. Good enough for our purposes. Change-Id: Iee6384121675e0e9854745ec1168245e8a23a241
* | | am e9e1cdd5: decode the search string before putting it into the search ↵Scott Main2009-10-041-2/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | decode the search string before putting it into the search control.Scott Main2009-10-011-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this fixes a safari-only bug in which encoded chars were inserted into the search string. http://b/issue?id=2031559 Change-Id: Ie60902bafcbb327d488b921f8d3925aaf9ff0566
* | | | dumpstate: Add backlight information to bugreport output.Mike Lockwood2009-10-041-0/+7
| |_|/ |/| | | | | | | | | | | | | | | | | To help diagnose bugs b/2164183 and b/2164647 Change-Id: Ie80c3b205c231c485d8a24e68b0a9c5e025da479 Signed-off-by: Mike Lockwood <lockwood@android.com>
* | | Merge change I0c4cec7e into eclairAndroid (Google) Code Review2009-10-0211-46/+40
|\ \ \ | | | | | | | | | | | | | | | | * changes: Attempt to fix [2152536] ANR in browser
| * | | Attempt to fix [2152536] ANR in browserMathias Agopian2009-10-0211-46/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | Merge change I7f047786 into eclairAndroid (Google) Code Review2009-10-022-54/+87
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Update the SimpleMesh API to support new attribute types. Also spilt add/set commands to avoid permutation explosion.
| * | | | Update the SimpleMesh API to support new attribute types. Also spilt ↵Jason Sams2009-10-022-54/+87
| |/ / / | | | | | | | | | | | | add/set commands to avoid permutation explosion.
* | | | Merge change Ic0d82ef1 into eclairAndroid (Google) Code Review2009-10-021-1/+1
|\ \ \ \ | |/ / / |/| | | | | | | | | | | * changes: [Issue 2161366] Changing capitalization of string "Via" to "via"
| * | | [Issue 2161366] Changing capitalization of string "Via" to "via"Dmitri Plotnikov2009-10-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Approved by Tim. Change-Id: Ic0d82ef1c687ecce91edc90a16aeefa17292d565
* | | | Merge change Iaf686344 into eclairAndroid (Google) Code Review2009-10-021-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: dumpstate: Display mtime instead of ctime
| * | | | dumpstate: Display mtime instead of ctimeSan Mehat2009-10-021-1/+1
| | |_|/ | |/| | | | | | | | | | Signed-off-by: San Mehat <san@google.com>
* | | | 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