summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* am d5b6b4b7: Merge change 7903 into donutAndroid (Google) Code Review2009-07-205-66/+79
|\ | | | | | | | | | | | | Merge commit 'd5b6b4b75ef928d02e0d728bebbfe543cae154bc' * commit 'd5b6b4b75ef928d02e0d728bebbfe543cae154bc': Fix back key handling for search dialog.
| * Merge change 7903 into donutAndroid (Google) Code Review2009-07-205-66/+79
| |\ | | | | | | | | | | | | * changes: Fix back key handling for search dialog.
| | * Fix back key handling for search dialog.Karl Rosaen2009-07-205-66/+79
| | | | | | | | | | | | | | | | | | | | | | | | Now that the search manager service handles hiding (not dismissing) and reshowing it when the user hits back after launching a result, search manager can't cache "mShowing". Also noticed a few other minor problems that was hosing the handling of pause / resume to reshow the dialog, like moving some logic to onHide instead of onDismiss.
* | | Merge change 7910Android (Google) Code Review2009-07-201-1/+5
|\ \ \ | | | | | | | | | | | | | | | | * changes: Do not hide the soft keyboard when the DOM has moved focus.
| * | | Do not hide the soft keyboard when the DOM has moved focus.Leon Scroggins2009-07-201-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of calling remove(), which would hide the soft keyboard, remove the WebTextView manually, so the soft keyboard remains up (if it was up to begin with). WebView will properly handle the keys now that the focus has changed.
* | | | am 51cefb2e: Merge change 7889 into donutAndroid (Google) Code Review2009-07-201-5/+2
|\ \ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | Merge commit '51cefb2ef58e18acad800c9aa63c2a7eee4d9731' * commit '51cefb2ef58e18acad800c9aa63c2a7eee4d9731': Ignore unneeded soft keyboard in ACTV height calc
| * | | Ignore unneeded soft keyboard in ACTV height calcBjorn Bringert2009-07-201-5/+2
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, if dropDownAlwaysVisible was false, the soft keyboard height was always taken into account when calculating the available vertical space for the AutoCompleteTextView drop-down height. This meant that the drop-down would never pop over the soft keyboard when navigating in the drop-down list. This change makes the drop-down pop over the soft keyboard when the keyboard is not needed, regardless of the value of dropDownAlwaysVisible. Fixes http://b/issue?id=1978935
* | | Merge change 7827Android (Google) Code Review2009-07-201-3/+5
|\ \ \ | | | | | | | | | | | | | | | | * changes: Fix 1986313. WebKit assumes things happened in a certain order. In this case, we can't call LoadListener's nativeError until BrowserFrame's startLoadingResource returns. Otherwise, the failed request will not be removed from the DocLoader's request list. So the page will never finish loading.
| * | | Fix 1986313. WebKit assumes things happened in a certain order. In this ↵Grace Kloba2009-07-171-3/+5
| | | | | | | | | | | | | | | | case, we can't call LoadListener's nativeError until BrowserFrame's startLoadingResource returns. Otherwise, the failed request will not be removed from the DocLoader's request list. So the page will never finish loading.
* | | | Merge change 7900Android (Google) Code Review2009-07-207-23/+219
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Initial support of 2.1 pairing.
| * | | | Initial support of 2.1 pairing.Jaikumar Ganesh2009-07-177-23/+219
| |/ / / | | | | | | | | | | | | | | | | Note: Some cases have not been tested yet, as we would need to get proper UI support.
* | | | Merge change 7884Android (Google) Code Review2009-07-201-0/+5
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | * changes: Clear the WebTextView in didFirstLayout.
| * | | Clear the WebTextView in didFirstLayout.Leon Scroggins2009-07-201-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | When reaching a new page, remove the WebTextView. This fixes a bug where the user logs into a site, and the WebTextView remains on screen.
* | | | Merge change 7775Android (Google) Code Review2009-07-201-0/+9
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Add an option to enable JIT trace profiling for app_process.
| * | | | Add an option to enable JIT trace profiling for app_process.Ben Cheng2009-07-171-0/+9
| | | | |
* | | | | Added hooks from jni to create and manage SurfaceViews for plugins.Patrick Scott2009-07-201-0/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A subclass of SurfaceView is created in order to appear like a normal SurfaceView to jni but can be managed in Java easily. This class implements the SurfaceHolder.Callback interface in order to notify the native PluginSurface when the surface changes.
* | | | | Correctly set the thread priority for ConnectionThreads.Patrick Scott2009-07-201-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This does not change the actual thread priority but if the default priority changes, this will have the desired result of being slightly less favorable. I tried messing with the priorities to see if a higher or lower priority helped but it seemed to do more harm than good. It might be worth more investigation to find out where all the thread time is being spent so we can determine the correct priority.
* | | | | am 8b9baf2d: Merge change 7857 into donutAndroid (Google) Code Review2009-07-191-5/+2
|\ \ \ \ \ | | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | Merge commit '8b9baf2dfb4dd1bd6379d923a3aa61a082783368' * commit '8b9baf2dfb4dd1bd6379d923a3aa61a082783368': Remove exception throw when a view has a self dependency inside a
| * | | | Merge change 7857 into donutAndroid (Google) Code Review2009-07-191-5/+2
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * changes: Remove exception throw when a view has a self dependency inside a RelativeLayout.
| | * | | | Remove exception throw when a view has a self dependency inside aRomain Guy2009-07-191-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | RelativeLayout. There are unfortunately successful 3rd party apps declaring self dependencies. There's no reason to crash the app so just ignore this issue.
* | | | | | am 841f13c8: * Reverted the change in PackageParser that I checked by ↵Mitsuru Oshima2009-07-194-14/+9
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | accident * More surface view fix. - correct event translation on surface view. - use compatible window * removed FLAG_NO_COMPATIBILITY_SCALE. It was my misunderstanding of how SurfaceView works, Merge commit '841f13c8e9ff3f7695b6c18a8abcec3c947983ff' * commit '841f13c8e9ff3f7695b6c18a8abcec3c947983ff': * Reverted the change in PackageParser that I checked by accident
| * | | | | * Reverted the change in PackageParser that I checked by accidentMitsuru Oshima2009-07-194-14/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * More surface view fix. - correct event translation on surface view. - use compatible window * removed FLAG_NO_COMPATIBILITY_SCALE. It was my misunderstanding of how SurfaceView works, and this was not necessary. * Added compatibility related info to package dumpsys
* | | | | | am 5c536e91: Merge change 7840 into donutAndroid (Google) Code Review2009-07-191-3/+17
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge commit '5c536e9162721c460699a041959a0d67de1d20db' * commit '5c536e9162721c460699a041959a0d67de1d20db': Fix issue where scaled bitmap sizes could be wrong.
| * | | | | Merge change 7840 into donutAndroid (Google) Code Review2009-07-191-3/+17
| |\ \ \ \ \ | | |/ / / / | |/| | | | | | | | | | | | | | | | * changes: Fix issue where scaled bitmap sizes could be wrong.
| | * | | | Fix issue where scaled bitmap sizes could be wrong.Dianne Hackborn2009-07-181-3/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Bitmap functions to get the scaled width/height couldn't actually do the right thing because they didn't know the destination they would be drawing to. Now there are two forms of them, taking an explicit parameter specifying the destination.
* | | | | | am aad0fcc9: Merge change 7783 into donutAndroid (Google) Code Review2009-07-195-20/+44
|\ \ \ \ \ \ | |/ / / / / | | | | | / | |_|_|_|/ |/| | | | | | | | | | | | | | Merge commit 'aad0fcc9619eb72c18a6afff48ebc9d4011f0f54' * commit 'aad0fcc9619eb72c18a6afff48ebc9d4011f0f54': Add "nodpi" density, and expose a bunch of density-related APIs.
| * | | | Merge change 7783 into donutAndroid (Google) Code Review2009-07-175-20/+44
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | * changes: Add "nodpi" density, and expose a bunch of density-related APIs.
| | * | | Add "nodpi" density, and expose a bunch of density-related APIs.Dianne Hackborn2009-07-175-20/+44
| | | | | | | | | | | | | | | | | | | | | | | | | Also update the DpiTest app to use nodpi images, and try to have a mode where it turns off compatibility though it's not quite working.
* | | | | Merge change 7453Android (Google) Code Review2009-07-171-5/+75
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * changes: Add zoom and postview callbacks to Camera. This patch adds a zoom callback to the Java layer. If the hardware supports a smooth zoom function, this provides a way to update the UI as the zoom is moving from its original setting to the new commanded setting. This postview callback supports receive a processed image before the JPEG encode completes. This allows the display to be rotated without losing the final preview frame.
| * | | | | Add zoom and postview callbacks to Camera. This patchDave Sparks2009-07-171-5/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | adds a zoom callback to the Java layer. If the hardware supports a smooth zoom function, this provides a way to update the UI as the zoom is moving from its original setting to the new commanded setting. This postview callback supports receive a processed image before the JPEG encode completes. This allows the display to be rotated without losing the final preview frame.
* | | | | | am 261a784c: Merge change 7720 into donutAndroid (Google) Code Review2009-07-171-1/+5
|\ \ \ \ \ \ | | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge commit '261a784c44d6ac4377651e4842c7a96326462857' * commit '261a784c44d6ac4377651e4842c7a96326462857': Fix global ref leak in android.media.AudioRecord. Delete global refs
| * | | | | Merge change 7720 into donutAndroid (Google) Code Review2009-07-171-1/+5
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: Fix global ref leak in android.media.AudioRecord. Delete global refs to the native AudioRecord pointer and the callback cookie (for native to Java calls) in the finalize() function and when an error occurs during the allocation of the native resources.
| | * | | | | Fix global ref leak in android.media.AudioRecord. Delete global refsJean-Michel Trivi2009-07-171-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to the native AudioRecord pointer and the callback cookie (for native to Java calls) in the finalize() function and when an error occurs during the allocation of the native resources.
* | | | | | | am cf492afd: Merge change 6809 into donutAndroid (Google) Code Review2009-07-171-5/+3
|\ \ \ \ \ \ \ | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge commit 'cf492afdeb3a1da04cc71518285eb778f2ef6837' * commit 'cf492afdeb3a1da04cc71518285eb778f2ef6837': Correctly deliver AppWidgetProvider.onDeleted() events.
| * | | | | | Merge change 6809 into donutAndroid (Google) Code Review2009-07-171-5/+3
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: Correctly deliver AppWidgetProvider.onDeleted() events.
| | * | | | | | Correctly deliver AppWidgetProvider.onDeleted() events.Jeff Sharkey2009-07-101-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the AppWidgetService sends APPWIDGET_DELETED broadcasts, it only sends a single APPWIDGET_ID extra. This change fixes the Provider to handle this extra correctly. Fixes http://b/issue?id=1800738
* | | | | | | | am e96bd129: Merge change 7707 into donutAndroid (Google) Code Review2009-07-171-2/+14
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | | | / / / / | |_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | Merge commit 'e96bd1291482175ac1740780cbd0f42bbe9ff746' * commit 'e96bd1291482175ac1740780cbd0f42bbe9ff746': * scale surface view's canvas
| * | | | | | Merge change 7707 into donutAndroid (Google) Code Review2009-07-171-2/+14
| |\ \ \ \ \ \ | | |_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | * changes: * scale surface view's canvas This will not affect GL/Video views as they're directly using surfce but not canvas.
| | * | | | | * scale surface view's canvasMitsuru Oshima2009-07-171-2/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This will not affect GL/Video views as they're directly using surfce but not canvas.
* | | | | | | am 09a903ab: Merge change 7696 into donutAndroid (Google) Code Review2009-07-174-31/+47
|\ \ \ \ \ \ \ | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge commit '09a903ab5b8d940605783ae4ee591c0f090a31d1' * commit '09a903ab5b8d940605783ae4ee591c0f090a31d1': add hidden Options field for native allocations
| * | | | | | Merge change 7696 into donutAndroid (Google) Code Review2009-07-174-31/+47
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | * changes: add hidden Options field for native allocations
| | * | | | | add hidden Options field for native allocationsMike Reed2009-07-174-31/+47
| | | | | | |
* | | | | | | Merge change 7651Android (Google) Code Review2009-07-171-49/+23
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: Contacts Data type consistency.
| * | | | | | | Contacts Data type consistency.Dmitri Plotnikov2009-07-171-49/+23
| | |_|_|_|_|/ | |/| | | | |
* | | | | | | Revert "Initial support of 2.1 pairing."Jaikumar Ganesh2009-07-177-219/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 228b2f3a813e93413a0f9e2f29dfbfc54590a356.
* | | | | | | Merge change 6736Android (Google) Code Review2009-07-1718-0/+3583
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: Refactor VCard-related code.
| * | | | | | | Refactor VCard-related code.Daisuke Miyakawa2009-07-1718-0/+3583
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move VCard code from android/syncml/pim to android/pim since the code is not related to SyncML at all; Previous code was misplaced, I suppose. Reorganize "Builder" structure: Create VCardBuilderBase.java as a base class for "Builder" classes. Separate VCardDataBuilder to several components. Now, VCardBuilder is able to accept EntryHandlers (interface) which handle each VCard entry. Add EntriCommitter and ProgressShower as ones of EntryHandler implementations. Stop using VNode/PropertyNode in the actual importing path. Instead, VCard importer directly creates ContactStruct object. PropertyNode is still used in test codes, since it does not drop any kind of information while ContactStruct does. All codes are made hidden (with package.html) like the files in syncml directory; These files are only for Contacts app. Issue - due to internal issue 1975498, any performance test cannot be conducted. Next todos - Add tests for ContactStruct. - remove android/syncml directory. - Rename several methods; old names are based on V??? structure, which does not make sense in the current code. - Use ContentProviderOperation instead of relying on beginTransaction()/endTransaction(). - Use ContactsContact in Eclair Related internal issues - 1784580, 1728351
* | | | | | | Initial support of 2.1 pairing.Jaikumar Ganesh2009-07-177-23/+219
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Note: Some cases have not been tested yet, as we would need to get proper UI support.
* | | | | | | am 54f09101: Merge change 7613 into donutAndroid (Google) Code Review2009-07-173-4/+17
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge commit '54f09101381fa63dca35ae4ea0ba3802ee863236' * commit '54f09101381fa63dca35ae4ea0ba3802ee863236': * Use Fede In/Out animation if one of opening/closing apps is in compatibility mode.
| * | | | | | Merge change 7613 into donutAndroid (Google) Code Review2009-07-173-4/+17
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: * Use Fede In/Out animation if one of opening/closing apps is in compatibility mode. * preserve compatibility window flag when the app updates window's layout params. * Added assertion in DEFAULT_COMPATIBILITY_INFO object to prevent unintentional modification. * A few minor updates * log/dump message improvement * Removed unnecessary method in FadeInOutAnimator * Fixed 100 char issue in WindwoManagerServer.java