summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-09-21Refresh the layoutlib_create doc.android-adt-0.9.9tools_r7Raphael Moll
Change-Id: I43e92c33d824ace9edd77d90a1b36a5f69d85e7f
2010-09-21Merge "MOTOYA Japanese fonts"Jean-Baptiste Queru
2010-09-17MOTOYA Japanese fontsShin-ichiro Fukuda
These fonts were contributed by MOTOYA. Change-Id: I97879b4e163f6b547305da732c8604d1ac759df4
2010-09-16There is no @note javadoc tag.Joe Onorato
Change-Id: I4bb4e0be518b01f2a81d870ff4ec9da81555afbd
2010-09-12Merge "fix typo in comment @beamsOverlap"Romain Guy
2010-09-12fix typo in comment @beamsOverlapmadan ankapura
Change-Id: I7c7f8e94391ed71a54b65badea164286281df7e3
2010-09-12Merge "Make DRM libraries optional"Jean-Baptiste Queru
2010-09-11Merge "Fix the layouting of the checkbox."Romain Guy
2010-09-11Merge "Memory leak in TextKeyListener."Romain Guy
2010-09-10Merge "Fix number counter will keep going after window losed focus."Jean-Baptiste Queru
2010-09-10Merge "Allow two SurfaceViews inbetween the app and the wallpaper."Jean-Baptiste Queru
2010-09-10Merge "Make sure OutOfMemoryError is handled by WallpaperManager"Jean-Baptiste Queru
2010-09-10Make DRM libraries optionalJean-Baptiste Queru
Change-Id: I0b591b75a035bc6d8049c85b595966845fedaa15
2010-09-09Update to new ddmlib-prebuilt api.Brett Chabot
Change-Id: Ib99f5eab2b4ecfde8461f93676f0dbd1f1b38241
2010-09-09Merge "Avoid pre-processing images when they won't be used"Xavier Ducrohet
2010-09-09fix buildJean-Baptiste Queru
Change-Id: Iccb40c8c5df879288f35e0940c721d306fb75c12
2010-09-09fix buildJean-Baptiste Queru
Change-Id: Idccb3f2499bbaac61099d8232cadd633b93ad846
2010-09-09fix buildJean-Baptiste Queru
Change-Id: I4aba42eabb2f959b5301bfd16f65fa6141d86ddc
2010-09-09fix buildJean-Baptiste Queru
Change-Id: I603e317b774758add127d7fe386fd60dc16d3101
2010-09-09Merge " Initial contribution from Sony Corporation."Jean-Baptiste Queru
2010-09-09Fix to get A2DP to connect after unpairingHenrik Backlund
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
2010-09-03Avoid pre-processing images when they won't be usedAnthony Newnam
Change-Id: Iffa31228ca95a2e29ccc0aa81bda0fc66922d577
2010-09-03Allow two SurfaceViews inbetween the app and the wallpaper.Pal Szasz
When two SurfaceViews are used by an application, which is transparent and uses the wallpaper, only one of the SurfaceViews will be visible. The problem is that when trying to find the correct location for the wallpaper, the window manager locates the activity window and skips every window below it which is related. For the first SurfaceView this will be ok, since the SurfaceViews's attached window is the previous window. However for the second SurfaceView this condition will fail (the 2nd SurfaceViews attached window is not the previous window (which is the 1st SurfaceView)). The fix adds an extra check which detects this usecase (the windows are related if the attached window is the same as the attached window of the previous window). Change-Id: I368e9dd53455dc310f48d6d8c0be68350ff2b79e
2010-09-03Memory leak in TextKeyListener.Mathias Jeppsson
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
2010-09-03Make sure OutOfMemoryError is handled by WallpaperManagerJohan Alfven
Make sure exception OutOfMemoryError is handled when calling BitmapFactory.decodeFileDescriptor and BitmapFactory.decodeStream to avoid crash in the system server. Change-Id: I954a6388d1225dab86d2617ab0602154b2a7f493
2010-09-03Fix number counter will keep going after window losed focus.Tony Wu
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
2010-09-02Merge "Add a --debug-mode option to aapt."Xavier Ducrohet
2010-09-01 Initial contribution from Sony Corporation.aimitakeshi
Add DRM Framework to support DRM content playback together with StageFright. - DRM Framework code is added - include/drm - drm - api/current.xml is updated to include DRM Framework Java APIs - cmds/servicemanager/service_manager.c is modified to add drmManager and drmIOService. Change-Id: I6d7bc9c7067362b500e530988a9ce241761866fb
2010-08-31Add a --debug-mode option to aapt.Xavier Ducrohet
When passed (with no needed parameters) to the aapt command line, aapt will insert debuggable=true in the application node of the manifest automatically. This is to be used by the SDK tools to make true "debug" builds that require no code/file change. Change-Id: I909759caef499a91d10cc9a0902c6448c87e75ef
2010-08-31Merge "GPS: Initialize XTRA support when GPS is enabled"Mike Lockwood
2010-08-31Merge "GPS: Don't set XTRA download pending flag at boot time."Mike Lockwood
2010-08-31Revert "Shutdown when capacity is 0% and no charging or when battery is dead"Jean-Baptiste Queru
This reverts commit fd04143a47770256dabcfa4d8447127b3ec8b2bf. This break most automated tests because with this change, if the device is fully charged, it will simply turn off the screen, regardless if USB is connected to hsot PC or not; so for our tests, most of them are always connected to host PC, and fully charged 99% of the time, as soon as the screen turns off, the front-end test Activity will be suspended. Change-Id: I1e6590611af43812f1bac223dd31570d1d90cfc5
2010-08-30GPS: Initialize XTRA support when GPS is enabledMike Lockwood
BUG: 2923148 Change-Id: If9a643e385c6c567b30f47d4caa35fa812a2ba43 Signed-off-by: Mike Lockwood <lockwood@android.com>
2010-08-30GPS: Don't set XTRA download pending flag at boot time.Mike Lockwood
XTRA data downloads are now strictly on demand from the GPS engine. Also fix typo in handleDownloadXtraData() Change-Id: Ied1a6e2e62134add4d965326aae909c86f834682 Signed-off-by: Mike Lockwood <lockwood@android.com>
2010-08-30Avoid NullPointerException in BrowserFrameMattias Falk
Avoid NullPointerException in BrowserFrame in method createWindow. getWebViewCore can return null if WebView has been destroyed. Crash found in live environment. Change-Id: I49c3549a037d8f424a0abaee1f8933974b1ec9d7
2010-08-30Merge "Fix a monkey crash when the new WebView is destroyed."Jean-Baptiste Queru
2010-08-30Merge "Telephony: Control operator selection using EF_CSP data."Jean-Baptiste Queru
2010-08-30Telephony: Control operator selection using EF_CSP data.Banavathu, Srinivas Naik
As per CPHS4_2.WW6, CPHS B.4.7.1, the most significant bit of Value Added Services Group(0xC0) info, controls operator selection menu. -If this bit is set, display operator selection menu to user. -If this bit is not set do not display operator selection menu to user, set Network Selection Mode to Automatic. Change-Id: Icca4898abced0b0beb94c3434448a26eae72008b
2010-08-30Merge "Support surrogate pairs when layouting text"Jean-Baptiste Queru
2010-08-26Fix a monkey crash when the new WebView is destroyed.Patrick Scott
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
2010-08-26Shutdown when capacity is 0% and no charging or when battery is deadImre Sunyi
Android framework does not shutdown when battery capacity is 0% and a charger is attached (USB or AC). This handling is incomplete since a charger might very well be attached but charging has stopped because USB suspended or the charging algorithm has stopped because of battery safety handling. Also shutdown when battery is reported 'dead'. This might happen although charging is present. Change-Id: If328260ebf4d38f912e4d2fad204431cbb19c993
2010-08-26Support surrogate pairs when layouting textTakako Ishibashi
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
2010-08-25Fix the layouting of the checkbox.Pal Szasz
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
2010-08-23Telephony: Remove references to mExitECMRunnable object.android-sdk-tools_r7android-adt-0.9.8Banavathu, Srinivas Naik
Free mExitECMRunnable object while destroying CDMA phone. Change-Id: I411b3e5e41a9cc76c3571a98f13f91d84523f623
2010-08-23Merge "Add an API to request route to an IPv6 host."Robert Greenwalt
2010-08-23Merge "Crash when powering off."Jean-Baptiste Queru
2010-08-23Merge "Adds the ability to Android to initiate a 2 Digit Call."Jean-Baptiste Queru
2010-08-23Only monitor recognized uevent devices.Sean McNeil
system_server can potentially monitor uevent devices that are of no use to it. For instance, an accelerometer implementation as uevents. This would cause the process to be busy when unnecessary. If a device cannot be classified, don't monitor it. Change-Id: I489cc453bdce7cb376102cba67a9ea470e13292d
2010-08-20Added overload methods for DatabaseUtils.queryNumEntriesChristian Mehlmauer
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
2010-08-20Fix build - remove dead doc linkJean-Baptiste Queru
Change-Id: I72e05d41819c14bf67d721740e0d48c71eeae397