summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | Merge change 1804 into donutAndroid (Google) Code Review2009-05-201-1/+8
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | * changes: Additional logging in buildSearchableList().
| * | | | | Additional logging in buildSearchableList().Satish Sampath2009-05-151-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | It is useful to know when the system could not find a unique global search provider, either due to clash of priority values or other reasons.
* | | | | | Fix issue where apps could prevent the user from going home.Dianne Hackborn2009-05-194-3/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now we have a 5-second time after home is pressed, during which only the home app (and the status bar) can switch to another app. After that time, any start activity requests that occurred will be executed, to allow things like alarms to be displayed. Also if during that time the user launches another app, the pending starts will be executed without resuming their activities and the one they started placed at the top and executed.
* | | | | | Merge change 1791 into donutAndroid (Google) Code Review2009-05-191-76/+69
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | | | | | | | * changes: Add a method to get the PhoneType in CellLocation.
| * | | | | Add a method to get the PhoneType in CellLocation.Jaikumar Ganesh2009-05-191-76/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CellLocation uses TelephonyManager to get the PhoneType. TelephonyManager uses the system property to get the phoneType, if the ITelephony interface is not up.
* | | | | | Merge change 2022 into donutAndroid (Google) Code Review2009-05-191-1/+21
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: TextView was not setting the callback on its compound drawables, thus preventing them from refreshing the view when updating their internal state. This would for instance prevent animated drawables from actually animating. Quite infuriating.
| * | | | | | TextView was not setting the callback on its compound drawables, thus ↵Romain Guy2009-05-191-1/+21
| | |_|/ / / | |/| | | | | | | | | | | | | | | | preventing them from refreshing the view when updating their internal state. This would for instance prevent animated drawables from actually animating. Quite infuriating.
* | | | | | Merge change 1878 into donutAndroid (Google) Code Review2009-05-191-0/+1
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | * changes: Fixes external #2686. Make @android:anim/linear_interpolator public since the default intperpolator for all animations is accelerate_decelerate.
| * | | | | Fixes external #2686. Make @android:anim/linear_interpolator public since ↵Romain Guy2009-05-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | the default intperpolator for all animations is accelerate_decelerate.
* | | | | | process: Add setProcessGroup() hidden API call to set the cgroup ofSan Mehat2009-05-192-0/+45
| |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | a process and all its child threads. Signed-off-by: San Mehat <san@google.com>
* | | | | Merge change 1936 into donutAndroid (Google) Code Review2009-05-191-0/+60
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | | | | | | * changes: Recovered the code of the gesture library
| * | | | Recovered the code of the gesture libraryYang Li2009-05-181-0/+60
| | | | |
* | | | | Merge change 1579 into donutAndroid (Google) Code Review2009-05-1823-13/+193
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | | | | | | * changes: Teleca 2b changes
| * | | | Teleca 2b changesWink Saville2009-05-1823-13/+193
| | |/ / | |/| |
* | | | Merge change 1916 into donutAndroid (Google) Code Review2009-05-181-3/+29
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Revise the ImageButton class description to include information about XML <selector> drawables, for managing button state.
| * | | | Revise the ImageButton class description to include informationScott Main2009-05-181-3/+29
| | | | | | | | | | | | | | | | | | | | about XML <selector> drawables, for managing button state.
* | | | | Merge change 1927 into donutAndroid (Google) Code Review2009-05-181-9/+15
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * changes: Fix build breakage
| * | | | | Fix build breakageDaisuke Miyakawa2009-05-191-9/+15
| | |_|/ / | |/| | |
* | | | | Merge change 1891 into donutAndroid (Google) Code Review2009-05-182-33/+88
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | * changes: Record statistics about whether HTTP connections are reused.
| * | | | Record statistics about whether HTTP connections are reused.Dan Egnor2009-05-182-33/+88
| | | | |
* | | | | Merge change 1912 into donutAndroid (Google) Code Review2009-05-1817-451/+2746
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * changes: Hand merge from cupcake_dcm to donut, part 2.
| * | | | | Hand merge from cupcake_dcm to donut, part 2.Daisuke Miyakawa2009-05-1917-451/+2746
| | | | | | | | | | | | | | | | | | | | | | | | Modify Contacts-related java files and update vCard importer code to the latest.
* | | | | | Change BIND_APPWIDGET to be signatureOrSystem.Jeff Sharkey2009-05-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | See http://b/issue?id=1839074 for more details.
* | | | | | Fix the buildRomain Guy2009-05-181-1/+1
| | | | | |
* | | | | | Fixes external #2686. Fix typo.Romain Guy2009-05-181-1/+1
| | | | | |
* | | | | | Merge change 1875 into donutAndroid (Google) Code Review2009-05-181-5/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: Fixes external #2669. Clarify the documentation of the XML attributes android:gravity and android:layout_gravity.
| * | | | | | Fixes external #2669. Clarify the documentation of the XML attributes ↵Romain Guy2009-05-181-5/+4
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | android:gravity and android:layout_gravity.
* | | | | | Add a new window flag to display a window when keyguard is shown.Suchi Amalapurapu2009-05-181-0/+9
|/ / / / /
* | | | | Merge change 1836 into donutAndroid (Google) Code Review2009-05-182-16/+34
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | * changes: Fix bug 1856713 gl Pointer functions should use Buffer position
| * | | | Fix bug 1856713 gl Pointer functions should use Buffer positionJack Palevich2009-05-152-16/+34
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | JSR239 and android.opengl gl Pointer functions (glColorPointer, etc.) now respect the current setting of the Buffer position. This fixes a regression introduced when we started requiring the Buffers passed to the Pointer functions to be direct Buffers.
* | | | Implement compatibility support for WRITE_SDCARD permission.Dianne Hackborn2009-05-155-19/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now old applications will automatically be granted it. Also renamed it from SDCARD_WRITE to WRITE_SDCARD to be consistent with our other permissions, and re-arranged how we do targetSdkVersion to actually be usuable for this kind of stuff. Note that right now this results in basically all apps being given the WRITE_SDCARD permission, because their targetSdkVersion is not set. I will be dealing with that in a future change.
* | | | Merge change 1825 into donutAndroid (Google) Code Review2009-05-152-21/+101
|\ \ \ \ | |/ / / |/| | | | | | | | | | | * changes: Fixes #1855461, #1857290 and #1857365. Certain scrollbar styles make an opaque view not be opaque. ListView and View now account for this when indicating whether they are opaque or not.
| * | | Fixes #1855461, #1857290 and #1857365. Certain scrollbar styles make an ↵Romain Guy2009-05-152-21/+101
| | |/ | |/| | | | | | | opaque view not be opaque. ListView and View now account for this when indicating whether they are opaque or not.
* | | Add intent for gservices override, and handle empty arguments properlyDan Egnor2009-05-151-1/+7
| | | | | | | | | | | | in the "am" utility.
* | | Add a search url text color attribute and theme. For search suggestionsMike LeBeau2009-05-153-2/+10
| | | | | | | | | | | | | | | | | | in global search (and in related apps using system search like the browser), we'd like to have a consistent green color used for urls. This makes it available system-wide.
* | | Start using CLDR for some date-and-time strings and formats.Eric Fischer2009-05-1588-1905/+7071
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use java.text.DateFormat where possible, since that is already using the CLDR data for the things it supports. Remove an unused date format object from DatePickerDialog. Add a new method for getting the standalone month names from applications, although @hidden for now because it is an API change. Pass the standalone month names down to native code in Time so that tztime's strftime() can use them. And then the bulk of the change: replace all the names for the months and the days of the week, and AM and PM, and yesterday, today, and tomorrow, with strings from CLDR. And replace several of the date format strings with ones derived from CLDR, but reformatted to use strftime() style instead of SimpleDateFormat style. All these resource changes go into new donottranslate-cldr.xml files and are removed from strings.xml so that they aren't part of the normal translation process and the translators don't have to bother with them (and risk messing them up).
* | Allow intent resolution to be constrained by package name.Mihai Preda2009-05-153-33/+53
| |
* | Accessibility feature - framework changes (replacing 698, 699, 700, 701 and ↵svetoslavganov2009-05-1435-94/+2119
| | | | | | | | merging with the latest Donut)
* | Merge change 1747 into donutAndroid (Google) Code Review2009-05-144-27/+57
|\ \ | | | | | | | | | | | | * changes: Fixes #1846038. The dirty region can sometimes be modified by SurfaceFlinger. When this happens, force the view hierarchy to ignore the dirty flags.
| * | Fixes #1846038. The dirty region can sometimes be modified by ↵Romain Guy2009-05-144-27/+57
| | | | | | | | | | | | SurfaceFlinger. When this happens, force the view hierarchy to ignore the dirty flags.
* | | Merge change 1668 into donutAndroid (Google) Code Review2009-05-141-0/+1
|\ \ \ | |/ / |/| | | | | | | | * changes: Document exception from parse3339
| * | Document exception from parse3339Ken Shirriff2009-04-291-0/+1
| | |
* | | Merge change 1708 into donutAndroid (Google) Code Review2009-05-141-9/+21
|\ \ \ | | | | | | | | | | | | | | | | * changes: Fixes #1853550. Prevent NPE when calling the PopupWindow() and PopupWindow(int, int) constructors. Instead, throw an IllegalStateException when trying to show a popup with no content view.
| * | | Fixes #1853550. Prevent NPE when calling the PopupWindow() and ↵Romain Guy2009-05-141-9/+21
| | | | | | | | | | | | | | | | PopupWindow(int, int) constructors. Instead, throw an IllegalStateException when trying to show a popup with no content view.
* | | | Merge change 1704 into donutAndroid (Google) Code Review2009-05-143-38/+138
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: New feature to track down #1846038. Adds the ability to export flags encoded in int values so as to make them human readable in HierarchyViewer.
| * | | | New feature to track down #1846038. Adds the ability to export flags encoded ↵Romain Guy2009-05-143-38/+138
| |/ / / | | | | | | | | | | | | in int values so as to make them human readable in HierarchyViewer.
* | | | Merge change 1690 into donutAndroid (Google) Code Review2009-05-141-7/+9
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Rework some code so that it works the way it was supposed to work.
| * | | | Rework some code so that it works the way it was supposed to work.Marco Nelissen2009-05-141-7/+9
| | | | |
* | | | | Rearrange some code so it makes more sense. Thanks, findbugs.Marco Nelissen2009-05-141-23/+25
|/ / / /
* | | | Merge change 1685 into donutAndroid (Google) Code Review2009-05-141-3/+0
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * changes: Remove unnecessary code.