summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* Fix if ACTION_DOWN and lost focus time too close, it will become long press.Tony Wu2010-09-131-0/+1
| | | | | | | It will become long press because CheckForTap is still posted in background. So remove the callback when lose focus, or it will become long press event. Change-Id: I4f98a6fc077d256edbe555464095b2b81e75dd41
* Merge "fix typo in comment @beamsOverlap"Romain Guy2010-09-121-1/+1
|\
| * fix typo in comment @beamsOverlapmadan ankapura2010-09-121-1/+1
| | | | | | | | Change-Id: I7c7f8e94391ed71a54b65badea164286281df7e3
* | Merge "Fix the layouting of the checkbox."Romain Guy2010-09-111-2/+2
|\ \
| * | Fix the layouting of the checkbox.Pal Szasz2010-08-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sometimes (very rarely) the checkbox is not layouted correctly (it's partly visible only). The reason is that the checkbox (and the hint text below it) has layout_width set to "wrap_content" as well, which means it needs more then one layout runs to get the final layout. Change-Id: I460bb29e2d9b4fdcf3df314e2baf9c45b2a6259b
* | | Merge "Memory leak in TextKeyListener."Romain Guy2010-09-111-2/+5
|\ \ \ | |_|/ |/| |
| * | Memory leak in TextKeyListener.Mathias Jeppsson2010-09-031-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a call to getPrefs is made after weak reference to content resolver is gone, a new observer will be created and registered at the resolver. At registration, the resolver will allocate ObserverEntry objects that will eventually fill the JNI global reference pool. There is no need to create and register a new observer if one is already registered. Change-Id: If8442b3370299980b73d4ea83757c5eae6a85408
* | | Merge "Fix number counter will keep going after window losed focus."Jean-Baptiste Queru2010-09-101-0/+8
|\ \ \
| * | | Fix number counter will keep going after window losed focus.Tony Wu2010-09-031-0/+8
| |/ / | | | | | | | | | | | | | | | | | | | | | Use Time pick in AlarmClock, long press on + or -, make an incoming call or press power key to suspend the device, after resumed, the counter will keep going without press. Change-Id: I5e69d5e17d3be9aa78648e6f8e28665ec305b36f
* | | Merge "Make sure OutOfMemoryError is handled by WallpaperManager"Jean-Baptiste Queru2010-09-101-3/+13
|\ \ \
| * | | Make sure OutOfMemoryError is handled by WallpaperManagerJohan Alfven2010-09-031-3/+13
| |/ / | | | | | | | | | | | | | | | | | | | | | Make sure exception OutOfMemoryError is handled when calling BitmapFactory.decodeFileDescriptor and BitmapFactory.decodeStream to avoid crash in the system server. Change-Id: I954a6388d1225dab86d2617ab0602154b2a7f493
* | | Update to new ddmlib-prebuilt api.Brett Chabot2010-09-091-1/+1
| | | | | | | | | | | | Change-Id: Ib99f5eab2b4ecfde8461f93676f0dbd1f1b38241
* | | Fix to get A2DP to connect after unpairingHenrik Backlund2010-09-091-1/+7
|/ / | | | | | | | | | | | | | | | | | | | | | | | | In this fix, A2DP profile will be connected when pairing with a previously paired headset. The reason for this error was that the connection of the A2DP profile was sent before the callback onCreatePairedDeviceResult was receied in BluetoothEventLoop.java. By not going to the state BOND_BONDED until after this callback has been received, the problem is fixed. However the use case is different if the pairing is initiated by the remote device. In these cases state BOND_BONDED will be set when onDevicePropertyChanged instead. Change-Id: I5dedca87d0a6872705ff3a933a99cce6eb37618a
* | Merge "Fix a monkey crash when the new WebView is destroyed."Jean-Baptiste Queru2010-08-302-8/+10
|\ \
| * | Fix a monkey crash when the new WebView is destroyed.Patrick Scott2010-08-262-8/+10
| | | | | | | | | | | | | | | | | | | | | | | | Grab the WebViewCore immediately so that if the Tab is destroyed, we have the old WebViewCore object and can return the BrowserFrame. Bug: 2733004 Change-Id: Ic3e4c5417f2165f412f60f05aea3ed403d8cecfd
* | | Support surrogate pairs when layouting textTakako Ishibashi2010-08-263-10/+35
|/ / | | | | | | | | | | | | | | | | | | | | | | | | The current framework does not consider surrogate pairs when getting the index of the character. This bug becomes visible when creating the text including Emojis. For example cursor breaks up when it moves around the Emojis. Our proposed solution will consider the surrogate pairs when calculating the index. It will fix not only the Emoji case, but also the letters that use surrogate pairs. Change-Id: I4983f2e4df933c8af9d5f0cc27df871e8e10fed4
* | Merge "Add an API to request route to an IPv6 host."Robert Greenwalt2010-08-236-52/+158
|\ \
| * | Add an API to request route to an IPv6 host.Banavathu, Srinivas Naik2010-08-196-52/+158
| | | | | | | | | | | | | | | | | | | | | Add API to create a route to an IPv6 host through a particular interface. Change-Id: I7649051e94832576e02b5f5ad17abe093d21d48e
* | | Merge "Crash when powering off."Jean-Baptiste Queru2010-08-231-0/+4
|\ \ \ | |_|/ |/| |
| * | Crash when powering off.Mathias Jeppsson2010-08-171-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixing a race condition. If "confirm" is true and the shutdown dialog is shown it may take some time before the user presses the ok button. During this time a new call to shutdown may be made with confirm=false. When this happens the shutdown thread is started by the second call, and later when the users presses the ok button. This results in ShutdownThread.beginShutdownSequence() being called twice. I.e., the beginShutdownSequence lacks the proper protection for this error case. Change-Id: Ib9b01c5a43f4dc23de09057f3fc1507000317faf
* | | Added overload methods for DatabaseUtils.queryNumEntriesChristian Mehlmauer2010-08-201-10/+34
| | | | | | | | | | | | | | | | | | | | | | | | Now you can filter the count statement with a selection and selection args UnitTests for this new methods are added to the cts project Change-Id: Id9233aec0eaac08839041ae7cbaba203470ad3d8
* | | Fix build - remove dead doc linkJean-Baptiste Queru2010-08-201-1/+1
| | | | | | | | | | | | Change-Id: I72e05d41819c14bf67d721740e0d48c71eeae397
* | | Merge "add new sensor types for handling gyro data and device orientation ↵Jean-Baptiste Queru2010-08-203-2/+231
|\ \ \ | | | | | | | | | | | | more efficiently."
| * | | add new sensor types for handling gyro data and device orientationKevin Powell2010-08-193-2/+231
| | | | | | | | | | | | | | | | | | | | | | | | more efficiently. Change-Id: Ie19992f6599e528a79931f4ae592898dac15412e
* | | | Merge "BluetoothHeadset.java: Added ACTION_VENDOR_SPECIFIC_HEADSET_EVENT, ↵Jean-Baptiste Queru2010-08-204-16/+576
|\ \ \ \ | |_|_|/ |/| | | | | | | EXTRA_VENDOR_SPECIFIC_HEADSET_EVENT_CMD, EXTRA_VENDOR_SPECIFIC_HEADSET_EVENT_ARGS."
| * | | BluetoothHeadset.java:Herb Jellinek2010-08-134-16/+576
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added ACTION_VENDOR_SPECIFIC_HEADSET_EVENT, EXTRA_VENDOR_SPECIFIC_HEADSET_EVENT_CMD, EXTRA_VENDOR_SPECIFIC_HEADSET_EVENT_ARGS. BluetoothAssignedNumbers.java (new file): A home for BT assigned numbers, beginning with the company IDs. HeadsetBase.java: Reformatted some code. AtCommandHandler.java: Fixed comment typos. Change-Id: I34d6f248166305d72be66632779fc963b894379c Added EXTRA_VENDOR_SPECIFIC_HEADSET_EVENT_COMPANY_ID. Fixed a minor comment typo. Change-Id: I8550692c13510a853c894b2d108bef4520d931c2
* | | | Merge "Make the LED colors when charging customizable by the vendor"Jean-Baptiste Queru2010-08-171-0/+15
|\ \ \ \ | |_|_|/ |/| | |
| * | | Make the LED colors when charging customizable by the vendorKenneth Andersson2010-08-031-0/+15
| |/ / | | | | | | | | | | | | | | | | | | | | | This commit will make the default LED colors in the NotificationManager for battery charge customizable via overlays. The blink on/off times are customizable in the same manner. Change-Id: I57ce93656cc4080f5b99554df0ada44c5b31e959
* | | Enhance WspTypeDecoder to decode Content Type ParametersDan Griffin2010-08-021-3/+12
|/ / | | | | | | | | | | | | | | | | | | | | | | | | This patch enables WspTypeDecoder to correctly parse content type parameters as described in the Wap230 WSP specifications (wap-230-wsp-20010705-a section 8.4.2.24) which are then passed on as part of the WAP_PUSH intent notification. It also recognises all Well Known WSP Content types, and simplifies their retrieval (i.e. a well known content type will always be available through the WspTypeDecoder.getValueString() method). Change-Id: I0eb3f9ac287aa7cb53312777c4be54b1939fa857
* | Merge "Corrected buffer overflow when parsing /proc/wakelocks"Romain Guy2010-07-291-4/+6
|\ \
| * | Corrected buffer overflow when parsing /proc/wakelocksJohannes Carlsson2010-07-021-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The android_os_Process_parseProcLineArray in android_util_Process.cpp writes up to buffer[endIndex]. This sometimes caused an assert to be triggered in NewStringUTF when the output from /proc/wakelocks was larger than 4096 bytes. The buffer was also increased in order to be able to parse all wakelocks completely. Change-Id: Idf8e66d61ad979377569048f59c3eee278b146db
* | | Make FrameworkCoreHostTests use ddmlib-prebuilt.Brett Chabot2010-07-281-1/+1
| | | | | | | | | | | | Change-Id: Ib6d809353a89e33ed47a5659141ef18dc132cba6
* | | Fix hosttests to use the new ddmlib API.Xavier Ducrohet2010-07-263-160/+529
| | | | | | | | | | | | Change-Id: I629876c5baabc1cd8700604c4ebed13cc9e2168d
* | | Merge "Fix build."Jean-Baptiste Queru2010-07-261-6/+1
|\ \ \
| * | | Fix build.Jean-Baptiste Queru2010-07-161-6/+1
| | | | | | | | | | | | | | | | | | | | | | | | Switch to using public APIs instead of private ones. Change-Id: Ia3468d94b3dadeb6a000ce419ee08f7e7ba5dc67
* | | | Merge "dependent change for "parse instrumentation result bundles" in sdk"Jean-Baptiste Queru2010-07-231-1/+2
|\ \ \ \
| * | | | dependent change for "parse instrumentation result bundles" in sdkGuang Zhu2010-07-121-1/+2
| | | | | | | | | | | | | | | | | | | | Change-Id: Ie3708d30620a703909829c32f5599816cc52b3f6
* | | | | Remove compilation warnings by removing illegal charactersMac Wang2010-07-231-1/+1
| |_|_|/ |/| | | | | | | | | | | Change-Id: I8522be88b628a12fbde7825354730de4b4d4635a
* | | | Shoud specify the Resource class instance as an argument of the methodMasanori Ogino2010-07-201-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | newDrawable and change the name from 'DrawableCacheClear' to 'clearDrawableCache' (additional changes for ID:15815) https://review.source.android.com/#change,15815 Change-Id: I6bf19b8e6e187df8c8e3cb57d9e04278ddfe5055
* | | | Replaced /sdcard with Environment.getExternalStorageDirectory()Christian Mehlmauer2010-07-193-10/+14
| | | | | | | | | | | | | | | | Change-Id: Id789f44a8569e307b1b7ab15eb266c9ce7ef2029
* | | | typo fixedMadan Ankapura2010-07-191-1/+1
| | | | | | | | | | | | | | | | Change-Id: Ie7cff39929ae53ce03409afadcae58548ec22cc8
* | | | Merge "Replaced deprecated calls to setButton and setButton2"Romain Guy2010-07-191-13/+14
|\ \ \ \
| * | | | Replaced deprecated calls to setButton and setButton2Christian Mehlmauer2010-06-251-13/+14
| | |_|/ | |/| | | | | | | | | | Change-Id: Ifcc3f3afc1689406a3298dab7b00a8edb83c115e
* | | | Merge "Replaced deprecated setButton Methodcalls"Romain Guy2010-07-191-16/+15
|\ \ \ \ | |_|_|/ |/| | |
| * | | Replaced deprecated setButton MethodcallsChristian Mehlmauer2010-06-251-16/+15
| |/ / | | | | | | | | | Change-Id: I8358b2dce25c6d5024550c54d98b4891f41b2a40
* | | Merge "Fix the problem that color drawable cache key conflicts another ↵Romain Guy2010-07-151-38/+69
|\ \ \ | | | | | | | | | | | | drawable one. The cache key of a color drawable resource may be the same as another drawable resource's value."
| * | | Fix the problem that color drawable cache key conflicts another drawable one.Masanori Ogino2010-07-161-38/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The cache key of a color drawable resource may be the same as another drawable resource's value. Change-Id: Ia971bb242ceac5e8f9346094009a10f356399ab9 (Reduced duplicated codes and replace TAB to white spaces) And try to fix compile error.
* | | | Merge "Added method getPreferredHttpHost"Romain Guy2010-07-151-0/+80
|\ \ \ \
| * | | | Added method getPreferredHttpHostAndreas Sandblad2010-07-141-0/+80
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added method for returning preferred proxy which takes both localhost and Wi-Fi into account. This is a convenient method to clients which only wants to set a correct proxy and don't want to build in dependency to if Wi-Fi is active or not. Currently no Wi-Fi proxy is supported by the system, but once added, this method could return a suitable proxy for Wi-Fi. Change-Id: I8c9c2879351fd25a20ea82a2cb000f226248c357
* | | | Merge "Allow ListPreference summary to use entry"Romain Guy2010-07-152-1/+92
|\ \ \ \