summaryrefslogtreecommitdiffstats
path: root/core/java
Commit message (Collapse)AuthorAgeFilesLines
* Merge change 24581 into eclairAndroid (Google) Code Review2009-09-101-4/+5
|\ | | | | | | | | * changes: Dialog titles would sometimes use a font too large.
| * Dialog titles would sometimes use a font too large.Romain Guy2009-09-101-4/+5
| | | | | | | | | | | | | | This was due to code in DialogTitle.java which would multiply the textSize of the theme twice. Change-Id: Id44e39e729ebd43b08c967a67cde0d33dd8f2efb
* | Wallpapers, animations, pending intent.Dianne Hackborn2009-09-106-13/+201
| | | | | | | | | | | | | | | | | | | | | | Some more tweaks and fixes to wallpapers. Make sure wallpapers are told they are not visible when the screen is off. Add some new animations for transitions across tasks, and fiddle with many of the existing animations. Clean up the relationship between translucent activities and animations. Add new API to start a PendingIntent from an activity. Change-Id: Ie0bf45fe44081bb6982c75361257a55d9cd9d863
* | [Issue 2099206] Encoding phone number prior to sending it to the phone ↵Dmitri Plotnikov2009-09-101-1/+2
|/ | | | | lookup filter Change-Id: I80327febe7134ac1bdef958251943a9777879d53
* Add timestamp support for call history vcardLixin Yue2009-09-102-0/+34
|
* Merge change 24499 into eclairAndroid (Google) Code Review2009-09-1024-2224/+43
|\ | | | | | | | | * changes: Modify android.syncml.pim so that no one is going to use.
| * Modify android.syncml.pim so that no one is going to use.Daisuke Miyakawa2009-09-1024-2224/+43
| | | | | | | | | | | | | | | | | | - Remove android.syncml.pim.vcalendar since no one is using it. -- We have android.pim.ICalendar.java, so handling vCalendar (== ICalendar) is possble without android.syncml.pim - Mark android.syncml.pim.vcard and related code as obsolete. -- Refactored version is in android.pim.vcard, which supports new Contacts database schema. Related issue: 2110530
* | Handle cases where TYPE can be undefined, such as EAS.Jeff Sharkey2009-09-092-30/+35
|/ | | | | When TYPE not provided, assume a default value and check that label isn't empty when CUSTOM is used.
* Merge change 24473 into eclairAndroid (Google) Code Review2009-09-091-1/+13
|\ | | | | | | | | * changes: fix [2074427] SurfaceView doesn't disappear on GONE
| * fix [2074427] SurfaceView doesn't disappear on GONEMathias Agopian2009-09-091-1/+13
| |
* | Merge change 24468 into eclairAndroid (Google) Code Review2009-09-091-1/+1
|\ \ | | | | | | | | | | | | * changes: Increasing uninterrupted sleep quantum in SQLiteDatabase to increase transaction size.
| * | Increasing uninterrupted sleep quantum in SQLiteDatabase to increase ↵Dmitri Plotnikov2009-09-091-1/+1
| | | | | | | | | | | | transaction size.
* | | Merge change 24138 into eclairAndroid (Google) Code Review2009-09-091-2/+4
|\ \ \ | | | | | | | | | | | | | | | | * changes: Do not die when printing empty prefs.
| * | | Do not die when printing empty prefs.Tammo Spalink2009-09-081-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Addresses issue: http://buganizer/issue?id=1974140 Change-Id: I0001d69e8d278d4ca900f5ce56ad50c0b4b6b694
* | | | API to combine LOOKUP_KEY and Contacts._ID together.Jeff Sharkey2009-09-091-0/+9
| |_|/ |/| |
* | | Merge change 24395 into eclairAndroid (Google) Code Review2009-09-091-43/+43
|\ \ \ | | | | | | | | | | | | | | | | * changes: Make NumberPicker subclassable
| * | | Make NumberPicker subclassableTom Taylor2009-09-091-43/+43
| | |/ | |/| | | | | | | | | | | | | | | | | | | Make a few methods and member variables protected so behavior can be overridden. In this case, Messaging app uses the control and doesn't want wrap-around behavior. Change-Id: Iceb34743b7d17e933400750a5de56b9ecfe8f146
* | | Avoid the rounding error, as Math.round(Math.round(viewWidth * ↵Grace Kloba2009-09-091-1/+12
| | | | | | | | | | | | | | | | | | mInvActualScale) * mActualScale) not necessary to be viewWidth, we special case when the content exactly fit in the view case. Fix http://b/issue?id=2099889
* | | Adjust the WebTextView's text size according to density.Leon Scroggins2009-09-091-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | Fix for http://b/issue?id=2063143 . Use TypedValue's types to set the text size properly for the screen's density. Change-Id: I3772035157e2a9a8a2dba00ebddbf967c42bfa99
* | | API_CHANGENick Pelly2009-09-098-99/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Deprecate BluetoothError.java. I spent a lot of time experimenting with a class BluetoothError to enumerate the many error codes returned by the Bluetooth API. But at the end of the day they were never used. The vast majority of method calls only really need a true/false error value, and often not even that. Methods which do need more detailed error enumeration (for example, bonding failures) can have there own enumerated error codes. But there is no need for a common set of error codes. Also change the IPC failed warnings in BluetoothA2dp to Log.e. These indicate a very serious error. Introduce BluetoothAdapter.ERROR and BluetoothDevice.ERROR as helper sentinel values.
* | | API_CHANGENick Pelly2009-09-098-136/+248
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Another round of Bluetooth API clean up, javadoc'ing and unhide'ing. -- Symbols for getting/setting bluetooth state -- BluetoothAdapter.ACTION_STATE_CHANGED BluetoothAdapter.EXTRA_STATE BluetoothAdapter.EXTRA_PREVIOUS_STATE BluetoothAdapter.STATE_OFF BluetoothAdapter.STATE_TURNING_ON BluetoothAdapter.STATE_ON BluetoothAdapter.STATE_TURNING_OFF BluetoothAdapter.isEnabled() BluetoothAdapter.getState() BluetoothAdapter.enable() BluetoothAdapter.disable() -- Symbols for getting/setting scan mode -- BluetoothAdapter.ACTION_SCAN_MODE_CHANGED BluetoothAdapter.EXTRA_SCAN_MODE BluetoothAdapter.EXTRA_PREVIOUS_SCAN_MODE BluetoothAdapter.SCAN_MODE_NONE BluetoothAdapter.SCAN_MODE_CONNECTABLE BluetoothAdapter.SCAN_MODE_DISCOVERABLE BluetoothAdapter.getScanMode() BluetoothAdapter.setScanMode() -- Symbols for getting address/names -- BluetoothAdapter.getAddress() BluetoothAdapter.getName() BluetoothAdapter.setName()
* | | Merge change 24376 into eclairAndroid (Google) Code Review2009-09-092-0/+9
|\ \ \ | | | | | | | | | | | | | | | | * changes: Query for all properties if a property change is received and cache is empty.
| * | | Query for all properties if a property change is received and cache is empty.Jaikumar Ganesh2009-09-082-0/+9
| | | |
* | | | Remove the call to nativeAddJavascriptInterface() from ↵Andrei Popescu2009-09-091-2/+0
| |/ / |/| | | | | | | | BrowserFrame::addJavascriptInterface() as it causes an intermitent crash.
* | | Merge change 24288 into eclairAndroid (Google) Code Review2009-09-091-1/+2
|\ \ \ | | | | | | | | | | | | | | | | * changes: Do not cache POST response as Cache is indexed with url.
| * | | Do not cache POST response as Cache is indexed with url.Grace Kloba2009-09-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | mRequestHandle is only set from Network. So we can skip checking whether url is Network url if mRequestHandle is not null. Fix http://b/issue?id=1980031
* | | | Fix typo: IMMEDITATE -> IMMEDIATEOmari Stephens2009-09-081-1/+1
|/ / /
* | | Merge change 24012 into eclairAndroid (Google) Code Review2009-09-086-6/+156
|\ \ \ | | | | | | | | | | | | | | | | * changes: add a transaction monitor
| * | | add a transaction monitorFred Quintana2009-09-086-6/+156
| | | |
* | | | Merge change 24194 into eclairAndroid (Google) Code Review2009-09-081-11/+19
|\ \ \ \ | |/ / / |/| | | | | | | | | | | * changes: Make the hardkeyboard long press dialog look the same as that of soft keyboard.
| * | | Make the hardkeyboard long press dialog look the same as that of soft keyboard.Amith Yamasani2009-09-081-11/+19
| | | | | | | | | | | | | | | | New assets for transparent buttons and background.
* | | | Sync status was ignoring account - the new UI has specific sync status for ↵Costin Manolache2009-09-082-21/+22
| | | | | | | | | | | | | | | | each account, so we need to use it.
* | | | Merge change 24155 into eclairAndroid (Google) Code Review2009-09-084-0/+8
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Add javadoc to explain which permissions are required for Public BT API's.
| * | | | Add javadoc to explain which permissions are required for Public BT API's.Nick Pelly2009-09-084-0/+8
| | | | |
* | | | | Merge change 24086 into eclairAndroid (Google) Code Review2009-09-081-8/+20
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * changes: Fixing asymmetry between phone filter and email filter APIs.
| * | | | | Fixing asymmetry between phone filter and email filter APIs.Dmitri Plotnikov2009-09-061-8/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, introducing a more advanced email filter, which will do a proper name lookup using the normalized name and avoid returning duplicate results. Also, upgrading the phone filter to do the same thing as the email filter but with display names and phone numbers.
* | | | | | Merge change 24153 into eclairAndroid (Google) Code Review2009-09-083-0/+179
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: adding support for webkit plugins to use the java view system
| * | | | | | adding support for webkit plugins to use the java view systemDerek Sollenberger2009-09-083-0/+179
| | |/ / / / | |/| | | | | | | | | | | | | | | | Change-Id: I4fb328e5f30476fe4aa70565bacb969dc97b495d
* | | | | | Merge change 24161 into eclairAndroid (Google) Code Review2009-09-081-1/+8
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: don't fling if there's nowhere to go
| * | | | | | don't fling if there's nowhere to goCary Clark2009-09-081-1/+8
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a test to doFling() to return quickly if the fling has no effect. For simplicity, only test for horizontal or vertical flings. The man purpose is to avoid suspending webkit until the fling animation is complete when the purpose of the touch drag is to activate a touch event, like a swipe in superpudu. fixes http://b/issue?id=2052852
* | | | | | default overview mode to false in webkitCary Clark2009-09-081-1/+1
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Browser defaults overview mode to true in BrowserSettings.java, but a WebView should default overview mode to false. This permits applications without zoom interfaces, such as HTMLViewer, to have the same interface as before.
* | | | | Revert "Adding classes to enable plugins to use the java view system."Derek Sollenberger2009-09-083-136/+0
| | | | | | | | | | | | | | | | | | | | This reverts commit b127dc29bbe41dde9cb30e178bd252f48e84e533.
* | | | | Merge change 23485 into eclairAndroid (Google) Code Review2009-09-083-0/+136
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | | | | | | * changes: Adding classes to enable plugins to use the java view system.
| * | | | Adding classes to enable plugins to use the java view system.Derek Sollenberger2009-09-013-0/+136
| | | | | | | | | | | | | | | | | | | | Change-Id: I2a9bb5b3d3759645257263797c977ecc4a44b263
* | | | | Merge change 24097 into eclairAndroid (Google) Code Review2009-09-082-6/+17
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * changes: Fix small bugs in VCardComposer.java.
| * | | | | Fix small bugs in VCardComposer.java.Daisuke Miyakawa2009-09-072-6/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - The logic for emitting "FN" is wrong. - FileWriter's "double close" problem should occur in the current implementation. - Let VCardParser_V31.java ignore AGENT field instead of throwing an unkind VCardNotSupportedException.
* | | | | | Implement all of the infrastructure for configuring wallpapers.Dianne Hackborn2009-09-0714-33/+577
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Actually being able to configure a wallpaper relies on additional work in the launcher and wallpapers that will be in another change. Also note that this breaks all existing wallpapers, since they now need to include a meta-data item about themselves. This also will be fixed in another change. Change-Id: I97d2c2bd07237abc32f92b9147c32530a2f73c71
* | | | | | Merge change 24099 into eclairAndroid (Google) Code Review2009-09-073-8/+11
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: Fix issue #2095422: Some fades from opaque to transparent don't work
| * | | | | | Fix issue #2095422: Some fades from opaque to transparent don't workDianne Hackborn2009-09-073-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ViewRoot was using Surface.clear(), which has different behavior in different processes -- in the system process it would kill the surface, causing all windows in that process to immediately disappear instead of animating away. This change makes Surface.release() public and uses that instead. It also renames Surface.clear() to Surface.destroy(). Also fixed some issues in the window manager that were causing the wallpaper to not get immediately resized when the orientation changes and its target window is removed and re-added. Change-Id: I2a992e365cf5747511f0bf1193db32dc2525b218
* | | | | | | Add Gservices constants for GlobalSearch settingsBjorn Bringert2009-09-071-0/+87
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is part of the implementation of http://b/issue?id=2097470 Change-Id: Ife3e5edd4c7d31824d75a0f93a6dcd56a39ab524